:root {
  --ink: #1e2c3a;
  --ink-soft: #52606a;
  --navy: #233547;
  --navy-deep: #182735;
  --cream: #fffaf0;
  --paper: #fffdf8;
  --orange: #ef8a3a;
  --orange-light: #ffc27a;
  --red: #c5372d;
  --red-dark: #9d2b25;
  --line: rgba(30, 44, 58, .14);
  --shadow: 0 20px 55px rgba(23, 37, 49, .14);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; left: 1rem; top: -4rem; z-index: 30; padding: .7rem 1rem; border-radius: 0 0 8px 8px; background: var(--red); color: #fff; transition: top .2s; }
.skip-link:focus { top: 0; }

.announcement { background: var(--navy-deep); color: rgba(255,255,255,.8); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.announcement__inner { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; }
.announcement a { color: var(--orange-light); font-weight: 700; }
.site-header { position: relative; z-index: 10; background: rgba(255,253,248,.96); border-bottom: 1px solid var(--line); }
.header-main { position: relative; display: flex; align-items: center; justify-content: space-between; min-height: 88px; gap: 1rem; }
.brand { display: inline-flex; flex-direction: column; align-items: flex-start; gap: .3rem; min-width: 0; }
.brand img { width: min(100%, 250px); height: auto; }
.brand span { color: var(--ink-soft); font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.main-navigation { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: none; padding: .7rem; background: var(--paper); border: 1px solid var(--line); border-top: 0; box-shadow: var(--shadow); }
.main-navigation.is-open { display: grid; }
.main-navigation a { padding: .75rem 1rem; border-radius: 8px; color: var(--ink); font-size: .9rem; font-weight: 700; }
.main-navigation a:hover, .main-navigation a:focus-visible { background: #fff1df; color: var(--red-dark); }
.main-navigation .nav-cta { background: var(--red); color: #fff; text-align: center; }
.menu-toggle { display: inline-flex; align-items: center; gap: .55rem; border: 0; background: transparent; color: var(--ink); cursor: pointer; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.menu-toggle__icon { display: grid; gap: 4px; width: 22px; }
.menu-toggle__icon i { display: block; height: 2px; border-radius: 2px; background: var(--red); transition: transform .2s, opacity .2s; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero { position: relative; overflow: hidden; padding: 4rem 0 4.5rem; background: linear-gradient(130deg, #fffaf0 0%, #fffaf0 52%, #ffe8cf 100%); }
.hero::before { position: absolute; right: -8rem; bottom: -11rem; width: 30rem; height: 30rem; border: 1px solid rgba(197,55,45,.12); border-radius: 50%; content: ''; }
.hero::after { position: absolute; right: 7rem; bottom: -7rem; width: 14rem; height: 14rem; border: 1px solid rgba(239,138,58,.18); border-radius: 50%; content: ''; }
.hero__grid { position: relative; z-index: 1; display: grid; gap: 3rem; }
.hero__copy { max-width: 620px; align-self: center; }
.eyebrow { margin: 0 0 1rem; color: var(--red); font-size: .75rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { margin-bottom: 1.3rem; font-family: Georgia, 'Times New Roman', serif; font-weight: 400; letter-spacing: -.045em; line-height: .98; }
h1 { font-size: clamp(3.35rem, 14vw, 7.5rem); }
h2 { font-size: clamp(2.8rem, 8vw, 5.5rem); }
h1 em, h2 em { color: var(--red); font-style: normal; }
.hero__intro { max-width: 510px; color: var(--ink-soft); font-size: 1.05rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 2rem 0 1.7rem; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .65rem; min-height: 48px; padding: .75rem 1.2rem; border: 1px solid transparent; border-radius: 999px; cursor: pointer; font-weight: 800; font-size: .83rem; transition: transform .2s, background .2s, color .2s, box-shadow .2s; }
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(30,44,58,.14); }
.button--primary { background: var(--red); color: #fff; }
.button--primary:hover, .button--primary:focus-visible { background: var(--red-dark); }
.button--ghost { border-color: var(--line); background: transparent; color: var(--ink); }
.button--ghost:hover, .button--ghost:focus-visible { border-color: var(--red); color: var(--red); }
.button--dark { background: var(--navy); color: #fff; }
.hero__note { display: flex; align-items: flex-start; gap: .7rem; max-width: 450px; color: var(--ink-soft); font-size: .8rem; }
.hero__note-mark { color: var(--orange); font-size: 1.2rem; line-height: 1.2; }
.hero-card { position: relative; width: min(100%, 410px); margin: 0 auto; padding: .7rem .7rem 1rem; background: #fff; box-shadow: var(--shadow); transform: rotate(1.2deg); }
.hero-card__image-wrap { overflow: hidden; aspect-ratio: 4 / 5; }
.hero-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92); }
.hero-card figcaption { display: flex; justify-content: space-between; gap: 1rem; padding: .8rem .35rem 0; color: var(--ink); font-family: Georgia, 'Times New Roman', serif; font-size: 1rem; }
.hero-card figcaption span:last-child { color: var(--red); font-family: Arial, Helvetica, sans-serif; font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-card__stamp { position: absolute; top: 1.3rem; right: -1.1rem; display: grid; place-items: center; width: 80px; height: 80px; border-radius: 50%; background: var(--orange); color: var(--navy); font-size: .65rem; font-weight: 900; letter-spacing: .08em; line-height: 1.1; text-align: center; text-transform: uppercase; transform: rotate(10deg); }

.proof-strip { background: var(--orange); color: var(--navy-deep); }
.proof-strip__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.proof-strip__grid > div { display: flex; flex-direction: column; justify-content: center; min-height: 112px; padding: 1rem .8rem; border-right: 1px solid rgba(24,39,53,.16); }
.proof-strip strong { font-family: Georgia, 'Times New Roman', serif; font-size: 1.8rem; font-weight: 400; line-height: 1; }
.proof-strip span { font-size: .7rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.proof-strip__quote { display: none !important; color: rgba(24,39,53,.68); font-family: Georgia, 'Times New Roman', serif; font-size: 1.05rem; font-style: italic; }

.section { padding: 5rem 0; }
.section--light { background: var(--paper); }
.section--cream { background: var(--cream); }
.section--dark { background: var(--navy); color: #fff; }
.section-heading { display: grid; gap: 1.5rem; align-items: end; margin-bottom: 3rem; }
.section-heading > p { max-width: 430px; margin-bottom: .4rem; color: var(--ink-soft); }
.section-heading--dark > p { color: rgba(255,255,255,.68); }
.section-heading--dark .eyebrow { color: var(--orange-light); }
.section-heading--dark h2 em { color: var(--orange-light); }
.service-grid { display: grid; gap: 1rem; }
.service-card { position: relative; min-height: 290px; padding: 2rem 1.4rem 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.service-card--featured { background: var(--red); border-color: var(--red); color: #fff; }
.service-card__number { position: absolute; top: 1.35rem; right: 1.4rem; color: var(--ink-soft); font-size: .7rem; font-weight: 800; letter-spacing: .1em; }
.service-card--featured .service-card__number { color: rgba(255,255,255,.62); }
.service-card__icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 1.8rem; border-radius: 50%; background: #fff1df; color: var(--red); font-size: 1.55rem; }
.service-card--featured .service-card__icon { background: rgba(255,255,255,.18); color: #fff; }
.service-card h3 { margin-bottom: .6rem; font-family: Georgia, 'Times New Roman', serif; font-size: 2rem; font-weight: 400; }
.service-card p { min-height: 76px; color: var(--ink-soft); font-size: .9rem; }
.service-card--featured p { color: rgba(255,255,255,.8); }
.service-card a { color: var(--red); font-size: .78rem; font-weight: 800; }
.service-card--featured a { color: var(--orange-light); }

.feature-grid, .story-grid, .contact-grid { display: grid; gap: 3rem; align-items: center; }
.feature-image { position: relative; padding: .6rem; background: #fff; box-shadow: var(--shadow); transform: rotate(-1deg); }
.feature-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.feature-image__caption { position: absolute; right: 1rem; bottom: -1rem; padding: .55rem .8rem; background: var(--orange); color: var(--navy); font-size: .67rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.feature-copy h2, .story-copy h2 { margin-bottom: 1.5rem; }
.feature-copy .lead, .story-copy .lead { color: var(--ink); font-family: Georgia, 'Times New Roman', serif; font-size: 1.35rem; line-height: 1.35; }
.feature-copy > p:not(.eyebrow):not(.lead), .story-copy > p:not(.eyebrow):not(.lead) { color: var(--ink-soft); }
.check-list { display: grid; gap: .6rem; padding: 0; margin: 1.7rem 0; list-style: none; color: var(--ink-soft); font-size: .88rem; }
.check-list li { display: flex; gap: .7rem; }
.check-list li::before { flex: 0 0 auto; content: '✓'; color: var(--red); font-weight: 800; }
.text-link { display: inline-flex; align-items: center; gap: .6rem; border-bottom: 1px solid var(--red); padding-bottom: .18rem; color: var(--red); font-size: .8rem; font-weight: 800; }
.text-link:hover { color: var(--red-dark); }

.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 1; margin: 0; background: #40515d; }
.gallery-item--large { grid-row: span 2; aspect-ratio: auto; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; opacity: .86; transition: transform .35s, opacity .35s; }
.gallery-item:hover img { opacity: 1; transform: scale(1.05); }
.gallery-item figcaption { position: absolute; right: .55rem; bottom: .45rem; left: .55rem; color: #fff; font-size: .7rem; font-weight: 800; text-shadow: 0 1px 6px rgba(0,0,0,.4); }
.story-grid { align-items: center; }
.story-image { position: relative; width: min(100%, 310px); margin: 0 auto; padding: .75rem .75rem 2.5rem; background: #fff; box-shadow: var(--shadow); transform: rotate(2deg); }
.story-image img { width: 100%; max-height: 400px; object-fit: cover; }
.story-image__label { position: absolute; right: 1.25rem; bottom: .65rem; display: flex; gap: .45rem; align-items: baseline; color: var(--navy); font-family: Georgia, 'Times New Roman', serif; font-size: .95rem; }
.story-image__label span { color: var(--red); font-family: Arial, Helvetica, sans-serif; font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.contact-section { padding: 5rem 0; background: var(--orange); }
.contact-copy h2 em { color: var(--navy); }
.contact-copy > p:not(.eyebrow) { max-width: 480px; color: rgba(24,39,53,.76); }
.contact-details { display: grid; gap: 1rem; margin-top: 2rem; }
.contact-details a, .contact-details address { display: flex; flex-direction: column; gap: .1rem; font-style: normal; }
.contact-details span { color: rgba(24,39,53,.62); font-size: .67rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-details strong { font-size: 1rem; }
.contact-form { display: grid; gap: .5rem; padding: 1.4rem; border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow); }
.contact-form label { margin-top: .25rem; color: var(--ink-soft); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 9px; padding: .75rem .85rem; background: #fff; color: var(--ink); outline: 0; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(197,55,45,.12); }
.contact-form .button { margin-top: .7rem; border: 0; }
.form-note { margin: .2rem 0 0; color: var(--ink-soft); font-size: .7rem; }

.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.7); }
.footer-top { display: grid; gap: 1.2rem; padding: 3rem 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.brand--footer img { filter: none; }
.brand--footer span { color: rgba(255,255,255,.45); }
.footer-top p { max-width: 320px; margin: 0; font-size: .85rem; }
.footer-phone { color: var(--orange-light); font-size: 1.1rem; font-weight: 800; }
.footer-bottom { display: flex; flex-direction: column; gap: 1rem; padding: 1.2rem 0; font-size: .68rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: .8rem; }
.footer-links a:hover, .footer-bottom > a:hover { color: #fff; }

.quick-links { display: grid; gap: .8rem; }
.quick-links a { position: relative; display: grid; grid-template-columns: 2rem 1fr auto; grid-template-rows: auto auto; column-gap: .8rem; align-items: center; padding: 1rem; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); transition: transform .2s, border-color .2s, box-shadow .2s; }
.quick-links a:hover, .quick-links a:focus-visible { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-2px); }
.quick-links span { grid-row: span 2; color: var(--red); font-size: .68rem; font-weight: 800; }
.quick-links strong { font-family: Georgia, 'Times New Roman', serif; font-size: 1.25rem; font-weight: 400; }
.quick-links small { color: var(--ink-soft); font-size: .75rem; }
.quick-links b { grid-column: 3; grid-row: 1 / span 2; color: var(--red); font-size: 1.2rem; }

/* Shared layout for the legacy Zimmerei pages, rebuilt as responsive static pages. */
.legacy-page { background: var(--cream); }
.legacy-page .site-header { background: rgba(255,253,248,.98); }
.legacy-page .brand img { width: min(100%, 260px); }
.page-hero { position: relative; overflow: hidden; padding: 4rem 0 4.5rem; background: linear-gradient(130deg, #fffaf0 0%, #fffaf0 55%, #ffe8cf 100%); }
.page-hero::after { position: absolute; right: -6rem; bottom: -8rem; width: 24rem; height: 24rem; border: 1px solid rgba(197,55,45,.13); border-radius: 50%; content: ''; }
.page-hero__grid { position: relative; z-index: 1; display: grid; gap: 2.5rem; align-items: center; }
.page-hero__copy { max-width: 700px; }
.page-hero h1 { font-size: clamp(3rem, 9vw, 6rem); }
.page-hero__copy > p:not(.eyebrow) { max-width: 600px; color: var(--ink-soft); font-size: 1.05rem; }
.page-hero__visual { position: relative; width: min(100%, 340px); margin: 0 auto; padding: .6rem; background: #fff; box-shadow: var(--shadow); transform: rotate(1deg); }
.page-hero__visual img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.page-hero__visual figcaption { padding: .65rem .25rem .1rem; color: var(--red); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.legacy-section { padding: 4rem 0; }
.legacy-section--light { background: var(--paper); }
.legacy-section--dark { background: var(--navy); color: #fff; }
.legacy-layout { display: grid; gap: 2.5rem; }
.legacy-layout--wide { align-items: start; }
.legacy-copy { max-width: 760px; }
.legacy-copy h2 { font-size: clamp(2.5rem, 6vw, 4.8rem); }
.legacy-copy > p:not(.eyebrow), .legacy-copy li { color: var(--ink-soft); }
.legacy-section--dark .legacy-copy > p:not(.eyebrow), .legacy-section--dark .legacy-copy li { color: rgba(255,255,255,.72); }
.lead-large { color: var(--ink) !important; font-family: Georgia, 'Times New Roman', serif; font-size: 1.35rem; line-height: 1.35; }
.legacy-section--dark .lead-large { color: #fff !important; }
.legacy-panel { padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow); }
.legacy-panel h3 { margin-bottom: .7rem; font-family: Georgia, 'Times New Roman', serif; font-size: 1.8rem; font-weight: 400; }
.legacy-panel p { margin-bottom: 0; color: var(--ink-soft); font-size: .9rem; }
.facts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.fact { padding: 1.2rem; border-radius: 12px; background: #fff1df; }
.fact strong { display: block; color: var(--red); font-family: Georgia, 'Times New Roman', serif; font-size: 2.25rem; font-weight: 400; line-height: 1; }
.fact span { color: var(--ink-soft); font-size: .72rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.feature-list { display: grid; gap: .65rem; padding: 0; margin: 1.5rem 0 0; list-style: none; }
.feature-list li { display: flex; gap: .7rem; }
.feature-list li::before { content: '✓'; color: var(--red); font-weight: 900; }
.topic-cards { display: grid; gap: .9rem; }
.topic-card { display: flex; flex-direction: column; justify-content: space-between; min-height: 185px; padding: 1.3rem; border-radius: 14px; background: var(--navy); color: #fff; }
.topic-card:nth-child(2n) { background: var(--red); }
.topic-card span { color: var(--orange-light); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.topic-card h3 { margin: 1.6rem 0 .4rem; font-family: Georgia, 'Times New Roman', serif; font-size: 1.65rem; font-weight: 400; }
.topic-card p { margin: 0; color: rgba(255,255,255,.72); font-size: .8rem; }
.image-grid--large { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.image-card { position: relative; overflow: hidden; min-height: 190px; margin: 0; border-radius: 12px; background: var(--navy); }
.image-card--wide { grid-column: span 2; }
.image-card img { width: 100%; height: 100%; min-height: 190px; object-fit: cover; transition: transform .35s; }
.image-card:hover img { transform: scale(1.04); }
.image-card figcaption { position: absolute; right: .7rem; bottom: .6rem; left: .7rem; color: #fff; font-size: .72rem; font-weight: 800; text-shadow: 0 1px 8px rgba(0,0,0,.65); }
.image-card figcaption span { display: block; color: var(--orange-light); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.product-grid { display: grid; gap: 1rem; }
.product-card { padding: 1.4rem; border-top: 3px solid var(--orange); background: var(--paper); }
.product-card h3 { margin: 0 0 .55rem; font-family: Georgia, 'Times New Roman', serif; font-size: 1.6rem; font-weight: 400; }
.product-card p { margin: 0; color: var(--ink-soft); font-size: .88rem; }
.product-highlight { display: grid; place-items: center; min-height: 280px; padding: 2rem; border-radius: var(--radius); background: radial-gradient(circle at 25% 25%, rgba(239,138,58,.38), transparent 26%), var(--navy); color: #fff; text-align: center; }
.product-highlight strong { display: block; font-family: Georgia, 'Times New Roman', serif; font-size: clamp(3rem, 12vw, 6rem); font-weight: 400; line-height: .9; }
.product-highlight span { color: var(--orange-light); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.job-list { display: grid; gap: 1rem; }
.job-card { padding: 1.4rem; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); }
.job-card__tag { color: var(--red); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.job-card h3 { margin: .55rem 0 .35rem; font-family: Georgia, 'Times New Roman', serif; font-size: 1.65rem; font-weight: 400; }
.job-card p { margin: 0; color: var(--ink-soft); font-size: .88rem; }
.contact-layout { display: grid; gap: 1.5rem; }
.contact-card { padding: 1.4rem; border-radius: 14px; background: var(--navy); color: #fff; }
.contact-card h3 { margin-bottom: .8rem; font-family: Georgia, 'Times New Roman', serif; font-size: 1.8rem; font-weight: 400; }
.contact-card a { display: block; margin-top: .6rem; color: var(--orange-light); font-weight: 800; }
.contact-card address { color: rgba(255,255,255,.72); font-style: normal; font-size: .9rem; }
.rhyme-card { padding: 2rem 1.4rem; border-left: 4px solid var(--orange); background: #fff1df; font-family: Georgia, 'Times New Roman', serif; font-size: 1.25rem; line-height: 1.5; }
.rhyme-card p { margin: 0; }

@media (min-width: 620px) {
  .quick-links { grid-template-columns: repeat(2, 1fr); }
  .page-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(260px, 340px); }
  .legacy-section { padding: 5rem 0; }
  .legacy-layout { grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr); }
  .legacy-layout--wide { grid-template-columns: 1fr; }
  .topic-cards { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr); }
}

@media (min-width: 900px) {
  .quick-links { grid-template-columns: repeat(5, 1fr); }
  .quick-links a { grid-template-columns: 1.4rem 1fr; }
  .quick-links b { grid-column: 2; grid-row: 1 / span 2; justify-self: end; }
  .page-hero { padding: 6rem 0; }
  .page-hero__grid { gap: 6rem; }
  .legacy-section { padding: 7rem 0; }
  .image-grid--large { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .image-card--wide { grid-column: span 2; }
}

@media (min-width: 620px) {
  .container { width: min(calc(100% - 3rem), var(--container)); }
  .hero { padding-top: 5.5rem; padding-bottom: 6rem; }
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(280px, 410px); align-items: center; }
  .proof-strip__grid { grid-template-columns: repeat(4, 1fr); }
  .proof-strip__grid > div { min-height: 98px; padding-inline: 1rem; }
  .proof-strip__quote { display: flex !important; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid, .story-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .feature-copy { order: -1; }
  .gallery-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .gallery-item--large { grid-row: span 2; }
  .contact-grid { grid-template-columns: minmax(0, 1fr) minmax(320px, 480px); }
  .footer-top { grid-template-columns: 1.3fr 1fr auto; align-items: center; }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 900px) {
  .header-main { min-height: 100px; }
  .menu-toggle { display: none; }
  .main-navigation { position: static; display: flex; align-items: center; justify-content: flex-end; gap: .15rem; padding: 0; background: transparent; border: 0; box-shadow: none; }
  .main-navigation a { padding: .6rem .8rem; font-size: .78rem; }
  .main-navigation .nav-cta { margin-left: .5rem; padding-inline: 1.1rem; }
  .hero__grid { gap: 4rem; }
  .hero-card { width: 380px; }
  .section { padding: 7rem 0; }
  .section-heading { grid-template-columns: minmax(0, 1.1fr) minmax(260px, .7fr); gap: 3rem; }
  .feature-grid, .story-grid { gap: 6rem; }
  .feature-image--tall { max-width: 500px; }
  .feature-image--tall img { aspect-ratio: 4 / 3; }
  .story-image { width: 350px; }
  .contact-section { padding: 7rem 0; }
  .contact-form { padding: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
