  :root {
      --ivory: #FBF6EF;
      --maroon: #5B1A2B;
      --maroon-deep: #3E0F1C;
      --gold: #B6862C;
      --gold-soft: #D9B469;
      --blush: #E9C9C2;
      --ink: #2A1B1E;
      --line: rgba(91, 26, 43, 0.18);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--ivory);
      color: var(--ink);
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    .display {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 500;
      letter-spacing: 0.01em;
    }

    .eyebrow {
      font-family: 'Marcellus', serif;
      text-transform: uppercase;
      letter-spacing: 0.32em;
      font-size: 0.72rem;
      color: var(--gold);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* ===== Pleat motif (signature element) ===== */
    .pleats {
      position: absolute;
      inset: 0;
      background:
        repeating-linear-gradient(100deg,
          rgba(182, 134, 44, 0.07) 0px,
          rgba(182, 134, 44, 0.07) 2px,
          transparent 2px,
          transparent 34px);
      pointer-events: none;
    }

    .pleat-divider {
      height: 46px;
      width: 100%;
      background:
        repeating-linear-gradient(70deg,
          var(--maroon) 0px,
          var(--maroon) 3px,
          transparent 3px,
          transparent 22px);
      opacity: 0.9;
    }

    /* ===== Header ===== */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(251, 246, 239, 0.92);
      backdrop-filter: blur(6px);
      border-bottom: 1px solid var(--line);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 32px;
      max-width: 1180px;
      margin: 0 auto;
    }

    .logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--maroon-deep);
      letter-spacing: 0.03em;
    }

    .logo span {
      color: var(--gold);
    }

    .nav-links {
      display: flex;
      gap: 36px;
      font-size: 0.86rem;
      letter-spacing: 0.04em;
    }

    .nav-links a {
      position: relative;
      padding-bottom: 4px;
      color: var(--maroon-deep);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      border: 1px solid var(--maroon-deep);
      padding: 9px 20px;
      font-size: 0.8rem;
      letter-spacing: 0.05em;
    }

    .nav-cta:hover {
      background: var(--maroon-deep);
      color: var(--ivory);
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.6rem;
      color: var(--maroon-deep);
      cursor: pointer;
    }

    /* ===== Hero ===== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: var(--maroon-deep);
      color: var(--ivory);
      overflow: hidden;
      padding-top: 80px;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 85% 20%, rgba(182, 134, 44, 0.25), transparent 45%),
        radial-gradient(circle at 10% 90%, rgba(233, 201, 194, 0.12), transparent 50%);
    }

    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 60px;
      align-items: center;
      width: 100%;
    }

    .hero h1 {
      font-size: clamp(2.8rem, 5.4vw, 4.6rem);
      line-height: 1.05;
      color: var(--ivory);
      margin: 18px 0 26px;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--gold-soft);
    }

    .hero p.lede {
      font-size: 1.08rem;
      line-height: 1.7;
      max-width: 480px;
      color: rgba(251, 246, 239, 0.82);
      margin-bottom: 34px;
      font-weight: 300;
    }

    .hero-ctas {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

    .btn-gold {
      background: var(--gold);
      color: var(--maroon-deep);
      padding: 14px 30px;
      font-size: 0.85rem;
      letter-spacing: 0.06em;
      font-family: 'Marcellus', serif;
      text-transform: uppercase;
      transition: transform 0.25s ease, background 0.25s ease;
      display: inline-block;
    }

    .btn-gold:hover {
      background: var(--gold-soft);
      transform: translateY(-2px);
    }

    .btn-outline {
      border: 1px solid rgba(251, 246, 239, 0.5);
      color: var(--ivory);
      padding: 14px 30px;
      font-size: 0.85rem;
      letter-spacing: 0.06em;
      font-family: 'Marcellus', serif;
      text-transform: uppercase;
      transition: border-color 0.25s ease;
    }

    .btn-outline:hover {
      border-color: var(--gold);
    }

    .hero-visual {
      position: relative;
      height: 560px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .drape {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 4px;
      background:
        repeating-linear-gradient(78deg,
          var(--blush) 0px, var(--blush) 26px,
          #DFAFA6 26px, #DFAFA6 28px);
      box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
    }

    .drape::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 55%, rgba(62, 15, 28, 0.6) 100%);
    }

    .drape::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 60%, rgba(62, 15, 28, 0.55) 100%);
    }

    .drape-tag {
      position: absolute;
      bottom: 28px;
      left: 28px;
      z-index: 3;
      background: rgba(251, 246, 239, 0.94);
      color: var(--maroon-deep);
      padding: 16px 22px;
      max-width: 230px;
      font-family: 'Marcellus', serif;
      font-size: 0.78rem;
      line-height: 1.5;
      letter-spacing: 0.02em;
    }

    .drape-tag b {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 4px;
    }

    /* ===== Marquee strip ===== */
    .strip {
      background: var(--gold);
      color: var(--maroon-deep);
      padding: 13px 0;
      overflow: hidden;
      white-space: nowrap;
      font-family: 'Marcellus', serif;
      font-size: 0.82rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .strip-track {
      display: inline-block;
      padding-left: 100%;
      animation: scroll 26s linear infinite;
    }

    .strip span {
      margin: 0 28px;
    }

    @keyframes scroll {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-100%);
      }
    }

    /* ===== Section generic ===== */
    section {
      padding: 110px 0;
    }

    .section-head {
      max-width: 620px;
      margin-bottom: 64px;
    }

    .section-head h2 {
      font-size: clamp(2.2rem, 3.6vw, 3rem);
      color: var(--maroon-deep);
      margin-top: 14px;
    }

    .section-head p {
      margin-top: 18px;
      line-height: 1.75;
      color: #5a4a4d;
      font-size: 1rem;
    }

    /* ===== About ===== */
    .about {
      background: var(--ivory);
      position: relative;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 70px;
      align-items: center;
    }

    .about-frame {
      position: relative;
      aspect-ratio: 3/4;
      border: 1px solid var(--gold);
      padding: 18px;
    }

    .about-frame-inner {
      width: 100%;
      height: 100%;
      /* background:linear-gradient(160deg, var(--blush), #c98f86 70%); */
      position: relative;
      overflow: hidden;
    }

    .about-frame-inner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.16) 0 10px, transparent 10px 40px);
    }

    .about-stat {
      position: absolute;
      right: -26px;
      bottom: 36px;
      background: var(--maroon-deep);
      color: var(--ivory);
      padding: 22px 26px;
      text-align: center;
      min-width: 120px;
    }

    .about-stat .num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.4rem;
      color: var(--gold-soft);
    }

    .about-stat .lbl {
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-top: 4px;
    }

    .about-copy p {
      line-height: 1.85;
      color: #4d3c3f;
      margin-bottom: 18px;
      font-size: 1.02rem;
    }

    .about-list {
      margin-top: 30px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px 30px;
    }

    .about-list li {
      list-style: none;
      display: flex;
      gap: 12px;
      align-items: flex-start;
      font-size: 0.92rem;
      color: #4d3c3f;
    }

    .about-list li::before {
      content: '✦';
      color: var(--gold);
      font-size: 0.8rem;
      margin-top: 3px;
    }

    /* ===== Collections ===== */
    .collections {
      background: var(--maroon-deep);
      color: var(--ivory);
      position: relative;
    }

    .collections .section-head h2 {
      color: var(--ivory);
    }

    .collections .section-head p {
      color: rgba(251, 246, 239, 0.72);
    }

    .coll-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-auto-rows: 1fr;
      gap: 2px;
      background: rgba(251, 246, 239, 0.12);
    }

    .coll-card {
      background: var(--maroon-deep);
      aspect-ratio: 3/4;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      transition: background 0.4s ease;
    }

    .coll-card .swatch {
      position: absolute;
      inset: 0;
      opacity: 0.9;
      transition: transform 0.5s ease;
    }

    .coll-card:hover .swatch {
      transform: scale(1.08);
    }

    .coll-card .overlay {
      position: relative;
      z-index: 2;
      padding: 24px;
      width: 100%;
      background: linear-gradient(180deg,
          transparent 0%,
          rgba(20, 5, 10, 0.15) 30%,
          rgba(20, 5, 10, 0.75) 65%,
          rgba(20, 5, 10, 0.95) 100%);
    }

    .coll-card h3 {
      font-size: 1.5rem;
      color: var(--ivory);
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6), 0 2px 12px rgba(0, 0, 0, 0.4);
      margin: 0;
    }

    .coll-card .tag {
      font-size: 0.7rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: white;
      margin-top: 4px;
      display: block;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    }

    .c1 .swatch {
      background: repeating-linear-gradient(60deg, #8C2D45, #8C2D45 18px, #A8425C 18px, #A8425C 36px);
    }

    .c2 .swatch {
      background: repeating-linear-gradient(60deg, #B6862C, #B6862C 18px, #C9A24E 18px, #C9A24E 36px);
    }

    .c3 .swatch {
      background: repeating-linear-gradient(60deg, #3E0F1C, #3E0F1C 18px, #5B1A2B 18px, #5B1A2B 36px);
    }

    .c4 .swatch {
      background: repeating-linear-gradient(60deg, #E9C9C2, #E9C9C2 18px, #DFAFA6 18px, #DFAFA6 36px);
    }

    .c5 .swatch {
      background: repeating-linear-gradient(115deg, #7A4B5C, #7A4B5C 16px, #946272 16px, #946272 32px);
    }

    .c6 .swatch {
      background: repeating-linear-gradient(115deg, #4F6B5C, #4F6B5C 16px, #6B8A78 16px, #6B8A78 32px);
    }

    .c7 .swatch {
      background: repeating-linear-gradient(115deg, #9C5A3C, #9C5A3C 16px, #B97A56 16px, #B97A56 32px);
    }

    .c8 .swatch {
      background: repeating-linear-gradient(115deg, #3A3A52, #3A3A52 16px, #52527A 16px, #52527A 32px);
    }

    /* ===== Why us ===== */
    .why {
      background: var(--ivory);
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 48px;
    }

    .why-card {
      padding: 38px 30px;
      border: 1px solid var(--line);
      position: relative;
    }

    .why-card .icon {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 1px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      color: var(--gold);
    }

    .why-card h3 {
      font-size: 1.3rem;
      color: var(--maroon-deep);
      margin-bottom: 10px;
    }

    .why-card p {
      font-size: 0.92rem;
      line-height: 1.7;
      color: #5a4a4d;
    }

    /* ===== Visit / Contact ===== */
    .visit {
      background: var(--blush);
      position: relative;
      overflow: hidden;
    }

    .visit-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border: 1px solid var(--maroon);
    }

    .visit-info {
      background: var(--ivory);
      padding: 64px 56px;
    }

    .visit-info .eyebrow {
      color: var(--maroon);
    }

    .visit-info h2 {
      font-size: 2.4rem;
      color: var(--maroon-deep);
      margin: 14px 0 30px;
    }

    .vrow {
      display: flex;
      gap: 18px;
      padding: 18px 0;
      border-top: 1px solid var(--line);
    }

    .vrow:last-child {
      border-bottom: 1px solid var(--line);
    }

    .vrow .k {
      font-family: 'Marcellus', serif;
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--gold);
      min-width: 110px;
      padding-top: 2px;
    }

    .vrow .v {
      font-size: 1rem;
      color: var(--ink);
      line-height: 1.6;
    }

    .vrow .v a {
      border-bottom: 1px solid var(--gold);
      padding-bottom: 1px;
    }

    .visit-map {
      position: relative;
      min-height: 380px;
      background: var(--maroon-deep);
    }

    .visit-map iframe {
      width: 100%;
      height: 100%;
      min-height: 380px;
      border: 0;
      filter: saturate(0.85) contrast(1.05);
    }

    .visit-map-tag {
      position: absolute;
      top: 24px;
      left: 24px;
      z-index: 3;
      background: var(--gold);
      color: var(--maroon-deep);
      padding: 10px 18px;
      font-family: 'Marcellus', serif;
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    /* ===== Footer ===== */
    footer {
      background: var(--maroon-deep);
      color: rgba(251, 246, 239, 0.7);
      padding: 60px 0 30px;
    }

    .foot-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr 1fr;
      gap: 50px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(251, 246, 239, 0.15);
    }

    .foot-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem;
      color: var(--ivory);
      margin-bottom: 14px;
    }

    .foot-logo span {
      color: var(--gold-soft);
    }

    .foot-grid p {
      font-size: 0.88rem;
      line-height: 1.7;
      max-width: 300px;
    }

    .foot-col h4 {
      font-family: 'Marcellus', serif;
      font-size: 0.76rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold-soft);
      margin-bottom: 16px;
    }

    .foot-col a,
    .foot-col p {
      display: block;
      font-size: 0.9rem;
      line-height: 2.1;
      color: rgba(251, 246, 239, 0.75);
    }

    .foot-bottom {
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      font-size: 0.78rem;
      flex-wrap: wrap;
      gap: 10px;
      color: rgba(251, 246, 239, 0.5);
    }

    /* ===== Responsive ===== */
    @media (max-width: 940px) {
      .nav-links {
        display: none;
      }

      .menu-toggle {
        display: block;
      }

      .hero-grid {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        height: 380px;
        order: -1;
      }

      .about-grid {
        grid-template-columns: 1fr;
      }

      .coll-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .why-grid {
        grid-template-columns: 1fr;
      }

      .visit-grid {
        grid-template-columns: 1fr;
      }

      .foot-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }
    }