/* Google Fonts loaded via <link> in HTML for performance */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --cream: #faf8f3;
    --off-white: #f2ede4;
    --sage: #8b9d6b;
    --sage-light: #edf2e6;
    --forest: #5a6d4d;
    --warm-brown: #8b7355;
    --warm-sand: #f7f0e4;
    --charcoal: #3a3a3a;
    --light-gray: #e8e6e0;
    --shadow-sm: 0 2px 14px rgba(60,50,30,0.07);
    --shadow-md: 0 8px 32px rgba(60,50,30,0.13);
    --radius: 10px;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--cream);
    overflow-x: hidden;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--forest);
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 0 0 var(--radius) var(--radius);
    font-size: 0.8rem;
    text-decoration: none;
    z-index: 9999;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* Focus styles */
:focus-visible {
    outline: 2px solid var(--sage);
    outline-offset: 3px;
    border-radius: 3px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250,248,243,0.97);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--light-gray);
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

main {
    padding-top: 160px;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    position: relative;
    min-width: 0;
}

.nav-logo {
    height: 160px;
    display: flex;
    align-items: center;
    transition: height 0.3s ease;
}

.nav-logo img {
    width: 144px;
    height: 144px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    transition: width 0.3s ease, height 0.3s ease;
}

header.scrolled .nav-logo {
    height: 64px;
}

header.scrolled .nav-logo img {
    width: 52px;
    height: 52px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.25rem;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}

nav a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 0.78rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav a:hover { color: var(--sage); }

.nav-email-btn {
    display: inline-block;
    padding: 0.45rem 1.1rem;
    background: var(--forest);
    color: white !important;
    border-radius: 40px;
    font-size: 0.72rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s;
    white-space: nowrap;
}

.nav-email-btn:hover { background: var(--sage) !important; color: white !important; }

/* Hero */
.hero {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    min-height: 45vh;
}

.hero-text {
    padding: 6rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--cream);
}

.hero-badge {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: var(--sage);
    margin-bottom: 1.75rem;
}

.hero h1 {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 3rem;
    color: var(--forest);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.hero-subheading {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 1.25rem;
    color: var(--warm-brown);
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1rem;
    color: var(--warm-brown);
    margin-bottom: 2.75rem;
    line-height: 1.85;

}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image { overflow: hidden; position: relative; margin-right: 1.25rem; }

.hero-image::after {
    content: '';
    position: absolute;
    inset: 1.25rem;
    border: 1.5px solid rgba(255,255,255,0.55);
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Privacy policy page */
.privacy-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 0;
}

.privacy-content h1 {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.privacy-updated {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--warm-brown);
    margin-bottom: 2rem;
}

.privacy-content h2 {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--forest);
    margin-top: 2.25rem;
    margin-bottom: 0.75rem;
}

.privacy-content p {
    font-size: 0.92rem;
    color: #5e574e;
    line-height: 1.85;
    margin-bottom: 0.9rem;
}

.privacy-content a {
    color: var(--warm-brown);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2.25rem;
    background: var(--forest);
    color: white;
    text-decoration: none;
    font-size: 0.76rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 40px;
    transition: background 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 10px rgba(90,109,77,0.2);
}

.btn:hover {
    background: var(--sage);
    box-shadow: 0 4px 16px rgba(90,109,77,0.3);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--forest);
    color: var(--forest);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--forest);
    color: white;
    box-shadow: 0 4px 16px rgba(90,109,77,0.25);
}

.btn-white {
    display: inline-block;
    background: white;
    color: var(--forest);
    padding: 0.875rem 2.5rem;
    text-decoration: none;
    font-size: 0.76rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 40px;
    transition: background 0.3s;
}

.btn-white:hover { background: var(--cream); }

/* Sections */
section {
    padding: 5.5rem 2rem;
    border-bottom: 1px solid var(--light-gray);
}

section.bg-white { background: var(--off-white); }
section.bg-sage-light { background: var(--sage-light); }
section.bg-warm-sand { background: var(--warm-sand); }
section.bg-forest-section { background: var(--forest); }
section.bg-light-gray { background: var(--light-gray); }

/* Wholesale CTA band on index */
.wholesale-cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.wholesale-cta-band h2 {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 2rem;
    font-weight: 400;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.wholesale-cta-band p {
    color: rgba(255,255,255,0.8);
    font-size: 0.92rem;
    line-height: 1.75;
}

.wholesale-cta-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.btn-outline-white {
    display: inline-block;
    padding: 0.8rem 2.25rem;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.6);
    color: white;
    text-decoration: none;
    font-size: 0.76rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 40px;
    transition: background 0.3s, border-color 0.3s;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

.section-header { margin-bottom: 3rem; }

.collections-section-header {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.collections-callout {
    flex-shrink: 0;
    max-width: 280px;
    padding: 1.1rem 1.25rem;
    background: var(--warm-sand);
    border-left: 3px solid var(--sage);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 0.95rem;
    color: var(--forest);
    font-style: italic;
    line-height: 1.65;
}

@media (max-width: 700px) {
    .collections-section-header { flex-direction: column; gap: 1.25rem; }
    .collections-callout { max-width: 100%; flex-shrink: unset; }
}


.section-header h2 {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 2.6rem;
    color: var(--forest);
    font-weight: 400;
}

.section-header p {
    margin-top: 1rem;
    color: #6b6458;
    font-size: 1rem;
    max-width: 580px;
    line-height: 1.85;
}

.section-header-note {
    margin-top: 0.75rem;
    font-size: 0.85rem !important;
    color: #8a8078 !important;
    max-width: 580px;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 5rem;
    align-items: start;
}

.about-text h2 {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 2.2rem;
    color: var(--forest);
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.about-text p {
    color: #5e574e;
    line-height: 1.9;
    margin-bottom: 1.25rem;
    font-size: 0.97rem;
}

.about-text .btn { margin-top: 1.25rem; }

.about-aside { display: flex; flex-direction: column; gap: 1.25rem; }

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.about-stat {
    background: var(--sage-light);
    border-radius: var(--radius);
    border: 2px solid var(--sage);
    padding: 1.25rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.about-stat .stat-number {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 2rem;
    color: var(--forest);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.about-stat .stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--warm-brown);
}

.twopercent-badge {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    padding: 1.5rem;
    background: var(--off-white);
    border-radius: var(--radius);
    border-left: 3px solid var(--sage);
    box-shadow: var(--shadow-sm);
    font-size: 0.88rem;
    color: var(--charcoal);
    line-height: 1.8;
}

.twopercent-logo { flex-shrink: 0; }

.twopercent-badge img {
    display: block;
    width: 125px;
}

.twopercent-badge p { color: #5e574e; }

.twopercent-badge a {
    color: var(--warm-brown);
    text-decoration: none;
    font-weight: 600;
}

/* Products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--off-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s, transform 0.3s;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.product-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.product-info { padding: 1.4rem; }

.product-info h3 {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.product-info p {
    font-size: 0.85rem;
    color: #6b6458;
    line-height: 1.75;
}

/* Coming soon product cards */
.product-card--coming-soon {
    opacity: 0.72;
}

.product-card--coming-soon:hover {
    opacity: 1;
}

.product-coming-soon-img {
    width: 100%;
    aspect-ratio: 1;
    background: var(--sage-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px dashed var(--light-gray);
}

.coming-soon-badge {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sage);
    border: 1.5px solid var(--sage);
    padding: 0.35rem 0.9rem;
    border-radius: 40px;
}

/* Collections subheadings */
.collections-subheading {
    margin-bottom: 1.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.collections-subheading--exclusive {
    margin-top: 3.5rem;
}

.collections-village-callout {
    margin-bottom: 1.75rem;
    padding: 0.75rem 1.25rem;
    background: var(--warm-sand);
    border-left: 3px solid var(--warm-brown);
    border-radius: 0 var(--radius) var(--radius) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.collections-village-callout p {
    font-size: 0.82rem;
    color: #6b6458;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.collections-subheading h3 {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 0.35rem;
}

.collections-subheading p {
    font-size: 0.88rem;
    color: #6b6458;
    line-height: 1.75;
}

/* Collections */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.collection-item {
    background: var(--off-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s, transform 0.3s;
}

.collection-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.collection-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    display: block;
    background: var(--off-white);
    padding: 1.4rem 1.4rem 0;
}

.collection-name {
    padding: 1.4rem;
    background: var(--off-white);
}

.collection-name .code {
    display: none;
}

.collection-name h3 {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 1rem;
    color: var(--charcoal);
    font-weight: 400;
}

/* Why Stock Us */
.why-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.75rem;
}

.why-card {
    flex: 0 0 calc(50% - 0.875rem);
    min-width: 260px;
}

.why-card-twopercent-logo img {
    width: 1.3em;
    height: 1.3em;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.3em;
    position: relative;
    top: -0.05em;
}

.why-card {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--warm-brown);
}

.why-card:nth-child(2) { border-top-color: var(--sage); }
.why-card:nth-child(3) { border-top-color: var(--forest); }

.why-card h3 {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 1.25rem;
    color: var(--forest);
    font-weight: 400;
    margin-bottom: 0.6rem;
}

.why-card p {
    font-size: 0.875rem;
    color: #6b6458;
    line-height: 1.8;
}

/* Order */
.order-grid--below-why { margin-top: 2.5rem; }
.order-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.order-grid.order-grid--two-col { grid-template-columns: repeat(2, 1fr); }

.order-box {
    background: var(--off-white);
    padding: 2.25rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.order-box h3 {
    font-family: 'Cinzel', Georgia, serif;
    color: var(--forest);
    margin-bottom: 1rem;
    font-weight: 400;
    font-size: 1.35rem;
}

.order-box p {
    font-size: 0.9rem;
    color: #5e574e;
    line-height: 1.85;
}

.order-box ul {
    list-style: none;
    margin-top: 1rem;
}

.order-box li {
    font-size: 0.88rem;
    padding: 0.4rem 0;
    color: var(--charcoal);
    border-top: 1px solid var(--light-gray);
}

.order-box li:first-child { border-top: none; }

.order-box li::before {
    content: "→ ";
    color: var(--sage);
}

.order-box a {
    color: var(--warm-brown);
    text-decoration: none;
}

.order-box--cta {
    background: var(--forest);
    color: white;
}

.order-box--cta h3 { color: white; }

.order-box--cta p { color: rgba(255,255,255,0.82); }

.btn-order-cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.75rem 1.75rem;
    background: var(--off-white);
    color: var(--forest);
    font-size: 0.76rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 40px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-order-cta:hover { background: var(--cream); }

/* Footer */
footer {
    background: var(--charcoal);
    color: white;
    padding: 3.5rem 2rem 2rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand p {
    font-size: 0.875rem;
    opacity: 0.75;
    line-height: 1.75;
}

.footer-brand a {
    color: var(--sage);
    text-decoration: none;
    opacity: 1;
}


.footer-col h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sage);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-col ul { list-style: none; }

.footer-col li,
.footer-col p {
    font-size: 0.875rem;
    opacity: 0.75;
    line-height: 2.1;
}

.footer-col a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s, color 0.3s;
}

.footer-col a:hover { opacity: 1; color: var(--sage); }

.footer-note-secondary { margin-top: 0.75rem; }

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    font-size: 0.8rem;
    opacity: 0.55;
    text-align: center;
}

.footer-bottom a { color: inherit; text-decoration: none; }

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(30,25,18,0.88);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.open { display: flex; }

.modal-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.modal-close {
    position: fixed;
    top: 1.25rem;
    right: 1.5rem;
    background: var(--off-white);
    border: none;
    border-radius: 50%;
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: background 0.2s;
    z-index: 1001;
}

.modal-close:hover { background: var(--cream); }

.modal-img--white-bg {
    background: white;
    border-radius: var(--radius);
    padding: 2.5rem;
    min-width: min(70vw, 500px);
    min-height: min(70vw, 500px);
}

.modal-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: min(80vw, calc(100vw - 8rem));
}

.modal-title {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 1rem;
    color: white;
    letter-spacing: 1px;
    text-align: center;
    margin: 0;
}

.modal-prev,
.modal-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.35);
    color: white;
    border-radius: 50%;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, visibility 0s;
    z-index: 1001;
}

.modal-prev { left: 1.25rem; }
.modal-next { right: 1.25rem; }

.modal-prev:hover,
.modal-next:hover {
    background: rgba(255,255,255,0.25);
}

.modal-prev.hidden,
.modal-next.hidden {
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 600px) {
    .modal-prev { left: 0.5rem; }
    .modal-next { right: 0.5rem; }
    .modal-inner { max-width: calc(100vw - 6rem); }
}

/* Responsive */
@media (max-width: 1100px) {
    .why-card { flex: 0 0 calc(50% - 1.75rem / 2); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile nav toggle button */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--charcoal);
    padding: 0.25rem 0.5rem;
    line-height: 1;
}

@media (max-width: 860px) {
    .hero { grid-template-columns: 1fr; }
    .hero-image { height: 55vw; min-height: 280px; margin-right: 0; }
    .hero-text { padding: 3.5rem 2rem; }
    .hero h1 { font-size: 2.8rem; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-aside { order: -1; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
    .order-grid,
    .order-grid.order-grid--two-col { grid-template-columns: 1fr; }
    .nav-logo { height: 116px; }
    .nav-logo img { width: 100px; height: 100px; }
    header.scrolled .nav-logo { height: 64px; }
    main { padding-top: 116px; }
    nav { padding: 0 1rem; }

    .nav-toggle { display: block; }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(250,248,243,0.98);
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0 1rem;
        border-bottom: 1px solid var(--light-gray);
        box-shadow: var(--shadow-md);
    }

    nav ul.open { display: flex; }

    nav ul li a {
        display: block;
        padding: 0.75rem 2rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 600px) {
    .collections-grid,
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .why-card { flex: 1 0 100%; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }
    .hero h1 { font-size: 2.2rem; }
    section { padding: 3.5rem 1.25rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .nav-logo { height: 96px; }
    .nav-logo img { width: 80px; height: 80px; }
    main { padding-top: 96px; }
    .wholesale-cta-band { flex-direction: column; align-items: flex-start; }
    .wholesale-cta-actions { width: 100%; }
    .btn-outline-white { text-align: center; }
}

/* Sanpo Yoshi */
.sanpo-yoshi-wrap {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.sanpo-yoshi-kicker {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--warm-brown);
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.sanpo-yoshi-heading {
    font-family: 'Cinzel', Georgia, serif;
    font-size: 1.9rem;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.sanpo-yoshi-sub {
    font-size: 0.95rem;
    color: #5e574e;
    line-height: 1.85;
    max-width: 580px;
}

.sanpo-yoshi-pillars {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.sanpo-yoshi-pillar {
    flex: 1;
    padding: 0 2rem;
}

.sanpo-yoshi-pillar:first-child { padding-left: 0; }
.sanpo-yoshi-pillar:last-child { padding-right: 0; }

.sanpo-yoshi-pillar-label {
    display: block;
    font-family: 'Cinzel', Georgia, serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.sanpo-yoshi-pillar p {
    font-size: 0.88rem;
    color: #5e574e;
    line-height: 1.85;
}

.sanpo-yoshi-pillar-divider {
    width: 1px;
    align-self: stretch;
    background: var(--light-gray);
    margin: 0.25rem 0;
    flex-shrink: 0;
}

@media (max-width: 700px) {
    .sanpo-yoshi-pillars {
        flex-direction: column;
        gap: 1.75rem;
    }
    .sanpo-yoshi-pillar { padding: 0; }
    .sanpo-yoshi-pillar-divider { display: none; }
}
