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

    :root {
      --dark:    #151515;
      --dark2:   #1e1e1e;
      --dark3:   #252525;
      --gold:    #c8a050;
      --gold2:   #e8bc60;
      --cream:   #f0ebe3;
      --muted:   #9a9184;
      --red:     #c0392b;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--dark);
      color: var(--cream);
      font-family: 'Raleway', sans-serif;
      font-weight: 400;
      line-height: 1.7;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    /* ─── UTILITY ─── */
    .gold { color: var(--gold); }
    .section-label {
      font-family: 'Raleway', sans-serif;
      font-weight: 600;
      font-size: .7rem;
      letter-spacing: .35em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: .6rem;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      font-weight: 700;
      line-height: 1.2;
      color: var(--cream);
      margin-bottom: 1rem;
    }
    .divider-ornament {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 1rem 0 1.4rem;
    }
    .divider-ornament span {
      flex: 1;
      height: 1px;
      background: var(--gold);
      opacity: .35;
    }
    .divider-ornament i {
      color: var(--gold);
      font-size: .7rem;
    }
    .btn {
      display: inline-block;
      padding: .75rem 2rem;
      font-family: 'Raleway', sans-serif;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      cursor: pointer;
      transition: all .25s;
    }
    .btn-outline {
      border: 1px solid var(--cream);
      color: var(--cream);
    }
    .btn-outline:hover { background: var(--cream); color: var(--dark); }
    .btn-gold {
      background: var(--gold);
      color: var(--dark);
      border: 1px solid var(--gold);
    }
    .btn-gold:hover { background: var(--gold2); border-color: var(--gold2); }

    /* ─── ZIGZAG ─── */
    .zigzag-bottom {
      position: relative;
    }
    .zigzag-bottom::after {
      content: '';
      position: absolute;
      bottom: -18px;
      left: 0;
      width: 100%;
      height: 18px;
      background-image:
        linear-gradient(135deg, var(--dark) 33.33%, transparent 33.33%) 0 0,
        linear-gradient(225deg, var(--dark) 33.33%, transparent 33.33%) 0 0;
      background-repeat: repeat-x;
      background-size: 36px 18px;
      z-index: 10;
    }
    .zigzag-bottom-dark2::after {
      background-image:
        linear-gradient(135deg, var(--dark2) 33.33%, transparent 33.33%) 0 0,
        linear-gradient(225deg, var(--dark2) 33.33%, transparent 33.33%) 0 0;
      background-repeat: repeat-x;
      background-size: 36px 18px;
    }
    .zigzag-top {
      position: relative;
    }
    .zigzag-top::before {
      content: '';
      position: absolute;
      top: -18px;
      left: 0;
      width: 100%;
      height: 18px;
      background-image:
        linear-gradient(315deg, var(--dark) 33.33%, transparent 33.33%) 0 0,
        linear-gradient(45deg, var(--dark) 33.33%, transparent 33.33%) 0 0;
      background-repeat: repeat-x;
      background-size: 36px 18px;
      z-index: 10;
    }

    /* ─── HEADER ─── */
    header {
      background: #0e0e0e;
      position: relative;
      z-index: 100;
    }
    /* no ::after needed – SVG zigzag div handles the transition */

    /* Top utility row – grid so center item is always truly centered */
    .header-top {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      padding: .65rem 2.5rem;
      border-bottom: 1px solid rgba(200,160,80,.1);
      font-size: .72rem;
      letter-spacing: .08em;
      color: var(--muted);
    }
    .header-top a:hover { color: var(--gold); }
    .header-phone { display: flex; align-items: center; gap: .5rem; }
    .header-phone svg { opacity: .55; }
    .header-tagline {
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--gold);
      opacity: .8;
      text-align: center;
      white-space: nowrap;
    }
    .header-hours { text-align: right; }

    /* Logo block – chef image LEFT, text RIGHT (side by side) */
    .header-logo {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 1.2rem;
      padding: 1.2rem 2rem .9rem;
    }
    .logo-chef {
      width: 100px;
      height: 100px;
      object-fit: contain;
      flex-shrink: 0;
    }
    .logo-text-group { display: flex; flex-direction: column; }
    .logo-text {
      font-family: 'Dancing Script', cursive;
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--cream);
      line-height: 1;
      text-shadow: 2px 3px 8px rgba(0,0,0,.7);
    }
    .logo-sub {
      font-family: 'Raleway', sans-serif;
      font-size: .58rem;
      letter-spacing: .3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: .4rem;
    }

    /* Navigation row */
    .header-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      list-style: none;
      padding: .6rem 2rem 1.2rem;
      border-top: 1px solid rgba(200,160,80,.1);
    }
    .header-nav li a {
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--muted);
      transition: color .2s;
      padding-bottom: .2rem;
      border-bottom: 1px solid transparent;
    }
    .header-nav li a:hover,
    .header-nav li a.active {
      color: var(--cream);
      border-bottom-color: var(--gold);
    }
    .nav-cta {
      color: var(--gold) !important;
      border: 1px solid rgba(200,160,80,.45) !important;
      padding: .35rem 1rem;
      border-bottom: 1px solid rgba(200,160,80,.45) !important;
      transition: all .2s;
    }
    .nav-cta:hover {
      background: var(--gold);
      color: var(--dark) !important;
      border-color: var(--gold) !important;
    }

    /* ─── HERO ─── */
    .header-zigzag {
      display: block;
      width: 100%;
      height: 10px;
      background: transparent;
      line-height: 0;
      position: relative;
      z-index: 99;
    }
    .header-zigzag svg { display: block; }

    .hero {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 580px;
      margin-top: -10px; /* pull up behind zigzag so hero bg shows through teeth */
    }
    .hero-left {
      background: var(--dark2);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 5rem 4rem;
      position: relative;
    }
    .hero-left::after {
      /* Zigzag right edge */
      content: '';
      position: absolute;
      right: -20px;
      top: 0;
      height: 100%;
      width: 20px;
      background-image:
        linear-gradient(315deg, var(--dark2) 50%, transparent 50%) 0 0,
        linear-gradient(45deg, var(--dark2) 50%, transparent 50%) 0 0;
      background-repeat: repeat-y;
      background-size: 20px 36px;
      z-index: 5;
    }
    .hero-content { max-width: 480px; }
    .hero-content .section-label { font-size: .68rem; }
    .hero-content h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3.5vw, 3.2rem);
      font-weight: 700;
      line-height: 1.15;
      margin-bottom: .5rem;
    }
    .hero-content h1 em {
      font-style: italic;
      color: var(--gold);
    }
    .hero-content p {
      font-size: .95rem;
      color: var(--muted);
      margin: 1.2rem 0 2rem;
      font-weight: 300;
    }
    .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
    .hero-right {
      position: relative;
      overflow: hidden;
      min-height: 400px;
    }
    .hero-right img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      filter: brightness(.8);
    }
    .hero-badge {
      position: absolute;
      bottom: 2rem;
      right: 2rem;
      background: var(--gold);
      color: var(--dark);
      text-align: center;
      padding: 1rem;
      width: 110px;
      height: 110px;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-family: 'Raleway', sans-serif;
    }
    .hero-badge .year { font-size: 1.2rem; font-weight: 700; line-height: 1; }
    .hero-badge .since { font-size: .55rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }

    /* ─── FEATURES STRIP ─── */
    .features-strip {
      background: var(--gold);
      padding: 1.4rem 2rem;
    }
    .features-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      text-align: center;
    }
    .feature-item {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .8rem;
    }
    .feature-icon {
      font-size: 1.4rem;
      line-height: 1;
    }
    .feature-text strong {
      display: block;
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--dark);
    }
    .feature-text span {
      font-size: .72rem;
      color: rgba(21,21,21,.7);
    }

    /* ─── ABOUT ─── */
    .about {
      background: var(--dark2);
      padding: 6rem 2rem 7rem;
      position: relative;
      margin-top: 18px;
    }
    .about-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .about-image {
      position: relative;
    }
    .about-image img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
    }
    .about-image::before {
      content: '';
      position: absolute;
      inset: -14px -14px 14px 14px;
      border: 1px solid rgba(200,160,80,.25);
      z-index: -1;
    }
    .about-text p {
      font-size: .95rem;
      color: var(--muted);
      font-weight: 300;
      margin-bottom: 1rem;
    }
    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(200,160,80,.15);
    }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }
    .stat-label {
      font-size: .68rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: .3rem;
    }

    /* ─── MENU PREVIEW ─── */
    .menu-preview {
      background: var(--dark);
      padding: 7rem 2rem 6rem;
      position: relative;
      margin-top: 18px;
    }
    .menu-preview-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 3.5rem;
    }
    .menu-preview-header .divider-ornament {
      justify-content: center;
    }
    .menu-grid {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5px;
    }
    .menu-card {
      position: relative;
      overflow: hidden;
      aspect-ratio: 3/4;
      cursor: pointer;
    }
    .menu-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s ease, filter .5s ease;
      filter: brightness(.5) saturate(.8);
    }
    .menu-card:hover img {
      transform: scale(1.06);
      filter: brightness(.35) saturate(.6);
    }
    .menu-card-body {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      padding: 2rem 1.5rem;
      text-align: center;
    }
    .menu-card-icon {
      font-size: 2.2rem;
      margin-bottom: .6rem;
      filter: drop-shadow(0 2px 6px rgba(0,0,0,.8));
    }
    .menu-card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--cream);
      margin-bottom: .3rem;
    }
    .menu-card-count {
      font-size: .68rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .menu-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.85) 30%, transparent 70%);
    }
    .menu-preview-footer {
      text-align: center;
      margin-top: 3rem;
    }

    /* ─── GARDEN / ATMOSPHERE ─── */
    .atmosphere {
      background: var(--dark2);
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 480px;
      margin-top: 18px;
      position: relative;
    }
    .atmosphere::before {
      /* Zigzag left edge */
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      height: 100%;
      width: 20px;
      margin-left: -20px;
      background-image:
        linear-gradient(135deg, transparent 50%, var(--dark2) 50%) 0 0,
        linear-gradient(225deg, transparent 50%, var(--dark2) 50%) 0 0;
      background-repeat: repeat-y;
      background-size: 20px 36px;
      z-index: 5;
    }
    .atmosphere-image {
      overflow: hidden;
    }
    .atmosphere-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(.75) saturate(.9);
      transition: filter .4s;
    }
    .atmosphere-image:hover img { filter: brightness(.85) saturate(1); }
    .atmosphere-text {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 4rem;
    }
    .atmosphere-text-inner { max-width: 440px; }
    .atmosphere-text p {
      font-size: .95rem;
      color: var(--muted);
      font-weight: 300;
      margin-bottom: 1rem;
    }
    .check-list {
      list-style: none;
      margin: 1.5rem 0;
    }
    .check-list li {
      display: flex;
      align-items: center;
      gap: .8rem;
      font-size: .88rem;
      color: var(--muted);
      margin-bottom: .5rem;
    }
    .check-list li::before {
      content: '✦';
      color: var(--gold);
      font-size: .55rem;
      flex-shrink: 0;
    }

    /* ─── GALLERY STRIP ─── */
    .gallery-strip {
      background: var(--dark);
      padding: 5rem 0;
      overflow: hidden;
    }
    .gallery-strip-header {
      text-align: center;
      padding: 0 2rem 3rem;
    }
    .gallery-strip-header .divider-ornament { justify-content: center; }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 3px;
    }
    .gallery-grid .g-item {
      aspect-ratio: 1;
      overflow: hidden;
    }
    .gallery-grid .g-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(.7) saturate(.85);
      transition: all .4s;
    }
    .gallery-grid .g-item:hover img {
      filter: brightness(.95) saturate(1.1);
      transform: scale(1.04);
    }
    .gallery-grid .g-item.tall {
      grid-row: span 2;
      aspect-ratio: unset;
    }

    /* ─── HOURS & CONTACT ─── */
    .info-section {
      background: var(--dark2);
      padding: 6rem 2rem;
      position: relative;
      margin-top: 18px;
    }
    .info-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1px 1fr 1px 1fr;
      gap: 3rem;
      align-items: start;
    }
    .info-divider {
      background: rgba(200,160,80,.2);
      align-self: stretch;
    }
    .info-block h3 {
      font-family: 'Raleway', sans-serif;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
    }
    .info-block p, .info-block address {
      font-style: normal;
      font-size: .9rem;
      color: var(--muted);
      font-weight: 300;
      line-height: 1.9;
    }
    .hours-grid {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: .1rem 1.5rem;
    }
    .hours-grid .day { color: var(--cream); font-weight: 400; font-size: .88rem; }
    .hours-grid .time { color: var(--muted); font-size: .88rem; }
    .hours-closed { color: var(--red) !important; font-size: .8rem; }

    /* ─── FOOTER ─── */
    footer {
      background: #0e0e0e;
      padding: 2.5rem 2rem;
      text-align: center;
      border-top: 1px solid rgba(200,160,80,.1);
    }
    footer .footer-logo {
      font-family: 'Dancing Script', cursive;
      font-size: 1.6rem;
      color: var(--cream);
      margin-bottom: .4rem;
    }
    footer p {
      font-size: .72rem;
      color: var(--muted);
      letter-spacing: .08em;
    }
    footer .footer-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      list-style: none;
      margin: 1rem 0;
    }
    footer .footer-links a {
      font-size: .68rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--muted);
      transition: color .2s;
    }
    footer .footer-links a:hover { color: var(--gold); }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .hero { grid-template-columns: 1fr; }
      .hero-left::after { display: none; }
      .hero-right { min-height: 300px; }
      .hero-left { padding: 3rem 2rem; }
      .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .atmosphere { grid-template-columns: 1fr; }
      .atmosphere::before { display: none; }
      .atmosphere-image { min-height: 280px; }
      .atmosphere-text { padding: 2.5rem 2rem; }
      .menu-grid { grid-template-columns: repeat(2, 1fr); }
      .features-inner { grid-template-columns: 1fr; gap: .5rem; }
      .info-inner { grid-template-columns: 1fr; }
      .info-divider { display: none; }
      .gallery-grid { grid-template-columns: repeat(3, 1fr); }
      .header-nav { gap: 1rem; flex-wrap: wrap; justify-content: center; }
      .header-top { flex-direction: column; gap: .3rem; text-align: center; }
      .logo-chef { width: 80px; height: 80px; }
      .logo-text { font-size: 2.2rem; }
    }
