/* =================================================================
   SengGack.org — Maximalist Burgundy Conservatory
   Full-bleed, fade-reveal, flowing-curves, botanical-illustration.
   ================================================================= */

:root {
    /* Palette */
    --theatre-black: #1F0A12;
    --velvet-burgundy: #3A1326;
    --aged-wine: #5C1F3A;
    --dried-rose: #A8516B;
    --cream-vellum: #F2E5C8;
    --gilt-thread: #D9B970;
    --botanical-sage: #7AA888;

    /* Fonts */
    --font-display: "Archivo", "Inter", system-ui, sans-serif;
    --font-body: "Cormorant Garamond", "Lora", Georgia, "Times New Roman", serif;
}

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

html {
    scroll-behavior: smooth;
    background: var(--theatre-black);
}

body {
    margin: 0;
    padding: 0;
    background: var(--theatre-black);
    color: var(--cream-vellum);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(18px, 1.4vw, 21px);
    line-height: 1.75;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
}

/* SVG defs sheet must not render */
svg.svg-defs {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* ----- persistent global layers ----- */

.candle-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    background:
        radial-gradient(ellipse 60vw 60vh at var(--glow-x, 50%) var(--glow-y, 50%),
            rgba(242, 229, 200, 0.10) 0%,
            rgba(242, 229, 200, 0.04) 30%,
            rgba(31, 10, 18, 0) 70%);
    transition: background 1.2s ease-out;
    z-index: 100;
    mix-blend-mode: screen;
}

.wallpaper-base {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(168, 81, 107, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 70%, rgba(92, 31, 58, 0.10) 0%, transparent 45%),
        var(--theatre-black);
    z-index: -1;
}

/* ----- section base ----- */

section, footer {
    position: relative;
    width: 100vw;
    overflow: hidden;
}

.wallpaper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.wallpaper svg {
    width: 100%;
    height: 100%;
    display: block;
}

.ribbon-curve {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.85;
}

.ribbon-curve .curve {
    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    opacity: 0;
    transition: stroke-dashoffset 2.4s cubic-bezier(0.32, 0.6, 0.32, 1),
                opacity 1.2s ease-out;
}

section.in-view .ribbon-curve .curve,
footer.in-view .ribbon-curve .curve {
    stroke-dashoffset: 0;
    opacity: 0.9;
}

.ribbon-curve .curve:nth-child(1) { transition-delay: 0.1s; }
.ribbon-curve .curve:nth-child(2) { transition-delay: 0.35s; }
.ribbon-curve .curve:nth-child(3) { transition-delay: 0.6s; }

/* curve hover gilt highlight via JS-injected class */
.ribbon-curve .curve.curve--hot {
    filter: drop-shadow(0 0 6px rgba(217, 185, 112, 0.7));
}

.watermark {
    position: absolute;
    width: clamp(360px, 50vw, 800px);
    height: auto;
    pointer-events: none;
    z-index: 1;
    opacity: 0.18;
    transition: transform 1s ease-out;
}

.watermark--center { top: 8%; left: 50%; transform: translateX(-50%); }
.watermark--right { top: 30%; right: -6%; }
.watermark--left { top: 20%; left: -10%; }

.section-inner {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    margin: 0 auto;
    padding: 12vh 8vw 14vh;
}

/* =================================================================
   HERO
   ================================================================= */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theatre-black);
    position: relative;
    isolation: isolate;
}

.hero-wallpaper {
    z-index: 0;
}

.hero-wallpaper svg {
    opacity: 0.55;
}

.hero-curves {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-curves .curve {
    stroke-dasharray: 4000;
    stroke-dashoffset: 4000;
    opacity: 0;
    animation: hero-curve-draw 1.6s cubic-bezier(0.32, 0.6, 0.32, 1) forwards;
}

.hero-curves .curve-1 { animation-delay: 0.6s; }
.hero-curves .curve-2 { animation-delay: 0.85s; }
.hero-curves .curve-3 { animation-delay: 1.05s; }
.hero-curves .curve-4 { animation-delay: 0.7s; }
.hero-curves .curve-5 { animation-delay: 0.95s; }
.hero-curves .curve-6 { animation-delay: 1.4s; }
.hero-curves .curve-7 { animation-delay: 1.4s; }

@keyframes hero-curve-draw {
    0% {
        stroke-dashoffset: 4000;
        opacity: 0;
    }
    20% {
        opacity: 0.9;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 0.9;
    }
}

.hero-botanical {
    position: absolute;
    top: 5vh;
    bottom: 5vh;
    width: clamp(120px, 18vw, 280px);
    height: 90vh;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    animation: bot-fade-in 1.6s ease-out forwards;
    animation-delay: 1.6s;
}

.hero-botanical--left { left: 2vw; }
.hero-botanical--right { right: 2vw; }

@keyframes bot-fade-in {
    to { opacity: 1; }
}

.hero-botanical .bot-path {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: bot-stroke-draw 1.8s cubic-bezier(0.32, 0.6, 0.32, 1) forwards;
}

.hero-botanical--left .bot-path { animation-delay: 1.8s; }
.hero-botanical--right .bot-path { animation-delay: 2s; }

@keyframes bot-stroke-draw {
    to { stroke-dashoffset: 0; }
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 1100px;
    padding: 0 8vw;
    text-align: center;
}

.hero-marker {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(20px, 1.8vw, 26px);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gilt-thread);
    opacity: 0;
    transform: translateY(-12px);
    animation: marker-in 1.2s ease-out forwards;
    animation-delay: 0.3s;
    margin-bottom: 2.2vh;
}

@keyframes marker-in {
    to { opacity: 0.95; transform: translateY(0); }
}

.hero-wordmark {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(56px, 13vw, 200px);
    letter-spacing: -0.03em;
    line-height: 0.92;
    color: var(--cream-vellum);
    text-shadow: 0 0 40px rgba(217, 185, 112, 0.15),
                 0 0 80px rgba(168, 81, 107, 0.12);
    margin-bottom: 4vh;
    display: inline-block;
}

.hero-wordmark .ch {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: ch-rise 800ms cubic-bezier(0.32, 0.6, 0.32, 1) forwards;
}

.hero-wordmark .ch--dot { color: var(--gilt-thread); }
.hero-wordmark .ch--tld { color: var(--dried-rose); font-style: italic; font-weight: 700; }

@keyframes ch-rise {
    to { opacity: 1; transform: translateY(0); }
}

/* per-letter stagger via nth-child */
.hero-wordmark .ch:nth-child(1)  { animation-delay: 0.50s; }
.hero-wordmark .ch:nth-child(2)  { animation-delay: 0.56s; }
.hero-wordmark .ch:nth-child(3)  { animation-delay: 0.62s; }
.hero-wordmark .ch:nth-child(4)  { animation-delay: 0.68s; }
.hero-wordmark .ch:nth-child(5)  { animation-delay: 0.74s; }
.hero-wordmark .ch:nth-child(6)  { animation-delay: 0.80s; }
.hero-wordmark .ch:nth-child(7)  { animation-delay: 0.86s; }
.hero-wordmark .ch:nth-child(8)  { animation-delay: 0.92s; }
.hero-wordmark .ch:nth-child(9)  { animation-delay: 0.98s; }
.hero-wordmark .ch:nth-child(10) { animation-delay: 1.04s; }
.hero-wordmark .ch:nth-child(11) { animation-delay: 1.10s; }
.hero-wordmark .ch:nth-child(12) { animation-delay: 1.16s; }

.hero-subtitle {
    font-family: var(--font-body);
    font-style: italic;
    font-size: clamp(18px, 1.6vw, 24px);
    line-height: 1.7;
    color: var(--cream-vellum);
    max-width: 720px;
    margin: 0 auto 4vh;
    opacity: 0;
    transform: translateY(8px);
    animation: subtitle-in 1.4s ease-out forwards;
    animation-delay: 1.7s;
}

@keyframes subtitle-in {
    to { opacity: 0.92; transform: translateY(0); }
}

.hero-rule {
    width: clamp(220px, 30vw, 400px);
    margin: 0 auto 4vh;
    opacity: 0;
    animation: subtitle-in 1.4s ease-out forwards;
    animation-delay: 1.9s;
}

.hero-rule svg {
    width: 100%;
    height: auto;
    display: block;
}

.hero-scroll {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gilt-thread);
    opacity: 0;
    animation: subtitle-in 1.4s ease-out forwards, scroll-pulse 2.4s ease-in-out infinite;
    animation-delay: 2.2s, 2.6s;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.95; }
}

/* =================================================================
   SECTION GENERAL: HEADERS & PROSE & REVEAL
   ================================================================= */

.section {
    min-height: 100vh;
    padding: 0;
    position: relative;
    isolation: isolate;
}

.salon {
    min-height: 130vh;
}

.section-header {
    position: relative;
    z-index: 3;
    margin-bottom: 6vh;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.section.in-view .section-header,
section.in-view .section-header,
footer.in-view .section-header {
    opacity: 1;
    transform: translateY(0);
}

.section-marker {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(14px, 1.2vw, 18px);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gilt-thread);
    margin-bottom: 1.4vh;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(48px, 8vw, 140px);
    letter-spacing: -0.03em;
    line-height: 0.95;
    color: var(--cream-vellum);
    margin-bottom: 3vh;
    text-shadow: 0 0 30px rgba(168, 81, 107, 0.18);
}

.section-title .line {
    display: block;
}

.section-title .line--italic {
    font-style: italic;
    color: var(--dried-rose);
}

.section-title .ch {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.32, 0.6, 0.32, 1);
}

.section.in-view .section-title .ch,
section.in-view .section-title .ch,
footer.in-view .section-title .ch {
    opacity: 1;
    transform: translateY(0);
}

/* per-letter stagger using JS to set inline transition-delay,
   but provide a default cascade */
.section-title .ch:nth-child(2n)   { transition-delay: 0.18s; }
.section-title .ch:nth-child(3n)   { transition-delay: 0.27s; }
.section-title .ch:nth-child(5n)   { transition-delay: 0.4s; }
.section-title .ch:nth-child(7n)   { transition-delay: 0.55s; }

.section-subhead {
    font-family: var(--font-body);
    font-style: italic;
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.6;
    color: var(--cream-vellum);
    max-width: 680px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1s ease-out 0.5s, transform 1s ease-out 0.5s;
}

.section.in-view .section-subhead,
section.in-view .section-subhead,
footer.in-view .section-subhead {
    opacity: 0.9;
    transform: translateY(0);
}

/* Paragraphs / reveal */
.paragraph {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(18px, 1.4vw, 22px);
    line-height: 1.85;
    color: var(--cream-vellum);
    margin-bottom: 2.4vh;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.section.in-view .paragraph,
section.in-view .paragraph,
footer.in-view .paragraph {
    opacity: 0.94;
    transform: translateY(0);
}

/* stagger via JS will set inline delays; default per nth */
.paragraph:nth-of-type(1) { transition-delay: 0.1s; }
.paragraph:nth-of-type(2) { transition-delay: 0.4s; }
.paragraph:nth-of-type(3) { transition-delay: 0.7s; }
.paragraph:nth-of-type(4) { transition-delay: 1.0s; }
.paragraph:nth-of-type(5) { transition-delay: 1.3s; }
.paragraph:nth-of-type(6) { transition-delay: 1.6s; }

.paragraph em {
    font-style: italic;
    color: var(--dried-rose);
}

.dropcap {
    float: left;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(56px, 7vw, 90px);
    line-height: 0.85;
    color: var(--gilt-thread);
    padding: 6px 12px 0 0;
    margin-top: 6px;
}

/* Pull quotes */
.pullquote {
    margin: 5vh 0;
    padding: 3vh 0;
    border-top: 1px solid rgba(217, 185, 112, 0.35);
    border-bottom: 1px solid rgba(217, 185, 112, 0.35);
    position: relative;
    opacity: 0;
    transition: opacity 1s ease-out 0.5s;
}

.section.in-view .pullquote,
section.in-view .pullquote {
    opacity: 1;
}

.pullquote p {
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(24px, 2.6vw, 38px);
    line-height: 1.4;
    color: var(--cream-vellum);
    background-image: linear-gradient(transparent calc(100% - 2px), var(--gilt-thread) calc(100% - 2px));
    background-size: 0 100%;
    background-repeat: no-repeat;
    transition: background-size 1.4s cubic-bezier(0.32, 0.6, 0.32, 1) 0.8s;
}

.section.in-view .pullquote p,
section.in-view .pullquote p {
    background-size: 100% 100%;
}

.pullquote cite {
    display: block;
    margin-top: 1.6vh;
    font-family: var(--font-display);
    font-weight: 600;
    font-style: normal;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gilt-thread);
}

.pullquote:hover p {
    color: var(--gilt-thread);
    transition: color 0.4s ease-out;
}

/* =================================================================
   SALON
   ================================================================= */

.salon-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 6vw;
    align-items: start;
}

.salon-grid .section-header {
    grid-column: 1 / -1;
}

.salon-prose {
    position: relative;
    z-index: 3;
}

.salon-botanical {
    position: relative;
    z-index: 3;
    height: 80vh;
    max-height: 900px;
    transition: transform 0.6s ease-out;
}

.salon-botanical svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.salon-botanical:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 14px rgba(168, 81, 107, 0.4));
}

.salon-botanical .bot-path {
    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    transition: stroke-dashoffset 1.6s cubic-bezier(0.32, 0.6, 0.32, 1);
}

.section.in-view .salon-botanical .bot-path,
section.in-view .salon-botanical .bot-path {
    stroke-dashoffset: 0;
}

.salon-botanical .bot-path:nth-child(2n)  { transition-delay: 0.3s; }
.salon-botanical .bot-path:nth-child(3n)  { transition-delay: 0.45s; }
.salon-botanical .bot-path:nth-child(5n)  { transition-delay: 0.6s; }
.salon-botanical .bot-path:nth-child(7n)  { transition-delay: 0.8s; }

/* =================================================================
   FEATURE
   ================================================================= */

.feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 5vw;
    align-items: start;
}

.feature-grid--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
}

.feature-grid .section-header {
    grid-column: 1 / -1;
}

.feature-grid--reverse .section-header {
    grid-column: 1 / -1;
}

.feature-prose {
    position: relative;
    z-index: 3;
}

/* The feature illustration sits beside or wraps the prose */
.feature-illustration {
    position: relative;
    z-index: 3;
    height: 80vh;
    max-height: 900px;
    transition: transform 0.6s ease-out, filter 0.6s ease-out;
}

.feature-illustration svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.feature-illustration:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 18px rgba(168, 81, 107, 0.45));
}

.feature-illustration .bot-path {
    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    transition: stroke-dashoffset 1.8s cubic-bezier(0.32, 0.6, 0.32, 1);
}

.section.in-view .feature-illustration .bot-path,
section.in-view .feature-illustration .bot-path {
    stroke-dashoffset: 0;
}

.feature-illustration .bot-path:nth-child(odd) { transition-delay: 0.3s; }
.feature-illustration .bot-path:nth-child(2n)  { transition-delay: 0.45s; }
.feature-illustration .bot-path:nth-child(3n)  { transition-delay: 0.6s; }
.feature-illustration .bot-path:nth-child(5n)  { transition-delay: 0.85s; }
.feature-illustration .bot-path:nth-child(7n)  { transition-delay: 1.1s; }

/* feature--right -> illustration on the right; --reverse -> on the left */
.feature--right .feature-illustration--right {
    grid-column: 2;
    grid-row: 2;
}
.feature--right .feature-prose {
    grid-column: 1;
    grid-row: 2;
}
.feature--left .feature-illustration--left {
    grid-column: 1;
    grid-row: 2;
}
.feature--left .feature-prose {
    grid-column: 2;
    grid-row: 2;
}

/* shape-outside text wrap effect on first paragraph of features */
.feature-prose .paragraph.drop {
    /* The dropcap creates a small text-wrap. Combined with the illustration,
       it gives the impression of text flowing around curves. */
}

/* curves visually overlap the prose; allow them to with mix-blend */
.feature .ribbon-curve .curve {
    mix-blend-mode: screen;
}

/* =================================================================
   INTERLUDE
   ================================================================= */

.interlude {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    isolation: isolate;
}

.interlude-stage {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8vh 8vw;
    max-width: 1100px;
}

.interlude-flower {
    width: clamp(280px, 50vh, 600px);
    height: clamp(280px, 50vh, 600px);
    display: block;
    margin-bottom: 4vh;
    transition: transform 0.6s ease-out, filter 0.6s ease-out;
}

.interlude-flower:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 16px rgba(168, 81, 107, 0.45));
}

.interlude-flower .bot-path {
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    transition: stroke-dashoffset 1.8s cubic-bezier(0.32, 0.6, 0.32, 1);
}

.interlude.in-view .bot-path,
section.in-view .bot-path {
    stroke-dashoffset: 0;
}

.interlude-flower .bot-path:nth-child(2n)  { transition-delay: 0.2s; }
.interlude-flower .bot-path:nth-child(3n)  { transition-delay: 0.35s; }
.interlude-flower .bot-path:nth-child(5n)  { transition-delay: 0.55s; }
.interlude-flower .bot-path:nth-child(7n)  { transition-delay: 0.75s; }

.interlude-aphorism {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 1.2s ease-out 0.5s, transform 1.2s ease-out 0.5s;
    max-width: 660px;
}

.interlude.in-view .interlude-aphorism {
    opacity: 1;
    transform: translateY(0);
}

.interlude-aphorism p {
    font-family: var(--font-body);
    font-style: italic;
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.5;
    color: var(--cream-vellum);
    margin-bottom: 2vh;
}

.interlude-aphorism em {
    color: var(--dried-rose);
    font-weight: 500;
}

.interlude-rule {
    width: 240px;
    height: 14px;
    margin: 0 auto;
    display: block;
}

/* =================================================================
   VELVET FOOTER
   ================================================================= */

.velvet-footer {
    position: relative;
    min-height: 80vh;
    padding: 8vh 0 4vh;
    isolation: isolate;
    overflow: hidden;
}

.footer-gilt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: clamp(80px, 12vh, 160px);
    z-index: 2;
    pointer-events: none;
}

.footer-gilt .curve {
    stroke-dasharray: 3000;
    stroke-dashoffset: 3000;
    transition: stroke-dashoffset 2s cubic-bezier(0.32, 0.6, 0.32, 1);
}

.velvet-footer.in-view .footer-gilt .curve {
    stroke-dashoffset: 0;
}

.footer-inner {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    margin: 0 auto;
    padding: 14vh 8vw 4vh;
}

.footer-header {
    text-align: center;
    margin-bottom: 7vh;
}

.footer-wordmark {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(40px, 7vw, 100px);
    letter-spacing: -0.03em;
    color: var(--cream-vellum);
    line-height: 1;
    margin-bottom: 2vh;
}

.footer-wordmark .ch {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.32, 0.6, 0.32, 1);
}

.velvet-footer.in-view .footer-wordmark .ch {
    opacity: 1;
    transform: translateY(0);
}

.footer-wordmark .ch--tld {
    color: var(--dried-rose);
    font-style: italic;
    font-weight: 700;
}

.footer-tag {
    font-family: var(--font-body);
    font-style: italic;
    font-size: clamp(16px, 1.4vw, 20px);
    color: var(--cream-vellum);
    opacity: 0.85;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
    transition: opacity 1.2s ease-out 0.6s;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4vw;
    margin-bottom: 6vh;
}

.footer-col {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.velvet-footer.in-view .footer-col {
    opacity: 1;
    transform: translateY(0);
}

.footer-col:nth-child(1) { transition-delay: 0.4s; }
.footer-col:nth-child(2) { transition-delay: 0.6s; }
.footer-col:nth-child(3) { transition-delay: 0.8s; }

.footer-col-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(16px, 1.4vw, 20px);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gilt-thread);
    margin-bottom: 2vh;
    padding-bottom: 1vh;
    border-bottom: 1px solid rgba(217, 185, 112, 0.35);
}

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

.footer-list li {
    margin-bottom: 1.2vh;
}

.footer-list a {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.3vw, 19px);
    color: var(--cream-vellum);
    text-decoration: none;
    background-image: linear-gradient(transparent calc(100% - 1px), var(--dried-rose) calc(100% - 1px));
    background-size: 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.4s cubic-bezier(0.32, 0.6, 0.32, 1), color 0.3s ease-out;
}

.footer-list a:hover {
    background-size: 100% 100%;
    color: var(--gilt-thread);
}

.footer-rule {
    margin: 4vh auto;
    width: clamp(300px, 50vw, 600px);
}

.footer-rule svg {
    width: 100%;
    height: auto;
    display: block;
}

.footer-colophon {
    text-align: center;
    font-family: var(--font-body);
    font-style: italic;
    font-size: clamp(13px, 1vw, 15px);
    color: var(--cream-vellum);
    opacity: 0.7;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =================================================================
   RESPONSIVE
   ================================================================= */

@media (max-width: 960px) {
    .salon-grid,
    .feature-grid,
    .feature-grid--reverse {
        grid-template-columns: 1fr;
        gap: 4vh;
    }
    .feature--right .feature-illustration--right,
    .feature--right .feature-prose,
    .feature--left .feature-illustration--left,
    .feature--left .feature-prose {
        grid-column: 1;
        grid-row: auto;
    }
    .salon-botanical,
    .feature-illustration {
        height: 60vh;
        max-height: 600px;
    }
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 4vh;
    }
    .hero-botanical {
        opacity: 0.55;
        width: clamp(80px, 14vw, 200px);
    }
}

@media (max-width: 640px) {
    .section-inner {
        padding: 8vh 6vw 10vh;
    }
    .hero-wordmark {
        font-size: clamp(48px, 18vw, 120px);
    }
    .section-title {
        font-size: clamp(40px, 12vw, 90px);
    }
    .pullquote p {
        font-size: clamp(20px, 5vw, 28px);
    }
    .dropcap {
        font-size: clamp(44px, 12vw, 70px);
    }
}
