/* ===== anapa.top — Styles ===== */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-ocean: #0891b2;
  --color-ocean-dark: #0e7490;
  --color-ocean-deep: #155e75;
  --color-ocean-light: #e0f7fa;
  --color-sun: #f59e0b;
  --color-sun-dark: #d97706;
  --color-sun-light: #fef9c3;
  --color-sand: #fffbeb;
  --color-sand-dark: #fde68a;
  --color-text: #1e293b;
  --color-text-light: #64748b;
  --color-text-muted: #94a3b8;
  --color-bg: #f8fafc;
  --color-white: #fff;
  --color-border: #e2e8f0;
  --color-card-bg: #fff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.05), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.07);
  --shadow-lg: 0 12px 32px rgba(0,0,0,.1);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --max-width: 1200px;
  --header-height: 68px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-ocean);
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: var(--color-ocean-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-ocean);
  outline-offset: 2px;
}

ul, ol { list-style: none; }

h1, h2, h3, h4 {
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.25rem; }

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.section-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-ocean);
  background: var(--color-ocean-light);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-ocean);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo:hover { color: var(--color-ocean-dark); }

.logo svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

/* Desktop nav */
.main-nav ul {
  display: flex;
  gap: 2px;
}

.main-nav a {
  display: block;
  padding: 8px 14px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: 8px;
  transition: background .2s, color .2s;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--color-ocean-light);
  color: var(--color-ocean-dark);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-text);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* --- Hero (Homepage) — фоновое изображение, градиентный оверлей, волнистый край --- */
.hero {
  background: var(--color-ocean-deep) center / cover no-repeat;
  color: var(--color-white);
  padding: 110px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.18) 45%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 48px;
  background: var(--color-bg);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  font-size: 2.8rem;
  color: var(--color-white);
  margin-bottom: 16px;
  position: relative;
}

.hero-subtitle {
  font-size: 1.2rem;
  opacity: .9;
  max-width: 640px;
  margin: 0 auto 36px;
  position: relative;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-sun);
  color: var(--color-text);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  transition: background .2s, transform .15s;
}

.hero-cta:hover {
  background: var(--color-sun-dark);
  color: var(--color-text);
  transform: translateY(-1px);
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  color: var(--color-white);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,.3);
  transition: background .2s;
}

.hero-cta-secondary:hover {
  background: rgba(255,255,255,.25);
  color: var(--color-white);
}

/* Inner-page hero (фоновое изображение, градиентный оверлей, волнистый край) */
.hero-inner {
  background: var(--color-ocean-deep) center / cover no-repeat;
  color: var(--color-white);
  padding: 140px 0 110px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,.15) 45%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-inner::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 32px;
  background: var(--color-bg);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 2;
}

.hero-inner .container {
  position: relative;
  z-index: 3;
}

.hero-inner h1 {
  font-size: 2.1rem;
  color: var(--color-white);
  margin-bottom: 8px;
}

.hero-inner p {
  opacity: .85;
  max-width: 560px;
  margin: 0 auto;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 14px 0;
  font-size: .85rem;
  color: var(--color-text-muted);
}

.breadcrumbs a {
  color: var(--color-text-light);
}

.breadcrumbs a:hover {
  color: var(--color-ocean);
}

.breadcrumbs span {
  margin: 0 6px;
  color: var(--color-text-muted);
}

/* --- Section --- */
.section {
  padding: 72px 0;
}

.section-warm {
  background: var(--color-sand);
}

.section-light {
  background: var(--color-ocean-light);
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  margin-bottom: 10px;
}

.section-title p {
  color: var(--color-text-light);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* --- Cards Grid --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.card {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s, transform .2s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-img svg {
  width: 48px;
  height: 48px;
  color: rgba(255,255,255,.7);
}

/* Card cover gradients */
.card-img--beach { background: linear-gradient(135deg, #cffafe 0%, #67e8f9 40%, #22d3ee 100%); }
.card-img--sights { background: linear-gradient(135deg, #e0e7ff 0%, #a5b4fc 50%, #818cf8 100%); }
.card-img--districts { background: linear-gradient(135deg, #ccfbf1 0%, #5eead4 50%, #2dd4bf 100%); }
.card-img--kids { background: linear-gradient(135deg, #fce7f3 0%, #f9a8d4 50%, #f472b6 100%); }
.card-img--food { background: linear-gradient(135deg, #ffedd5 0%, #fdba74 50%, #fb923c 100%); }
.card-img--transport { background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 50%, #60a5fa 100%); }
.card-img--info { background: linear-gradient(135deg, #f3e8ff 0%, #d8b4fe 50%, #c084fc 100%); }
.card-img--about { background: linear-gradient(135deg, #e0f7fa 0%, #4dd0e1 50%, #00bcd4 100%); }

.card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-body h3 {
  margin-bottom: 8px;
}

.card-body p {
  color: var(--color-text-light);
  font-size: .95rem;
  flex: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: .9rem;
  margin-top: 14px;
  color: var(--color-ocean);
}

.card-link:hover {
  color: var(--color-ocean-dark);
}

/* --- Scenario Cards (Homepage — «Какая Анапа подходит») --- */
.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.scenario-card {
  padding: 32px 24px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--color-ocean);
  transition: box-shadow .2s, transform .2s;
}

.scenario-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.scenario-card:nth-child(2) { border-top-color: var(--color-sun); }
.scenario-card:nth-child(3) { border-top-color: #10b981; }
.scenario-card:nth-child(4) { border-top-color: #8b5cf6; }

.scenario-icon {
  width: 52px;
  height: 52px;
  background: var(--color-ocean-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--color-ocean);
}

.scenario-card:nth-child(2) .scenario-icon {
  background: var(--color-sun-light);
  color: var(--color-sun-dark);
}

.scenario-card:nth-child(3) .scenario-icon {
  background: #d1fae5;
  color: #059669;
}

.scenario-card:nth-child(4) .scenario-icon {
  background: #ede9fe;
  color: #7c3aed;
}

.scenario-card h3 {
  margin-bottom: 8px;
}

.scenario-card p {
  font-size: .9rem;
  color: var(--color-text-light);
}

/* --- Beach Strip (Homepage — превью пляжей) --- */
.beach-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.beach-preview {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}

.beach-preview:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.beach-preview-img {
  height: 180px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.beach-preview-img svg {
  width: 48px;
  height: 48px;
  color: rgba(255,255,255,.7);
}

.beach-preview-img--sand {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 30%, #67e8f9 60%, #06b6d4 100%);
}

.beach-preview-img--pebble {
  background: linear-gradient(135deg, #d1d5db 0%, #9ca3af 30%, #67e8f9 60%, #0891b2 100%);
}

.beach-preview-img--wild {
  background: linear-gradient(135deg, #a7f3d0 0%, #34d399 30%, #06b6d4 60%, #0e7490 100%);
}

.beach-preview-body {
  padding: 20px;
}

.beach-preview-body h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.beach-preview-body p {
  font-size: .9rem;
  color: var(--color-text-light);
}

/* --- District Cards --- */
.districts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.district-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-ocean);
  transition: box-shadow .2s, transform .2s;
}

.district-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.district-card:nth-child(2) { border-left-color: var(--color-sun); }
.district-card:nth-child(3) { border-left-color: #10b981; }
.district-card:nth-child(4) { border-left-color: #8b5cf6; }

.district-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--color-ocean-dark);
  background: var(--color-ocean-light);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.district-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.district-card p {
  font-size: .88rem;
  color: var(--color-text-light);
}

/* --- Journey Steps (Evergreen — «Первый день в Анапе») --- */
.journey-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}

.journey-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  position: relative;
}

.journey-step:not(:last-child) {
  border-bottom: 1px dashed var(--color-border);
}

.journey-marker {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-ocean) 0%, #06b6d4 100%);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
}

.journey-step:nth-child(even) .journey-marker {
  background: linear-gradient(135deg, var(--color-sun) 0%, #fbbf24 100%);
  color: var(--color-text);
}

.journey-time {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  color: var(--color-ocean);
  margin-bottom: 4px;
}

.journey-content h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.journey-content p {
  font-size: .9rem;
  color: var(--color-text-light);
}

/* --- Feature Block (Homepage — семейный отдых) --- */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.feature-block-text h2 {
  margin-bottom: 16px;
}

.feature-block-text p {
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.feature-block-text ul {
  list-style: none;
  padding: 0;
}

.feature-block-text li {
  padding: 6px 0;
  padding-left: 28px;
  position: relative;
  color: var(--color-text-light);
  font-size: .95rem;
}

.feature-block-text li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--color-ocean);
  font-weight: 700;
}

.feature-block-visual {
  background: linear-gradient(135deg, var(--color-ocean-light) 0%, var(--color-sun-light) 100%);
  border-radius: var(--radius-xl);
  padding: 48px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  text-align: center;
  color: var(--color-ocean-deep);
}

.feature-block-visual svg {
  width: 120px;
  height: 120px;
  opacity: .4;
}

/* --- Quick Links Grid (компактные ссылки на разделы) --- */
.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  color: var(--color-text);
  font-weight: 500;
  font-size: .95rem;
  transition: box-shadow .2s, color .2s, transform .2s;
}

.quick-link:hover {
  box-shadow: var(--shadow-md);
  color: var(--color-ocean);
  transform: translateY(-1px);
}

.quick-link svg {
  width: 20px;
  height: 20px;
  color: var(--color-ocean);
  flex-shrink: 0;
}

/* --- CTA Block (волнистый верхний край) --- */
.cta-block {
  background: linear-gradient(160deg, var(--color-ocean-deep) 0%, var(--color-ocean) 50%, #06b6d4 100%);
  color: var(--color-white);
  text-align: center;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 32px;
  background: var(--color-bg);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.cta-block h2 {
  color: var(--color-white);
  margin-bottom: 12px;
}

.cta-block p {
  opacity: .9;
  max-width: 520px;
  margin: 0 auto 32px;
}

.cta-btn {
  display: inline-block;
  background: var(--color-sun);
  color: var(--color-text);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: background .2s, transform .15s;
}

.cta-btn:hover {
  background: var(--color-sun-dark);
  color: var(--color-text);
  transform: translateY(-1px);
}

/* --- Content Page --- */
.page-content {
  padding: 48px 0 72px;
}

.page-content .content-body {
  max-width: 800px;
}

.content-body h2 {
  margin-top: 44px;
  margin-bottom: 14px;
}

.content-body h3 {
  margin-top: 32px;
  margin-bottom: 10px;
}

.content-body p {
  margin-bottom: 16px;
  color: var(--color-text-light);
}

.content-body ul,
.content-body ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.content-body ul { list-style: disc; }
.content-body ol { list-style: decimal; }

.content-body li {
  margin-bottom: 8px;
  color: var(--color-text-light);
}

.content-body a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --- Info Box --- */
.info-box {
  background: var(--color-ocean-light);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 28px 0;
  border-left: 4px solid var(--color-ocean);
}

.info-box h3,
.info-box h4 {
  color: var(--color-ocean-deep);
  margin-bottom: 8px;
}

.info-box p {
  font-size: .9rem;
  color: var(--color-text);
}

/* --- Features Grid (inner pages) --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.feature-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--color-ocean-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--color-ocean);
}

.feature-card h3 {
  margin-bottom: 8px;
}

.feature-card p {
  font-size: .9rem;
  color: var(--color-text-light);
}

/* --- Tips Grid --- */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.tip-card {
  padding: 24px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--color-sun);
}

.tip-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.tip-card p {
  font-size: .9rem;
  color: var(--color-text-light);
}

/* --- Page Cover --- */
.page-cover {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 24px 0;
}

.page-cover img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Editorial Image (wide photo block between text sections) --- */
.editorial-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 44px 0;
}

.editorial-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.editorial-image figcaption {
  font-size: .85rem;
  color: var(--color-text-muted);
  padding: 10px 0 0;
}

/* --- Contact Grid --- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.contact-item {
  background: var(--color-white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-item h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-item p {
  font-size: .9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.contact-item a {
  color: var(--color-ocean);
  font-weight: 500;
}

/* --- Footer (глубокий морской тон с бирюзовым оттенком) --- */
.site-footer {
  background: linear-gradient(180deg, #0f2d3d 0%, #0a1f2c 100%);
  color: #b4c5d0;
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-about p {
  font-size: .9rem;
  margin-top: 14px;
  line-height: 1.7;
}

.site-footer h4 {
  color: var(--color-white);
  font-size: .95rem;
  margin-bottom: 18px;
}

.footer-links a {
  display: block;
  color: #8fa8b8;
  font-size: .9rem;
  padding: 4px 0;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid #1a3a4e;
  padding-top: 20px;
  text-align: center;
  font-size: .8rem;
  color: #5a7a8a;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .beach-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 56px;
  }

  .menu-toggle { display: block; }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    z-index: 99;
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    padding: 16px 20px;
    gap: 0;
  }

  .main-nav a {
    font-size: 1rem;
    padding: 14px 16px;
    border-bottom: 1px solid var(--color-border);
  }

  .hero { padding: 72px 0 68px; }
  .hero h1 { font-size: 2rem; }
  .hero-subtitle { font-size: 1rem; }

  .hero-inner { padding: 96px 0 76px; min-height: 260px; }
  .hero-inner h1 { font-size: 1.6rem; }

  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.35rem; }

  .section { padding: 48px 0; }

  .cards-grid { grid-template-columns: 1fr; }
  .scenarios-grid { grid-template-columns: 1fr; }
  .beach-strip { grid-template-columns: 1fr; }
  .districts-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .quick-links { grid-template-columns: 1fr 1fr; }

  .editorial-image img { height: 220px; }

  .journey-step { gap: 16px; }
  .journey-marker { width: 40px; height: 40px; font-size: .8rem; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
  .container { padding: 0 16px; }
  .quick-links { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}
