    /* ========== RESET & BASE ========== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      font-family: 'Commissioner', sans-serif;
      font-weight: 400;
      color: var(--text);
      background: var(--cream);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -webkit-tap-highlight-color: transparent;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }
    ul { list-style: none; }

    /* ========== CSS VARIABLES ========== */
    :root {
      --green: #3DA53E;
      --green-light: #4EC54F;
      --green-pale: #E8F5E9;
      --green-deep: #1B3A1B;
      --green-darkest: #0D1F0D;
      --cream: #FBF8F3;
      --cream-dark: #F0EBE1;
      --gold: #C8A96E;
      --charcoal: #1C1C1C;
      --white: #FFFFFF;
      --text: #2C2C2C;
      --text-muted: #6B6B6B;
      --text-on-dark: #F0EBE1;
      --radius: 12px;
      --radius-lg: 20px;
      --shadow: 0 4px 30px rgba(0,0,0,0.08);
      --shadow-lg: 0 12px 50px rgba(0,0,0,0.12);
      --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* ========== TYPOGRAPHY ========== */
    h1, h2, h3, h4 { font-family: 'Fraunces', serif; font-weight: 700; line-height: 1.15; }
    h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 900; letter-spacing: -0.02em; }
    h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
    h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
    p { line-height: 1.75; font-size: 1.05rem; }

    /* ========== UTILITY ========== */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
    .section-label {
      font-family: 'Commissioner', sans-serif;
      font-weight: 600;
      font-size: 0.85rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .section-label::before {
      content: '';
      display: inline-block;
      width: 32px;
      height: 2px;
      background: var(--green);
    }
    .section-label--light { color: var(--green-pale); }
    .section-label--light::before { background: var(--green-pale); }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 1rem 2.2rem;
      border-radius: 60px;
      font-family: 'Commissioner', sans-serif;
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: 0.04em;
      transition: all var(--transition);
    }
    .btn--primary {
      background: var(--green);
      color: var(--white);
      box-shadow: 0 4px 20px rgba(61, 165, 62, 0.35);
    }
    .btn--primary:hover {
      background: var(--green-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(61, 165, 62, 0.45);
    }
    .btn--outline {
      border: 2px solid var(--white);
      color: var(--white);
    }
    .btn--outline:hover {
      background: var(--white);
      color: var(--green-deep);
    }

    /* ========== GRAIN OVERLAY ========== */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9999;
      opacity: 0.025;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    }

    /* ========== NAVIGATION ========== */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 1.25rem 0;
      transition: all 0.5s ease;
    }
    .nav.scrolled {
      background: rgba(13, 31, 13, 0.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      padding: 0.75rem 0;
      box-shadow: 0 4px 30px rgba(0,0,0,0.2);
    }
    .nav-inner {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo {
      font-family: 'Fraunces', serif;
      font-weight: 900;
      font-size: 1.4rem;
      color: var(--white);
      letter-spacing: 0.05em;
    }
    .nav-logo span { color: var(--green-light); }
    .nav-links { display: flex; gap: 2.5rem; }
    .nav-links a {
      color: rgba(255,255,255,0.85);
      font-weight: 500;
      font-size: 0.95rem;
      letter-spacing: 0.02em;
      transition: color var(--transition);
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--green);
      transition: width var(--transition);
    }
    .nav-links a:hover { color: var(--white); }
    .nav-links a:hover::after { width: 100%; }
    .nav-phone {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--green-light);
      font-weight: 600;
      font-size: 0.95rem;
      transition: color var(--transition);
    }
    .nav-phone:hover { color: var(--white); }
    .nav-phone svg { width: 18px; height: 18px; }
    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 4px;
    }
    .nav-toggle span {
      display: block;
      width: 26px;
      height: 2px;
      background: var(--white);
      transition: all 0.3s ease;
    }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* Mobile dropdown (hidden by default on all screens) */
    .nav-mobile-dropdown {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(13, 31, 13, 0.97);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-top: 1px solid rgba(255,255,255,0.08);
      flex-direction: column;
    }
    .nav-mobile-dropdown.active { display: flex; }
    .nav-mobile-dropdown .nav-links {
      display: flex;
      flex-direction: column;
      padding: 1.5rem 2rem 1rem;
      gap: 1rem;
    }
    .nav-mobile-dropdown .nav-links a { font-size: 1.05rem; padding: 0.25rem 0; }
    .nav-mobile-dropdown .nav-phone {
      display: flex;
      padding: 1rem 2rem 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.06);
      font-size: 1rem;
    }

    /* ========== HERO ========== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--green-darkest);
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 1;
    }
    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      opacity: 0.55;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 2;
      background:
        linear-gradient(135deg, rgba(13,31,13,0.92) 0%, rgba(13,31,13,0.6) 40%, transparent 70%),
        linear-gradient(to top, rgba(13,31,13,0.95) 0%, transparent 40%);
    }
    .hero-content {
      position: relative;
      z-index: 3;
      max-width: 1300px;
      margin: 0 auto;
      padding: 8rem 2rem 4rem;
      width: 100%;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(61, 165, 62, 0.15);
      border: 1px solid rgba(61, 165, 62, 0.3);
      padding: 0.5rem 1.2rem;
      border-radius: 60px;
      color: var(--green-light);
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 2rem;
      backdrop-filter: blur(8px);
    }
    .hero-badge svg { width: 16px; height: 16px; }
    .hero h1 {
      color: var(--white);
      margin-bottom: 1.5rem;
      max-width: 700px;
    }
    .hero h1 .accent { color: var(--green-light); }
    .hero-subtitle {
      color: rgba(255,255,255,0.8);
      font-size: clamp(1.1rem, 2vw, 1.35rem);
      max-width: 520px;
      margin-bottom: 0.75rem;
      line-height: 1.7;
    }
    .hero-location {
      color: var(--gold);
      font-family: 'Commissioner', sans-serif;
      font-weight: 500;
      font-size: 0.95rem;
      letter-spacing: 0.06em;
      margin-bottom: 2.5rem;
    }
    .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255,255,255,0.5);
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      animation: float 2.5s ease-in-out infinite;
    }
    .hero-scroll svg { width: 20px; height: 20px; }
    @keyframes float {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(8px); }
    }

    /* ========== WAVE DIVIDERS ========== */
    .wave-divider {
      position: relative;
      width: 100%;
      overflow: hidden;
      line-height: 0;
      margin-top: -1px;
    }
    .wave-divider svg {
      display: block;
      width: 100%;
      height: 80px;
    }
    .wave-divider--green svg { fill: var(--green-deep); }
    .wave-divider--cream svg { fill: var(--cream); }
    .wave-divider--pale svg { fill: var(--green-pale); }
    .wave-divider--dark svg { fill: var(--green-darkest); }

    /* ========== ABOUT ========== */
    .about {
      padding: 7rem 0 6rem;
      background: var(--cream);
      position: relative;
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .about-text h2 { margin-bottom: 1.5rem; color: var(--green-deep); }
    .about-text p { color: var(--text-muted); margin-bottom: 1.5rem; }
    .about-text p:last-of-type { margin-bottom: 2.5rem; }
    .about-stats {
      display: flex;
      gap: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(0,0,0,0.08);
    }
    .about-stat { text-align: center; }
    .about-stat-value {
      font-family: 'Fraunces', serif;
      font-weight: 700;
      font-size: 2rem;
      color: var(--green);
      line-height: 1;
    }
    .about-stat-label {
      font-size: 0.8rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-top: 0.4rem;
    }
    .about-visual {
      position: relative;
    }
    .about-visual-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      box-shadow: var(--shadow-lg);
      position: relative;
      overflow: hidden;
    }
    .about-visual-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--green), var(--green-light));
    }
    .about-visual-card .leaf-icon {
      width: 64px;
      height: 64px;
      background: var(--green-pale);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
    }
    .about-visual-card .leaf-icon svg { width: 32px; height: 32px; color: var(--green); }
    .about-visual-quote {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 1.4rem;
      line-height: 1.6;
      color: var(--green-deep);
      margin-bottom: 1rem;
    }
    .about-visual-author { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; }
    .about-decor {
      position: absolute;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: var(--green-pale);
      opacity: 0.5;
      top: -40px;
      right: -40px;
      z-index: -1;
    }

    /* ========== SERVICES ========== */
    .services {
      padding: 7rem 0;
      background: var(--green-deep);
      position: relative;
    }
    .services .section-header { text-align: center; margin-bottom: 4rem; }
    .services h2 { color: var(--white); margin-bottom: 1rem; }
    .services .section-desc { color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto; }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }
    .service-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-lg);
      padding: 2.5rem 2rem;
      text-align: center;
      transition: all var(--transition);
      backdrop-filter: blur(4px);
    }
    .service-card:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(61,165,62,0.4);
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }
    .service-icon {
      width: 72px;
      height: 72px;
      margin: 0 auto 1.5rem;
      background: rgba(61, 165, 62, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all var(--transition);
    }
    .service-card:hover .service-icon {
      background: var(--green);
      transform: scale(1.1);
    }
    .service-icon svg { width: 32px; height: 32px; color: var(--green-light); transition: color var(--transition); }
    .service-card:hover .service-icon svg { color: var(--white); }
    .service-card h3 { color: var(--white); margin-bottom: 0.75rem; font-size: 1.2rem; }
    .service-card p { color: rgba(255,255,255,0.55); font-size: 0.95rem; line-height: 1.6; }

    /* ========== MEET US (INTERIOR IMAGE) ========== */
    .meet {
      padding: 7rem 0;
      background: var(--cream);
    }
    .meet-grid {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 4rem;
      align-items: center;
    }
    .meet-image-wrapper {
      position: relative;
    }
    .meet-image {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      position: relative;
    }
    .meet-image img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.8s ease;
    }
    .meet-image:hover img { transform: scale(1.03); }
    .meet-image-accent {
      position: absolute;
      bottom: -20px;
      right: -20px;
      width: 140px;
      height: 140px;
      border-radius: var(--radius-lg);
      background: var(--green);
      z-index: -1;
      opacity: 0.2;
    }
    .meet-text h2 { color: var(--green-deep); margin-bottom: 1.5rem; }
    .meet-text p { color: var(--text-muted); margin-bottom: 1.5rem; }
    .meet-features { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
    .meet-feature {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-weight: 500;
      color: var(--green-deep);
    }
    .meet-feature-check {
      width: 28px;
      height: 28px;
      background: var(--green-pale);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .meet-feature-check svg { width: 14px; height: 14px; color: var(--green); }

    /* ========== HOURS ========== */
    .hours {
      padding: 5rem 0;
      background: var(--green-pale);
      position: relative;
    }
    .hours-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    .hours-header h2 { color: var(--green-deep); margin-bottom: 0.5rem; }
    .hours-header .hours-desc { color: var(--text-muted); margin: 0; }
    .hours-inner {
      display: grid;
      grid-template-columns: 1.15fr 1fr;
      gap: 2rem;
      align-items: stretch;
    }
    .hours-table {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 1.75rem 2rem;
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .hours-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.8rem 0;
      border-bottom: 1px solid rgba(0,0,0,0.05);
      font-size: 0.98rem;
    }
    .hours-row:last-child { border-bottom: none; }
    .hours-row--highlight {
      background: var(--green-pale);
      margin: 0.3rem -1rem;
      padding: 0.8rem 1rem;
      border-radius: 8px;
      border-bottom: none;
    }
    .hours-day { font-weight: 600; color: var(--green-deep); }
    .hours-time { color: var(--text-muted); font-weight: 500; }
    .hours-info-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 1.75rem 2rem;
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .hours-info-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 0.85rem 0;
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .hours-info-item:last-child { border-bottom: none; }
    .hours-info-icon {
      width: 40px;
      height: 40px;
      background: var(--green-pale);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .hours-info-icon svg { width: 18px; height: 18px; color: var(--green); }
    .hours-info-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; line-height: 1; }
    .hours-info-value { font-weight: 600; color: var(--green-deep); margin-top: 0.15rem; font-size: 0.98rem; line-height: 1.4; }
    .hours-info-value a { color: var(--green); transition: color var(--transition); }
    .hours-info-value a:hover { color: var(--green-deep); }
    .hours-drivethru-badge {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      background: var(--green-deep);
      color: var(--green-light);
      padding: 0.85rem 1.25rem;
      border-radius: 12px;
      margin-top: 0.5rem;
      font-weight: 600;
      font-size: 0.9rem;
    }
    .hours-drivethru-badge svg { width: 20px; height: 20px; flex-shrink: 0; }

    /* ========== BRAND STORY (TRUCK) ========== */
    .brand {
      padding: 7rem 0;
      background: var(--charcoal);
      position: relative;
      overflow: hidden;
    }
    .brand-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .brand-image {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
      position: relative;
    }
    .brand-image img { width: 100%; display: block; transition: transform 0.8s ease; }
    .brand-image:hover img { transform: scale(1.03); }
    .brand-text h2 { color: var(--white); margin-bottom: 1.5rem; }
    .brand-text p { color: rgba(255,255,255,0.65); margin-bottom: 1.5rem; }
    .brand-divider {
      width: 60px;
      height: 3px;
      background: var(--green);
      border-radius: 2px;
      margin: 2rem 0;
    }
    .brand-tagline {
      font-family: 'Fraunces', serif;
      font-style: italic;
      font-size: 1.3rem;
      color: var(--gold);
      line-height: 1.6;
    }

    /* ========== CONTACT ========== */
    .contact {
      padding: 7rem 0;
      background: var(--cream);
    }
    .contact-header { text-align: center; margin-bottom: 4rem; }
    .contact h2 { color: var(--green-deep); margin-bottom: 1rem; }
    .contact .section-desc { color: var(--text-muted); max-width: 540px; margin: 0 auto; }
    .contact-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 2rem;
      align-items: stretch;
    }
    .contact-form-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 3rem;
      box-shadow: var(--shadow-lg);
      display: flex;
      flex-direction: column;
    }
    .contact-form-card form {
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .contact-form-card .form-group:last-of-type {
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .contact-form-card .form-group:last-of-type textarea {
      flex: 1;
    }
    .form-group { margin-bottom: 1.5rem; }
    .form-group label {
      display: block;
      font-weight: 600;
      font-size: 0.85rem;
      color: var(--green-deep);
      margin-bottom: 0.5rem;
      letter-spacing: 0.02em;
    }
    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 0.9rem 1.2rem;
      border: 2px solid rgba(0,0,0,0.08);
      border-radius: var(--radius);
      font-family: 'Commissioner', sans-serif;
      font-size: 1rem;
      color: var(--text);
      background: var(--cream);
      transition: all var(--transition);
      outline: none;
    }
    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--green);
      background: var(--white);
      box-shadow: 0 0 0 4px rgba(61, 165, 62, 0.1);
    }
    .form-group textarea { resize: vertical; min-height: 140px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .form-submit {
      width: 100%;
      padding: 1.1rem;
      background: var(--green);
      color: var(--white);
      border: none;
      border-radius: var(--radius);
      font-family: 'Commissioner', sans-serif;
      font-weight: 600;
      font-size: 1.05rem;
      letter-spacing: 0.04em;
      cursor: pointer;
      transition: all var(--transition);
    }
    .form-submit:hover {
      background: var(--green-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(61, 165, 62, 0.35);
    }
    .form-success {
      display: none;
      text-align: center;
      padding: 3rem;
    }
    .form-success.show { display: block; }
    .form-success svg { width: 64px; height: 64px; color: var(--green); margin-bottom: 1rem; }
    .form-success h3 { color: var(--green-deep); margin-bottom: 0.5rem; }
    .form-success p { color: var(--text-muted); }
    .form-error {
      display: none;
      margin-top: 1.25rem;
      padding: 1rem 1.25rem;
      background: #FDECEA;
      border: 1px solid #F0BFB8;
      border-radius: var(--radius);
      color: #8A2A1B;
      font-size: 0.95rem;
      line-height: 1.55;
    }
    .form-error.show { display: block; }
    .form-error a { color: #8A2A1B; font-weight: 600; text-decoration: underline; }

    .contact-info-stack { display: flex; flex-direction: column; gap: 1.5rem; }
    .contact-info-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 2rem;
      box-shadow: var(--shadow);
      transition: all var(--transition);
    }
    .contact-info-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }
    .contact-info-card-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }
    .contact-info-card-icon {
      width: 48px;
      height: 48px;
      background: var(--green-pale);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .contact-info-card-icon svg { width: 22px; height: 22px; color: var(--green); }
    .contact-info-card h4 { font-size: 1rem; color: var(--green-deep); }
    .contact-info-card p { color: var(--text-muted); line-height: 1.6; }
    .contact-info-card a { color: var(--green); font-weight: 600; transition: color var(--transition); }
    .contact-info-card a:hover { color: var(--green-deep); }
    .contact-phone-big {
      background: var(--green-deep);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      text-align: center;
    }
    .contact-phone-big p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 0.5rem; }
    .contact-phone-big a {
      font-family: 'Fraunces', serif;
      font-weight: 700;
      font-size: 2rem;
      color: var(--green-light);
      transition: color var(--transition);
    }
    .contact-phone-big a:hover { color: var(--white); }
    .contact-social {
      display: flex;
      gap: 0.75rem;
      margin-top: 1.5rem;
      justify-content: center;
    }
    .contact-social a {
      width: 44px;
      height: 44px;
      background: rgba(255,255,255,0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all var(--transition);
    }
    .contact-social a:hover { background: var(--green); transform: translateY(-2px); }
    .contact-social a svg { width: 20px; height: 20px; color: var(--white); }

    /* ========== MAP ========== */
    .map { position: relative; background: var(--charcoal); }
    .map-header {
      text-align: center;
      padding: 4rem 0 0;
      background: var(--charcoal);
    }
    .map-header h2 { color: var(--white); margin-bottom: 0.5rem; }
    .map-header p { color: rgba(255,255,255,0.5); }
    .map iframe {
      width: 100%;
      height: 450px;
      border: none;
      display: block;
      filter: saturate(0.8) contrast(1.05);
    }

    /* ========== FOOTER ========== */
    .footer {
      background: var(--green-darkest);
      padding: 4rem 0 2rem;
    }
    .footer-inner {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-brand-name {
      font-family: 'Fraunces', serif;
      font-weight: 900;
      font-size: 1.3rem;
      color: var(--white);
      margin-bottom: 1rem;
    }
    .footer-brand-name span { color: var(--green-light); }
    .footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }
    .footer-social { display: flex; gap: 0.75rem; }
    .footer-social a {
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.06);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all var(--transition);
    }
    .footer-social a:hover { background: var(--green); transform: translateY(-2px); }
    .footer-social a svg { width: 18px; height: 18px; color: rgba(255,255,255,0.7); }
    .footer h4 {
      color: var(--white);
      font-size: 0.9rem;
      font-family: 'Commissioner', sans-serif;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }
    .footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
    .footer-links li { color: rgba(255,255,255,0.45); font-size: 0.95rem; }
    .footer-links a { color: rgba(255,255,255,0.45); font-size: 0.95rem; transition: color var(--transition); }
    .footer-links a:hover { color: var(--green-light); }
    .footer-credit {
      grid-column: 1 / -1;
      color: rgba(255,255,255,0.35);
      font-size: 0.8rem;
      letter-spacing: 0.04em;
      margin-bottom: -1.5rem;
    }
    .footer-credit a {
      color: rgba(255,255,255,0.45);
      transition: color var(--transition);
    }
    .footer-credit a:hover { color: var(--green-light); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 1.25rem;
      color: rgba(255,255,255,0.3);
      font-size: 0.85rem;
    }

    /* ========== SCROLL ANIMATIONS ========== */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.9s ease, transform 0.9s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-left {
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity 0.9s ease, transform 0.9s ease;
    }
    .reveal-left.visible {
      opacity: 1;
      transform: translateX(0);
    }
    .reveal-right {
      opacity: 0;
      transform: translateX(40px);
      transition: opacity 0.9s ease, transform 0.9s ease;
    }
    .reveal-right.visible {
      opacity: 1;
      transform: translateX(0);
    }
    .stagger-1 { transition-delay: 0.1s; }
    .stagger-2 { transition-delay: 0.2s; }
    .stagger-3 { transition-delay: 0.3s; }
    .stagger-4 { transition-delay: 0.4s; }

    /* ========== RESPONSIVE ========== */

    /* Tablet */
    @media (max-width: 1024px) {
      .about-grid, .meet-grid, .brand-grid, .contact-grid, .hours-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
      .hero-content { padding: 7rem 2rem 4rem; }
      .about, .meet, .brand, .contact { padding: 5rem 0; }
      .services { padding: 5rem 0; }
      .hours { padding: 4rem 0; }
      .brand-grid { direction: ltr; }
      .brand-grid > .brand-image { order: -1; }
    }

    /* Mobile */
    @media (max-width: 768px) {
      .container { padding: 0 1.5rem; }

      /* Nav — hide desktop nav, show hamburger */
      .nav-inner > .nav-links,
      .nav-inner > .nav-phone { display: none !important; }
      .nav-toggle { display: flex; }

      /* Sections */
      .about, .meet, .brand, .contact { padding: 4rem 0; }
      .services { padding: 4rem 0; }
      .hours { padding: 3.5rem 0; }
      .hours-header { margin-bottom: 2rem; }
      .services .section-header { margin-bottom: 2.5rem; }
      .contact-header { margin-bottom: 2.5rem; }

      /* Typography */
      .hero h1 { font-size: 2.4rem; }
      h2 { font-size: 1.8rem; }
      p { font-size: 1rem; }

      /* Hero */
      .hero-content { padding: 6rem 1.5rem 3rem; }
      .hero-badge { font-size: 0.75rem; padding: 0.4rem 1rem; }
      .hero-subtitle { font-size: 1.05rem; }
      .hero-scroll { bottom: 1.5rem; }

      /* Services */
      .services-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
      .service-card { padding: 1.75rem 1.25rem; }
      .service-icon { width: 56px; height: 56px; margin-bottom: 1rem; }
      .service-icon svg { width: 26px; height: 26px; }
      .service-card h3 { font-size: 1.05rem; }
      .service-card p { font-size: 0.85rem; }

      /* About */
      .about-stats {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
      }

      /* Meet */
      .meet-image-accent { display: none; }

      /* Brand */
      .brand-grid > .brand-image { order: -1; }
      .brand-tagline { font-size: 1.1rem; }

      /* Hours */
      .hours-drivethru-badge { font-size: 0.85rem; }

      /* Contact */
      .form-row { grid-template-columns: 1fr; gap: 1rem; }
      .form-group input,
      .form-group textarea { font-size: 16px; padding: 0.85rem 1rem; }
      .contact-form-card { padding: 2rem 1.5rem; }
      .contact-phone-big { padding: 2rem; }
      .contact-phone-big a { font-size: 1.5rem; }
      .contact-info-card { padding: 1.5rem; }
      .contact-info-card-header { margin-bottom: 0.5rem; }
      .contact-info-stack { gap: 1rem; }

      /* Map */
      .map iframe { height: 320px; }
      .map-header { padding: 3rem 0 0; }

      /* Wave dividers */
      .wave-divider svg { height: 50px; }

      /* Footer */
      .footer { padding: 3rem 0 1.5rem; }
      .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    }

    /* Small phones */
    @media (max-width: 480px) {
      .container { padding: 0 1.25rem; }
      .hero h1 { font-size: 2rem; }
      .hero-content { padding: 5.5rem 1.25rem 3rem; }
      .hero-buttons { flex-direction: column; }
      .hero-buttons .btn { text-align: center; justify-content: center; }
      .btn { padding: 0.9rem 1.8rem; font-size: 0.95rem; }
      .services-grid { grid-template-columns: 1fr; gap: 1rem; }
      .about-stats { flex-direction: column; gap: 1rem; align-items: center; }
      .about-visual-quote { font-size: 1.2rem; }
      .about-visual-card { padding: 2rem 1.5rem; }
      .map iframe { height: 260px; }
      .wave-divider svg { height: 36px; }
      .contact-phone-big a { font-size: 1.3rem; }
      .nav-inner { padding: 0 1.25rem; }
    }

    /* ========== HOT DEALS — top-right peeking pill (just under header) + slide-out panel (homepage only) ========== */

    /* Tab — horizontal pill anchored to the right edge, sits just under the nav.
       The pill is intentionally positioned with ~28px of its right side off-screen
       so leftward animations (hover / nudge) can translate the whole pill leftward
       as a unit without ever exposing a gap on the right side. */
    .hd-tab {
      position: fixed;
      top: 105px;
      right: -28px;
      left: auto;
      transform: translate(0, 0);
      padding: 0.62rem 2.4rem 0.62rem 1.05rem;
      background: linear-gradient(180deg, var(--green-deep) 0%, var(--green-darkest) 100%);
      color: var(--cream);
      border: none;
      border-radius: 16px 0 0 16px;
      cursor: pointer;
      display: inline-flex;
      flex-direction: row;
      align-items: center;
      gap: 0.55rem;
      box-shadow: -8px 10px 26px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
      z-index: 1455;
      font-family: 'Commissioner', sans-serif;
      font-weight: 800;
      font-size: 0.78rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.3s ease;
    }
    .hd-tab:hover { transform: translate(-14px, 0); box-shadow: -12px 12px 32px rgba(0,0,0,0.34); }
    /* Continuous gentle breathe — brightness + soft gold glow pulse */
    .hd-tab {
      animation: hdTabBreathe 2.6s ease-in-out infinite;
    }
    @keyframes hdTabBreathe {
      0%, 100% {
        filter: brightness(1);
        box-shadow: -8px 10px 26px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08), 0 0 0 0 rgba(200,169,110,0);
      }
      50% {
        filter: brightness(1.15);
        box-shadow: -8px 10px 30px rgba(0,0,0,0.34), inset 0 1px 0 rgba(255,255,255,0.12), 0 0 18px 0 rgba(200,169,110,0.45);
      }
    }
    .hd-tab-flame {
      font-size: 1.35rem;
      line-height: 1;
      filter: drop-shadow(0 1px 0 rgba(255,255,255,0.45));
      animation: hdFlame 1.7s ease-in-out infinite;
      transform-origin: 50% 80%;
    }
    .hd-tab-text {
      writing-mode: horizontal-tb;
      transform: none;
    }
    @keyframes hdFlame {
      0%, 100% { transform: scale(1) rotate(-1deg); }
      40% { transform: scale(1.12) rotate(2deg); }
      70% { transform: scale(0.95) rotate(-2deg); }
    }
    /* Nudge translates the whole pill leftward — content moves as a unit. The
       28px right-side buffer (set in .hd-tab) keeps the pill's right edge
       hidden off-screen throughout the animation, so no gap is ever exposed. */
    @keyframes hdNudge {
      0%, 100% { transform: translate(0, 0); }
      18% { transform: translate(-20px, 0); }
      32% { transform: translate(-3px, 0); }
      52% { transform: translate(-13px, 0); }
      72% { transform: translate(0, 0); }
    }
    .hd-tab.hd-nudge {
      animation: hdTabBreathe 2.6s ease-in-out infinite, hdNudge 1.3s cubic-bezier(0.25,0.46,0.45,0.94);
    }
    /* Open state hides the tab behind the panel */
    .hd-root.hd-open .hd-tab {
      transform: translate(120px, 0);
      pointer-events: none;
      opacity: 0;
      transition: transform 0.45s ease, opacity 0.25s ease;
    }
    /* User dismissed (via interaction) — stop the nudge animation */
    .hd-root.hd-nudged .hd-tab.hd-nudge { animation: none; }

    /* Scrim behind the panel */
    .hd-scrim {
      position: fixed;
      inset: 0;
      background: rgba(13, 31, 13, 0.42);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 1450;
    }
    .hd-root.hd-open .hd-scrim { opacity: 1; }

    /* Panel — wide centered modal popup. Two-column layout (image left,
       content right) so everything fits without a scroll bar on desktop. */
    .hd-panel {
      position: fixed;
      top: 50%;
      left: 50%;
      right: auto;
      bottom: auto;
      width: min(720px, 94vw);
      max-height: 92vh;
      background: var(--cream);
      border-radius: var(--radius-lg);
      box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,0,0,0.04);
      transform: translate(-50%, -50%) scale(0.92);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
      display: block;
      z-index: 1460;
      overflow-y: auto;
      padding: 2rem 2rem 1.85rem;
    }
    .hd-root.hd-open .hd-panel {
      transform: translate(-50%, -50%) scale(1);
      opacity: 1;
      pointer-events: auto;
    }

    .hd-close {
      position: absolute;
      top: 0.85rem; right: 0.85rem;
      width: 40px; height: 40px;
      border-radius: 50%;
      background: transparent;
      color: var(--text-muted);
      font-size: 1.9rem;
      line-height: 1;
      cursor: pointer;
      border: none;
      transition: background var(--transition), color var(--transition);
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .hd-close:hover { background: var(--cream-dark); color: var(--green-deep); }

    /* Two-column grid: image fills the left column, content stacks on the right.
       Drops to single column on mobile via @media below. */
    .hd-panel-inner {
      display: grid;
      grid-template-columns: 260px 1fr;
      column-gap: 1.6rem;
      row-gap: 0.85rem;
      margin-top: 0.5rem;
      grid-template-areas:
        'image badge'
        'image title'
        'image excerpt'
        'image actions'
        'image fine';
    }
    .hd-badge   { grid-area: badge; }
    .hd-title   { grid-area: title; }
    .hd-excerpt { grid-area: excerpt; }
    .hd-actions { grid-area: actions; }
    .hd-fine    { grid-area: fine; }
    /* row-gap drives spacing in the grid — zero out the legacy margin-bottoms
       so they don't compound and create awkward extra gaps. */
    .hd-panel-inner > .hd-badge,
    .hd-panel-inner > .hd-title,
    .hd-panel-inner > .hd-excerpt,
    .hd-panel-inner > .hd-actions { margin-bottom: 0; }

    .hd-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.42rem 1rem;
      background: linear-gradient(135deg, var(--gold) 0%, #c8a96e 100%);
      color: var(--green-darkest);
      font-family: 'Commissioner', sans-serif;
      font-weight: 800;
      font-size: 0.72rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      border-radius: 60px;
      margin-bottom: 1.1rem;
      align-self: flex-start;
      box-shadow: 0 6px 16px rgba(200,169,110,0.4);
    }

    .hd-title {
      font-family: 'Fraunces', serif;
      font-weight: 900;
      font-size: clamp(1.6rem, 3vw, 2rem);
      line-height: 1.15;
      letter-spacing: -0.015em;
      color: var(--green-deep);
      margin-bottom: 1.1rem;
    }

    .hd-img-wrap {
      grid-area: image;
      align-self: stretch;
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--green-pale);
      min-height: 260px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .hd-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .hd-img-wrap--ph {
      background:
        linear-gradient(135deg, transparent 49%, rgba(255,255,255,0.18) 49%, rgba(255,255,255,0.18) 51%, transparent 51%),
        linear-gradient(45deg, transparent 49%, rgba(255,255,255,0.18) 49%, rgba(255,255,255,0.18) 51%, transparent 51%),
        linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
      background-size: 28px 28px, 28px 28px, 100% 100%;
    }

    .hd-excerpt {
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    .hd-actions {
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
      margin-bottom: 1.25rem;
    }
    .hd-actions .btn { justify-content: center; width: 100%; }
    .hd-cta {
      box-shadow: 0 6px 22px rgba(61,165,62,0.4);
    }
    .hd-cta-out {
      border-color: var(--green-deep);
      color: var(--green-deep);
    }
    .hd-cta-out:hover {
      background: var(--green-deep);
      color: var(--cream);
      border-color: var(--green-deep);
    }

    .hd-fine {
      font-size: 0.78rem;
      color: var(--text-muted);
      text-align: center;
      margin: 0;
      letter-spacing: 0.02em;
      line-height: 1.5;
    }

    /* ----- Mobile: tab moves to bottom-left as a horizontal pill, panel becomes a bottom sheet ----- */
    @media (max-width: 768px) {
      .hd-tab {
        top: auto; left: 1rem; right: auto; bottom: 1.1rem;
        transform: translate(0, 0);
        flex-direction: row;
        padding: 0.7rem 1.1rem 0.7rem 0.95rem;
        border-radius: 60px;
        font-size: 0.78rem;
        gap: 0.45rem;
        box-shadow: 0 10px 24px rgba(0,0,0,0.26);
      }
      .hd-tab:hover { transform: translate(0, -3px); }
      .hd-tab-flame { font-size: 1.2rem; }
      @keyframes hdNudge {
        0%, 100% { transform: translate(0, 0); }
        20% { transform: translate(0, -10px); }
        38% { transform: translate(0, -2px); }
        56% { transform: translate(0, -6px); }
        78% { transform: translate(0, 0); }
      }
      .hd-root.hd-open .hd-tab {
        transform: translate(0, 220%);
      }
      /* Modal popup uses the same centered layout on mobile — just drops back
         to a single column (image above content) and tightens the padding. */
      .hd-panel { padding: 1.65rem 1.35rem 1.5rem; }
      .hd-panel-inner {
        grid-template-columns: 1fr;
        grid-template-areas:
          'badge'
          'title'
          'image'
          'excerpt'
          'actions'
          'fine';
        row-gap: 0.5rem;
      }
      .hd-img-wrap {
        aspect-ratio: 4 / 3;
        min-height: 0;
        margin: 0.4rem 0 0.6rem;
      }
    }
    @media (max-width: 380px) {
      .hd-tab-text { letter-spacing: 0.1em; font-size: 0.72rem; }
    }

    /* Respect users who opt out of motion */
    @media (prefers-reduced-motion: reduce) {
      .hd-tab-flame, .hd-tab, .hd-tab.hd-nudge { animation: none; }
      .hd-panel, .hd-tab, .hd-scrim { transition: none; }
    }
