/* =====================================================================
   miris.one — Deep Burgundy Luxury, Layered Depth
   ===================================================================== */

/* ----- Reset & base ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(15px, 1.1vw, 18px);
    line-height: 1.75;
    color: #F0E0D8;
    background: #2A0A18;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* SVG defs hidden */
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ----- Persistent grain overlay ------------------------------------- */
.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9000;
    opacity: 0.05;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%' height='100%' filter='url(%23g)' opacity='0.85'/></svg>");
    background-size: 220px 220px;
}

/* ----- Site frame (depth perspective) ------------------------------- */
.site-frame {
    position: relative;
    perspective: 1200px;
    perspective-origin: 50% 30%;
    transform-style: preserve-3d;
}

/* ----- Top nav ------------------------------------------------------ */
.top-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px clamp(28px, 5vw, 64px);
    background: linear-gradient(180deg, rgba(26,6,16,0.85) 0%, rgba(26,6,16,0.4) 70%, rgba(26,6,16,0) 100%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.4s ease, padding 0.4s ease;
}
.top-nav.scrolled {
    padding: 14px clamp(28px, 5vw, 64px);
    background: rgba(26,6,16,0.92);
    box-shadow: 0 2px 28px rgba(0,0,0,0.45);
}
.brand-mark {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #C8A060;
    border-radius: 50%;
    color: #D4A090;
    font-family: 'Abril Fatface', serif;
    font-size: 18px;
    line-height: 1;
    box-shadow: 0 0 20px rgba(212,160,144,0.15);
}
.brand-glyph { position: relative; z-index: 1; transform: translateY(1px); }
.brand-pulse {
    position: absolute;
    top: 50%; left: 50%;
    width: 8px; height: 8px;
    margin: -4px 0 0 -4px;
    border-radius: 50%;
    background: #C8A060;
    opacity: 0.55;
    animation: brandPulse 3.6s ease-in-out infinite;
}
@keyframes brandPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(2.4); opacity: 0; }
}
.nav-links {
    display: flex;
    gap: clamp(16px, 2.4vw, 34px);
}
.nav-link {
    font-family: 'Josefin Sans', sans-serif;
    font-size: clamp(12px, 0.8vw, 14px);
    letter-spacing: 0.08em;
    text-transform: lowercase;
    color: #F0E0D8;
    opacity: 0.78;
    padding: 6px 2px;
    border-bottom: 1px solid transparent;
    transition: color 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
    display: inline-block;
}
.nav-link:hover {
    color: #D4A090;
    opacity: 1;
    border-bottom-color: rgba(200,160,96,0.55);
}
.nav-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #8A6070;
}
.meta-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #C8A060;
    box-shadow: 0 0 10px rgba(200,160,96,0.6);
    animation: brandPulse 3.6s ease-in-out infinite;
}

/* ----- Depth stage system ------------------------------------------- */
.depth-stage {
    position: relative;
    transform-style: preserve-3d;
    overflow: hidden;
}
.depth-layer { position: relative; }
.depth-back {
    position: absolute;
    inset: 0;
    transform: translateZ(-100px) scale(1.08);
    z-index: 1;
    pointer-events: none;
}
.depth-mid {
    position: relative;
    transform: translateZ(-30px) scale(1.025);
    z-index: 2;
}
.depth-front {
    position: relative;
    transform: translateZ(0);
    z-index: 3;
}

/* ----- Hero stage --------------------------------------------------- */
.hero-stage {
    min-height: 100vh;
    padding: 140px clamp(28px, 5vw, 80px) 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-back .vine-art {
    position: absolute;
    top: 0;
    height: 100%;
    width: 220px;
    opacity: 0.55;
}
.hero-back .vine-left { left: -20px; }
.hero-back .vine-right { right: -20px; }
.back-wash {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(74,24,40,0.55) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(26,6,16,0.7) 0%, transparent 70%),
        linear-gradient(180deg, #2A0A18 0%, #1A0610 100%);
}
.back-wash.subtle { opacity: 0.55; }
.back-wash.gradient {
    background:
        radial-gradient(ellipse at 70% 20%, rgba(74,24,40,0.6) 0%, transparent 65%),
        linear-gradient(180deg, #2A0A18 0%, #200714 100%);
}
.back-wash.gradient.soft {
    background:
        radial-gradient(ellipse at 30% 40%, rgba(212,160,144,0.07) 0%, transparent 60%),
        linear-gradient(180deg, #200714 0%, #2A0A18 100%);
}

/* Hero midground panels */
.hero-mid {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
}
.mid-panel {
    pointer-events: auto;
    position: relative;
    max-width: 360px;
    margin-right: clamp(20px, 6vw, 100px);
    padding: 28px 30px;
    background: rgba(74,24,40,0.55);
    border: 1px solid rgba(200,160,96,0.18);
    border-radius: 2px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 30px rgba(212,160,144,0.06);
    overflow: hidden;
}
.mid-panel-a { transform: translateY(60px); }
.panel-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.07;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%' height='100%' filter='url(%23g)'/></svg>");
}
.panel-eyebrow {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #C8A060;
    margin-bottom: 14px;
}
.panel-body {
    font-size: clamp(14px, 1vw, 16px);
    line-height: 1.7;
    color: #F0E0D8;
}
.panel-rule {
    height: 1px;
    margin: 18px 0 14px;
    background: linear-gradient(90deg, rgba(200,160,96,0.45), transparent);
}
.panel-foot {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #8A6070;
}
.mid-glass {
    position: absolute;
    border: 1px solid rgba(200,160,96,0.12);
    background: rgba(26,6,16,0.35);
    border-radius: 2px;
    pointer-events: none;
}
.mid-glass-a {
    width: 240px; height: 320px;
    top: 18%; left: 8%;
    transform: rotate(-4deg);
}
.mid-glass-b {
    width: 180px; height: 220px;
    bottom: 12%; left: 22%;
    transform: rotate(3deg);
    background: rgba(74,24,40,0.25);
}

/* Hero foreground (logotype) */
.hero-front {
    pointer-events: none;
    display: flex;
    align-items: center;
}
.logotype-cluster {
    pointer-events: auto;
    position: absolute;
    left: clamp(28px, 6vw, 100px);
    top: 50%;
    transform: translateY(-50%);
    max-width: 60vw;
}
.hero-eyebrow {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C8A060;
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(8px);
    animation: heroFade 1s ease 0.4s forwards;
}
.logotype {
    font-family: 'Abril Fatface', serif;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 400;
    line-height: 1;
    color: #F0E0D8;
    letter-spacing: -0.02em;
    text-shadow: 0 0 40px rgba(212,160,144,0.18), 0 0 80px rgba(212,160,144,0.08);
    opacity: 0;
    transform: translateY(14px);
    animation: heroFade 1.2s ease 0.6s forwards;
}
.logo-word { color: #F0E0D8; }
.logo-dot { color: #D4A090; }
.logo-tld { color: #C8A060; font-style: italic; }
.hero-tag {
    margin-top: 18px;
    max-width: 460px;
    font-style: italic;
    color: #F0E0D8;
    opacity: 0;
    transform: translateY(8px);
    animation: heroFade 1s ease 1s forwards;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
    opacity: 0;
    transform: translateY(8px);
    animation: heroFade 1s ease 1.2s forwards;
}
@keyframes heroFade {
    to { opacity: 1; transform: translateY(0); }
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 26px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: 2px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    will-change: transform;
}
.hero-btn.primary {
    background: linear-gradient(180deg, #C8A060 0%, #B08B50 100%);
    color: #1A0610;
    box-shadow: 0 0 24px rgba(200,160,96,0.22), 0 12px 26px rgba(0,0,0,0.4);
}
.hero-btn.primary:hover {
    background: linear-gradient(180deg, #D4A090 0%, #C8A060 100%);
    box-shadow: 0 0 30px rgba(212,160,144,0.35), 0 12px 26px rgba(0,0,0,0.5);
}
.hero-btn.ghost {
    background: rgba(74,24,40,0.4);
    color: #F0E0D8;
    border-color: rgba(200,160,96,0.4);
}
.hero-btn.ghost:hover {
    background: rgba(74,24,40,0.7);
    border-color: rgba(200,160,96,0.7);
    color: #D4A090;
}
.btn-arrow { transition: transform 0.3s ease; }
.hero-btn:hover .btn-arrow { transform: translateX(4px); }

.ornament {
    pointer-events: none;
    position: absolute;
    top: 22%;
    right: clamp(40px, 8vw, 140px);
    width: 80px;
    height: 80px;
    opacity: 0.7;
    animation: orbitDrift 14s ease-in-out infinite;
}
@keyframes orbitDrift {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(14px) rotate(8deg); }
}

.hero-footer {
    position: absolute;
    bottom: 32px;
    left: 0; right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    z-index: 5;
}
.footer-line {
    width: clamp(40px, 10vw, 120px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,160,96,0.5), transparent);
}
.footer-text {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #8A6070;
}

/* ----- Section stage (generic) -------------------------------------- */
.section-stage {
    min-height: 100vh;
    padding: clamp(80px, 12vh, 160px) clamp(28px, 5vw, 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.section-header {
    margin-bottom: 56px;
    max-width: 720px;
}
.section-header.right {
    margin-left: auto;
    text-align: right;
}
.section-num {
    font-family: 'Abril Fatface', serif;
    font-size: clamp(22px, 2vw, 28px);
    color: #C8A060;
    font-style: italic;
    margin-bottom: 8px;
}
.section-title {
    font-family: 'Abril Fatface', serif;
    font-size: clamp(36px, 6vw, 80px);
    font-weight: 400;
    line-height: 1.05;
    color: #F0E0D8;
    letter-spacing: -0.01em;
    margin-bottom: 18px;
    text-shadow: 0 0 30px rgba(212,160,144,0.12);
}
.section-sub {
    font-style: italic;
    color: #F0E0D8;
    opacity: 0.85;
    max-width: 560px;
}
.section-header.right .section-sub { margin-left: auto; }

/* Leaf art absolute positioning */
.leaf-art { position: absolute; opacity: 0.45; }
.leaf-tl { top: 4%; left: 2%; width: 240px; }
.leaf-br { bottom: 4%; right: 2%; width: 280px; }
.leaf-bl { bottom: 4%; left: 2%; width: 260px; }
.vine-center {
    position: absolute;
    bottom: 8%;
    left: 0;
    width: 100%;
    height: 200px;
    opacity: 0.5;
}

/* Glass panels */
.glass-panel {
    position: relative;
    background: rgba(74,24,40,0.5);
    border: 1px solid rgba(200,160,96,0.18);
    border-radius: 2px;
    padding: clamp(32px, 4vw, 56px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.45), inset 0 0 60px rgba(26,6,16,0.4);
    overflow: hidden;
}
.circle-panel { max-width: 1120px; margin: 0 auto; }
.panel-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 72px);
}
.panel-col { position: relative; }
.col-eyebrow {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #C8A060;
    margin-bottom: 18px;
}
.col-body { color: #F0E0D8; opacity: 0.92; }
.circle-list { display: flex; flex-direction: column; gap: 14px; }
.circle-list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    color: #F0E0D8;
    opacity: 0.9;
}
.li-num {
    font-family: 'Abril Fatface', serif;
    font-style: italic;
    color: #D4A090;
}
.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border: 1px solid rgba(200,160,96,0.35);
    border-radius: 40px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #F0E0D8;
    background: rgba(26,6,16,0.4);
}
.badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #C8A060;
}

/* Float quote / aside */
.float-quote {
    position: absolute;
    bottom: 8%;
    right: clamp(28px, 5vw, 80px);
    max-width: 320px;
    text-align: right;
    pointer-events: none;
}
.quote-mark {
    font-family: 'Abril Fatface', serif;
    font-size: 64px;
    color: #C8A060;
    line-height: 0.6;
    display: block;
}
.quote-text {
    font-style: italic;
    color: #F0E0D8;
    opacity: 0.85;
    margin: 6px 0 8px;
}
.quote-cite {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8A6070;
}

.float-aside {
    position: absolute;
    top: 14%;
    right: clamp(28px, 5vw, 80px);
    max-width: 280px;
    pointer-events: none;
    text-align: right;
}
.aside-mark {
    font-family: 'Abril Fatface', serif;
    font-size: 36px;
    color: #C8A060;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}
.aside-text {
    font-style: italic;
    color: #F0E0D8;
    opacity: 0.82;
}

/* ----- Works grid --------------------------------------------------- */
.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(20px, 2.4vw, 32px);
    max-width: 1160px;
    margin: 0 auto;
}
.work-card {
    position: relative;
    background: rgba(74,24,40,0.55);
    border: 1px solid rgba(200,160,96,0.18);
    border-radius: 2px;
    padding: 32px 28px 28px;
    box-shadow: 0 18px 44px rgba(0,0,0,0.45), 0 0 28px rgba(212,160,144,0.05);
    overflow: hidden;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    will-change: transform;
}
.work-card:hover {
    border-color: rgba(200,160,96,0.45);
    box-shadow: 0 22px 56px rgba(0,0,0,0.55), 0 0 36px rgba(212,160,144,0.18);
}
.card-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.06;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%' height='100%' filter='url(%23g)'/></svg>");
}
.card-frame { position: relative; }
.card-tag {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #C8A060;
    margin-bottom: 14px;
}
.card-title {
    font-family: 'Abril Fatface', serif;
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 400;
    line-height: 1.1;
    color: #F0E0D8;
    margin-bottom: 8px;
}
.card-genre {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: lowercase;
    color: #D4A090;
    margin-bottom: 14px;
}
.card-body {
    color: #F0E0D8;
    opacity: 0.86;
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.7;
}
.card-meta {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 8px;
    padding: 6px 0;
    border-top: 1px solid rgba(200,160,96,0.12);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.meta-key { color: #8A6070; }
.meta-val { color: #F0E0D8; opacity: 0.92; }

.works-marker {
    position: absolute;
    bottom: 8%;
    left: clamp(28px, 5vw, 80px);
    pointer-events: none;
    display: flex;
    align-items: baseline;
    gap: 14px;
}
.marker-num {
    font-family: 'Abril Fatface', serif;
    font-size: clamp(60px, 8vw, 110px);
    color: #4A1828;
    line-height: 1;
    opacity: 0.5;
}
.marker-text {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #8A6070;
}

/* ----- Process trail ------------------------------------------------ */
.process-trail {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 820px;
    margin: 0 auto;
    padding: clamp(20px, 3vw, 40px);
    background: rgba(74,24,40,0.4);
    border: 1px solid rgba(200,160,96,0.15);
    border-radius: 2px;
}
.trail-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(200,160,96,0.12);
}
.trail-step:last-child { border-bottom: none; padding-bottom: 0; }
.trail-step:first-child { padding-top: 0; }
.step-num {
    font-family: 'Abril Fatface', serif;
    font-style: italic;
    font-size: clamp(22px, 2vw, 30px);
    color: #C8A060;
    line-height: 1;
}
.step-title {
    font-family: 'Abril Fatface', serif;
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 400;
    color: #F0E0D8;
    margin-bottom: 6px;
}
.step-text {
    color: #F0E0D8;
    opacity: 0.88;
}

/* ----- Salon shelf -------------------------------------------------- */
.salon-shelf {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(20px, 2.4vw, 32px);
    max-width: 1160px;
    margin: 0 auto;
}
.letter-card {
    position: relative;
    padding: 30px 28px;
    background: rgba(26,6,16,0.55);
    border: 1px solid rgba(200,160,96,0.18);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    will-change: transform;
}
.letter-card:hover {
    border-color: rgba(200,160,96,0.4);
    box-shadow: 0 18px 48px rgba(0,0,0,0.55), 0 0 30px rgba(212,160,144,0.12);
}
.letter-date {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #C8A060;
    margin-bottom: 14px;
}
.letter-title {
    font-family: 'Abril Fatface', serif;
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 400;
    color: #F0E0D8;
    margin-bottom: 12px;
    line-height: 1.15;
}
.letter-body {
    color: #F0E0D8;
    opacity: 0.86;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 16px;
}
.letter-sign {
    font-family: 'Abril Fatface', serif;
    font-style: italic;
    color: #D4A090;
    text-align: right;
}

.salon-seal {
    position: absolute;
    top: 12%;
    right: clamp(28px, 5vw, 80px);
    width: 100px;
    height: 100px;
    pointer-events: none;
    opacity: 0.7;
    animation: orbitDrift 14s ease-in-out infinite;
}

/* ----- Contact ------------------------------------------------------ */
.contact-stage { padding-bottom: clamp(120px, 18vh, 200px); }
.contact-panel {
    max-width: 760px;
    margin: 0 auto;
}
.contact-eyebrow {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C8A060;
    margin-bottom: 16px;
}
.contact-title {
    font-family: 'Abril Fatface', serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 400;
    line-height: 1.1;
    color: #F0E0D8;
    margin-bottom: 18px;
    text-shadow: 0 0 30px rgba(212,160,144,0.15);
}
.contact-body {
    color: #F0E0D8;
    opacity: 0.9;
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.8;
}
.contact-rows { display: flex; flex-direction: column; gap: 10px; }
.contact-row {
    display: grid;
    grid-template-columns: 80px 1fr 24px;
    align-items: center;
    gap: 18px;
    padding: 16px 18px;
    border: 1px solid rgba(200,160,96,0.18);
    background: rgba(26,6,16,0.45);
    border-radius: 2px;
    transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease;
    will-change: transform;
}
.contact-row:hover {
    background: rgba(74,24,40,0.55);
    border-color: rgba(200,160,96,0.5);
    color: #D4A090;
}
.row-key {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C8A060;
}
.row-val {
    font-family: 'Lora', serif;
    color: #F0E0D8;
}
.row-arrow {
    font-family: 'Abril Fatface', serif;
    font-size: 18px;
    color: #D4A090;
    text-align: right;
    transition: transform 0.3s ease;
}
.contact-row:hover .row-arrow { transform: translateX(4px); }

.contact-flourish {
    position: absolute;
    bottom: 8%;
    left: 0; right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}
.flourish-line {
    width: clamp(40px, 14vw, 180px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,160,96,0.55), transparent);
}
.flourish-glyph {
    font-family: 'Abril Fatface', serif;
    font-size: 22px;
    color: #C8A060;
}

/* ----- Footer ------------------------------------------------------- */
.site-foot {
    position: relative;
    padding: 80px clamp(28px, 5vw, 80px) 36px;
    background: linear-gradient(180deg, #1A0610 0%, #0F040A 100%);
    border-top: 1px solid rgba(200,160,96,0.15);
}
.foot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 36px;
    max-width: 1280px;
    margin: 0 auto 40px;
}
.foot-col p { font-size: 14px; line-height: 1.65; }
.foot-mark {
    font-family: 'Abril Fatface', serif;
    font-size: 28px;
    color: #F0E0D8;
    margin-bottom: 10px;
}
.foot-dot { color: #D4A090; }
.foot-blurb { color: #F0E0D8; opacity: 0.78; font-style: italic; }
.foot-blurb.small { font-size: 13px; opacity: 0.7; }
.foot-eyebrow {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C8A060;
    margin-bottom: 14px;
}
.foot-links { display: flex; flex-direction: column; gap: 8px; }
.foot-link {
    color: #F0E0D8;
    opacity: 0.78;
    font-size: 14px;
    transition: color 0.3s ease, opacity 0.3s ease;
}
.foot-link:hover { color: #D4A090; opacity: 1; }
.foot-base {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(200,160,96,0.12);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #8A6070;
}
.foot-pulse { display: inline-flex; align-items: center; gap: 8px; }
.pulse-dot {
    width: 7px; height: 7px;
    background: #C8A060;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(200,160,96,0.6);
    animation: brandPulse 3.6s ease-in-out infinite;
}

/* ----- Cursor companion -------------------------------------------- */
.cursor-companion {
    position: fixed;
    top: 0; left: 0;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: rgba(212,160,144,0.45);
    box-shadow: 0 0 18px rgba(212,160,144,0.4);
    pointer-events: none;
    z-index: 9500;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, opacity 0.3s ease, background 0.3s ease;
    opacity: 0;
}
.cursor-companion.is-visible { opacity: 1; }
.cursor-companion.is-active {
    background: rgba(200,160,96,0.6);
    transform: translate(-50%, -50%) scale(2.2);
}

/* ----- Reveal animations -------------------------------------------- */
.depth-stage .depth-back,
.depth-stage .depth-mid,
.depth-stage .depth-front {
    opacity: 0;
    transition: opacity 1.2s ease, transform 1.2s ease;
}
.hero-stage .depth-back,
.hero-stage .depth-mid,
.hero-stage .depth-front {
    opacity: 1;
}
.depth-stage.is-visible .depth-back { opacity: 1; transition-delay: 0s; }
.depth-stage.is-visible .depth-mid { opacity: 1; transition-delay: 0.2s; }
.depth-stage.is-visible .depth-front { opacity: 1; transition-delay: 0.4s; }

/* ----- Magnetic transition support --------------------------------- */
.magnetic {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                color 0.3s ease,
                background 0.3s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease;
}

/* ----- Responsive --------------------------------------------------- */
@media (max-width: 880px) {
    .nav-links { display: none; }
    .nav-meta { display: none; }
    .hero-mid { display: none; }
    .ornament { display: none; }
    .panel-row { grid-template-columns: 1fr; }
    .float-quote, .float-aside, .salon-seal { display: none; }
    .logotype-cluster { max-width: 100%; right: auto; }
    .leaf-art { opacity: 0.25; }
    .contact-row { grid-template-columns: 70px 1fr 20px; gap: 12px; padding: 14px; }
    .cursor-companion { display: none; }
}
@media (max-width: 560px) {
    .top-nav { padding: 16px 20px; }
    .hero-stage { padding: 110px 20px 60px; }
    .section-stage { padding: 70px 20px; }
    .glass-panel { padding: 26px 22px; }
    .work-card, .letter-card { padding: 24px 20px; }
    .trail-step { grid-template-columns: 40px 1fr; gap: 12px; }
    .foot-base { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
    .magnetic { transform: none !important; }
}
