/* ============================================================
   OAK & AGAVE — main.css v2
   Film-warm, analog feel. No page builder required.
   ============================================================ */

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

:root {
  --green:      #2d4a2a;
  --green-mid:  #3d6438;
  --tan:        #c4a46b;
  --tan-lt:     #d9be94;
  --cream:      #f7f2e8;
  --amber:      #b8783e;
  --dark:       #1c1e16;
  --dark-warm:  #201e15;
  --dark-mid:   #252318;
  --ink:        #111009;
  --muted:      #8a8270;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', sans-serif;
  --max:   1280px;
  --pad:   clamp(72px, 9vw, 128px);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 60px;
}

/* ---- eyebrow ---- */
.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 14px;
}

/* ---- section titles ---- */
.section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 3.8vw, 54px);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 52px;
}
.section-title em { font-style: italic; color: var(--tan-lt); }
/* override on light bg */
.section-title.light    { color: var(--dark); }
.section-title.light em { color: var(--green-mid); }

/* ---- scroll reveal ---- */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---- buttons ---- */
.btn-primary {
  display: inline-block;
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  background: var(--tan); color: var(--ink);
  padding: 15px 34px; border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}
.btn-primary:hover { background: var(--tan-lt); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--cream); opacity: .6;
  transition: opacity .2s, gap .2s;
}
.btn-ghost::after { content: '→'; font-size: 14px; }
.btn-ghost:hover { opacity: 1; gap: 16px; }

/* ===========================================================
   NAV
   =========================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 22px 60px;
  border-bottom: 1px solid transparent;
  transition: background .35s, padding .35s, border-color .35s;
}
.site-header.is-scrolled {
  background: rgba(28,30,22,.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 13px 60px;
  border-bottom-color: rgba(196,164,107,.12);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max); margin: 0 auto;
}
.site-logo-text {
  font-family: var(--serif); font-size: 21px; font-weight: 500;
  letter-spacing: .04em; color: var(--cream);
}
.site-logo-text span { color: var(--tan); }
.custom-logo { max-height: 48px; width: auto; }

.nav-links { display: flex; gap: 42px; }
.nav-links .nav-item a {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--cream); opacity: .68;
  transition: opacity .2s, color .2s;
}
.nav-links .nav-item a:hover,
.nav-links .nav-item.current-menu-item a { opacity: 1; color: var(--tan-lt); }

.nav-cta {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--tan); border: 1px solid rgba(196,164,107,.55);
  padding: 10px 22px;
  transition: background .2s, color .2s, border-color .2s;
}
.nav-cta:hover { background: var(--tan); color: var(--ink); border-color: var(--tan); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--cream); }

/* ===========================================================
   MOBILE DRAWER
   =========================================================== */
.mobile-drawer {
  position: fixed; top: 0; right: 0;
  width: 285px; height: 100vh;
  background: var(--dark); z-index: 1001;
  padding: 80px 44px;
  transform: translateX(100%);
  transition: transform .35s ease;
  display: flex; flex-direction: column;
}
.mobile-drawer.is-open { transform: translateX(0); }
.drawer-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; color: var(--cream);
  font-size: 26px; cursor: pointer; opacity: .55;
  transition: opacity .2s;
}
.drawer-close:hover { opacity: 1; }
.drawer-nav li { border-bottom: 1px solid rgba(247,242,232,.07); }
.drawer-nav a {
  display: block; padding: 15px 0;
  font-family: var(--sans); font-size: 12px; font-weight: 400;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--cream); opacity: .65;
  transition: opacity .2s, color .2s;
}
.drawer-nav a:hover { opacity: 1; color: var(--tan-lt); }
.drawer-cta {
  display: inline-block; margin-top: 36px;
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  background: var(--tan); color: var(--ink);
  padding: 13px 26px; transition: background .2s;
}
.drawer-cta:hover { background: var(--tan-lt); }
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(10,10,6,.72); z-index: 1000;
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.drawer-overlay.is-visible { opacity: 1; pointer-events: all; }

/* ===========================================================
   HERO
   =========================================================== */
.section-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh; overflow: hidden;
}
.hero-photo {
  position: relative; overflow: hidden;
  background: var(--dark-warm);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 38%;
  filter: brightness(.7) saturate(.88);
  animation: zoom 24s ease-in-out infinite alternate;
}
@keyframes zoom { from { transform: scale(1.05); } to { transform: scale(1); } }

.hero-photo-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, transparent 48%, var(--dark-warm) 100%),
    linear-gradient(to top, rgba(17,16,9,.3) 0%, transparent 30%);
}
/* Film vignette */
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  box-shadow: inset 0 0 130px rgba(10,10,6,.5);
  pointer-events: none;
}

.hero-content {
  background: var(--dark-warm);
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 70px 80px 60px;
}
.hero-eyebrow {
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--tan); margin-bottom: 24px;
  opacity: 0; animation: fadeup .8s ease forwards .3s;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 78px);
  font-weight: 300; line-height: 1.0; letter-spacing: -.02em;
  color: var(--cream); margin-bottom: 28px;
  opacity: 0; animation: fadeup .8s ease forwards .5s;
}
.hero-title em { font-style: italic; color: var(--tan-lt); }
.hero-body {
  font-size: 14px; font-weight: 300; line-height: 1.9;
  color: rgba(247,242,232,.56); max-width: 370px; margin-bottom: 44px;
  opacity: 0; animation: fadeup .8s ease forwards .7s;
}
.hero-actions {
  display: flex; align-items: center; gap: 28px;
  opacity: 0; animation: fadeup .8s ease forwards .9s;
}
.hero-stats {
  display: flex; gap: 44px; margin-top: auto; padding-top: 48px;
  border-top: 1px solid rgba(196,164,107,.12);
  opacity: 0; animation: fadeup .8s ease forwards 1.1s;
}
.stat-num {
  font-family: var(--serif); font-size: 34px; font-weight: 300;
  color: var(--tan); line-height: 1;
}
.stat-label {
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(247,242,232,.36); margin-top: 5px;
}
@keyframes fadeup {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===========================================================
   SERVICES
   =========================================================== */
.section-services {
  background: var(--cream);
  padding: var(--pad) 0;
}
.section-header { margin-bottom: 48px; }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 3px;
}
.service-card {
  background: var(--dark); padding: 48px 40px;
  position: relative; overflow: hidden;
  transition: background .3s;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px; background: var(--tan);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover { background: #22241a; }
.service-card:hover::after { transform: scaleX(1); }
.service-num {
  font-family: var(--serif); font-size: 64px; font-weight: 300;
  color: rgba(196,164,107,.09); line-height: 1; margin-bottom: 20px;
  transition: color .3s;
}
.service-card:hover .service-num { color: rgba(196,164,107,.16); }
.service-card h3 {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--cream); margin-bottom: 13px;
}
.service-card p { font-size: 13px; line-height: 1.85; color: rgba(247,242,232,.46); }

/* ===========================================================
   ABOUT
   =========================================================== */
.section-about {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 600px;
}
.about-photo {
  position: relative; overflow: hidden;
  background: var(--dark-warm); min-height: 480px;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  filter: brightness(.76) saturate(.82);
}
/* film vignette */
.about-photo::after {
  content: ''; position: absolute; inset: 0;
  box-shadow: inset 0 0 100px rgba(10,10,6,.48);
  pointer-events: none;
}
.about-tag {
  position: absolute; bottom: 44px; right: 0; z-index: 2;
  background: var(--tan); color: var(--ink);
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  padding: 13px 26px;
}
.about-content {
  background: var(--dark-warm);
  padding: 96px 78px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-content p {
  font-size: 14px; line-height: 1.95;
  color: rgba(247,242,232,.56);
  max-width: 450px; margin-bottom: 18px;
}
.about-sig { margin-top: 20px; }
.sig-name {
  font-family: var(--serif); font-size: 24px; font-style: italic;
  color: var(--tan-lt); margin-bottom: 5px;
}
.sig-title {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
}

/* ===========================================================
   GALLERY
   =========================================================== */
.section-gallery .section-gallery-footer {
  background: var(--dark-mid); padding: var(--pad) 0;
}
.gallery-top {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 36px;
}
.gallery-top .section-title { margin-bottom: 0; }

/* Mosaic grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 300px;
  gap: 3px;
}
/* Row 1 */
.gi-wide { /* col span 2 */ }
.gallery-item:nth-child(1) { grid-column: span 2; }  /* wide landscape */
.gallery-item:nth-child(2) { grid-row: span 1; }     /* tall portrait */
/* Row 2 */
.gallery-item:nth-child(3) { grid-row: span 1; }     /* tall portrait */
.gallery-item:nth-child(4) { grid-column: span 2; }  /* wide landscape */
/* Row 3 fallback */
.gallery-item:nth-child(5) { grid-row: span 1; }
.gallery-item:nth-child(6) { grid-column: span 2; }

.gallery-item {
  overflow: hidden; position: relative; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.8) saturate(.85);
  transition: transform .6s ease, filter .4s ease;
}
.gallery-item:hover img { transform: scale(1.04); filter: brightness(.95) saturate(1); }
/* vignette */
.gallery-item::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  box-shadow: inset 0 0 55px rgba(10,10,6,.4);
  pointer-events: none; transition: box-shadow .4s;
}
.gallery-item:hover::before { box-shadow: inset 0 0 25px rgba(10,10,6,.2); }

/* ===========================================================
   MENU
   =========================================================== */
.section-menu {
  position: relative; padding: var(--pad) 0;
  background: var(--dark-warm); overflow: hidden;
}
.menu-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .1; filter: saturate(.4);
}
.menu-top {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 48px;
  position: relative; gap: 24px;
}
.menu-top .section-title { margin-bottom: 0; }
.menu-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 3px; position: relative;
}
.cocktail-card {
  background: rgba(26,28,20,.92); padding: 36px 32px;
  border-top: 1px solid rgba(196,164,107,.08);
  transition: background .25s;
}
.cocktail-card:hover { background: rgba(32,34,24,.98); }
.cc-cat {
  font-size: 9px; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--tan); margin-bottom: 12px;
}
.cc-name {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  color: var(--cream); line-height: 1.2;
}
.cc-rule {
  width: 28px; height: 1px;
  background: var(--tan); opacity: .32; margin: 15px 0;
}
.cc-desc { font-size: 12px; line-height: 1.75; color: rgba(247,242,232,.33); }

/* ===========================================================
   PACKAGES
   =========================================================== */
.section-packages {
  background: var(--dark-mid); padding: var(--pad) 0;
}
.packages-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 3px; margin-top: 48px; margin-bottom: 22px;
}
.pkg-card {
  background: var(--dark); padding: 50px 42px;
  transition: transform .3s;
}
.pkg-card:hover { transform: translateY(-4px); }
.pkg-card.featured {
  background: #1e201a;
  outline: 1px solid rgba(196,164,107,.24);
  position: relative; z-index: 1;
}
.pkg-badge {
  display: block; font-size: 9px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--tan); margin-bottom: 22px;
}
.pkg-name {
  font-family: var(--serif); font-size: 28px; font-weight: 300;
  color: var(--cream); margin-bottom: 4px;
}
.pkg-sub { font-size: 12px; color: var(--muted); letter-spacing: .08em; margin-bottom: 30px; }
.pkg-features { margin-bottom: 36px; }
.pkg-features li {
  font-size: 13px; color: rgba(247,242,232,.52);
  padding: 9px 0; border-bottom: 1px solid rgba(247,242,232,.05);
  display: flex; gap: 12px;
}
.pkg-features li::before { content: '—'; color: var(--tan); opacity: .45; flex-shrink: 0; }
.pkg-cta {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--tan); display: inline-flex; align-items: center; gap: 8px;
  transition: gap .2s, color .2s;
}
.pkg-cta:hover { gap: 14px; color: var(--tan-lt); }
.packages-note { font-size: 12px; color: var(--muted); text-align: center; }
.packages-note a { color: var(--tan); text-decoration: underline; }

/* ===========================================================
   PROCESS
   =========================================================== */
.section-process { background: var(--cream); padding: var(--pad) 0; }
.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 36px; margin-top: 48px; position: relative;
}
.process-grid::before {
  content: ''; position: absolute;
  top: 40px; left: 40px; right: 40px; height: 1px;
  background: rgba(45,74,42,.1);
}
.process-step { position: relative; }
.step-num {
  width: 80px; height: 80px;
  background: var(--cream); border: 1px solid rgba(45,74,42,.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 26px; font-weight: 300;
  color: var(--green); margin-bottom: 24px; position: relative; z-index: 1;
}
.process-step h3 {
  font-family: var(--serif); font-size: 21px; font-weight: 400;
  color: var(--dark); margin-bottom: 10px;
}
.process-step p { font-size: 13px; line-height: 1.8; color: rgba(26,30,18,.5); }

/* ===========================================================
   CONTACT
   =========================================================== */
.section-contact { background: var(--green); padding: var(--pad) 0; }
.section-contact .container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.contact-info .section-title { color: var(--cream); margin-bottom: 40px; }
.contact-info .section-title em { color: var(--tan-lt); }
.contact-details { display: flex; flex-direction: column; }
.contact-item { padding: 16px 0; border-bottom: 1px solid rgba(247,242,232,.1); }
.contact-item:last-child { border-bottom: none; }
.ci-label {
  font-size: 9px; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--tan); margin-bottom: 6px;
}
.ci-value {
  font-family: var(--serif); font-size: 19px; font-weight: 300;
  color: var(--cream); line-height: 1.4;
}
.ci-value a { transition: color .2s; }
.ci-value a:hover { color: var(--tan-lt); }
.ci-sub { font-size: 13px; color: rgba(247,242,232,.46); font-family: var(--sans); font-weight: 300; }

/* ---- FORM ---- */
.oa-form { display: flex; flex-direction: column; gap: 2px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 9px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(196,164,107,.62);
  padding: 12px 18px 0;
  background: rgba(10,10,6,.44);
  font-family: var(--sans);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(10,10,6,.44); border: none;
  padding: 7px 18px 14px;
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  color: var(--cream); outline: none;
  -webkit-appearance: none; appearance: none; border-radius: 0;
  transition: background .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { background: rgba(10,10,6,.7); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(247,242,232,.2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; color: rgba(247,242,232,.62); }
.form-group select option { background: var(--dark); }
.oa-form .btn-primary { align-self: flex-start; margin-top: 4px; }
/* WPForms overrides */
.wpforms-container .wpforms-form input,
.wpforms-container .wpforms-form select,
.wpforms-container .wpforms-form textarea {
  background: rgba(10,10,6,.44) !important; border: none !important;
  color: var(--cream) !important; font-family: var(--sans) !important;
  font-weight: 300 !important; border-radius: 0 !important; padding: 14px 18px !important;
}
.wpforms-container .wpforms-form .wpforms-submit {
  background: var(--tan) !important; color: var(--ink) !important;
  font-family: var(--sans) !important; font-weight: 500 !important;
  letter-spacing: .18em !important; text-transform: uppercase !important;
  font-size: 11px !important; border-radius: 0 !important;
  border: none !important; padding: 15px 34px !important;
}

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer {
  background: var(--ink); padding: 72px 0 34px;
  border-top: 1px solid rgba(196,164,107,.08);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 52px;
  border-bottom: 1px solid rgba(247,242,232,.055);
  margin-bottom: 28px;
}
.footer-logo {
  font-family: var(--serif); font-size: 25px; font-weight: 300;
  color: var(--cream); margin-bottom: 12px;
}
.footer-logo span { color: var(--tan); }
.footer-tagline { font-size: 13px; line-height: 1.8; color: rgba(247,242,232,.34); max-width: 240px; margin-bottom: 24px; }
.social-links { display: flex; gap: 9px; }
.social-link {
  width: 33px; height: 33px;
  border: 1px solid rgba(196,164,107,.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: border-color .2s, color .2s;
}
.social-link:hover { border-color: var(--tan); color: var(--tan); }
.footer-col-title {
  font-size: 9px; font-weight: 500;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--tan); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col li,
.footer-col a { font-size: 13px; color: rgba(247,242,232,.38); transition: color .2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.footer-copy { font-size: 11px; color: rgba(247,242,232,.18); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal li a { font-size: 11px; color: rgba(247,242,232,.18); transition: color .2s; }
.footer-legal li a:hover { color: var(--cream); }

/* misc */
.entry { padding: 120px 0 80px; }

/* ===========================================================
   RESPONSIVE — TABLET ≤1024
   =========================================================== */
@media (max-width: 1024px) {
  .container { padding: 0 36px; }
  .site-header, .site-header.is-scrolled { padding: 18px 36px; }
  .primary-nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .section-hero { grid-template-columns: 1fr; }
  .hero-photo { height: 52vh; min-height: 280px; }
  .hero-content { padding: 52px 36px 64px; }
  .hero-stats { gap: 28px; }

  .section-about { grid-template-columns: 1fr; }
  .about-photo { height: 400px; min-height: auto; }
  .about-content { padding: 56px 36px; }

  .services-grid, .packages-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(3,260px); }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(5) { grid-column: span 2; }
  .menu-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid::before { display: none; }
  .section-contact .container { grid-template-columns: 1fr; gap: 52px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

/* ===========================================================
   RESPONSIVE — MOBILE ≤640
   =========================================================== */
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .site-header, .site-header.is-scrolled { padding: 15px 20px; }
  .hero-content { padding: 40px 20px 52px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-stats { flex-wrap: wrap; gap: 20px 32px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item,
  .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; height: 240px; }
  .menu-grid, .process-grid { grid-template-columns: 1fr; }
  .menu-top { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .about-content { padding: 44px 20px; }
  .about-content p { max-width: 100%; }
  .section-title { font-size: clamp(30px, 8vw, 40px); }
}
