/* =========================================
   ZEN CULINARY — MAIN STYLESHEET
   zenculinary.co
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

/* =========================================
   TOKENS
   ========================================= */

:root {
  --amber:   #C87D38;
  --ivory:   #F4EFE4;
  --charcoal:#3A3530;
  --forest:  #4B6842;
  --cream:   #EDE6D6;
  --dark:    #252220;
  --muted:   #8A847E;

  --max-w:   1180px;
  --pad-x:   48px;
  --section: 120px;
  --nav-h:   72px;
}

/* =========================================
   RESET
   ========================================= */

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  background: var(--ivory);
  color: var(--charcoal);
}

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.15;
}

/* =========================================
   LAYOUT HELPERS
   ========================================= */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section { padding: var(--section) 0; }

.section-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

/* =========================================
   NAVIGATION
   ========================================= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  transition: background .35s, backdrop-filter .35s;
}

.nav.scrolled {
  background: rgba(26,24,22,0.97);
  backdrop-filter: blur(8px);
}

.nav-solid {
  background: var(--dark);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: var(--ivory);
  letter-spacing: 0.02em;
  z-index: 201;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 52px;
}

.nav-links a {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244,239,228,.75);
  transition: color .2s;
}
.nav-links a:hover { color: var(--ivory); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 201;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ivory);
  transition: transform .3s, opacity .3s;
}

/* hamburger → X */
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile overlay */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 199;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 52px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.nav-mobile.open { opacity:1; pointer-events:all; }

.nav-mobile a {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: var(--ivory);
  opacity: .8;
  transition: opacity .2s;
}
.nav-mobile a:hover { opacity: 1; }

/* =========================================
   BUTTONS
   ========================================= */

.btn {
  display: inline-block;
  padding: 14px 38px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  transition: background .25s, color .25s, border-color .25s;
  cursor: pointer;
  line-height: 1;
}

.btn-ivory {
  color: var(--ivory);
  background: transparent;
}
.btn-ivory:hover {
  background: var(--ivory);
  color: var(--charcoal);
}

.btn-ghost {
  color: rgba(244,239,228,.6);
  border-color: rgba(244,239,228,.3);
  background: transparent;
}
.btn-ghost:hover {
  color: var(--ivory);
  border-color: var(--ivory);
}

.btn-dark {
  color: var(--charcoal);
  background: transparent;
  border-color: var(--charcoal);
}
.btn-dark:hover {
  background: var(--charcoal);
  color: var(--ivory);
}

.btn-amber {
  color: var(--amber);
  background: transparent;
  border-color: var(--amber);
}
.btn-amber:hover {
  background: var(--amber);
  color: var(--ivory);
}

/* =========================================
   HERO (HOMEPAGE)
   ========================================= */

.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26,24,22,.78) 0%,
    rgba(26,24,22,.48) 45%,
    rgba(26,24,22,.28) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 0 24px 110px;
}

.hero-content h1 {
  font-size: clamp(34px, 5vw, 68px);
  color: var(--ivory);
  margin-bottom: 28px;
  max-width: 820px;
}

.hero-sub {
  font-size: clamp(15px, 1.6vw, 19px);
  color: rgba(244,239,228,.72);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =========================================
   BRAND IDENTITY (PALETTE PLATE)
   ========================================= */

.brand-plate {
  background: var(--dark);
  overflow: hidden;
}

.brand-plate img {
  width: 100%;
  max-height: 72vh;
  object-fit: cover;
  object-position: center;
  opacity: .92;
}

.brand-plate-caption {
  text-align: center;
  padding: 36px 24px;
}

.brand-plate-caption p {
  font-size: 14px;
  letter-spacing: 0.07em;
  color: rgba(244,239,228,.55);
  font-style: italic;
}

/* =========================================
   DISHES BLOCK (homepage)
   ========================================= */

.dishes-block {
  background: var(--charcoal);
  overflow: hidden;
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.dishes-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

@media (max-width: 700px) {
  .dishes-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================
   ABOUT TEASER
   ========================================= */

.about-teaser {
  background: var(--cream);
}

.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.about-teaser-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}

.about-teaser-text .section-label {
  margin-bottom: 16px;
}

.about-teaser-text h2 {
  font-size: clamp(28px, 3vw, 46px);
  color: var(--charcoal);
  margin-bottom: 28px;
}

.about-teaser-text p {
  font-size: 17px;
  color: #5C5652;
  line-height: 1.85;
  margin-bottom: 40px;
}

.link-arrow {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--forest);
  border-bottom: 1px solid var(--forest);
  padding-bottom: 2px;
  transition: opacity .2s;
}
.link-arrow:hover { opacity: .65; }

/* =========================================
   EXPERIENCE TEASER
   ========================================= */

.exp-teaser {
  background: var(--ivory);
}

.exp-teaser-header {
  text-align: center;
  margin-bottom: 64px;
}

.exp-teaser-header h2 {
  font-size: clamp(30px, 4vw, 56px);
  color: var(--charcoal);
}

.exp-teaser-header p {
  font-size: 16px;
  color: var(--muted);
  margin-top: 16px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.exp-teaser-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-bottom: 64px;
}

.exp-teaser-imgs img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.exp-teaser-footer {
  text-align: center;
}

/* =========================================
   INQUIRY FORM SECTION
   ========================================= */

.form-section {
  background: var(--cream);
}

.form-section-inner {
  max-width: 700px;
  margin: 0 auto;
}

.form-section h2 {
  font-size: clamp(28px, 3.5vw, 50px);
  color: var(--charcoal);
  margin-bottom: 14px;
}

.form-section .form-sub {
  font-size: 15px;
  color: #7A7268;
  margin-bottom: 60px;
  line-height: 1.6;
}

.inquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
}

.form-field {
  grid-column: span 1;
  margin-bottom: 44px;
}

.form-field.full  { grid-column: span 2; }

.form-field label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(58,53,48,.45);
  margin-bottom: 12px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(58,53,48,.18);
  padding: 10px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(58,53,48,.28);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--amber);
}

.form-field select {
  color: rgba(58,53,48,.55);
  cursor: pointer;
}

.form-field select option {
  background: var(--cream);
  color: var(--charcoal);
}

.form-field textarea {
  resize: none;
  height: 84px;
}

.form-submit {
  grid-column: span 2;
  margin-top: 8px;
}

.form-submit button {
  background: transparent;
  font-family: 'DM Sans', sans-serif;
}

/* =========================================
   FOOTER
   ========================================= */

.footer {
  background: var(--dark);
  padding: 64px var(--pad-x);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-left .footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--ivory);
  display: block;
  margin-bottom: 6px;
}

.footer-left .footer-loc {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(244,239,228,.3);
}

.footer-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.footer-links a {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,239,228,.4);
  transition: color .2s;
}
.footer-links a:hover { color: var(--ivory); }

/* =========================================
   PAGE HERO (INTERIOR PAGES)
   ========================================= */

.page-hero {
  position: relative;
  height: 60vh;
  min-height: 380px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,24,22,.58);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--nav-h) 24px 0;
}

.page-hero-content h1 {
  font-size: clamp(36px, 5vw, 68px);
  color: var(--ivory);
}

.page-hero-content p {
  font-size: 16px;
  color: rgba(244,239,228,.6);
  margin-top: 20px;
  max-width: 480px;
}

/* =========================================
   EXPERIENCE PAGE — OPENING PARAGRAPH
   ========================================= */

.opening-para {
  background: var(--ivory);
}

.opening-para-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.opening-para-inner p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(19px, 2.3vw, 28px);
  font-style: italic;
  line-height: 1.75;
  color: var(--charcoal);
}

/* =========================================
   GALLERY
   ========================================= */

.gallery-section {
  background: var(--cream);
  padding: var(--section) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: opacity .3s;
}

.gallery-grid img:hover { opacity: .88; }

.gallery-grid .portrait {
  grid-row: span 2;
  aspect-ratio: auto;
  height: 100%;
  min-height: 300px;
}

.gallery-grid .wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

/* =========================================
   SAMPLE MENUS
   ========================================= */

.menus-section {
  background: var(--dark);
}

.menus-section h2 {
  font-size: clamp(28px, 3.5vw, 50px);
  color: var(--ivory);
  margin-bottom: 20px;
}

.menus-intro {
  font-size: 16px;
  color: rgba(244,239,228,.5);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 72px;
}

.menus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  align-items: start;
}

.palette-feature {
  overflow: hidden;
}

.palette-feature img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  display: block;
  object-position: center center;
}

.menu-card {
  background: #2E2A25;
  padding: 56px 48px 48px;
}

.menu-card-header {
  border-bottom: 1px solid rgba(244,239,228,.1);
  padding-bottom: 28px;
  margin-bottom: 40px;
}

.menu-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 12px;
}

.menu-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  color: var(--ivory);
  font-style: italic;
}

.menu-arrival {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(244,239,228,.07);
}

.menu-arrival-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(244,239,228,.3);
  display: block;
  margin-bottom: 8px;
}

.menu-arrival p {
  font-size: 14px;
  color: rgba(244,239,228,.55);
  font-style: italic;
}

.menu-course {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(244,239,228,.07);
}

.menu-course:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.menu-course-num {
  font-family: 'Playfair Display', serif;
  font-size: 11px;
  font-style: italic;
  color: var(--amber);
  min-width: 32px;
  padding-top: 3px;
  opacity: .8;
}

.menu-course-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--ivory);
  margin-bottom: 6px;
}

.menu-course-coming {
  color: rgba(244,239,228,.35);
  font-style: italic;
}

.menu-course-context {
  font-size: 13px;
  font-style: italic;
  color: rgba(244,239,228,.88);
  line-height: 1.65;
  margin-bottom: 6px;
}

.menu-course-desc {
  font-size: 13px;
  color: rgba(244,239,228,.45);
  line-height: 1.7;
}

.menu-supplement {
  font-size: 12px;
  color: var(--amber);
  margin-top: 6px;
  opacity: .8;
}

.menu-note {
  font-size: 13px;
  color: rgba(244,239,228,.3);
  font-style: italic;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(244,239,228,.07);
  line-height: 1.7;
}

@media (max-width: 760px) {
  .menus-grid { grid-template-columns: 1fr; }
  .menu-card  { padding: 40px 28px; }
}

/* =========================================
   MENUS PAIRING NOTE
   ========================================= */

.menus-pairing {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(244,239,228,.1);
  display: flex;
  align-items: baseline;
  gap: 24px;
}

.menus-pairing-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  white-space: nowrap;
}

.menus-pairing p {
  font-size: 14px;
  color: rgba(244,239,228,.4);
  line-height: 1.7;
  margin: 0;
  max-width: none;
}

/* =========================================
   SOURCING
   ========================================= */

.sourcing-section {
  background: var(--cream);
}

.sourcing-section h2 {
  font-size: clamp(28px, 3vw, 44px);
  margin-bottom: 20px;
}

.sourcing-intro {
  font-size: 17px;
  color: #5A5550;
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 64px;
}

.sourcing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.sourcing-item-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 14px;
}

.sourcing-item p {
  font-size: 15px;
  color: #6A6560;
  line-height: 1.75;
}

@media (max-width: 760px) {
  .sourcing-grid { grid-template-columns: 1fr; gap: 32px; }
  .menus-pairing { flex-direction: column; gap: 10px; }
}

/* =========================================
   HOW IT WORKS
   ========================================= */

.how-it-works {
  background: var(--cream);
}

.how-it-works h2 {
  text-align: center;
  font-size: clamp(28px, 3.5vw, 50px);
  color: var(--charcoal);
  margin-bottom: 88px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  color: var(--amber);
  opacity: .35;
  line-height: 1;
  margin-bottom: 24px;
}

.step h3 {
  font-size: 19px;
  color: var(--charcoal);
  margin-bottom: 14px;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}

.step p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

/* =========================================
   VIDEO PLACEHOLDER
   ========================================= */

.video-section {
  position: relative;
  height: 62vh;
  overflow: hidden;
}

.video-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,24,22,.62);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-label {
  border: 1px solid rgba(244,239,228,.25);
  padding: 14px 28px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,239,228,.4);
}

/* =========================================
   RETREATS PAGE
   ========================================= */

.retreats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.retreat-card {
  background: #2E2A25;
  padding: 56px 48px;
}

.retreat-card-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 16px;
}

.retreat-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2vw, 30px);
  color: var(--ivory);
  font-style: italic;
  margin-bottom: 20px;
}

.retreat-card p {
  font-size: 15px;
  color: rgba(244,239,228,.5);
  line-height: 1.8;
  margin-bottom: 32px;
}

.retreat-includes {
  list-style: none;
  border-top: 1px solid rgba(244,239,228,.08);
  padding-top: 24px;
}

.retreat-includes li {
  font-size: 13px;
  color: rgba(244,239,228,.4);
  padding: 8px 0;
  padding-left: 16px;
  position: relative;
}

.retreat-includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--amber);
  opacity: .6;
}

@media (max-width: 760px) {
  .retreats-grid { grid-template-columns: 1fr; }
  .retreat-card  { padding: 40px 28px; }
}

/* =========================================
   ABOUT PAGE
   ========================================= */

.about-bio {
  background: var(--ivory);
}

.about-bio-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 100px;
  align-items: start;
}

.about-bio-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}

.about-bio-text h1 {
  font-size: clamp(30px, 3.5vw, 52px);
  color: var(--charcoal);
  margin-bottom: 40px;
}

.about-bio-text p {
  font-size: 17px;
  color: #5A5550;
  line-height: 1.88;
  margin-bottom: 28px;
}

.about-secondary {
  background: var(--cream);
}

.about-secondary-inner {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 100px;
  align-items: center;
}

.about-secondary-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
}

.about-secondary-text h2 {
  font-size: clamp(24px, 3vw, 42px);
  color: var(--charcoal);
  margin-bottom: 28px;
}

.about-secondary-text p {
  font-size: 17px;
  color: #5A5550;
  line-height: 1.88;
  margin-bottom: 44px;
}

/* =========================================
   INQUIRE PAGE
   ========================================= */

.inquire-hero {
  background: var(--dark);
  padding: 160px var(--pad-x) 80px;
  text-align: center;
}

.inquire-hero h1 {
  font-size: clamp(32px, 4.5vw, 64px);
  color: var(--ivory);
  margin-bottom: 20px;
}

.inquire-hero p {
  font-size: 16px;
  color: rgba(244,239,228,.5);
  max-width: 480px;
  margin: 0 auto;
}

/* =========================================
   DIVIDER
   ========================================= */

.divider {
  width: 48px;
  height: 1px;
  background: var(--amber);
  margin: 0 auto 40px;
  opacity: .6;
}

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

@media (max-width: 960px) {
  :root {
    --section: 80px;
    --pad-x: 32px;
  }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .about-teaser-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-teaser-img {
    aspect-ratio: 4/3;
    max-height: 420px;
    width: 100%;
  }

  .exp-teaser-imgs {
    grid-template-columns: 1fr;
  }
  .exp-teaser-imgs img { aspect-ratio: 3/2; }

  .inquiry-form { grid-template-columns: 1fr; }
  .form-field,
  .form-field.full,
  .form-submit { grid-column: span 1; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .wide { grid-column: span 2; aspect-ratio: 2/1; }
  .gallery-grid .portrait { grid-row: span 1; aspect-ratio: 1; min-height: 0; }

  .steps { grid-template-columns: repeat(2, 1fr); }

  .about-bio-grid,
  .about-secondary-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-bio-img { aspect-ratio: 4/3; }
}

@media (max-width: 600px) {
  :root {
    --section: 64px;
    --pad-x: 24px;
  }

  .hero-content h1 { font-size: 34px; }
  .hero-btns { flex-direction: column; align-items: center; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .wide { grid-column: span 1; aspect-ratio: 3/2; }

  .steps { grid-template-columns: 1fr; gap: 40px; }

  .footer {
    padding: 52px var(--pad-x);
  }
  .footer-inner { flex-direction: column; align-items: flex-start; }

  .about-teaser-img { aspect-ratio: 3/2; max-height: 300px; }
}
