/* ============================================================
   Haus Clasen — Editorial Countryside
   Cream paper, brick, sage, ink. Cormorant + Karla + DM Mono.
   ============================================================ */

:root {
  --paper:        #f3ebdc;
  --paper-warm:   #ece1cb;
  --paper-deep:   #e2d4b8;
  --ink:          #1c1611;
  --ink-soft:     #4a3f33;
  --brick:        #8a3220;
  --brick-deep:   #5c1f12;
  --rose:         #c9695d;
  --sage:         #6d8163;
  --sage-deep:    #2f3d2c;
  --moss:         #4a5a3c;
  --gold:         #b08a3e;
  --rule:         rgba(28, 22, 17, 0.18);
  --rule-soft:    rgba(28, 22, 17, 0.08);
  --shadow-soft:  0 18px 40px -22px rgba(28, 22, 17, 0.35);
  --shadow-deep:  0 30px 60px -28px rgba(28, 22, 17, 0.55);

  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans:  "Karla", "Helvetica Neue", Arial, sans-serif;
  --mono:  "DM Mono", ui-monospace, "SFMono-Regular", monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Paper texture overlay — subtle warm grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(176, 138, 62, 0.06) 0, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(138, 50, 32, 0.05) 0, transparent 45%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.12  0 0 0 0 0.08  0 0 0 0 0.05  0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img { display: block; max-width: 100%; height: auto; }

/* ---------------------------------------------------------- */
/* Typography                                                 */
/* ---------------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.01em;
}

.display {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.lead {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.5;
  font-weight: 400;
  color: var(--ink-soft);
}

.dropcap::first-letter {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  float: left;
  font-size: 4.2rem;
  line-height: 0.85;
  margin: 0.35rem 0.5rem 0 -0.05rem;
  color: var(--brick);
}

/* ---------------------------------------------------------- */
/* Layout shell                                               */
/* ---------------------------------------------------------- */

.shell {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

section { position: relative; z-index: 2; }

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: var(--brick);
  margin: 4rem 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-top: 1px solid var(--rule);
  max-width: 220px;
}
.divider .mark { transform: translateY(-2px); }

/* ---------------------------------------------------------- */
/* Top bar / navigation                                       */
/* ---------------------------------------------------------- */

.topbar {
  position: relative;
  z-index: 20;
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem) 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}
.brand-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.55rem;
  line-height: 1;
  color: var(--brick);
  letter-spacing: -0.01em;
}
.brand-sub {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.nav {
  display: flex;
  gap: 1.85rem;
  align-items: center;
}
.nav a {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.25s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--brick);
  transition: right 0.35s cubic-bezier(.2,.7,.2,1);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { right: 0; }
.nav a.active {
  color: var(--brick);
}
.nav a.active::after { right: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
}

/* ---------------------------------------------------------- */
/* Hero                                                       */
/* ---------------------------------------------------------- */

.hero {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 7vw, 5rem);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: end;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6.4vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--ink);
}
.hero-title .it {
  font-style: italic;
  color: var(--brick);
  display: inline-block;
}

.hero-meta {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}
.hero-meta dt {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero-meta dd {
  margin: 0.25rem 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
}

.hero-image-wrap {
  position: relative;
}
.hero-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow-deep);
  filter: saturate(0.95) contrast(1.02);
}
.hero-image-tag {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 0.7rem 1rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  box-shadow: var(--shadow-soft);
}

.page-mark {
  position: absolute;
  top: 2rem;
  right: clamp(1.25rem, 4vw, 3rem);
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink-soft);
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
}

/* ---------------------------------------------------------- */
/* Sections                                                   */
/* ---------------------------------------------------------- */

.section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule);
}
.section-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.75rem;
  color: var(--brick);
  line-height: 1;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.section-kicker {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: right;
}

/* ---------------------------------------------------------- */
/* Two-column editorial block                                 */
/* ---------------------------------------------------------- */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.col-image {
  position: relative;
}
.col-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2px;
}
.col-image.tall img { aspect-ratio: 3 / 4.5; }
.col-image.wide img { aspect-ratio: 4 / 3; }

.col-body p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 1.2rem;
  color: var(--ink-soft);
}
.col-body p strong { color: var(--ink); font-weight: 600; }
.col-body p a {
  color: var(--brick);
  text-decoration: none;
  background-image: linear-gradient(var(--brick), var(--brick));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  transition: background-size 0.3s ease, color 0.2s ease;
}
.col-body p a:hover {
  color: var(--brick-deep);
  background-size: 100% 2px;
}

/* ---------------------------------------------------------- */
/* Cards / Wohnungen                                          */
/* ---------------------------------------------------------- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 1.75rem 1.75rem 1.5rem;
  position: relative;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1),
              box-shadow 0.4s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.card-num {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--brick);
}
.card-plan {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 0.75rem;
  margin-bottom: 1.25rem;
}
.card-plan img {
  width: 100%;
  height: auto;
  filter: contrast(1.05);
  mix-blend-mode: multiply;
}
.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}
.card .card-sub {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.card-specs {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.card-specs li::before {
  content: "·";
  color: var(--brick);
  margin-right: 0.5rem;
}

/* ---------------------------------------------------------- */
/* Buttons                                                    */
/* ---------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1.6rem;
  background: var(--brick);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.btn:hover { background: var(--brick-deep); transform: translateY(-1px); }
.btn .arrow { transition: transform 0.3s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

/* ---------------------------------------------------------- */
/* Gallery (Impressionen)                                     */
/* ---------------------------------------------------------- */

.gallery {
  columns: 3 280px;
  column-gap: 1.25rem;
}
.gallery figure {
  margin: 0 0 1.25rem;
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}
.gallery figure img {
  width: 100%;
  height: auto;
  transition: transform 0.8s cubic-bezier(.2,.7,.2,1),
              filter 0.4s ease;
  filter: saturate(0.95);
}
.gallery figure:hover img {
  transform: scale(1.04);
  filter: saturate(1.05);
}
.gallery figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.1rem 0.85rem;
  background: linear-gradient(to top, rgba(28,22,17,0.7), transparent);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery figure:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 16, 12, 0.92);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  cursor: pointer;
}

/* ---------------------------------------------------------- */
/* Umgebung — feature grid                                    */
/* ---------------------------------------------------------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}
.feature {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  min-height: 280px;
  border-radius: 2px;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,16,12,0.85) 0%, rgba(20,16,12,0.15) 55%, transparent 100%);
  z-index: 1;
}
.feature:hover img { transform: scale(1.05); }
.feature-body {
  position: relative;
  z-index: 2;
  max-width: 28rem;
}
.feature h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--paper);
  margin-bottom: 0.4rem;
}
.feature p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(243, 235, 220, 0.85);
  margin: 0;
}
.feature .feature-num {
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  z-index: 2;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  color: var(--paper);
  opacity: 0.75;
}

.feature.span-7 { grid-column: span 7; }
.feature.span-5 { grid-column: span 5; }
.feature.span-6 { grid-column: span 6; }
.feature.span-4 { grid-column: span 4; }
.feature.span-8 { grid-column: span 8; }
.feature.tall { min-height: 460px; }
.feature.short { min-height: 220px; }

/* ---------------------------------------------------------- */
/* Pricing table                                              */
/* ---------------------------------------------------------- */

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.price-card {
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  padding: 2rem 1.75rem;
  position: relative;
  border-radius: 2px;
}
.price-card h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.price-card .price-from {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.price-card .price {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-style: italic;
  color: var(--brick);
  line-height: 1;
  margin: 0.5rem 0 0.25rem;
}
.price-card .price-unit {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  border-top: 1px solid var(--rule);
  padding-top: 1rem;
}
.price-card ul li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 0.35rem 0;
  border-bottom: 1px dashed var(--rule-soft);
}
.price-card ul li:last-child { border-bottom: none; }

.season-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin-top: 1rem;
}
.season-table th,
.season-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--rule);
}
.season-table th {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.season-table td.amt {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brick);
  font-size: 1.1rem;
}

/* ---------------------------------------------------------- */
/* Form                                                       */
/* ---------------------------------------------------------- */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field.full { grid-column: span 2; }
.field label {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  padding: 0.85rem 1rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brick);
}
.field textarea { min-height: 140px; resize: vertical; }

/* ---------------------------------------------------------- */
/* Anfahrt                                                    */
/* ---------------------------------------------------------- */

.map-wrap {
  position: relative;
  border: 1px solid var(--rule);
  border-radius: 2px;
  overflow: hidden;
  background: var(--paper-warm);
  aspect-ratio: 16 / 9;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.25) sepia(0.1) contrast(0.95);
}

.directions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.directions h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 0.75rem;
  color: var(--brick);
}
.directions p {
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0;
}

/* ---------------------------------------------------------- */
/* Footer                                                     */
/* ---------------------------------------------------------- */

.footer {
  margin-top: 6rem;
  padding: 4rem 0 2.5rem;
  border-top: 1px solid var(--rule);
  background: var(--paper-warm);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer h5 {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 1rem;
  font-weight: 500;
}
.footer-brand .display {
  font-size: 2rem;
  color: var(--brick);
  display: block;
  margin-bottom: 0.5rem;
}
.footer-brand p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 22rem;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { padding: 0.25rem 0; font-size: 0.94rem; }
.footer ul li a:hover { color: var(--brick); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.footer-bottom a {
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-bottom a:hover {
  color: var(--brick);
  border-bottom-color: var(--brick);
}

/* ---------------------------------------------------------- */
/* Reveal animation                                           */
/* ---------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  from { transform: translateY(14px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.drift-1 { animation: drift 1s cubic-bezier(.2,.7,.2,1) both; animation-delay: 0.1s; }
.drift-2 { animation: drift 1s cubic-bezier(.2,.7,.2,1) both; animation-delay: 0.25s; }
.drift-3 { animation: drift 1s cubic-bezier(.2,.7,.2,1) both; animation-delay: 0.4s; }
.drift-4 { animation: drift 1s cubic-bezier(.2,.7,.2,1) both; animation-delay: 0.55s; }
.drift-5 { animation: drift 1s cubic-bezier(.2,.7,.2,1) both; animation-delay: 0.7s; }

/* ---------------------------------------------------------- */
/* Responsive                                                 */
/* ---------------------------------------------------------- */

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-image { aspect-ratio: 4 / 4; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-grid > .feature { grid-column: span 12 !important; min-height: 320px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-head { grid-template-columns: auto 1fr; }
  .section-kicker { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 640px) {
  .topbar { flex-wrap: wrap; }
  .nav { display: none; flex-direction: column; gap: 1rem; width: 100%; padding-top: 1.5rem; align-items: flex-start; }
  .nav.open { display: flex; }
  .nav-toggle { display: inline-block; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
  .gallery { columns: 1; }
  .hero-meta { gap: 1.5rem; }
}
