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

  :root {
    --ink:      #1c1710;
    --ink2:     #2c2318;
    --ink3:     #3a2f22;
    --cream:    #f4ede0;
    --cream2:   #e8dbc8;
    --gold:     #c49a3e;
    --gold2:    #a07a28;
    --muted:    #9a8870;
    --serif:    'Cormorant Garamond', Georgia, serif;
    --sans:     'Jost', sans-serif;
  }

  html { scroll-behavior: smooth; font-size: 17px; }

  body {
    background: var(--ink);
    color: var(--cream);
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ─── grain overlay ─── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 999;
  }

  /* ─── nav ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5vw;
    background: linear-gradient(to bottom, rgba(28,23,16,0.95) 0%, transparent 100%);
    transition: background 0.4s;
  }
  nav.scrolled { background: rgba(28,23,16,0.97); }
  .nav-logo {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--cream);
    text-decoration: none;
  }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-toggle { display: none; }
  .nav-links a {
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream2);
    text-decoration: none;
    opacity: 0.75;
    transition: opacity 0.2s, color 0.2s;
  }
  .nav-links a:hover { opacity: 1; color: var(--gold); }

  /* ─── hero ─── */
  #hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 5vw 8vh;
    position: relative;
    overflow: hidden;
  }
  .hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
    filter: brightness(0.45);
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 70% 40%, rgba(60,35,10,0.55) 0%, transparent 65%),
      radial-gradient(ellipse 100% 50% at 0% 100%, rgba(28,23,16,0.85) 0%, transparent 60%),
      linear-gradient(to top, rgba(28,23,16,0.95) 0%, rgba(28,23,16,0.2) 50%, transparent 100%);
  }
  .hero-line {
    position: absolute;
    top: 0; bottom: 0;
    left: 58%;
    width: 1px;
    background: linear-gradient(to bottom, transparent 0%, rgba(196,154,62,0.25) 30%, rgba(196,154,62,0.25) 70%, transparent 100%);
  }
  .hero-tag {
    position: relative;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .hero-tag::before {
    content: '';
    display: block;
    width: 2.5rem;
    height: 1px;
    background: var(--gold);
    opacity: 0.7;
  }
  .hero-heading {
    position: relative;
    font-family: var(--serif);
    font-size: clamp(3.8rem, 10vw, 9rem);
    font-weight: 300;
    line-height: 0.92;
    letter-spacing: -0.01em;
    max-width: 14ch;
    margin-bottom: 2.5rem;
  }
  .hero-heading em {
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
  }
  .hero-sub {
    position: relative;
    max-width: 36ch;
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--cream2);
    opacity: 0.75;
    margin-bottom: 3rem;
    line-height: 1.8;
  }
  .hero-ctas {
    position: relative;
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
  }
  .btn {
    display: inline-block;
    text-decoration: none;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 0.95rem 2.2rem;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--ink);
  }
  .btn-primary:hover { background: #d8ac52; }
  .btn-ghost {
    background: transparent;
    color: var(--cream2);
    border: 1px solid rgba(244,237,224,0.25);
  }
  .btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
  }
  .hero-scroll {
    position: absolute;
    bottom: 3rem;
    right: 5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    opacity: 0.4;
  }
  .hero-scroll span {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
  }
  .hero-scroll-line {
    width: 1px;
    height: 4rem;
    background: linear-gradient(to bottom, var(--cream), transparent);
    animation: scrollpulse 2s ease-in-out infinite;
  }
  @keyframes scrollpulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 0.8; transform: scaleY(0.6); transform-origin: top; }
  }

  /* ─── divider ─── */
  .divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0 auto 5rem;
    max-width: 20rem;
  }
  .divider::before, .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(196,154,62,0.3);
  }
  .divider-icon {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    opacity: 0.7;
  }

  /* ─── sections ─── */
  section { padding: 7rem 5vw; }

  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
  }
  .section-tag::before {
    content: '';
    display: block;
    width: 1.5rem;
    height: 1px;
    background: var(--gold);
  }

  h2 {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  h2 em { font-style: italic; color: var(--gold); }

  /* ─── about ─── */
  #about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem 8rem;
    align-items: center;
    border-top: 1px solid rgba(196,154,62,0.15);
  }
  .about-text p {
    color: var(--cream2);
    opacity: 0.75;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    max-width: 46ch;
  }
  .about-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(196,154,62,0.15);
  }
  .stat-num {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.3rem;
  }
  .stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .about-image-wrap {
    position: relative;
  }
  .about-image-box {
    width: 100%;
    aspect-ratio: 4/5;
    background: var(--ink2);
    position: relative;
    overflow: hidden;
  }
  .about-image-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 60% at 50% 30%, rgba(196,154,62,0.12), transparent),
      linear-gradient(135deg, rgba(80,50,20,0.4) 0%, transparent 50%);
  }
  .about-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--muted);
    opacity: 0.4;
  }
  .about-accent-line {
    position: absolute;
    top: 2rem;
    left: -1.5rem;
    width: 1px;
    height: 8rem;
    background: linear-gradient(to bottom, var(--gold), transparent);
    opacity: 0.4;
  }
  .about-corner-tag {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--gold);
    color: var(--ink);
    padding: 1.2rem 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
  }

  /* ─── products ─── */
  #products {
    background: var(--ink2);
    border-top: 1px solid rgba(196,154,62,0.1);
    border-bottom: 1px solid rgba(196,154,62,0.1);
  }
  .products-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: end;
    margin-bottom: 5rem;
  }
  .products-intro {
    font-size: 1.05rem;
    color: var(--cream2);
    opacity: 0.7;
    max-width: 40ch;
    align-self: end;
  }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(196,154,62,0.1);
  }
  .product-card {
    background: var(--ink2);
    padding: 2.5rem 2rem;
    transition: background 0.3s;
    cursor: default;
    position: relative;
    overflow: hidden;
  }
  .product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }
  .product-card:hover { background: var(--ink3); }
  .product-card:hover::before { transform: scaleX(1); }
  .product-icon {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
  }
  .product-name {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--cream);
  }
  .product-desc {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
  }
  .product-detail {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(196,154,62,0.15);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.75;
  }

  .about-img-placeholder { display: none; }
  .about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  /* ─── photo strip ─── */
  .photo-strip {
    position: relative;
    height: 55vh;
    min-height: 340px;
    overflow: hidden;
    display: block;
  }
  .photo-strip img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    filter: brightness(0.55);
  }
  .photo-strip-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, transparent 20%, rgba(28,23,16,0.4) 100%);
  }
  .photo-strip-quote {
    font-family: var(--serif);
    font-size: clamp(1.4rem, 3.5vw, 2.6rem);
    font-weight: 300;
    color: var(--cream);
    text-align: center;
    letter-spacing: 0.02em;
    padding: 0 5vw;
    opacity: 0.92;
    text-shadow: 0 2px 24px rgba(0,0,0,0.4);
  }

  /* ─── reviews ─── */
  #reviews {
    text-align: center;
  }
  .reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3.5rem;
  }
  .review-card {
    background: rgba(196,154,62,0.04);
    border: 1px solid rgba(196,154,62,0.12);
    padding: 2rem 1.75rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .review-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
  }
  .review-text {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    color: var(--light);
    line-height: 1.7;
    margin: 0;
    flex: 1;
  }
  .review-author {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(196,154,62,0.1);
  }
  .review-name {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--light);
  }
  .review-meta {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.2rem;
  }

  /* ─── locations ─── */
  #locations {
    border-top: 1px solid rgba(196,154,62,0.15);
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
  .location-single {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    align-items: stretch;
    min-height: 800px;
  }
  .location-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5vw;
    border-right: 1px solid rgba(196,154,62,0.15);
  }
  .loc-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(196,154,62,0.15);
  }
  .loc-detail-row {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 1rem;
    color: var(--cream2);
    opacity: 0.85;
    line-height: 1.6;
  }
  .loc-detail-label {
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 1;
  }
  .loc-detail-row a {
    color: var(--cream2);
    text-decoration: none;
    transition: color 0.2s;
  }
  .loc-detail-row a:hover { color: var(--gold); }
  .location-map {
    position: relative;
    min-height: 800px;
    overflow: hidden;
  }
  .location-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  /* ─── contact ─── */
  #contact {
    background: var(--ink2);
    border-top: 1px solid rgba(196,154,62,0.1);
    text-align: center;
  }
  #contact h2 { margin-bottom: 0.75rem; }
  .contact-sub {
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 3.5rem;
  }
  .contact-cards {
    display: flex;
    justify-content: center;
    gap: 1px;
    background: rgba(196,154,62,0.1);
    max-width: 600px;
    margin: 0 auto 4rem;
  }
  .contact-card {
    flex: 1;
    background: var(--ink2);
    padding: 2rem 1.5rem;
  }
  .contact-icon {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    opacity: 0.6;
  }
  .contact-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.5rem;
  }
  .contact-value {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--cream);
  }
  .contact-value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
  }
  .contact-value a:hover { color: var(--gold); }

  /* ─── footer ─── */
  footer {
    padding: 3rem 5vw;
    border-top: 1px solid rgba(196,154,62,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-brand {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
  }
  .footer-brand span { color: var(--gold); }
  .footer-copy {
    font-size: 0.85rem;
    color: var(--muted);
    letter-spacing: 0.05em;
  }
  .footer-tagline {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1rem;
    color: var(--muted);
  }
  .footer-social {
    display: flex;
    gap: 1.25rem;
    align-items: center;
  }
  .footer-social a {
    color: var(--muted);
    transition: color 0.2s;
    display: flex;
    align-items: center;
  }
  .footer-social a:hover { color: var(--gold); }

  /* ─── reveal animations ─── */
  .reveal {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }

  /* ─── hero entry ─── */
  .hero-tag   { animation: fadeUp 0.9s ease 0.2s both; }
  .hero-heading { animation: fadeUp 1s ease 0.35s both; }
  .hero-sub   { animation: fadeUp 0.9s ease 0.55s both; }
  .hero-ctas  { animation: fadeUp 0.9s ease 0.7s both; }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(2rem); }
    to   { opacity: 1; transform: none; }
  }

  /* ─── responsive ─── */
  @media (max-width: 900px) {
    section { padding: 5rem 5vw; }

    #about { grid-template-columns: 1fr; gap: 3rem; }
    .about-image-wrap { max-width: 100%; }
    .about-corner-tag { bottom: 0; right: 0; }

    .products-header { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
    .products-grid { grid-template-columns: 1fr 1fr; }

    .reviews-grid { grid-template-columns: 1fr 1fr; }

    #locations { padding: 5rem 0 0; }
    .location-single { grid-template-columns: 1fr; min-height: auto; }
    .location-info { padding: 0 5vw 3rem; border-right: none; border-bottom: 1px solid rgba(196,154,62,0.15); }
    .location-map { min-height: 400px; position: relative; }

    .contact-cards { max-width: 100%; }

    footer { gap: 1rem; }
    .footer-tagline { display: none; }
  }

  @media (max-width: 600px) {
    html { font-size: 18px; }

    section { padding: 4rem 5vw; }

    nav { padding: 1rem 5vw; }
    .nav-logo-img { height: 36px; }

    /* hamburger button */
    .nav-toggle {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 24px;
      height: 17px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 200;
    }
    .nav-toggle span {
      display: block;
      width: 100%;
      height: 1px;
      background: var(--cream);
      transition: transform 0.3s, opacity 0.3s;
    }
    nav.menu-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    nav.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
    nav.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* mobile nav drawer */
    .nav-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2.5rem;
      position: fixed;
      inset: 0;
      background: rgba(18,14,9,0.98);
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
      z-index: 150;
    }
    nav.menu-open .nav-links {
      opacity: 1;
      pointer-events: all;
    }
    .nav-links a { font-size: 0.75rem; letter-spacing: 0.25em; opacity: 1; }

    #hero { padding: 0 5vw 6vh; }
    .hero-photo { object-position: 60% center; }
    .hero-heading { font-size: clamp(2.8rem, 13vw, 5rem); margin-bottom: 1.5rem; }
    .hero-sub { font-size: 1rem; margin-bottom: 2rem; max-width: 100%; }
    .hero-scroll { display: none; }
    .hero-line { display: none; }

    .about-stat-grid { grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
    .stat-num { font-size: 2.4rem; }

    .products-grid { grid-template-columns: 1fr; }
    .products-header { margin-bottom: 2rem; }
    .product-card { padding: 1.8rem 1.4rem; }

    .reviews-grid { grid-template-columns: 1fr; }

    #locations { padding: 4rem 0 0; }
    .location-info { padding: 0 5vw 2.5rem; }
    .location-map { min-height: 300px; }

    #contact { padding: 4rem 5vw; }
    .photo-strip { height: 40vh; min-height: 260px; }
    .contact-cards { flex-direction: column; }
    .contact-card { padding: 1.5rem; }

    footer { padding: 2rem 5vw; flex-direction: column; align-items: flex-start; gap: 0.75rem; }
    .footer-logo-img { height: 44px; }
    .footer-copy { font-size: 0.68rem; }
  }

  .nav-logo-img {
    height: 44px;
    width: auto;
    mix-blend-mode: screen;
    filter: brightness(1.1);
    display: block;
  }
  .footer-logo-img {
    height: 56px;
    width: auto;
    mix-blend-mode: screen;
    filter: brightness(1.05);
    display: block;
  }