:root{
    --ink: #0e1712;
    --ink-2: #17251d;
    --ivory: #f4efe6;
    --taupe: #b8a98c;
    --gold: #c9a863;
    --gold-dim: rgba(201,168,99,0.28);
    --wine: #7c3140;
    --glass: rgba(244,239,230,0.055);
    --glass-border: rgba(201,168,99,0.22);
    --serif: "Fraunces", serif;
    --sans: "Manrope", sans-serif;
  }

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

  html{ scroll-behavior:smooth; }

  body{
    background: var(--ink);
    color: var(--ivory);
    font-family: var(--sans);
    min-height: 100vh;
    overflow-x: hidden;
  }

  a{ color: inherit; text-decoration: none; }

  button{ font-family: inherit; cursor: pointer; }

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

  .scene{
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  /* ambient light glows */
  .glow{
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
  }
  .glow--gold{
    width: 640px; height: 640px;
    top: -220px; right: -160px;
    background: radial-gradient(circle, rgba(201,168,99,0.32) 0%, rgba(201,168,99,0) 70%);
    animation: drift 14s ease-in-out infinite;
  }
  .glow--wine{
    width: 500px; height: 500px;
    bottom: -200px; left: -140px;
    background: radial-gradient(circle, rgba(124,49,64,0.28) 0%, rgba(124,49,64,0) 70%);
  }

  @keyframes drift{
    0%, 100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(-24px, 18px) scale(1.06); }
  }

  /* ---------- nav ---------- */
  header{
    position: relative;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px clamp(20px, 5vw, 64px);
    background: var(--glass);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(244,239,230,0.08);
  }

  .brand{
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .brand__mark{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: 17px;
    color: var(--gold);
    flex-shrink: 0;
    background: radial-gradient(circle at 30% 25%, rgba(201,168,99,0.18), transparent 70%);
  }

  .brand__text{ display: flex; flex-direction: column; line-height: 1.15; }
  .brand__name{
    font-family: var(--serif);
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.2px;
  }
  .brand__sub{
    font-size: 11px;
    color: var(--taupe);
    margin-top: 2px;
  }

  nav.links{
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.4vw, 34px);
  }

  nav.links a{
    position: relative;
    font-size: 14.5px;
    color: rgba(244,239,230,0.82);
    padding: 4px 0;
    transition: color 0.25s ease;
  }
  nav.links a::after{
    content: "";
    position: absolute;
    left: 0; bottom: -2px;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  nav.links a:hover{ color: var(--ivory); }
  nav.links a:hover::after{ transform: scaleX(1); }

  .nav-actions{ display: flex; align-items: center; gap: 18px; }

  .btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--sans);
    font-weight: 600;
    border-radius: 999px;
    white-space: nowrap;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  }

  .btn--ghost{
    font-size: 13.5px;
    padding: 10px 20px;
    color: var(--ivory);
    border: 1px solid var(--gold-dim);
    background: transparent;
  }
  .btn--ghost:hover{
    border-color: var(--gold);
    background: rgba(201,168,99,0.08);
  }

  .btn--solid{
    font-size: 15px;
    padding: 15px 28px;
    color: #17130b;
    background: linear-gradient(180deg, #ddbd80, var(--gold));
    box-shadow: 0 12px 28px -12px rgba(201,168,99,0.55);
    border: 1px solid transparent;
  }
  .btn--solid:hover{
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -12px rgba(201,168,99,0.7);
  }

  .btn--outline{
    font-size: 15px;
    padding: 14px 27px;
    color: var(--ivory);
    border: 1px solid rgba(244,239,230,0.35);
    background: transparent;
  }
  .btn--outline:hover{
    border-color: var(--ivory);
    background: rgba(244,239,230,0.06);
  }

  .menu-toggle{
    display: none;
    background: none;
    border: 1px solid var(--gold-dim);
    border-radius: 10px;
    width: 42px; height: 38px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }
  .menu-toggle span{
    width: 18px; height: 1.5px;
    background: var(--ivory);
    display: block;
  }

  /* ---------- hero ---------- */
  .hero{
    position: relative;
    z-index: 10;
    flex: 1;
    display: grid;
    grid-template-columns: minmax(0,1.05fr) minmax(0,0.95fr);
    align-items: center;
    gap: clamp(24px, 4vw, 40px);
    padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 64px) clamp(56px, 8vw, 104px);
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
  }

  .hero__copy{ position: relative; }

  .hero__title{
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(40px, 5.2vw, 68px);
    line-height: 1.08;
    letter-spacing: -0.5px;
    max-width: 12ch;
  }

  .hero__desc{
    margin-top: 26px;
    font-size: 16.5px;
    line-height: 1.7;
    color: rgba(244,239,230,0.72);
    max-width: 46ch;
  }

  .hero__actions{
    margin-top: 38px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero__meta{
    margin-top: 52px;
    display: flex;
    gap: clamp(28px, 4vw, 48px);
    flex-wrap: wrap;
  }
  .hero__meta div{ display: flex; flex-direction: column; gap: 4px; }
  .hero__meta strong{
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 500;
    color: var(--gold);
  }
  .hero__meta span{
    font-size: 13px;
    color: var(--taupe);
  }

  /* ---------- 3D card stack ---------- */
  .stage{
    position: relative;
    height: clamp(360px, 42vw, 520px);
    perspective: 1400px;
  }

  .stack{
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    transform: rotateX(8deg) rotateY(-14deg);
    transition: transform 0.15s ease-out;
    will-change: transform;
  }

  .svc{
    position: absolute;
    width: 230px;
    padding: 26px 24px;
    border-radius: 18px;
    background: linear-gradient(155deg, rgba(244,239,230,0.09), rgba(244,239,230,0.03));
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 30px 60px -24px rgba(0,0,0,0.6);
  }
  .svc__icon{
    width: 34px; height: 34px;
    color: var(--gold);
  }
  .svc__label{
    display: block;
    margin-top: 18px;
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 500;
    color: var(--ivory);
  }
  .svc__note{
    display: block;
    margin-top: 6px;
    font-size: 12.5px;
    color: var(--taupe);
  }

  .svc--hair{
    top: 4%; left: 6%;
    transform: translateZ(40px) rotateZ(-3deg);
    z-index: 4;
  }
  .svc--nails{
    top: 18%; left: 46%;
    transform: translateZ(90px) rotateZ(2deg);
    z-index: 5;
    border-color: rgba(201,168,99,0.4);
  }
  .svc--spa{
    top: 52%; left: 2%;
    transform: translateZ(10px) rotateZ(2deg);
    z-index: 3;
  }
  .svc--barber{
    top: 56%; left: 44%;
    transform: translateZ(60px) rotateZ(-2deg);
    z-index: 4;
  }

  .ring{
    position: absolute;
    top: 8%; right: 4%;
    width: 130px; height: 130px;
    border-radius: 50%;
    border: 1px solid var(--gold-dim);
    transform: translateZ(-40px);
  }
  .ring::after{
    content:"";
    position: absolute;
    inset: 18px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,99,0.35);
  }

  @media (prefers-reduced-motion: reduce){
    .glow--gold{ animation: none; }
    .stack{ transition: none; }
  }

  /* ---------- responsive ---------- */
  @media (max-width: 980px){
    .hero{ grid-template-columns: 1fr; }
    .stage{ order: -1; height: clamp(300px, 70vw, 420px); }
    .hero__title{ max-width: none; }
  }

  @media (max-width: 860px){
    nav.links{
      position: absolute;
      top: 100%; left: 0; right: 0;
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
      background: var(--ink-2);
      border-bottom: 1px solid var(--glass-border);
      padding: 10px clamp(20px, 5vw, 64px) 20px;
      transform-origin: top;
      transform: scaleY(0);
      opacity: 0;
      pointer-events: none;
      transition: transform 0.25s ease, opacity 0.2s ease;
    }
    nav.links a{ padding: 10px 0; width: 100%; }
    nav.links.open{
      transform: scaleY(1);
      opacity: 1;
      pointer-events: auto;
    }
    .nav-actions .btn--ghost{ display: none; }
    .menu-toggle{ display: flex; }
  }

  @media (max-width: 560px){
    .svc{ width: 190px; padding: 20px; }
    .hero__meta strong{ font-size: 22px; }
  }


/* ==================== */


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

  body{
    background: var(--ink);
    color: var(--ivory);
    font-family: var(--sans);
  }

  a{ color: inherit; text-decoration: none; }

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

  section.about{
    position: relative;
    padding: clamp(64px, 9vw, 128px) clamp(20px, 5vw, 64px);
    overflow: hidden;
  }

  .glow{
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
  }
  .glow--a{
    width: 560px; height: 560px;
    top: -180px; left: -200px;
    background: radial-gradient(circle, rgba(124,49,64,0.24) 0%, rgba(124,49,64,0) 70%);
  }
  .glow--b{
    width: 480px; height: 480px;
    bottom: -160px; right: -160px;
    background: radial-gradient(circle, rgba(201,168,99,0.2) 0%, rgba(201,168,99,0) 70%);
  }

  .wrap{
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0,0.92fr) minmax(0,1.08fr);
    gap: clamp(40px, 6vw, 88px);
    align-items: center;
  }

  /* ---------- image column ---------- */
  .frame{
    position: relative;
    perspective: 1200px;
  }

  .frame__tilt{
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(2deg) rotateY(-4deg);
    transition: transform 0.15s ease-out;
    will-change: transform;
  }

  .frame__photo{
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 28px 10px 28px 10px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 50px 90px -30px rgba(0,0,0,0.65);
    transform: translateZ(0);
  }
  .frame__photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.04) contrast(1.02);
  }
  .frame__photo::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(190deg, rgba(14,23,18,0) 55%, rgba(14,23,18,0.55) 100%);
  }

  .badge{
    position: absolute;
    top: -18px; right: -18px;
    width: 96px; height: 96px;
    border-radius: 50%;
    background: rgba(14,23,18,0.72);
    border: 1px solid var(--gold-dim);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transform: translateZ(70px);
    animation: bob 6s ease-in-out infinite;
  }
  .badge strong{
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--gold);
  }
  .badge span{
    font-size: 10.5px;
    color: var(--taupe);
    margin-top: 2px;
  }

  .card{
    position: absolute;
    left: -28px; bottom: 34px;
    width: 216px;
    padding: 20px 22px;
    border-radius: 16px;
    background: linear-gradient(155deg, rgba(244,239,230,0.1), rgba(244,239,230,0.03));
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 30px 60px -24px rgba(0,0,0,0.55);
    transform: translateZ(50px);
    animation: bob 7s ease-in-out infinite 0.4s;
  }
  .card strong{
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    color: var(--ivory);
    display: block;
  }
  .card span{
    font-size: 12.5px;
    color: var(--taupe);
  }

  @keyframes bob{
    0%, 100% { transform: translateZ(60px) translateY(0); }
    50% { transform: translateZ(60px) translateY(-10px); }
  }

  /* ---------- text column ---------- */
  .content h2{
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(32px, 3.6vw, 46px);
    line-height: 1.14;
    max-width: 15ch;
  }

  .content p{
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(244,239,230,0.72);
    max-width: 52ch;
  }
  .content p + p{ margin-top: 14px; }

  .specialties{
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 36px;
    border-top: 1px solid rgba(244,239,230,0.1);
    border-bottom: 1px solid rgba(244,239,230,0.1);
  }
  .specialty{
    flex: 1 1 140px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 20px 20px 0;
    border-right: 1px solid rgba(244,239,230,0.1);
  }
  .specialty:last-child{ border-right: none; }
  .specialty svg{ width: 24px; height: 24px; color: var(--gold); }
  .specialty span{ font-size: 13.5px; color: rgba(244,239,230,0.85); line-height: 1.4; }

  .stats{
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: clamp(20px, 3vw, 40px);
  }
  .stats div{ display: flex; flex-direction: column; gap: 4px; }
  .stats strong{
    font-family: var(--serif);
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 500;
    color: var(--gold);
  }
  .stats span{ font-size: 12.5px; color: var(--taupe); }

  /* ---------- scroll cue ---------- */
  .scrolldown{
    position: relative;
    z-index: 2;
    margin: clamp(56px, 8vw, 96px) auto 0;
    width: 22px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--gold-dim);
    display: flex;
    justify-content: center;
    padding-top: 8px;
  }
  .scrolldown i{
    width: 3px; height: 8px;
    border-radius: 2px;
    background: var(--gold);
    animation: scrollcue 1.8s ease-in-out infinite;
  }
  @keyframes scrollcue{
    0% { transform: translateY(0); opacity: 1; }
    70% { transform: translateY(12px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
  }

  @media (prefers-reduced-motion: reduce){
    .frame__tilt{ transition: none; }
    .badge, .card{ animation: none; }
    .scrolldown i{ animation: none; opacity: 1; }
  }

  /* ---------- responsive ---------- */
  @media (max-width: 940px){
    .wrap{ grid-template-columns: 1fr; }
    .frame{ max-width: 420px; margin: 0 auto; }
    .content{ text-align: left; }
    .content h2{ max-width: none; }
    .content p{ max-width: none; }
  }

  @media (max-width: 620px){
    .stats{ grid-template-columns: repeat(2, auto); }
    .specialty{ flex: 1 1 45%; border-right: none; border-bottom: 1px solid rgba(244,239,230,0.1); padding: 16px 0; }
    .card{ left: 0; width: 180px; }
    .badge{ width: 78px; height: 78px; top: -14px; right: -10px; }
  }


/* ==================== */


  *{ box-sizing: border-box; margin:0; padding:0; }
  body{ background: var(--ink); color: var(--ivory); font-family: var(--sans); }
  a{ color: inherit; text-decoration: none; }
  button{ font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
  :focus-visible{ outline: 2px solid var(--gold); outline-offset: 3px; }

  /* ---------- section shell ---------- */
  section.services{ position: relative; padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 64px); overflow: hidden; }
  .glow{ position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; z-index: 0; }
  .glow--x{ width: 520px; height: 520px; top: -160px; right: -180px; background: radial-gradient(circle, rgba(201,168,99,0.18) 0%, rgba(201,168,99,0) 70%); }
  .glow--y{ width: 460px; height: 460px; bottom: -160px; left: -160px; background: radial-gradient(circle, rgba(124,49,64,0.2) 0%, rgba(124,49,64,0) 70%); }

  .svc-head{ position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; text-align: left; }
  .svc-head h2{ font-family: var(--serif); font-weight: 500; font-size: clamp(32px, 3.6vw, 46px); max-width: 14ch; }
  .svc-head p{ margin-top: 16px; font-size: 16px; line-height: 1.7; color: rgba(244,239,230,0.7); max-width: 52ch; }

  /* ---------- tabs ---------- */
  .tabs{
    position: relative; z-index: 2; max-width: 1240px; margin: 44px auto 0;
    display: flex; gap: clamp(18px, 2.6vw, 34px);
    overflow-x: auto; scrollbar-width: none;
    border-bottom: 1px solid rgba(244,239,230,0.1);
    padding-bottom: 2px;
  }
  .tabs::-webkit-scrollbar{ display: none; }
  .tab{
    position: relative; flex: 0 0 auto; padding: 12px 2px 16px;
    font-size: 14.5px; color: rgba(244,239,230,0.55); white-space: nowrap;
    transition: color 0.25s ease;
  }
  .tab::after{
    content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
    background: var(--gold); transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s ease;
  }
  .tab:hover{ color: var(--ivory); }
  .tab[aria-selected="true"]{ color: var(--ivory); }
  .tab[aria-selected="true"]::after{ transform: scaleX(1); }

  /* ---------- panels ---------- */
  .panels{ position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; }
  .panel{ display: none; padding-top: clamp(40px, 6vw, 64px); }
  .panel.active{ display: grid; grid-template-columns: minmax(0,0.95fr) minmax(0,1.05fr); gap: clamp(36px, 5vw, 64px); align-items: start;
    animation: rise 0.5s ease both; }
  @keyframes rise{ from{ opacity: 0; transform: translateY(10px); } to{ opacity: 1; transform: translateY(0); } }

  .panel__text h3{ font-family: var(--serif); font-weight: 500; font-size: clamp(24px, 2.4vw, 30px); }
  .panel__text p{ margin-top: 14px; font-size: 15.5px; line-height: 1.75; color: rgba(244,239,230,0.7); max-width: 46ch; }

  .menu{ margin-top: 30px; }
  .menu-row{ display: flex; align-items: baseline; gap: 10px; padding: 13px 0; border-bottom: 1px solid rgba(244,239,230,0.09); }
  .menu-row__name{ font-size: 15px; color: rgba(244,239,230,0.9); }
  .menu-row__leader{ flex: 1; border-bottom: 1px dotted rgba(201,168,99,0.35); transform: translateY(-4px); }
  .menu-row__price{ font-family: var(--serif); font-size: 16px; color: var(--gold); flex-shrink: 0; }

  /* ---------- image collage ---------- */
  .collage{
    display: grid; grid-template-columns: 1.25fr 1fr; grid-template-rows: repeat(2, minmax(120px, 1fr));
    gap: 14px; height: clamp(320px, 30vw, 420px); perspective: 1200px;
  }
  .tile{
    position: relative; border-radius: 16px; overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 24px 48px -22px rgba(0,0,0,0.6);
    display: flex; align-items: flex-end;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }
  .tile:hover{ transform: translateY(-4px) rotateX(2deg); box-shadow: 0 30px 56px -20px rgba(0,0,0,0.7); }
  .tile--a{ grid-row: span 2; }
  .tile__icon{
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-56%);
    width: 46%; height: 46%; opacity: 0.16; color: var(--ivory);
  }
  .tile__caption{
    position: relative; z-index: 1; padding: 14px 16px;
    font-family: var(--serif); font-style: italic; font-size: 14px; color: rgba(244,239,230,0.92);
    background: linear-gradient(0deg, rgba(0,0,0,0.4), rgba(0,0,0,0));
    width: 100%;
  }

  .grad-colours{ background: linear-gradient(150deg, rgba(124,49,64,0.65), rgba(201,168,99,0.5)); }
  .grad-cuts{ background: linear-gradient(150deg, rgba(244,239,230,0.16), rgba(14,23,18,0.75)); }
  .grad-spa{ background: radial-gradient(circle at 30% 20%, rgba(201,168,99,0.28), rgba(14,23,18,0.05)), linear-gradient(150deg, var(--ink-2), var(--ink)); }
  .grad-facials{ background: radial-gradient(circle at 40% 30%, rgba(201,168,99,0.55), rgba(244,239,230,0.08) 70%); }
  .grad-grooming{ background: linear-gradient(150deg, var(--ink), rgba(124,49,64,0.4)); }

  /* ---------- treatment search ---------- */
  .search-wrap{
    position: relative; z-index: 3; max-width: 620px; margin: 0 auto clamp(40px, 6vw, 64px);
  }
  .search-box{
    display: flex; align-items: center; gap: 12px;
    padding: 15px 22px; border-radius: 999px;
    border: 1px solid var(--glass-border); background: var(--glass);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  }
  .search-box svg{ width: 18px; height: 18px; color: var(--taupe); flex-shrink: 0; }
  .search-box input{
    flex: 1; background: none; border: none; outline: none;
    color: var(--ivory); font-family: var(--sans); font-size: 15px;
  }
  .search-box input::placeholder{ color: rgba(244,239,230,0.4); }
  .search-results{
    position: absolute; top: calc(100% + 10px); left: 0; right: 0;
    background: var(--ink-2); border: 1px solid var(--glass-border);
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 28px 52px -22px rgba(0,0,0,0.7);
    display: none;
  }
  .search-results.open{ display: block; }
  .search-result{
    display: flex; justify-content: space-between; gap: 14px;
    padding: 13px 20px; font-size: 14px; cursor: pointer;
    border-bottom: 1px solid rgba(244,239,230,0.07);
  }
  .search-result:last-child{ border-bottom: none; }
  .search-result:hover{ background: rgba(201,168,99,0.09); }
  .search-result .name{ color: var(--ivory); }
  .search-result .meta{ color: var(--taupe); font-size: 12.5px; white-space: nowrap; }
  .search-empty{ padding: 16px 20px; font-size: 13.5px; color: var(--taupe); }

  .menu-row.flash{ border-radius: 8px; animation: flashRow 1.6s ease; }
  @keyframes flashRow{
    0%{ background: rgba(201,168,99,0.3); }
    100%{ background: transparent; }
  }

  @media (prefers-reduced-motion: reduce){
    .panel.active{ animation: none; }
    .tile{ transition: none; }
  }

  /* ---------- responsive ---------- */
  @media (max-width: 900px){
    .panel.active{ grid-template-columns: 1fr; }
    .collage{ order: -1; height: clamp(280px, 60vw, 360px); }
  }
  @media (max-width: 560px){
    .collage{ grid-template-columns: 1fr 1fr; grid-template-rows: 140px 100px; }
    .tile--a{ grid-column: span 2; grid-row: 1; }
    .tile:nth-child(2){ grid-row: 2; grid-column: 1; }
    .tile:nth-child(3){ grid-row: 2; grid-column: 2; }
  }


/* ==================== */


  *{ box-sizing: border-box; margin:0; padding:0; }
  body{ background: var(--ink); color: var(--ivory); font-family: var(--sans); }
  a{ color: inherit; text-decoration: none; }
  :focus-visible{ outline: 2px solid var(--gold); outline-offset: 3px; }

  section.team{ position: relative; padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 64px); overflow: hidden; }
  .glow{ position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; z-index: 0; }
  .glow--p{ width: 520px; height: 520px; top: -180px; left: 10%; background: radial-gradient(circle, rgba(201,168,99,0.16) 0%, rgba(201,168,99,0) 70%); }
  .glow--q{ width: 460px; height: 460px; bottom: -180px; right: 6%; background: radial-gradient(circle, rgba(124,49,64,0.2) 0%, rgba(124,49,64,0) 70%); }

  .team-head{ position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; }
  .team-head h2{ font-family: var(--serif); font-weight: 500; font-size: clamp(32px, 3.6vw, 46px); max-width: 15ch; }
  .team-head p{ margin-top: 16px; font-size: 16px; line-height: 1.7; color: rgba(244,239,230,0.7); max-width: 52ch; }

  .team-grid{
    position: relative; z-index: 2; max-width: 1240px; margin: 48px auto 0;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(20px, 2.6vw, 28px);
  }

  .member__portrait{
    position: relative; aspect-ratio: 4 / 5; border-radius: 18px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 24px 48px -24px rgba(0,0,0,0.6);
    display: flex; align-items: center; justify-content: center;
    overflow: visible;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }
  .member:hover .member__portrait{ transform: translateY(-6px); box-shadow: 0 32px 56px -22px rgba(0,0,0,0.7); }

  .member__initials{
    font-family: var(--serif); font-weight: 500; font-style: italic;
    font-size: clamp(30px, 3.4vw, 40px); color: rgba(244,239,230,0.92);
  }

  .member__badge{
    position: absolute; right: -12px; bottom: -12px;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--ink); border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 24px -10px rgba(0,0,0,0.7);
  }
  .member__badge svg{ width: 20px; height: 20px; color: var(--gold); }

  .member__name{ margin-top: 20px; font-family: var(--serif); font-weight: 500; font-size: 19px; }
  .member__role{ margin-top: 3px; font-size: 12.5px; color: var(--taupe); }
  .member__bio{ margin-top: 10px; font-size: 14px; line-height: 1.6; color: rgba(244,239,230,0.68); }

  .member__link{
    position: relative; display: inline-block; margin-top: 14px;
    font-size: 13.5px; color: var(--gold);
  }
  .member__link::after{
    content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
    background: var(--gold); transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s ease;
  }
  .member__link:hover::after{ transform: scaleX(1); }

  @media (prefers-reduced-motion: reduce){
    .member__portrait{ transition: none; }
  }


/* ==================== */


  *{ box-sizing: border-box; margin:0; padding:0; }
  body{ background: var(--ink); color: var(--ivory); font-family: var(--sans); }
  a{ color: inherit; text-decoration: none; }
  button{ font-family: inherit; }
  :focus-visible{ outline: 2px solid var(--gold); outline-offset: 3px; }

  section.before-after{ position: relative; padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 64px); overflow: hidden; }
  .glow{ position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; z-index: 0; }
  .glow--s{ width: 520px; height: 520px; top: -180px; left: 8%; background: radial-gradient(circle, rgba(201,168,99,0.18) 0%, rgba(201,168,99,0) 70%); }
  .glow--t{ width: 460px; height: 460px; bottom: -180px; right: 6%; background: radial-gradient(circle, rgba(124,49,64,0.2) 0%, rgba(124,49,64,0) 70%); }

  .ba-head{ position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; text-align: center; }
  .ba-head h2{ font-family: var(--serif); font-weight: 500; font-size: clamp(32px, 3.6vw, 46px); }
  .ba-head p{ margin: 16px auto 0; font-size: 16px; line-height: 1.7; color: rgba(244,239,230,0.7); max-width: 50ch; }

  .ba-slider{ position: relative; z-index: 2; max-width: 860px; margin: 48px auto 0; }
  .ba-track-wrap{
    position: relative; overflow: hidden; border-radius: 22px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 34px 64px -28px rgba(0,0,0,0.65);
  }
  .ba-track{ display: flex; transition: transform 0.5s cubic-bezier(.4,0,.2,1); touch-action: pan-y; }
  .ba-slide{ position: relative; flex: 0 0 100%; aspect-ratio: 4 / 3; background: var(--ink); }
  .ba-slide img{ width: 100%; height: 100%; object-fit: cover; display: block; }
  .ba-slide::after{
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 24%);
    pointer-events: none;
  }

  .ba-arrow{
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(14,23,18,0.65); border: 1px solid var(--gold-dim);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    color: var(--ivory); cursor: pointer; z-index: 5;
    transition: background 0.2s ease, border-color 0.2s ease;
  }
  .ba-arrow:hover{ background: rgba(201,168,99,0.22); border-color: var(--gold); }
  .ba-arrow svg{ width: 18px; height: 18px; }
  .ba-arrow--prev{ left: 14px; }
  .ba-arrow--next{ right: 14px; }

  .ba-dots{ display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
  .ba-dot{
    width: 8px; height: 8px; border-radius: 50%; border: none;
    background: rgba(244,239,230,0.25); cursor: pointer; padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .ba-dot.active{ background: var(--gold); transform: scale(1.35); }

  @media (max-width: 560px){
    .ba-slide{ aspect-ratio: 3 / 4; }
  }


/* ==================== */


  *{ box-sizing: border-box; margin:0; padding:0; }
  body{ background: var(--ink); color: var(--ivory); font-family: var(--sans); }
  a{ color: inherit; text-decoration: none; }
  button{ font-family: inherit; cursor: pointer; }
  :focus-visible{ outline: 2px solid var(--gold); outline-offset: 3px; }

  section.shop{ position: relative; padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 64px); overflow: hidden; }
  .glow{ position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; z-index: 0; }
  .glow--u{ width: 520px; height: 520px; top: -170px; left: 6%; background: radial-gradient(circle, rgba(201,168,99,0.18) 0%, rgba(201,168,99,0) 70%); }
  .glow--v{ width: 460px; height: 460px; bottom: -170px; right: 8%; background: radial-gradient(circle, rgba(124,49,64,0.2) 0%, rgba(124,49,64,0) 70%); }

  .shop-head{
    position: relative; z-index: 3; max-width: 1240px; margin: 0 auto;
    display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 20px;
  }
  .shop-head h2{ font-family: var(--serif); font-weight: 500; font-size: clamp(32px, 3.6vw, 46px); max-width: 14ch; }
  .shop-head p{ margin-top: 16px; font-size: 16px; line-height: 1.7; color: rgba(244,239,230,0.7); max-width: 46ch; }

  .shop-controls{ display: flex; align-items: center; gap: 12px; position: relative; }

  .arrow-btn{
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--glass); border: 1px solid var(--glass-border);
    display: flex; align-items: center; justify-content: center; color: var(--ivory);
    transition: background 0.2s ease, border-color 0.2s ease;
  }
  .arrow-btn:hover{ background: rgba(201,168,99,0.15); border-color: var(--gold); }
  .arrow-btn svg{ width: 17px; height: 17px; }

  .wishlist-toggle{
    display: flex; align-items: center; gap: 9px;
    padding: 11px 18px; border-radius: 999px;
    background: var(--glass); border: 1px solid var(--glass-border); color: var(--ivory);
    font-size: 13.5px; font-weight: 600;
    transition: border-color 0.2s ease, background 0.2s ease;
  }
  .wishlist-toggle:hover{ border-color: var(--gold); }
  .wishlist-toggle svg{ width: 16px; height: 16px; color: var(--gold); }

  .wishlist-panel{
    position: absolute; top: calc(100% + 12px); right: 0; width: 300px;
    background: var(--ink-2); border: 1px solid var(--glass-border); border-radius: 18px;
    box-shadow: 0 30px 56px -22px rgba(0,0,0,0.7);
    padding: 18px; display: none; z-index: 10;
  }
  .wishlist-panel.open{ display: block; }
  .wishlist-panel h4{ font-family: var(--serif); font-weight: 500; font-size: 15px; margin-bottom: 4px; }
  .wishlist-empty{ font-size: 13px; color: var(--taupe); padding: 10px 0 2px; }
  .wishlist-item{ display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid rgba(244,239,230,0.08); }
  .wishlist-item:last-child{ border-bottom: none; }
  .wishlist-item img{ width: 38px; height: 38px; border-radius: 8px; object-fit: contain; background: var(--ivory); flex-shrink: 0; }
  .wishlist-item .wi-name{ flex: 1; font-size: 13px; color: rgba(244,239,230,0.88); }
  .wishlist-item .wi-remove{ background: none; border: none; color: var(--taupe); font-size: 16px; line-height: 1; padding: 4px; }
  .wishlist-item .wi-remove:hover{ color: var(--gold); }

  /* ---------- product slider (scroll-snap, distinct from the before/after slider) ---------- */
  .prod-slider{ position: relative; z-index: 2; max-width: 1240px; margin: 44px auto 0; }
  .prod-track{
    display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 6px 6px 22px; scrollbar-width: none; -webkit-overflow-scrolling: touch;
  }
  .prod-track::-webkit-scrollbar{ display: none; }

  .prod-card{
    scroll-snap-align: start; flex: 0 0 auto; width: 250px;
    border-radius: 20px; overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 26px 50px -26px rgba(0,0,0,0.65);
    background: var(--ink-2);
    display: flex; flex-direction: column;
  }

  .prod-image{
    position: relative; aspect-ratio: 1 / 1;
    background: linear-gradient(160deg, #f4efe6, #e4d9c2);
    display: flex; align-items: center; justify-content: center; padding: 20px;
  }
  .prod-image img{ max-width: 100%; max-height: 100%; object-fit: contain; filter: drop-shadow(0 16px 18px rgba(0,0,0,0.25)); }

  .wishlist-btn{
    position: absolute; top: 10px; right: 10px; width: 40px; height: 40px; border-radius: 50%;
    background: rgba(244,239,230,0.95); border: 1px solid rgba(201,168,99,0.55);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 16px -4px rgba(0,0,0,0.35);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }
  .wishlist-btn:hover{ background: #fff; transform: translateY(-1px); box-shadow: 0 8px 18px -4px rgba(0,0,0,0.4); }
  .wishlist-btn svg{ width: 19px; height: 19px; color: var(--wine); fill: none; transition: color 0.2s ease, fill 0.2s ease; }
  .wishlist-btn.active svg{ color: var(--gold); fill: var(--gold); }

  .prod-info{ padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
  .prod-name{ font-family: var(--serif); font-weight: 500; font-size: 16.5px; line-height: 1.25; }
  .prod-desc{ font-size: 13px; line-height: 1.55; color: rgba(244,239,230,0.66); flex: 1; }
  .prod-footer{ display: flex; align-items: center; justify-content: space-between; margin-top: 4px; gap: 10px; }
  .prod-price{ font-family: var(--serif); font-size: 17px; color: var(--gold); }
  .prod-buy{
    font-size: 12px; font-weight: 700; padding: 9px 17px; border-radius: 999px;
    background: linear-gradient(180deg, #ddbd80, var(--gold)); color: #17130b;
    white-space: nowrap; transition: transform 0.2s ease;
  }
  .prod-buy:hover{ transform: translateY(-2px); }

  @media (max-width: 620px){
    .wishlist-panel{ right: -20px; width: calc(100vw - 40px); }
  }


/* ==================== */


  *{ box-sizing: border-box; margin:0; padding:0; }
  body{ background: var(--ink); color: var(--ivory); font-family: var(--sans); }
  a{ color: inherit; text-decoration: none; }
  :focus-visible{ outline: 2px solid var(--gold); outline-offset: 3px; }

  section.testimonials{ position: relative; padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 64px); overflow: hidden; }
  .glow{ position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; z-index: 0; }
  .glow--m{ width: 520px; height: 520px; top: -160px; right: 8%; background: radial-gradient(circle, rgba(201,168,99,0.18) 0%, rgba(201,168,99,0) 70%); }
  .glow--n{ width: 460px; height: 460px; bottom: -180px; left: 4%; background: radial-gradient(circle, rgba(124,49,64,0.2) 0%, rgba(124,49,64,0) 70%); }

  .tm-head{ position: relative; z-index: 2; max-width: 1240px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 24px; }
  .tm-head h2{ font-family: var(--serif); font-weight: 500; font-size: clamp(32px, 3.6vw, 46px); max-width: 14ch; }
  .tm-head p{ margin-top: 16px; font-size: 16px; line-height: 1.7; color: rgba(244,239,230,0.7); max-width: 46ch; }

  .aggregate{ display: flex; align-items: center; gap: 16px; }
  .aggregate strong{ font-family: var(--serif); font-weight: 500; font-size: 44px; color: var(--gold); }
  .aggregate .stars{ display: flex; gap: 3px; }
  .aggregate .stars svg{ width: 15px; height: 15px; color: var(--gold); }
  .aggregate span{ display: block; margin-top: 4px; font-size: 12.5px; color: var(--taupe); }

  .tm-grid{
    position: relative; z-index: 2; max-width: 1240px; margin: 52px auto 0;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
  }

  .review{
    padding: 28px 26px;
    border-radius: 18px;
    background: linear-gradient(155deg, rgba(244,239,230,0.08), rgba(244,239,230,0.02));
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 24px 50px -26px rgba(0,0,0,0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .review:hover{ transform: translateY(-5px); box-shadow: 0 30px 56px -24px rgba(0,0,0,0.68); }
  .review:nth-child(even){ margin-top: 26px; }

  .review .mark{ font-family: var(--serif); font-style: italic; font-size: 40px; color: var(--gold); line-height: 1; opacity: 0.85; }
  .review .stars{ display: flex; gap: 3px; margin-top: 6px; }
  .review .stars svg{ width: 13px; height: 13px; color: var(--gold); }
  .review p{ margin-top: 14px; font-size: 15px; line-height: 1.7; color: rgba(244,239,230,0.88); }
  .review footer{ margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(244,239,230,0.1); }
  .review footer strong{ font-family: var(--serif); font-weight: 500; font-size: 15px; color: var(--ivory); }
  .review footer span{ display: block; margin-top: 3px; font-size: 12.5px; color: var(--taupe); }

  @media (prefers-reduced-motion: reduce){
    .review{ transition: none; }
  }
  @media (max-width: 700px){
    .review:nth-child(even){ margin-top: 0; }
  }

  /* ---------- leave a review ---------- */
  .review-form{
    position: relative; z-index: 2; max-width: 640px; margin: 56px auto 0;
    padding: 32px 30px; border-radius: 20px;
    background: linear-gradient(155deg, rgba(244,239,230,0.07), rgba(244,239,230,0.02));
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  }
  .review-form h3{ font-family: var(--serif); font-weight: 500; font-size: 22px; }
  .review-form > p{ margin-top: 8px; font-size: 14px; color: rgba(244,239,230,0.65); }

  .rf-stars{ display: flex; gap: 6px; margin-top: 20px; }
  .rf-stars button{ background: none; border: none; cursor: pointer; padding: 2px; }
  .rf-stars svg{ width: 22px; height: 22px; color: var(--gold); opacity: 0.3; transition: opacity 0.15s ease; }
  .rf-stars button.filled svg{ opacity: 1; }

  #reviewForm{ margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
  #reviewForm input, #reviewForm textarea{
    font-family: var(--sans); font-size: 14.5px; color: var(--ivory);
    background: rgba(244,239,230,0.05); border: 1px solid rgba(244,239,230,0.15);
    border-radius: 12px; padding: 12px 16px; outline: none;
  }
  #reviewForm input::placeholder, #reviewForm textarea::placeholder{ color: rgba(244,239,230,0.4); }
  #reviewForm textarea{ min-height: 90px; resize: vertical; }
  #reviewForm input:focus, #reviewForm textarea:focus{ border-color: var(--gold); }
  #reviewForm .btn{ align-self: flex-start; margin-top: 4px; }
  .rf-note{ margin-top: 4px; font-size: 13px; color: var(--gold); min-height: 16px; }

  /* ---------- leave-a-review panel ---------- */
  .review-cta{
    margin-top: 56px; position: relative; z-index: 2; max-width: 1240px; margin-left: auto; margin-right: auto;
    padding: clamp(32px, 4vw, 48px);
    border-radius: 22px;
    background: linear-gradient(155deg, rgba(244,239,230,0.07), rgba(244,239,230,0.02));
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: grid; grid-template-columns: minmax(0,0.85fr) minmax(0,1.15fr);
    gap: clamp(28px, 4vw, 56px); align-items: center;
  }
  .review-cta__intro h3{ font-family: var(--serif); font-weight: 500; font-size: clamp(24px, 2.4vw, 30px); max-width: 12ch; }
  .review-cta__intro p{ margin-top: 12px; font-size: 14.5px; line-height: 1.7; color: rgba(244,239,230,0.68); max-width: 34ch; }

  .rate-picker{ display: flex; gap: 6px; }
  .rate-picker button{ background: none; border: none; cursor: pointer; padding: 2px; }
  .rate-picker svg{ width: 24px; height: 24px; color: rgba(184,169,140,0.5); transition: color 0.15s ease, transform 0.15s ease; }
  .rate-picker button:hover svg{ transform: scale(1.08); }
  .rate-picker svg.filled{ color: var(--gold); }

  form.review-form{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
  .review-form .field{ display: flex; flex-direction: column; gap: 6px; }
  .review-form .field--full{ grid-column: 1 / -1; }
  .review-form .rating-field{ flex-direction: row; align-items: center; gap: 14px; }
  .review-form label{ font-size: 12.5px; color: var(--taupe); }
  .review-form input, .review-form select, .review-form textarea{
    font-family: var(--sans); font-size: 14.5px; color: var(--ivory);
    background: rgba(244,239,230,0.05); border: 1px solid rgba(244,239,230,0.16);
    border-radius: 10px; padding: 11px 13px; outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
  }
  .review-form input:focus, .review-form select:focus, .review-form textarea:focus{
    border-color: var(--gold); background: rgba(244,239,230,0.08);
  }
  .review-form textarea{ resize: vertical; min-height: 90px; }
  .review-form select{ appearance: none; }

  .review-form .submit-row{ grid-column: 1 / -1; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
  .review-form__submit{
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--sans); font-weight: 600; font-size: 14px;
    padding: 13px 26px; border-radius: 999px; color: #17130b;
    background: linear-gradient(180deg, #ddbd80, var(--gold));
    border: 1px solid transparent; cursor: pointer;
    box-shadow: 0 12px 26px -12px rgba(201,168,99,0.55);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .review-form__submit:hover{ transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(201,168,99,0.7); }
  .review-form .error{ font-size: 12.5px; color: #e08a97; display: none; }
  .review-form .success{ font-size: 13px; color: var(--gold); display: none; }

  @media (max-width: 820px){
    .review-cta{ grid-template-columns: 1fr; }
    form.review-form{ grid-template-columns: 1fr; }
  }


/* ==================== */


  *{ box-sizing: border-box; margin:0; padding:0; }
  body{ background: var(--ink); color: var(--ivory); font-family: var(--sans); }
  a{ color: inherit; text-decoration: none; }
  :focus-visible{ outline: 2px solid var(--gold); outline-offset: 3px; }

  section.contact{
    position: relative; text-align: center; overflow: hidden;
    padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 64px) clamp(64px, 8vw, 104px);
  }
  .glow{ position: absolute; border-radius: 50%; filter: blur(110px); pointer-events: none; z-index: 0; }
  .glow--r{ width: 560px; height: 560px; top: -220px; left: 50%; transform: translateX(-50%); background: radial-gradient(circle, rgba(201,168,99,0.2) 0%, rgba(201,168,99,0) 70%); }

  .contact-inner{ position: relative; z-index: 2; max-width: 620px; margin: 0 auto; }
  .contact-inner h2{ font-family: var(--serif); font-weight: 500; font-size: clamp(30px, 3.4vw, 42px); }
  .contact-inner > p{ margin-top: 14px; font-size: 16px; line-height: 1.7; color: rgba(244,239,230,0.7); }

  .contact-actions{
    margin-top: 34px; display: flex; flex-wrap: wrap;
    justify-content: center; gap: 16px;
  }

  .phone-link{
    display: inline-flex; align-items: center; gap: 14px;
    padding: 18px 34px; border-radius: 999px;
    background: linear-gradient(180deg, #ddbd80, var(--gold)); color: #17130b;
    font-family: var(--serif); font-weight: 500; font-size: clamp(19px, 2.2vw, 23px);
    box-shadow: 0 22px 44px -18px rgba(201,168,99,0.55);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .phone-link:hover{ transform: translateY(-3px); box-shadow: 0 28px 50px -18px rgba(201,168,99,0.7); }
  .phone-link svg{ width: 22px; height: 22px; flex-shrink: 0; }

  .whatsapp-link{
    display: inline-flex; align-items: center; gap: 12px;
    padding: 17px 30px; border-radius: 999px;
    border: 1px solid rgba(244,239,230,0.3); color: var(--ivory);
    font-family: var(--sans); font-weight: 600; font-size: 15px;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  }
  .whatsapp-link:hover{ transform: translateY(-3px); border-color: var(--gold); background: rgba(201,168,99,0.08); }
  .whatsapp-link svg{ width: 19px; height: 19px; flex-shrink: 0; color: var(--gold); }

  .tap-note{ display: block; margin-top: 16px; font-size: 12.5px; color: var(--taupe); }

  .address-block{ margin-top: 48px; padding-top: 26px; border-top: 1px solid rgba(244,239,230,0.1); text-align: center; }
  .address-block .addr-icon{ width: 20px; height: 20px; color: var(--gold); margin-bottom: 10px; }
  .address-block .addr-name{ font-family: var(--serif); font-weight: 500; font-size: 17px; color: var(--ivory); }
  .address-block .addr-line{ margin-top: 6px; font-size: 14px; line-height: 1.6; color: rgba(244,239,230,0.68); }
  .address-block .directions{
    display: inline-flex; align-items: center; gap: 7px; margin-top: 14px;
    font-size: 13.5px; color: var(--gold); position: relative;
  }
  .address-block .directions::after{
    content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
    background: var(--gold); transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s ease;
  }
  .address-block .directions:hover::after{ transform: scaleX(1); }
  .address-block .directions svg{ width: 14px; height: 14px; }
