/* ================================================================
   KEMI KING — INDEX.CSS
   Luxury editorial design system. Aman / The Row standard.
   Self-contained: does not depend on universal.css
   ================================================================ */

/* ── TOKENS ───────────────────────────────────────────────────── */
:root {
    --cream:        #fffdf9;
    --cream-deep:   #f7f0e6;
    --cream-mid:    #f0e8dc;
    --espresso:     #1e1916;
    --espresso-mid: #2d2520;
    --muted:        #7a6e64;
    --muted-light:  #b0a49a;
    --gold:         #c19a6b;
    --gold-dark:    #a07845;
    --border:       rgba(193,154,107,.18);
    --border-soft:  rgba(193,154,107,.10);
  
    --font-serif:   "Cormorant Garamond", Georgia, serif;
    --font-sans:    "Montserrat", sans-serif;
  
    --ease-out:     cubic-bezier(.22,.68,0,1.2);
    --ease-smooth:  cubic-bezier(.4,0,.2,1);
  
    --nav-h:        72px;
    --inner-w:      1200px;
    --pad-x:        clamp(1.5rem, 6vw, 6rem);
  }
  
  /* ── RESET ────────────────────────────────────────────────────── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  
  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
  
  body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--espresso);
    line-height: 1.6;
    cursor: none;
    overflow-x: hidden;
  }
  
  img { display: block; max-width: 100%; }
  a   { color: inherit; text-decoration: none; }
  ul  { list-style: none; }
  
  /* ── GRAIN TEXTURE OVERLAY ────────────────────────────────────── */
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: .025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px;
  }
  
  /* ── CUSTOM CURSOR ────────────────────────────────────────────── */
  .cursor {
    position: fixed;
    top: 0; left: 0;
    width: 36px; height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: width .25s var(--ease-smooth), height .25s var(--ease-smooth),
                border-color .25s ease, background .25s ease;
    will-change: transform;
  }
  .cursor.is-hovering {
    width: 52px; height: 52px;
    background: rgba(193,154,107,.08);
    border-color: rgba(193,154,107,.6);
  }
  .cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    will-change: transform;
  }
  
  /* ── SCROLL REVEAL ────────────────────────────────────────────── */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .85s var(--ease-smooth), transform .85s var(--ease-smooth);
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .journal-card:nth-child(2).reveal { transition-delay: .1s; }
  .journal-card:nth-child(3).reveal { transition-delay: .2s; }
  .pillar-card:nth-child(2).reveal  { transition-delay: .08s; }
  .pillar-card:nth-child(3).reveal  { transition-delay: .16s; }
  .pillar-card:nth-child(4).reveal  { transition-delay: .24s; }
  
  /* ── LAYOUT UTILITIES ─────────────────────────────────────────── */
  .inner {
    max-width: var(--inner-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
  }
  
  .section-pad { padding: 6rem 0; }
  
  .kicker {
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .75rem;
  }
  .kicker--gold { color: var(--gold); }
  
  .section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: .01em;
    color: var(--espresso);
  }
  .section-title em { font-style: italic; color: var(--gold-dark); }
  
  .section-sub {
    font-size: .92rem;
    color: var(--muted);
    max-width: 36rem;
    line-height: 1.8;
    margin-top: .75rem;
  }
  
  .section-header { margin-bottom: 3.5rem; }
  .section-header--centered { text-align: center; }
  .section-header--centered .section-sub { margin: .75rem auto 0; }
  
  .rule-ornament {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: 1.8rem;
  }
  .rule-ornament span {
    flex: 1;
    height: 1px;
    background: var(--border);
  }
  .rule-ornament i {
    font-style: normal;
    font-size: .7rem;
    color: var(--gold);
  }
  
  .text-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold-dark);
    transition: gap .2s ease, color .2s ease;
  }
  .text-link:hover { gap: .65rem; color: var(--espresso); }
  
  /* ── BUTTONS ──────────────────────────────────────────────────── */
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    padding: .9rem 2rem;
    border-radius: 0;
    background: var(--espresso);
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    border: 1px solid var(--espresso);
    transition: background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
    cursor: none;
  }
  .btn-primary:hover {
    background: var(--espresso-mid);
    box-shadow: 0 12px 38px rgba(30,25,22,.22);
  }
  .btn-primary:hover svg { transform: translateX(4px); }
  .btn-primary svg { transition: transform .22s var(--ease-smooth); }
  .btn-primary--dark {
    background: var(--cream);
    color: var(--espresso);
    border-color: var(--cream);
  }
  .btn-primary--dark:hover {
    background: var(--cream-deep);
    box-shadow: 0 12px 38px rgba(255,255,255,.12);
  }
  
  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .9rem 2rem;
    border-radius: 0;
    background: transparent;
    color: var(--espresso);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    border: 1px solid var(--border);
    transition: border-color .2s ease, background .2s ease;
    cursor: none;
  }
  .btn-ghost:hover { border-color: var(--gold); background: rgba(193,154,107,.04); }
  
  
  /* ================================================================
     NAVIGATION
     ================================================================ */
  .nav-wrap {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    transition: background .3s ease, box-shadow .3s ease;
  }
  .nav-wrap.is-scrolled {
    background: rgba(255,251,245,.72);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    box-shadow: 0 1px 0 rgba(193,154,107,.12);
  }
  
  .nav {
    max-width: var(--inner-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  /* Logo */
  .nav__logo {
    display: flex;
    align-items: center;
    gap: .9rem;
    text-decoration: none;
  }
  .nav__logo-name {
    font-family: var(--font-sans);
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--espresso);
    white-space: nowrap;
  }
  .nav__logo-rule {
    width: 1px;
    height: 20px;
    background: var(--border);
    flex-shrink: 0;
  }
  .nav__logo-sub {
    font-family: var(--font-serif);
    font-size: .82rem;
    font-style: italic;
    color: var(--muted);
    white-space: nowrap;
  }
  
  /* Nav list — breathable, minimal */
  .nav__list {
    display: flex;
    align-items: center;
    gap: .15rem;
  }
  .nav__link {
    padding: .5rem 1rem;
    font-size: .72rem;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    position: relative;
    transition: color .18s ease;
  }
  .nav__link::after {
    content: "";
    position: absolute;
    bottom: .3rem; left: 1rem; right: 1rem;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s var(--ease-smooth);
  }
  .nav__link:hover { color: var(--espresso); }
  .nav__link:hover::after { transform: scaleX(1); }
  
  /* CTA — no pill, just a refined border */
  .nav__cta {
    margin-left: 1.5rem;
    padding: .5rem 1.4rem;
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--espresso);
    border: 1px solid var(--espresso);
    transition: background .18s ease, color .18s ease;
  }
  .nav__cta:hover { background: var(--espresso); color: var(--cream); }
  
  /* Hamburger */
  .nav__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: none;
    padding: 8px;
  }
  .nav__toggle-line {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--espresso);
    transition: transform .2s ease, opacity .2s ease;
  }
  
  /* Mobile menu */
  .nav-mobile {
    background: var(--cream);
    border-top: 1px solid var(--border-soft);
    padding: 1.5rem var(--pad-x) 2rem;
    display: flex;
    flex-direction: column;
    gap: .25rem;
  }
  .nav-mobile[hidden] { display: none; }
  .nav-mobile ul { display: flex; flex-direction: column; gap: .15rem; }
  .nav-mobile a {
    display: block;
    padding: .65rem 0;
    font-size: .8rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    border-bottom: 1px solid var(--border-soft);
    transition: color .18s ease;
  }
  .nav-mobile a:hover { color: var(--espresso); }
  .nav-mobile .nav__cta {
    margin: .75rem 0 0;
    display: inline-block;
    border: 1px solid var(--espresso);
    text-align: center;
    padding: .65rem 1.4rem;
  }
  
  
  /* ================================================================
     HERO
     ================================================================ */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100svh;
    padding-top: var(--nav-h);
  }
  
  .hero__left {
    display: flex;
    align-items: center;
    background: var(--cream);
    padding: 5rem var(--pad-x) 5rem calc(var(--pad-x) * 1.2);
  }
  
  .hero__content { max-width: 38rem; }
  
  .hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: .005em;
    margin: .5rem 0 1.4rem;
    color: var(--espresso);
  }
  .hero__headline em { font-style: italic; color: var(--gold-dark); }
  
  .hero__body {
    font-size: .96rem;
    color: var(--muted);
    line-height: 1.85;
    max-width: 30rem;
    margin-bottom: 2.2rem;
  }
  
  .hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 2.8rem;
  }
  
  /* Social proof strip */
  .hero__proof {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    padding-top: 1.8rem;
    border-top: 1px solid var(--border-soft);
  }
  .hero__proof-item { display: flex; flex-direction: column; gap: .2rem; }
  .hero__proof-num {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--espresso);
    line-height: 1;
  }
  .hero__proof-label {
    font-size: .64rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted-light);
    white-space: nowrap;
  }
  .hero__proof-div {
    width: 1px;
    height: 28px;
    background: var(--border);
    flex-shrink: 0;
  }
  
  /* Hero image panel */
  .hero__right {
    position: relative;
    overflow: hidden;
    background: var(--cream-deep);
  }
  
  .hero__image-wrap {
    position: absolute;
    inset: 0;
  }
  
  .hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
    display: block;
    filter: saturate(.95) brightness(1.01);
  }
  
  /* Thin vertical ornament strip at bottom */
  .hero__ornament {
    position: absolute;
    bottom: 2.4rem;
    left: 0; right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .9rem;
    z-index: 2;
  }
  .hero__ornament span {
    font-size: .6rem;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,253,249,.75);
  }
  .orn-dot {
    font-size: .5rem !important;
    color: rgba(193,154,107,.8) !important;
    letter-spacing: 0 !important;
  }
  
  
  /* ================================================================
     MARQUEE
     ================================================================ */
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  
  .marquee-wrap {
    overflow: hidden;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    background: var(--cream-deep);
    padding: .9rem 0;
  }
  .marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
  }
  .marquee-item {
    font-size: .64rem;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0 2rem;
  }
  .marquee-sep {
    font-size: .55rem;
    color: var(--gold);
    flex-shrink: 0;
  }
  
  
  /* ================================================================
     PHILOSOPHY
     ================================================================ */
  .philosophy { background: var(--cream); }
  
  .philosophy__inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: flex-start;
  }
  
  .philosophy__left { padding-top: .5rem; }
  .philosophy__left .section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); }
  
  .philosophy__right p {
    font-size: .94rem;
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 1rem;
  }
  .philosophy__lead {
    font-family: var(--font-serif);
    font-size: 1.22rem !important;
    font-style: italic;
    color: var(--espresso) !important;
    margin-bottom: 1.3rem !important;
    line-height: 1.65 !important;
  }
  .philosophy__right .text-link { margin-top: .6rem; }
  
  
  /* ================================================================
     PILLARS — editorial full-bleed rows
     ================================================================ */
  .pillars { background: var(--cream-deep); }
  
  .pillars__header {
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
  }
  
  .pillars__band {
    display: flex;
    flex-direction: column;
  }
  
  /* Each pillar is a full-width clickable row */
  .pillar-row {
    display: grid;
    grid-template-columns: 10rem 1fr auto;
    align-items: center;
    gap: 3rem;
    padding: 2.4rem var(--pad-x);
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: var(--espresso);
    background: var(--cream-deep);
    position: relative;
    overflow: hidden;
    transition: background .3s ease;
    max-width: 100%;
  }
  .pillar-row:last-child { border-bottom: none; }
  
  /* Alternating warm background */
  .pillar-row--alt { background: var(--cream); }
  
  /* Gold left-edge accent on hover */
  .pillar-row::before {
    content: "";
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 3px;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .35s var(--ease-smooth);
  }
  .pillar-row:hover::before { transform: scaleY(1); }
  .pillar-row:hover { background: rgba(255,251,245,.9); }
  .pillar-row--alt:hover { background: rgba(255,253,249,.9); }
  
  /* Ghost number — large, decorative */
  .pillar-row__num {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 5vw, 5.5rem);
    font-weight: 300;
    color: #D4849A;
    line-height: 1;
    text-align: right;
    flex-shrink: 0;
    transition: color .3s ease;
  }
  .pillar-row:hover .pillar-row__num {
    color: var(--gold);
  }
  
  /* Content block */
  .pillar-row__content {
    display: flex;
    flex-direction: column;
    gap: .5rem;
  }
  
  .pillar-row__title {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2.2vw, 1.75rem);
    font-weight: 400;
    color: var(--espresso);
    transition: color .2s ease;
  }
  .pillar-row:hover .pillar-row__title { color: var(--gold-dark); }
  
  .pillar-row__body {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 44rem;
  }
  
  /* CTA — appears on hover */
  .pillar-row__cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .68rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .25s ease, transform .25s ease, color .2s ease;
    flex-shrink: 0;
  }
  .pillar-row__cta svg {
    transition: transform .22s var(--ease-smooth);
  }
  .pillar-row:hover .pillar-row__cta {
    opacity: 1;
    transform: translateX(0);
  }
  .pillar-row:hover .pillar-row__cta svg {
    transform: translateX(4px);
  }
  
  /* Pillar responsive */
  @media (max-width: 960px) {
    .pillar-row {
      grid-template-columns: 6rem 1fr;
      gap: 1.6rem;
      padding: 2rem var(--pad-x);
    }
    .pillar-row__cta { display: none; }
    .pillar-row__num { font-size: 3rem; text-align: left; }
  }
  
  @media (max-width: 540px) {
    .pillar-row {
      grid-template-columns: 4rem 1fr;
      gap: 1.2rem;
      padding: 1.6rem var(--pad-x);
    }
    .pillar-row__num { font-size: 2.2rem; }
    .pillar-row__title { font-size: 1.1rem; }
  }
  
  
  /* ================================================================
     JOURNAL
     ================================================================ */
  .journal { background: var(--cream); }
  
  .journal__grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 2.4rem;
    align-items: stretch;
  }
  
  .journal-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-soft);
    transition: box-shadow .25s ease;
  }
  .journal-card:hover { box-shadow: 0 18px 48px rgba(30,25,22,.07); }
  
  .journal-card__image-link { display: block; overflow: hidden; }
  .journal-card__image {
    overflow: hidden;
    aspect-ratio: 4 / 3;
  }
  .journal-card--featured .journal-card__image { aspect-ratio: 4 / 3.2; }
  
  .journal-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s var(--ease-smooth);
  }
  .journal-card:hover .journal-card__image img { transform: scale(1.04); }
  
  .journal-card__body {
    padding: 1.5rem 1.6rem 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .journal-card__meta {
    font-size: .64rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted-light);
    margin-bottom: .6rem;
  }
  .journal-card__title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: .6rem;
  }
  .journal-card--featured .journal-card__title { font-size: 1.45rem; }
  .journal-card__title a { color: var(--espresso); transition: color .18s ease; }
  .journal-card__title a:hover { color: var(--gold-dark); }
  .journal-card__excerpt {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 1rem;
  }
  .journal__footer {
    margin-top: 2.8rem;
    text-align: center;
  }
  
  
  /* ================================================================
     PRIVATE WORK — full-bleed portrait + glass testimonial
     ================================================================ */
  .private-work {
    position: relative;
    overflow: hidden;
    color: var(--cream);
    padding: 7rem 0;
  }
  
  /* Portrait fills entire section as background */
  .private-work__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  .private-work__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% 15%;
    display: block;
  }
  /* Deep, warm overlay so text is readable without killing the photo */
  .private-work__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      105deg,
      rgba(20,15,12,.88) 0%,
      rgba(20,15,12,.72) 45%,
      rgba(20,15,12,.42) 100%
    );
  }
  
  .private-work__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--inner-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
  }
  
  /* Left text column */
  .private-work__text .kicker    { color: var(--gold); }
  .private-work__text .section-title { color: var(--cream); }
  .private-work__text .section-title em { color: var(--gold); }
  
  .private-work__text p {
    font-size: .94rem;
    color: rgba(255,253,249,.65);
    line-height: 1.9;
    margin: 1.4rem 0 0;
    max-width: 32rem;
  }
  
  /* Kemi's own quote — left-border pull quote */
  .private-work__kemi-quote {
    padding: 1.2rem 0 1.2rem 1.4rem;
    border-left: 2px solid var(--gold);
    margin: 1.8rem 0 2rem;
  }
  .private-work__kemi-quote blockquote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.15rem;
    color: rgba(247,240,230,.82);
    line-height: 1.65;
  }
  
  /* Right column — glass card centred */
  .private-work__glass-side {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* ── GLASSMORPHISM TESTIMONIAL CARD ──────────────────────────── */
  .testimonial-glass {
    position: relative;
    width: 100%;
    max-width: 420px;
  
    /* The glass effect — requires a rich visual behind it */
    background: rgba(255, 251, 245, 0.10);
    backdrop-filter: blur(28px) saturate(160%) brightness(1.08);
    -webkit-backdrop-filter: blur(28px) saturate(160%) brightness(1.08);
  
    /* Refined border — faint gold rim, just visible */
    border: 1px solid rgba(193,154,107,.28);
    border-top: 1px solid rgba(255,251,245,.22);
    border-left: 1px solid rgba(255,251,245,.16);
  
    border-radius: 2px;
    padding: 2.4rem 2.2rem 2rem;
  
    /* Subtle inner glow from top */
    box-shadow:
      0 2px 0 rgba(255,251,245,.06) inset,
      0 32px 80px rgba(0,0,0,.35),
      0 8px 24px rgba(0,0,0,.2);
  }
  
  /* Opening quotation mark — large, decorative */
  .testimonial-glass__mark {
    font-family: var(--font-serif);
    font-size: 5rem;
    line-height: .6;
    color: var(--gold);
    opacity: .55;
    margin-bottom: 1rem;
    display: block;
    font-style: italic;
  }
  
  /* Stars */
  .testimonial-glass__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1.2rem;
  }
  
  /* Quote body */
  .testimonial-glass__quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.08rem;
    line-height: 1.8;
    color: rgba(255,251,245,.9);
    margin-bottom: 1.8rem;
  }
  
  /* Attribution row */
  .testimonial-glass__attribution {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(193,154,107,.2);
  }
  
  /* Initial avatar circle */
  .testimonial-glass__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(193,154,107,.18);
    border: 1px solid rgba(193,154,107,.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold);
    flex-shrink: 0;
  }
  
  .testimonial-glass__who {
    display: flex;
    flex-direction: column;
    gap: .2rem;
  }
  .testimonial-glass__name {
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .1em;
    color: rgba(255,251,245,.9);
    text-transform: uppercase;
  }
  .testimonial-glass__detail {
    font-size: .7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,251,245,.4);
  }
  
  /* Bottom ornament */
  .testimonial-glass__ornament {
    position: absolute;
    bottom: 1.1rem;
    right: 1.4rem;
    font-size: .55rem;
    color: rgba(193,154,107,.4);
  }
  
  
  /* ================================================================
     ELEGANCE LETTER — newsletter
     ================================================================ */
  .letter { background: var(--cream-deep); text-align: center; }
  
  .letter__inner { max-width: 600px; }
  
  .letter__ornament {
    font-size: .85rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
    display: block;
  }
  
  .letter__title { font-size: clamp(1.8rem, 3vw, 2.6rem); }
  
  .letter__sub {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.85;
    margin: 1rem auto 2rem;
    max-width: 36rem;
  }
  
  .letter__form-row {
    display: flex;
    gap: .75rem;
    max-width: 440px;
    margin: 0 auto;
  }
  .letter__form-row input {
    flex: 1;
    padding: .85rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: 0;
    background: var(--cream);
    font-family: var(--font-sans);
    font-size: .82rem;
    color: var(--espresso);
    outline: none;
    transition: border-color .18s ease;
  }
  .letter__form-row input::placeholder { color: var(--muted-light); }
  .letter__form-row input:focus { border-color: var(--gold); }
  .letter__form-row button {
    padding: .85rem 1.6rem;
    background: var(--espresso);
    color: var(--cream);
    border: 1px solid var(--espresso);
    font-family: var(--font-sans);
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    cursor: none;
    transition: background .18s ease;
    white-space: nowrap;
    border-radius: 0;
  }
  .letter__form-row button:hover { background: var(--espresso-mid); }
  .letter__form-note {
    font-size: .7rem;
    color: var(--muted-light);
    margin-top: .75rem;
  }
  
  
  /* ================================================================
     FOOTER
     ================================================================ */
  .footer {
    background: var(--espresso);
    color: rgba(255,253,249,.55);
    padding: 4rem 0 0;
  }
  
  .footer__inner {
    max-width: var(--inner-w);
    margin: 0 auto;
    padding: 0 var(--pad-x) 3.5rem;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 3rem;
    border-bottom: 1px solid rgba(255,253,249,.08);
  }
  
  .footer__brand-name {
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,253,249,.9);
    margin-bottom: .4rem;
  }
  .footer__brand-sub {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: .9rem;
    color: rgba(255,253,249,.4);
    margin-bottom: 1.2rem;
  }
  
  .footer__socials { display: flex; gap: .6rem; }
  .footer__socials a {
    width: 32px; height: 32px;
    border: 1px solid rgba(255,253,249,.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    color: rgba(255,253,249,.5);
    transition: border-color .18s ease, color .18s ease;
  }
  .footer__socials a:hover { border-color: var(--gold); color: var(--gold); }
  
  .footer__col-title {
    font-size: .66rem;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,253,249,.9);
    margin-bottom: 1.2rem;
  }
  .footer__col ul li { margin-bottom: .5rem; }
  .footer__col ul li a {
    font-size: .84rem;
    color: rgba(255,253,249,.45);
    transition: color .18s ease;
  }
  .footer__col ul li a:hover { color: rgba(255,253,249,.9); }
  
  .footer__col--contact p {
    font-size: .84rem;
    color: rgba(255,253,249,.45);
    margin-bottom: .4rem;
  }
  .footer__col--contact a { color: rgba(255,253,249,.45); transition: color .18s ease; }
  .footer__col--contact a:hover { color: rgba(255,253,249,.9); }
  .footer__location { font-size: .78rem !important; margin-top: .6rem !important; }
  .footer__cta {
    display: inline-block;
    margin-top: 1.1rem;
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold) !important;
  }
  
  .footer__base {
    max-width: var(--inner-w);
    margin: 0 auto;
    padding: 1.4rem var(--pad-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .74rem;
    color: rgba(255,253,249,.25);
  }
  .footer__base a { color: rgba(255,253,249,.3); transition: color .18s ease; }
  .footer__base a:hover { color: rgba(255,253,249,.7); }
  .footer__base nav { display: flex; gap: .5rem; align-items: center; }
  
  
  /* ================================================================
     RESPONSIVE
     ================================================================ */
  
  @media (max-width: 1160px) {
    .pillars__grid { grid-template-columns: repeat(2, 1fr); }
    .pillar-card { border-bottom: 1px solid var(--border); }
    .pillar-card:nth-child(2) { border-right: none; }
    .pillar-card:nth-child(3) { border-right: 1px solid var(--border); }
    .pillar-card:nth-child(3),
    .pillar-card:nth-child(4) { border-bottom: none; }
  }
  
  @media (max-width: 1024px) {
    .footer__inner { grid-template-columns: 1fr 1fr; row-gap: 2rem; }
    .private-work__inner { gap: 3rem; }
    .journal__grid { grid-template-columns: 1fr 1fr; }
    .journal-card:last-child { display: none; }
  }
  
  @media (max-width: 900px) {
    :root { --nav-h: 64px; }
  
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero__right { height: 58vw; min-height: 300px; order: -1; }
    .hero__left { padding: 3rem var(--pad-x); }
    .hero__content { max-width: none; }
    .hero__ornament { display: none; }
  
    .philosophy__inner { grid-template-columns: 1fr; gap: 2.4rem; }
  
    .private-work__inner { grid-template-columns: 1fr; gap: 3rem; }
    .private-work__glass-side { justify-content: flex-start; }
  
  
    
    .journal-card:last-child { display: block; }
  }
  
  @media (max-width: 768px) {
    .nav__list { display: none; }
    .nav__toggle { display: flex; }
    .section-pad { padding: 4rem 0; }
    .footer__inner { grid-template-columns: 1fr; gap: 1.8rem; }
    .footer__base { flex-direction: column; gap: .5rem; text-align: center; }
  }
  
  @media (max-width: 540px) {
    .pillars__grid { grid-template-columns: 1fr; }
    .pillar-card { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
    .pillar-card:last-child { border-bottom: none !important; }
    .hero__proof { flex-wrap: wrap; gap: 1rem; }
    .hero__proof-div { display: none; }
    .letter__form-row { flex-direction: column; }
    .letter__form-row button { width: 100%; }
  }
  
  @media (hover: none) {
    .cursor, .cursor-dot { display: none; }
    body { cursor: auto; }
    a, button { cursor: pointer; }
  }