/* ============================================================
   Camotes Construction — "Homegrown Workshop"
   Mobile-first. Fraunces (display) + Hanken Grotesk (body).
   ============================================================ */

:root {
  --paper:   #F5ECDC;
  --paper-2: #FCF6EA;
  --ink:     #26201A;
  --ink-2:   #574C42;
  --clay:    #BC5A34;
  --clay-d:  #9C4526;
  --clay-press: #7D3620;
  --ochre:   #DDA24A;
  --olive:   #7C8A5A;
  --olive-2: #8E9C68;
  --line:    rgba(38, 32, 26, 0.14);
  --line-2:  rgba(38, 32, 26, 0.08);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1200px;
  --gutter: 20px;
  --radius: 10px;
  --shadow: 0 18px 40px -24px rgba(38, 32, 26, 0.55);
  --shadow-sm: 0 6px 18px -12px rgba(38, 32, 26, 0.5);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* on-brand keyboard focus, visible on both light and dark surfaces */
:focus-visible { outline: 3px solid var(--clay-d); outline-offset: 3px; border-radius: 3px; }
.why :focus-visible, .site-footer :focus-visible, .lightbox :focus-visible { outline-color: var(--ochre); }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background-color: var(--paper);
  /* subtle paper texture */
  background-image:
    radial-gradient(circle at 20% -10%, rgba(221, 162, 74, 0.10), transparent 40%),
    radial-gradient(circle at 100% 0%, rgba(188, 90, 52, 0.06), transparent 35%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--clay-d); text-decoration-thickness: 1px; text-underline-offset: 3px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--paper-2); padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.08; margin: 0; letter-spacing: -0.01em; }
h1 em, .hero-title em { font-style: italic; color: var(--clay); font-weight: 500; }
p { margin: 0 0 1rem; }

.eyebrow {
  font-family: var(--sans); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay-d);
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 1rem;
}
.tick { width: 28px; height: 2px; background: var(--clay); display: inline-block; }

/* ---------- Buttons ---------- */
.btn {
  --btn-fg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 700; font-size: 0.95rem;
  color: var(--btn-fg); text-decoration: none; cursor: pointer;
  padding: 12px 20px; border-radius: var(--radius); border: 2px solid transparent;
  transition: transform .15s ease, background-color .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap; min-height: 44px;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 15px 26px; font-size: 1.02rem; min-height: 52px; }
.btn-block { width: 100%; }

/* base uses clay-d (5.9:1 on paper text, passes WCAG AA); hover goes darker still */
.btn-primary { background: var(--clay-d); color: var(--paper-2); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--clay-press); transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper-2); transform: translateY(-2px); }

.btn-call { background: var(--ink); color: var(--paper-2); }
.btn-call:hover { background: #120e0a; transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245, 236, 220, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 16px; height: 68px; }

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
.brand-mark { flex: none; }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-weight: 600; font-size: 1.28rem; letter-spacing: -0.02em; }
.brand-sub {
  font-family: var(--sans); font-weight: 700; font-size: 0.62rem;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--clay-d); margin-top: 3px;
}

.nav { display: none; }
.header-call { display: none; }

.menu-toggle {
  margin-left: auto; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--paper-2); display: inline-flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 5px; cursor: pointer; padding: 0;
}
.menu-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px var(--gutter) 20px; border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a { color: var(--ink); text-decoration: none; font-weight: 600; padding: 12px 8px; border-bottom: 1px solid var(--line-2); }
.mobile-nav a.btn-call { margin-top: 10px; border-bottom: none; color: var(--paper-2); justify-content: center; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 40px 0 0; }
.hero-grid { display: grid; gap: 32px; }

.hero-title { font-size: clamp(2.5rem, 9vw, 3.6rem); margin: 0 0 18px; }
.hero-tagline { font-family: var(--serif); font-size: 1.22rem; font-style: italic; color: var(--ink); margin: 0 0 16px; }
.hero-lede { color: var(--ink-2); font-size: 1.06rem; max-width: 46ch; margin: 0 0 26px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }

.hero-trust {
  list-style: none; margin: 0; padding: 20px 0 0; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 8px 26px;
}
.hero-trust li { position: relative; padding-left: 22px; font-size: 0.95rem; color: var(--ink-2); }
.hero-trust li::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 13px; height: 13px; border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, var(--olive) 40%, transparent 42%);
  border: 2px solid var(--olive); box-sizing: border-box;
}
.hero-trust strong { color: var(--ink); font-weight: 700; }

.hero-media { position: relative; }
.hero-photo {
  width: 100%; border-radius: 14px; border: 1px solid var(--line);
  box-shadow: var(--shadow); aspect-ratio: 3 / 2; object-fit: cover;
}
.hero-badge {
  position: absolute; right: 14px; bottom: -18px;
  background: var(--ink); color: var(--paper-2); border-radius: 12px;
  padding: 12px 16px; text-align: center; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; align-items: center; gap: 1px; min-width: 108px;
}
.badge-est { font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ochre); }
.badge-year { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; line-height: 1; }
.badge-label { font-size: 0.62rem; letter-spacing: 0.06em; color: rgba(252, 246, 234, 0.72); margin-top: 3px; }

/* ruler-tick divider */
.ruler {
  margin-top: 52px; height: 22px;
  background-image: repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 100%);
  background-size: 14px 100%;
  border-top: 2px solid var(--ink); border-bottom: 1px solid var(--line);
  opacity: 0.55;
}

/* ---------- Sections ---------- */
.section { padding: 62px 0; }
.section-head { margin-bottom: 40px; }
.section-num {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--clay);
  border: 2px solid var(--clay); width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 0 18px;
}
.section-title { font-size: clamp(1.9rem, 6vw, 2.5rem); margin: 0 0 12px; }
.section-intro { color: var(--ink-2); font-size: 1.06rem; max-width: 54ch; margin: 0; }

/* ---------- Services ---------- */
.services { border-top: 1px solid var(--line); }
.service-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.service {
  background: var(--paper); padding: 26px 24px;
}
.service h3 { font-size: 1.24rem; margin: 0 0 7px; }
.service p { color: var(--ink-2); margin: 0; font-size: 0.98rem; }

.services-foot { margin: 26px 0 0; font-size: 1.05rem; color: var(--ink-2); }

/* ---------- Gallery ---------- */
.gallery { display: grid; gap: 14px; grid-template-columns: 1fr; }
.gallery-item {
  position: relative; padding: 0; margin: 0; border: 1px solid var(--line); border-radius: 12px;
  overflow: hidden; cursor: pointer; background: var(--paper-2); display: block; width: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}
.gallery-item img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-cap {
  position: absolute; left: 0; bottom: 0; right: 0;
  background: linear-gradient(transparent, rgba(38, 32, 26, 0.82));
  color: var(--paper-2); font-weight: 600; font-size: 0.9rem; text-align: left;
  padding: 26px 16px 12px;
}
.gallery-note { margin: 26px 0 0; font-size: 0.9rem; color: var(--ink-2); font-style: italic; }

/* ---------- Work (editorial rows) ---------- */
.work-rows { display: flex; flex-direction: column; gap: 44px; }
.work-row { display: grid; gap: 18px; align-items: center; }
.work-photo { border-radius: 14px; box-shadow: var(--shadow-sm); }
.work-photo img { aspect-ratio: 3 / 2; }
.work-photo:hover { transform: none; box-shadow: var(--shadow); }
.work-loc { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay-d); display: block; margin-bottom: 9px; }
.work-info h3 { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; margin: 0 0 10px; }
.work-info p { color: var(--ink-2); margin: 0; font-size: 1.03rem; max-width: 44ch; }

/* ---------- Family ---------- */
.family-story { display: grid; gap: 26px; margin-bottom: 46px; }
.family-photo-wide { width: 100%; border-radius: 14px; border: 1px solid var(--line); box-shadow: var(--shadow); aspect-ratio: 3 / 2; object-fit: cover; }
.lead-drop { font-family: var(--serif); font-size: 1.28rem; line-height: 1.4; color: var(--ink); }
.family-story-copy p { color: var(--ink-2); }
.family-story-copy p.lead-drop { color: var(--ink); }

.crew { display: grid; gap: 20px; grid-template-columns: 1fr; }
.crew-member { margin: 0; background: var(--paper-2); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.crew-member img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.crew-member figcaption { padding: 18px 20px 22px; }
.crew-name { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; display: block; }
.crew-role { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay-d); display: block; margin: 4px 0 10px; }
.crew-member figcaption p { margin: 0; color: var(--ink-2); font-size: 0.96rem; }

/* ---------- Why ---------- */
.why { background: var(--ink); color: var(--paper); border-radius: 0; }
.why .section-title, .why .lead-drop { color: var(--paper); }
.why .section-intro { color: rgba(245, 236, 220, 0.72); }
.why .section-num { color: var(--ochre); border-color: var(--ochre); }
.why-grid { display: grid; gap: 16px; grid-template-columns: 1fr; margin-bottom: 42px; }
.why-card { border: 1px solid rgba(245, 236, 220, 0.16); border-radius: 12px; padding: 22px 20px; background: rgba(245, 236, 220, 0.03); }
.why-card h3 { color: var(--ochre); font-size: 1.24rem; margin-bottom: 8px; }
.why-card p { color: rgba(245, 236, 220, 0.82); margin: 0; font-size: 0.98rem; }

.testimonials { display: grid; gap: 18px; grid-template-columns: 1fr; }
.quote { margin: 0; border-left: 3px solid var(--clay); padding: 6px 0 6px 22px; }
.quote p { font-family: var(--serif); font-size: 1.16rem; font-style: italic; line-height: 1.45; color: var(--paper); margin-bottom: 12px; }
.quote cite { font-style: normal; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(245, 236, 220, 0.55); }

/* ---------- How it works ---------- */
.process { border-top: 1px solid var(--line); }
.steps { display: grid; gap: 18px; grid-template-columns: 1fr; counter-reset: step; }
.step { position: relative; padding: 24px 22px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 12px; }
.step-num {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--paper-2);
  background: var(--clay-d); width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.step h3 { font-size: 1.22rem; margin-bottom: 7px; }
.step p { color: var(--ink-2); margin: 0; font-size: 0.97rem; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; max-width: 820px; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; background: var(--paper-2); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 22px; font-family: var(--serif);
  font-size: 1.16rem; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--sans); font-weight: 700; font-size: 1.5rem; color: var(--clay-d);
  line-height: 1; transition: transform .2s ease; flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 22px 20px; color: var(--ink-2); margin: 0; max-width: 68ch; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 34px; }
.contact-copy .section-num { margin-bottom: 18px; }
.contact-list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 16px; }
.contact-list li { display: flex; flex-direction: column; gap: 2px; border-top: 1px solid var(--line); padding-top: 14px; }
.contact-label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay-d); font-weight: 700; }
.contact-value { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); text-decoration: none; }
a.contact-value:hover { color: var(--clay); }

.contact-form { background: var(--paper-2); border: 1px solid var(--line); border-radius: 16px; padding: 26px 22px; box-shadow: var(--shadow); }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field-row { display: grid; gap: 16px; grid-template-columns: 1fr; }
.field label { font-weight: 700; font-size: 0.88rem; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 9px; background: var(--paper);
  transition: border-color .2s ease, box-shadow .2s ease; width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--clay); box-shadow: 0 0 0 3px rgba(188, 90, 52, 0.16);
}
.form-fineprint { font-size: 0.8rem; color: var(--ink-2); margin: 12px 0 0; text-align: center; }

/* ---------- Footer ---------- */
/* extra bottom padding clears the fixed mobile call bar; reset on desktop */
.site-footer { background: #1C160F; color: var(--paper); padding: 52px 0 calc(26px + 78px); }
.footer-inner { display: grid; gap: 30px; grid-template-columns: 1fr; }
.footer-brand .brand-name { color: var(--paper); font-size: 1.4rem; }
.footer-brand p { color: rgba(245, 236, 220, 0.72); margin: 10px 0 0; max-width: 42ch; }
.footer-area { font-size: 0.9rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 2px 22px; }
.footer-nav a { padding: 11px 0; min-height: 44px; display: inline-flex; align-items: center; }
.footer-nav a, .footer-contact a { color: rgba(245, 236, 220, 0.82); text-decoration: none; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--ochre); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-family: var(--serif); font-size: 1.15rem; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between;
  margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(245, 236, 220, 0.14);
  font-size: 0.82rem; color: rgba(245, 236, 220, 0.55);
}

/* ---------- Mobile sticky call bar ---------- */
.mobile-callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: flex; gap: 10px; padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: rgba(245, 236, 220, 0.94); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  transform: translateY(120%); transition: transform .3s ease;
}
.mobile-callbar.show { transform: translateY(0); }
.mobile-callbar .btn { flex: 1; }
body { padding-bottom: 0; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(28, 22, 15, 0.92);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.lightbox[hidden] { display: none; }
.lightbox figure { margin: 0; max-width: 1000px; width: 100%; }
.lightbox img { width: 100%; border-radius: 12px; border: 1px solid rgba(245, 236, 220, 0.2); }
.lightbox figcaption { color: var(--paper); text-align: center; margin-top: 14px; font-family: var(--serif); font-size: 1.1rem; font-style: italic; }
.lightbox-close {
  position: absolute; top: 16px; right: 20px; font-size: 2.4rem; line-height: 1;
  color: var(--paper); background: none; border: none; cursor: pointer; padding: 8px;
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Hero load-in ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes floatIn { from { opacity: 0; transform: translateY(30px) scale(.98); } to { opacity: 1; transform: none; } }

.hero-copy > * { animation: fadeUp .7s ease both; }
.hero-copy > *:nth-child(1) { animation-delay: .05s; }
.hero-copy > *:nth-child(2) { animation-delay: .14s; }
.hero-copy > *:nth-child(3) { animation-delay: .23s; }
.hero-copy > *:nth-child(4) { animation-delay: .32s; }
.hero-copy > *:nth-child(5) { animation-delay: .41s; }
.hero-copy > *:nth-child(6) { animation-delay: .5s; }
.hero-media { animation: floatIn .8s ease .3s both; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-copy > *, .hero-media { animation: none; }
  .gallery-item:hover img, .service:hover, .why-card:hover { transform: none; }
}

/* ============================================================
   BREAKPOINTS
   ============================================================ */

/* Tablet */
@media (min-width: 640px) {
  :root { --gutter: 32px; }
  .field-row { grid-template-columns: 1fr 1fr; }
  .service-list { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .crew { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonials { grid-template-columns: 1fr 1fr; }
  .hero-badge { right: 22px; }
  .footer-inner { grid-template-columns: 1.4fr 1fr; }
}

/* Desktop */
@media (min-width: 960px) {
  .nav { display: flex; align-items: center; gap: 26px; margin-left: 30px; }
  .nav a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: 0.98rem; position: relative; padding: 4px 0; }
  .nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--clay); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
  .nav a:hover::after { transform: scaleX(1); }
  .header-call { display: inline-flex; margin-left: auto; }
  .menu-toggle { display: none; }
  .mobile-nav { display: none !important; }
  .mobile-callbar { display: none !important; }

  .site-footer { padding-bottom: 30px; }
  .section { padding: 92px 0; }
  .section-head { display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: start; max-width: 900px; }
  .section-num { margin: 0; }

  .hero { padding: 64px 0 0; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 54px; }
  .hero-title { font-size: clamp(3.2rem, 4.4vw, 4.3rem); }
  .service-list { grid-template-columns: repeat(3, 1fr); gap: 1px; }
  .steps { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .work-rows { gap: 76px; }
  .work-row { grid-template-columns: 1.08fr 0.92fr; gap: 48px; }
  .work-row:nth-child(even) .work-photo { order: 2; }
  .family-story { grid-template-columns: 1fr 1fr; align-items: center; gap: 44px; }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
  .footer-inner { grid-template-columns: 1.6fr 1fr 1fr; }
}

/* Large */
@media (min-width: 1200px) {
  .hero-title { font-size: 4.5rem; }
}
