/*==========================================================
  annefrench.site — Amsterdam Journal Theme
  Palette: Cream (#FAF7F2) / Deep Teal (#0C3347) / Sienna (#B85230) / Slate (#4A6B8A)
  Fonts: Georgia (headings) + Trebuchet MS (body)
  NOTE: No opacity:0 on content — all text always visible
==========================================================*/

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

:root {
  --cream:        #FAF7F2;
  --cream-mid:    #F0EAE0;
  --cream-dark:   #E3DAD0;
  --teal:         #0C3347;
  --teal-mid:     #174D68;
  --teal-light:   #235A78;
  --sienna:       #B85230;
  --sienna-light: #D06240;
  --slate:        #4A6B8A;
  --slate-light:  #8AACBF;
  --charcoal:     #1E1E1E;
  --mid:          #505050;
  --muted:        #888;
  --border:       #D8D0C4;
  --white:        #FFFFFF;
  --font-serif:   Georgia, 'Times New Roman', serif;
  --font-sans:    'Trebuchet MS', 'Segoe UI', Arial, sans-serif;
  --ease:         0.25s ease;
  --radius:       4px;
  --shadow:       0 3px 18px rgba(12,51,71,0.10);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1,h2,h3,h4 { font-family: var(--font-serif); line-height: 1.22; }
h1 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.45rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--mid); font-size: 0.96rem; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a  { color: var(--sienna); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--sienna-light); }
strong { color: var(--charcoal); }

/* ── Container ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }

/* ── Chapter label ── */
.ch-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--sienna);
  margin-bottom: 18px;
}
.ch-label::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--sienna);
  opacity: 0.5;
}

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  transition: box-shadow var(--ease);
}
#site-header.scrolled { box-shadow: 0 2px 20px rgba(12,51,71,0.12); }

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-brand {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.site-brand span { color: var(--sienna); }

.main-nav {
  display: flex;
  gap: 24px;
  list-style: none;
}
.main-nav a {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--mid);
  transition: color var(--ease);
}
.main-nav a:hover { color: var(--sienna); }
.main-nav a.nav-active { color: var(--sienna); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
#hero {
  background: var(--teal);
  min-height: 100vh;
  padding-top: 64px;
  display: flex;
  align-items: center;
}
.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* Left — quote panel */
.hero-left { display: flex; flex-direction: column; gap: 32px; }

.hero-location {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--slate-light);
}

.hero-blockquote {
  border-left: 3px solid var(--sienna);
  padding-left: 24px;
}
.hero-blockquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 14px;
}
.hero-blockquote cite {
  font-size: 0.75rem;
  color: rgba(250,247,242,0.42);
  font-style: normal;
  letter-spacing: 0.06em;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-light);
  border: 1px solid rgba(138,172,191,0.3);
  padding: 5px 13px;
  border-radius: 2px;
}

/* Right — info card */
.hero-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 40px 36px;
}
.hero-card h1 {
  color: var(--teal);
  margin-bottom: 6px;
}
.hero-card h1 em {
  font-style: italic;
  color: var(--sienna);
  font-size: 0.8em;
  display: block;
  font-weight: 400;
  margin-top: 4px;
}
.hero-card > p {
  font-size: 0.9rem;
  color: var(--mid);
  margin-top: 14px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
  padding: 18px 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.hero-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-nav-links a {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  background: var(--cream-mid);
  padding: 7px 16px;
  border-radius: 2px;
  border: 1px solid var(--cream-dark);
  transition: background var(--ease), color var(--ease);
}
.hero-nav-links a:hover { background: var(--sienna); color: var(--white); border-color: var(--sienna); }

/* ══════════════════════════════
   STATS BAND
══════════════════════════════ */
#stats-band { background: var(--sienna); }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px;
  margin: 0 auto;
}
.stat-band-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-band-item:last-child { border-right: none; }
.stat-band-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 5px;
}
.stat-band-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
}

/* ══════════════════════════════
   CHAPTER SECTIONS
══════════════════════════════ */
.chapter-section { padding: 84px 0; }
.chapter-section.bg-cream { background: var(--cream); }
.chapter-section.bg-white { background: var(--white); }
.chapter-section.bg-teal  { background: var(--teal); }
.chapter-section.bg-cream-mid { background: var(--cream-mid); }

.chapter-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

.chapter-header { margin-bottom: 44px; }
.chapter-header h2 { color: var(--teal); }
.chapter-header h2.on-dark { color: var(--cream); }
.chapter-header p.on-dark { color: rgba(250,247,242,0.6); }

.chapter-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}
.chapter-grid.reversed { grid-template-columns: 2fr 3fr; }

/* ── Timeline ── */
.timeline { display: flex; flex-direction: column; gap: 0; }
.tl-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0;
  position: relative;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: 73px;
  top: 24px;
  bottom: -4px;
  width: 1px;
  background: var(--cream-dark);
}
.tl-item:last-child::before { display: none; }

.tl-date {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sienna);
  padding: 18px 12px 18px 0;
  text-align: right;
  line-height: 1.3;
  white-space: nowrap;
}
.tl-body {
  border-left: 2px solid var(--cream-dark);
  padding: 16px 0 16px 20px;
  position: relative;
}
.tl-body::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sienna);
}
.tl-body p { font-size: 0.87rem; margin: 0; line-height: 1.6; }
.tl-body strong { color: var(--charcoal); display: block; font-size: 0.78rem; margin-bottom: 2px; }

/* ── Side panel on dark bg ── */
.side-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.side-panel-title {
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--slate-light);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.side-list { list-style: none; }
.side-list li {
  font-size: 0.85rem;
  color: rgba(250,247,242,0.55);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  line-height: 1.45;
}
.side-list li:last-child { border-bottom: none; }
.side-list li strong {
  display: block;
  color: var(--sienna-light);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

/* ── Diary quote block ── */
.diary-quote {
  background: var(--cream-mid);
  border-left: 3px solid var(--sienna);
  padding: 24px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}
.diary-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--teal);
  line-height: 1.65;
  margin: 0;
}
.diary-quote.on-dark {
  background: rgba(255,255,255,0.05);
  border-left-color: var(--sienna-light);
}
.diary-quote.on-dark p { color: rgba(250,247,242,0.72); }

/* ── Persons grid ── */
.persons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.person-item {
  background: var(--cream-mid);
  border-radius: var(--radius);
  padding: 14px 16px;
  border-left: 3px solid var(--cream-dark);
}
.person-item.highlight { border-left-color: var(--sienna); }
.person-item strong { display: block; font-size: 0.82rem; color: var(--teal); margin-bottom: 4px; }
.person-item span { font-size: 0.79rem; color: var(--muted); line-height: 1.45; }

/* ── Diary numbers ── */
.diary-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}
.dn-item {
  padding: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border-top: 2px solid var(--sienna);
}
.dn-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--sienna-light);
  line-height: 1;
  margin-bottom: 6px;
}
.dn-label { font-size: 0.78rem; color: rgba(250,247,242,0.50); line-height: 1.4; }

/* ══════════════════════════════
   VISIT SECTION
══════════════════════════════ */
.visit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.visit-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border-bottom: 3px solid var(--cream-dark);
  transition: border-bottom-color var(--ease), transform var(--ease);
}
.visit-card:hover { border-bottom-color: var(--sienna); transform: translateY(-3px); }
.vc-head {
  background: var(--teal);
  padding: 20px 22px;
}
.vc-head h3 { color: var(--cream); font-size: 0.95rem; margin-bottom: 3px; }
.vc-sub { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--slate-light); }
.vc-body { padding: 20px 22px; }
.vc-body p { font-size: 0.86rem; color: var(--mid); margin: 0; line-height: 1.65; }

/* ══════════════════════════════
   ADMISSION TABLE
══════════════════════════════ */
#admission { background: var(--teal); padding: 84px 0; }

.admission-header { margin-bottom: 36px; }
.admission-header h2 { color: var(--cream); }
.admission-header p { color: rgba(250,247,242,0.55); }

.table-wrap { overflow-x: auto; border-radius: var(--radius); }
.admission-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.04);
}
.admission-table thead th {
  background: rgba(255,255,255,0.07);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(250,247,242,0.35);
  padding: 13px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(184,82,48,0.3);
}
.admission-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background var(--ease);
}
.admission-table tbody tr:hover { background: rgba(184,82,48,0.06); }
.admission-table tbody td {
  padding: 18px 20px;
  font-size: 0.9rem;
  color: rgba(250,247,242,0.62);
  vertical-align: top;
}
.td-cat { color: var(--cream) !important; font-weight: 600; }
.td-price {
  font-family: var(--font-serif) !important;
  font-size: 1.45rem !important;
  font-weight: 700 !important;
  color: var(--sienna-light) !important;
  white-space: nowrap;
}
.td-note { font-size: 0.79rem !important; color: rgba(250,247,242,0.40) !important; line-height: 1.5; }

.admission-note {
  margin-top: 16px;
  font-size: 0.74rem;
  color: rgba(250,247,242,0.28);
  font-style: italic;
}

.booking-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.booking-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,82,48,0.2);
  border-radius: var(--radius);
  padding: 20px;
}
.booking-card h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sienna-light);
  font-weight: 700;
  margin-bottom: 10px;
}
.booking-card p { font-size: 0.83rem; color: rgba(250,247,242,0.50); margin: 0; line-height: 1.6; }

/* ══════════════════════════════
   TIPS SECTION
══════════════════════════════ */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.tip-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-left: 3px solid var(--sienna);
}
.tip-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sienna);
  line-height: 1;
  flex-shrink: 0;
  min-width: 28px;
  padding-top: 3px;
}
.tip-content h4 { font-size: 0.92rem; color: var(--teal); margin-bottom: 6px; }
.tip-content p  { font-size: 0.83rem; color: var(--mid); margin: 0; line-height: 1.6; }

/* ══════════════════════════════
   INFO BLOCKS (Resources / Legal / AGB)
══════════════════════════════ */
.info-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 32px;
}
.info-col { padding-top: 18px; border-top: 2px solid var(--sienna); }
.info-col h4 { font-size: 1rem; color: var(--teal); margin-bottom: 14px; }
.info-col p, .info-col li { font-size: 0.86rem; color: var(--mid); line-height: 1.65; }
.info-col ul { list-style: none; padding: 0; }
.info-col ul li {
  padding: 5px 0 5px 14px;
  border-bottom: 1px solid var(--cream-dark);
  position: relative;
}
.info-col ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sienna);
}
.info-col ul li:last-child { border-bottom: none; }

.legal-box {
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--slate);
  padding: 20px 24px;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
}
.legal-box h4 { font-size: 0.9rem; color: var(--teal); margin-bottom: 8px; }
.legal-box p  { font-size: 0.83rem; color: var(--mid); margin: 0; line-height: 1.65; }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
#contact { background: var(--cream-mid); padding: 84px 0; }

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

.contact-info-col h2 { color: var(--teal); margin-bottom: 12px; }
.contact-info-col > p { font-size: 0.92rem; color: var(--mid); }

.contact-details {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cd-row { display: flex; gap: 12px; align-items: flex-start; }
.cd-label {
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sienna);
  min-width: 52px;
  padding-top: 2px;
  flex-shrink: 0;
}
.cd-value { font-size: 0.87rem; color: var(--mid); line-height: 1.5; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { color: var(--teal); font-size: 1.1rem; margin-bottom: 22px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group:last-of-type { margin-bottom: 0; }
.form-group label {
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
}
.form-group input {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 11px 14px;
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  width: 100%;
  transition: border-color var(--ease);
}
.form-group input::placeholder { color: var(--muted); opacity: 0.6; }
.form-group input:focus { border-color: var(--teal); background: var(--white); }

.field-error { font-size: 0.72rem; color: #b00; min-height: 14px; }

.btn-submit {
  width: 100%;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 14px 24px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  margin-top: 20px;
  transition: background var(--ease);
}
.btn-submit:hover { background: var(--teal-mid); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-notice {
  font-size: 0.68rem;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}
#form-message { font-size: 0.85rem; text-align: center; margin-top: 14px; min-height: 20px; }
#form-message.success { color: #1a7a1a; }
#form-message.error   { color: #b00; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
#site-footer { background: var(--teal); padding: 52px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(4, 1fr);
  gap: 28px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-about h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 12px;
}
.footer-about h3 span { color: var(--sienna-light); }
.footer-about p { font-size: 0.79rem; color: rgba(250,247,242,0.35); line-height: 1.7; margin: 0; }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--sienna-light);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.79rem;
  color: rgba(250,247,242,0.38);
  transition: color var(--ease);
}
.footer-col ul li a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.footer-copy { font-size: 0.74rem; color: rgba(250,247,242,0.22); }
.footer-legal-links { display: flex; gap: 18px; }
.footer-legal-links a { font-size: 0.74rem; color: rgba(250,247,242,0.22); transition: color var(--ease); }
.footer-legal-links a:hover { color: var(--slate-light); }

/* ── Disclaimer bar ── */
#disclaimer-bar {
  background: #07202E;
  padding: 13px 24px;
  text-align: center;
  border-top: 1px solid rgba(184,82,48,0.1);
}
#disclaimer-bar p {
  font-size: 0.69rem;
  color: rgba(250,247,242,0.22);
  max-width: 920px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-left { order: 2; }
  .hero-card { order: 1; }
  .chapter-grid { grid-template-columns: 1fr; gap: 32px; }
  .chapter-grid.reversed { grid-template-columns: 1fr; }
  .visit-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .booking-cards { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-grid { padding: 40px 20px; }
  .main-nav { display: none; }
  .visit-cards { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .info-cols { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .persons-grid { grid-template-columns: 1fr; }
  .diary-numbers { grid-template-columns: 1fr; }
  .tl-date { font-size: 0.72rem; min-width: 60px; }
  .stat-band-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-band-item:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 18px; }
  .hero-card { padding: 28px 22px; }
  .hero-stats { grid-template-columns: repeat(3,1fr); gap: 8px; }
}
