
  :root{
    --void:#f3ead8;
    --charcoal:#eae0c7;
    --charcoal2:#e1d3b0;
    --ember:#b8451d;
    --ember-bright:#93370f;
    --gold:#8b6a34;
    --gold-bright:#6e5427;
    --bone:#201a13;
    --bone-dim:rgba(32,26,19,0.62);
    --line: rgba(139,106,52,0.35);
    --line-soft: rgba(139,106,52,0.15);
    --serif: 'Fraunces', serif;
    --sans: 'Manrope', sans-serif;
  }

  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--void);
    color:var(--bone);
    font-family:var(--sans);
    line-height:1.55;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  body::before{
    content:"";
    position:fixed; inset:0;
    background-image:
      repeating-linear-gradient(115deg, rgba(32,26,19,0.035) 0px, rgba(32,26,19,0.035) 1px, transparent 1px, transparent 3px);
    pointer-events:none;
    z-index:1;
  }
  a{color:inherit; text-decoration:none;}
  ul{list-style:none;}
  img,svg{display:block; max-width:100%;}
  button{font-family:inherit; cursor:pointer;}
  input,select,textarea{font-family:inherit;}

  :focus-visible{outline:1.5px solid var(--gold-bright); outline-offset:3px;}

  .wrap{max-width:1240px; margin:0 auto; padding:0 32px;}
  section{scroll-margin-top:88px;}

  h1,h2,h3{font-family:var(--serif); font-weight:400; letter-spacing:-0.01em;}

  .hairline{height:1px; background:var(--line); border:none;}

  .btn{
    display:inline-flex; align-items:center; gap:10px;
    padding:14px 28px;
    font-size:0.82rem; font-weight:600; letter-spacing:0.06em;
    border:1px solid var(--gold);
    background:transparent; color:var(--bone);
    transition:background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  }
  .btn:hover{background:var(--gold); color:var(--void); border-color:var(--gold);}
  .btn.solid{background:var(--ember); border-color:var(--ember); color:var(--void);}
  .btn.solid:hover{background:var(--ember-bright); border-color:var(--ember-bright);}
  .btn.ghost{border-color:var(--line);}
  .btn.ghost:hover{border-color:var(--gold-bright); background:transparent; color:var(--gold-bright);}

  /* ---------- NAV ---------- */
  header.nav{
    position:fixed; top:0; left:0; right:0; z-index:50;
    padding:20px 0;
    background:transparent;
    border-bottom:1px solid transparent;
    transition:background 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
  }
  header.nav.scrolled{
    background:rgba(243,234,216,0.88);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line-soft);
    padding:14px 0;
  }
  .nav-inner{display:flex; align-items:center; justify-content:space-between; gap:24px;}
  .wordmark{
    font-family:var(--serif); font-size:1.5rem; letter-spacing:0.12em;
    text-transform:uppercase; color:var(--bone);
  }
  .wordmark small{
    display:block; font-family:var(--sans); font-size:0.55rem; letter-spacing:0.28em;
    color:var(--ember); font-weight:600; margin-top:2px;
  }
  nav.links{display:flex; align-items:center; gap:34px;}
  nav.links a{
    font-size:0.82rem; letter-spacing:0.03em; color:var(--bone-dim);
    position:relative; padding-bottom:4px; transition:color 0.25s ease;
  }
  nav.links a:hover{color:var(--bone);}
  nav.links a::after{
    content:""; position:absolute; left:0; bottom:0; width:0; height:1px;
    background:var(--gold-bright); transition:width 0.3s ease;
  }
  nav.links a:hover::after{width:100%;}
  .nav-actions{display:flex; align-items:center; gap:18px;}
  .bag-btn{
    position:relative; display:flex; align-items:center; justify-content:center;
    width:38px; height:38px; border:1px solid var(--line); background:transparent;
    color:var(--bone); transition:border-color 0.25s ease;
  }
  .bag-btn:hover{border-color:var(--gold);}
  .bag-count{
    position:absolute; top:-7px; right:-7px;
    background:var(--ember); color:var(--void);
    font-size:0.65rem; font-weight:700; min-width:18px; height:18px;
    border-radius:50%; display:flex; align-items:center; justify-content:center;
    padding:0 3px;
  }
  .hamburger{display:none; flex-direction:column; gap:5px; background:none; border:none; padding:6px;}
  .hamburger span{width:22px; height:1px; background:var(--bone);}
  .mobile-menu{
    display:none; position:fixed; top:0; right:0; bottom:0; width:min(320px,80vw);
    background:var(--charcoal); border-left:1px solid var(--line);
    z-index:60; padding:100px 32px 32px; transform:translateX(100%);
    transition:transform 0.4s ease; flex-direction:column; gap:24px;
  }
  .mobile-menu.open{display:flex; transform:translateX(0);}
  .mobile-menu a{font-size:1rem; color:var(--bone-dim);}
  .mobile-menu a:hover{color:var(--gold-bright);}
  .menu-close{position:absolute; top:28px; right:28px; background:none; border:none; color:var(--bone); font-size:1.4rem;}
  .scrim{display:none; position:fixed; inset:0; background:rgba(0,0,0,0.5); z-index:55;}
  .scrim.open{display:block;}

  /* ---------- HERO ---------- */
  .hero{
    position:relative; min-height:100vh;
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    text-align:center; padding:160px 24px 100px;
    background:
      radial-gradient(ellipse 60% 50% at 50% 15%, rgba(191,76,28,0.14), transparent 60%),
      linear-gradient(180deg, var(--void) 0%, var(--charcoal) 100%);
  }
  .hero-eyebrow{
    font-size:0.75rem; letter-spacing:0.3em; color:var(--ember);
    font-weight:600; margin-bottom:28px;
    opacity:0; animation:fadeUp 0.9s ease 0.15s forwards;
  }
  .hero h1{
    font-size:clamp(2.6rem, 8vw, 6.4rem);
    line-height:1.02; font-style:italic; font-weight:400;
    color:var(--bone); max-width:15ch;
    opacity:0; animation:fadeUp 1s ease 0.35s forwards;
  }
  .hero-rule{
    width:0; height:1px; background:var(--gold);
    margin:36px auto; animation:drawLine 1.2s ease 1.1s forwards;
  }
  .hero p.sub{
    max-width:46ch; font-size:1.05rem; color:var(--bone-dim);
    opacity:0; animation:fadeUp 0.9s ease 1.4s forwards;
  }
  .hero-ctas{
    display:flex; gap:16px; margin-top:40px; flex-wrap:wrap; justify-content:center;
    opacity:0; animation:fadeUp 0.9s ease 1.65s forwards;
  }
  .hero-cities{
    margin-top:56px; font-size:0.72rem; letter-spacing:0.2em; color:var(--bone-dim);
    opacity:0; animation:fadeUp 0.9s ease 1.9s forwards;
  }
  @keyframes fadeUp{from{opacity:0; transform:translateY(14px);} to{opacity:1; transform:translateY(0);}}
  @keyframes drawLine{from{width:0;} to{width:64px;}}
  @media (prefers-reduced-motion: reduce){
    .hero-eyebrow,.hero h1,.hero p.sub,.hero-ctas,.hero-cities{animation:none; opacity:1;}
    .hero-rule{animation:none; width:64px;}
  }

  /* ---------- TWO PATHS ---------- */
  .paths{
    display:grid; grid-template-columns:1.1fr 1fr;
    border-top:1px solid var(--line-soft); border-bottom:1px solid var(--line-soft);
  }
  .path{
    padding:96px 56px; position:relative;
  }
  .path + .path{border-left:1px solid var(--line-soft);}
  .path .tag{font-size:0.72rem; letter-spacing:0.2em; color:var(--ember); font-weight:600;}
  .path h2{font-size:clamp(1.8rem,3vw,2.6rem); margin:18px 0 20px; max-width:14ch;}
  .path p{color:var(--bone-dim); max-width:42ch; margin-bottom:32px;}
  .path.bespoke{background:var(--charcoal);}

  /* ---------- SECTION HEADS ---------- */
  .section-head{padding:110px 0 56px; text-align:left;}
  .section-head .tag{font-size:0.72rem; letter-spacing:0.2em; color:var(--ember); font-weight:600;}
  .section-head h2{font-size:clamp(2rem,4vw,3rem); margin-top:16px; max-width:16ch;}
  .section-head p{color:var(--bone-dim); max-width:52ch; margin-top:18px;}

  /* ---------- COLLECTION GRID ---------- */
  .collection-grid{
    display:grid; grid-template-columns:repeat(3,1fr); gap:2px;
    background:var(--line-soft);
    margin-bottom:120px;
  }
  .card{
    background:var(--void); padding:36px 30px 30px;
    display:flex; flex-direction:column; justify-content:space-between;
    min-height:420px; position:relative; overflow:hidden;
    transition:background 0.35s ease;
  }
  .card.tall{min-height:560px; grid-row:span 1;}
  .card:hover{background:var(--charcoal);}
  .card .garment-wrap{
    flex:1; display:flex; align-items:center; justify-content:center; color:var(--gold);
    transition:color 0.35s ease;
  }
  .card:hover .garment-wrap{color:var(--gold-bright);}
  .card svg.garment{width:auto; height:100%; max-height:260px;}
  .card.tall svg.garment{max-height:380px;}
  .card .meta{margin-top:22px;}
  .card .cat{font-size:0.68rem; letter-spacing:0.16em; color:var(--bone-dim); text-transform:uppercase;}
  .card h3{font-size:1.15rem; margin:8px 0 10px; font-weight:400; font-style:italic;}
  .card .row{display:flex; align-items:center; justify-content:space-between; gap:12px; margin-top:10px;}
  .card .price{font-size:0.92rem; color:var(--bone);}
  .card .add{
    background:none; border:1px solid var(--line); color:var(--bone-dim);
    font-size:0.68rem; letter-spacing:0.08em; padding:8px 14px;
    transition:border-color 0.25s ease, color 0.25s ease;
  }
  .card .add:hover{border-color:var(--gold-bright); color:var(--gold-bright);}
  .card .add.added{border-color:var(--ember-bright); color:var(--ember-bright);}

  /* ---------- ATELIER PROCESS ---------- */
  .atelier{padding-bottom:120px;}
  .timeline{
    display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; margin-top:40px;
  }
  .timeline::before{
    content:""; position:absolute; top:22px; left:0; right:0; height:1px; background:var(--line);
  }
  .tl-step{padding:0 24px 0 0; position:relative;}
  .tl-num{
    font-family:var(--serif); font-style:italic; font-size:1.6rem; color:var(--ember);
    background:var(--void); display:inline-block; padding-right:16px; position:relative; z-index:2;
  }
  .tl-step h3{font-size:1.05rem; font-weight:500; font-style:normal; margin:20px 0 10px;}
  .tl-step p{color:var(--bone-dim); font-size:0.92rem; max-width:30ch;}

  /* ---------- MEMBERSHIP ---------- */
  .membership{background:var(--charcoal); padding:110px 0;}
  .member-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line-soft); margin-top:48px;}
  .m-card{background:var(--charcoal); padding:40px 32px;}
  .m-card svg{width:30px; height:30px; color:var(--gold); margin-bottom:22px;}
  .m-card h3{font-size:1.15rem; font-weight:500; font-style:normal; margin-bottom:12px;}
  .m-card p{color:var(--bone-dim); font-size:0.92rem;}

  /* ---------- APPOINTMENTS ---------- */
  .appointments{padding:120px 0; display:grid; grid-template-columns:0.9fr 1.1fr; gap:80px;}
  .appt-copy h2{font-size:clamp(2rem,3.4vw,2.8rem); max-width:12ch; margin-bottom:20px;}
  .appt-copy p{color:var(--bone-dim); max-width:38ch; margin-bottom:28px;}
  .appt-copy .detail{display:flex; gap:14px; margin-bottom:16px; font-size:0.9rem; color:var(--bone-dim);}
  .appt-copy .detail strong{color:var(--bone); font-weight:500; min-width:110px; display:inline-block;}

  .appt-form{
    background:var(--charcoal2); border:1px solid var(--line-soft); padding:44px;
  }
  .field{margin-bottom:22px;}
  .field label{display:block; font-size:0.72rem; letter-spacing:0.08em; color:var(--bone-dim); margin-bottom:8px;}
  .field input, .field select, .field textarea{
    width:100%; background:transparent; border:none; border-bottom:1px solid var(--line);
    color:var(--bone); padding:10px 2px; font-size:0.95rem;
    transition:border-color 0.25s ease;
  }
  .field input:focus, .field select:focus, .field textarea:focus{border-color:var(--gold-bright);}
  .field select option{background:var(--charcoal);}
  .field-row{display:grid; grid-template-columns:1fr 1fr; gap:20px;}
  .appt-form textarea{resize:vertical; min-height:70px;}
  .form-note{font-size:0.78rem; color:var(--bone-dim); margin-top:6px;}

  .confirm-panel{display:none; text-align:center; padding:40px 10px;}
  .confirm-panel.show{display:block;}
  .confirm-panel .mark{
    width:44px; height:44px; border:1px solid var(--gold); border-radius:50%;
    display:flex; align-items:center; justify-content:center; margin:0 auto 22px; color:var(--gold-bright);
  }
  .confirm-panel h3{font-style:italic; font-size:1.5rem; margin-bottom:14px;}
  .confirm-panel p{color:var(--bone-dim); font-size:0.92rem; max-width:34ch; margin:0 auto;}
  .confirm-panel .ref{color:var(--gold-bright); letter-spacing:0.06em; margin-top:16px; font-size:0.85rem;}

  /* ---------- FOOTER ---------- */
  footer{border-top:1px solid var(--line-soft); padding:80px 0 40px;}
  .footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:60px;}
  .footer-grid h4{font-size:0.78rem; letter-spacing:0.1em; color:var(--ember); font-weight:600; margin-bottom:18px;}
  .footer-grid p, .footer-grid a{color:var(--bone-dim); font-size:0.9rem; display:block; margin-bottom:10px;}
  .footer-grid a:hover{color:var(--gold-bright);}
  .footer-word{font-family:var(--serif); font-size:1.4rem; letter-spacing:0.1em; text-transform:uppercase; margin-bottom:16px;}
  .footer-bottom{
    display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
    font-size:0.76rem; color:var(--bone-dim); padding-top:28px; border-top:1px solid var(--line-soft);
  }

  /* ---------- CART DRAWER ---------- */
  .drawer{
    position:fixed; top:0; right:0; bottom:0; width:min(420px,92vw);
    background:var(--charcoal); border-left:1px solid var(--line); z-index:70;
    transform:translateX(100%); transition:transform 0.4s ease;
    display:flex; flex-direction:column;
  }
  .drawer.open{transform:translateX(0);}
  .drawer-head{
    display:flex; align-items:center; justify-content:space-between;
    padding:26px 28px; border-bottom:1px solid var(--line-soft);
  }
  .drawer-head h3{font-style:italic; font-size:1.2rem;}
  .drawer-close{background:none; border:none; color:var(--bone); font-size:1.3rem;}
  .drawer-body{flex:1; overflow-y:auto; padding:20px 28px;}
  .bag-item{display:flex; justify-content:space-between; gap:12px; padding:16px 0; border-bottom:1px solid var(--line-soft);}
  .bag-item .name{font-style:italic; font-size:0.95rem;}
  .bag-item .cat{font-size:0.7rem; color:var(--bone-dim); letter-spacing:0.06em; text-transform:uppercase; margin-top:4px;}
  .bag-item .remove{background:none; border:none; color:var(--bone-dim); font-size:0.72rem; margin-top:8px; letter-spacing:0.04em;}
  .bag-item .remove:hover{color:var(--ember-bright);}
  .bag-empty{color:var(--bone-dim); font-size:0.92rem; padding:40px 0; text-align:center;}
  .drawer-footer{padding:24px 28px 30px; border-top:1px solid var(--line-soft);}
  .subtotal-row{display:flex; justify-content:space-between; font-size:0.95rem; margin-bottom:18px;}
  .drawer-footer .btn{width:100%; justify-content:center;}

  /* ---------- RESPONSIVE ---------- */
  @media (max-width:980px){
    nav.links{display:none;}
    .hamburger{display:flex;}
    .paths{grid-template-columns:1fr;}
    .path + .path{border-left:none; border-top:1px solid var(--line-soft);}
    .collection-grid{grid-template-columns:repeat(2,1fr);}
    .timeline{grid-template-columns:repeat(2,1fr); row-gap:40px;}
    .member-grid{grid-template-columns:1fr;}
    .appointments{grid-template-columns:1fr; gap:50px;}
    .footer-grid{grid-template-columns:1fr 1fr;}
  }
  @media (max-width:600px){
    .wrap{padding:0 20px;}
    .collection-grid{grid-template-columns:1fr;}
    .card.tall{min-height:420px;}
    .field-row{grid-template-columns:1fr;}
    .path{padding:64px 28px;}
    .footer-grid{grid-template-columns:1fr;}
  }

[data-style="detail-style-1"]{display:none}
[data-style="detail-style-2"]{padding-top:0;}
[data-style="detail-style-3"]{font-size:0.72rem;letter-spacing:0.2em;color:var(--ember);font-weight:600;}
[data-style="detail-style-4"]{margin-top:26px;}
[data-style="detail-style-5"]{width:100%; justify-content:center;}
[data-style="detail-style-6"]{max-width:32ch;}

/* Photography and commerce pages */
[hidden]{display:none!important;}
body.panel-open{overflow:hidden;}
.sr-only,.skip-link:not(:focus){position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip-path:inset(50%);white-space:nowrap;}
.skip-link:focus{position:fixed;top:8px;left:8px;z-index:100;background:var(--void);padding:12px;}
.tag{font-size:.72rem;letter-spacing:.2em;color:var(--ember);font-weight:600;text-transform:uppercase;}
.card{padding:20px 20px 28px;min-height:0;}
.card .garment-wrap{display:block;overflow:hidden;flex:none;}
.product-photo{width:100%;height:auto;aspect-ratio:3/4;object-fit:cover;object-position:center 30%;transition:transform .5s ease;}
.card:hover .product-photo{transform:scale(1.025);}
.card .meta{padding:0 10px;}
.loading{padding:48px;grid-column:1/-1;}
.page-content{padding-top:150px;padding-bottom:100px;min-height:75vh;}
.back-link{display:inline-block;font-size:.8rem;color:var(--gold-bright);margin-bottom:32px;text-decoration:underline;text-underline-offset:5px;}
.product-detail{display:grid;grid-template-columns:1.05fr 1fr;gap:72px;align-items:start;}
.detail-photo{width:100%;height:auto;aspect-ratio:3/4;object-fit:cover;object-position:center 30%;}
.photo-note{font-size:.7rem;color:var(--bone-dim);margin-top:10px;}
.product-copy{padding:30px 0;}
.product-copy h1,.page-heading h1{font-size:clamp(2.2rem,4.5vw,3.7rem);line-height:1.12;margin:18px 0 24px;}
.product-copy>p{margin-bottom:26px;}
.product-copy .detail-price{font-size:1.3rem;}
.product-copy form{margin:32px 0;}
.product-copy .btn{margin-top:20px;}
.product-notes{margin-top:40px;padding-top:24px;border-top:1px solid var(--line);font-size:.9rem;color:var(--bone-dim);}
.product-notes h2{font-size:1.3rem;color:var(--bone);margin-bottom:12px;}
.product-notes p+p{margin-top:12px;}
.bag-image{min-width:56px;width:56px;height:80px;object-fit:cover;}
.bag-item-info{flex:1;min-width:0;}
.bag-item .price{white-space:nowrap;font-size:.85rem;}
.quantity-controls{display:flex;align-items:center;gap:14px;margin-top:12px;font-size:.85rem;}
.quantity-controls button{border:1px solid var(--line);background:transparent;color:var(--bone);width:32px;height:32px;font-size:1rem;}
button:disabled{opacity:.45;cursor:not-allowed;}
.btn:disabled:hover{background:var(--ember);border-color:var(--ember);color:var(--void);}
.page-heading{margin-bottom:40px;}
.checkout-layout{display:grid;grid-template-columns:1.5fr 1fr;gap:64px;align-items:start;}
.order-summary{background:var(--charcoal);border:1px solid var(--line);padding:32px;}
.order-summary h2{font-size:1.5rem;margin-bottom:28px;}
.order-summary p{font-size:.85rem;color:var(--bone-dim);}
.purchase-button{width:100%;justify-content:center;margin:24px 0 16px;}
.status{position:fixed;bottom:20px;left:50%;transform:translateX(-50%);z-index:90;max-width:calc(100vw - 40px);width:max-content;padding:14px 24px;background:var(--bone);color:var(--void);box-shadow:0 4px 25px #201a1322;font-size:.85rem;pointer-events:none;}
@media(max-width:800px){.product-detail,.checkout-layout{grid-template-columns:1fr;gap:28px;}.product-copy{padding:0;}.page-content{padding-top:130px;}.detail-photo{max-height:700px;}.order-summary{padding:24px;}}
@media(prefers-reduced-motion:reduce){*{scroll-behavior:auto!important;transition:none!important;}}
