/* ============================================
   VKV ANTIQUITÉS — Design System
   Light, refined, private expertise aesthetic
   ============================================ */

:root {
  --bg: #f5f1ea;
  --bg-warm: #ede7dc;
  --paper: #faf7f1;
  --ink: #1f1d1a;
  --ink-soft: #5a564f;
  --ink-mute: #8b8478;
  --accent: #3d4a3a;
  --accent-soft: #6b7a64;
  --line: rgba(31, 29, 26, 0.12);
  --line-soft: rgba(31, 29, 26, 0.06);
  --serif: 'Manrope', -apple-system, sans-serif;
  --sans: 'Manrope', -apple-system, sans-serif;
  --max-width: 1280px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }

/* ============ HEADER ============ */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  background: rgba(245, 241, 234, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.site-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  width: 38px;
  height: 38px;
  display: block;
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.06em;
}

.logo-mark {
  color: var(--accent);
  font-weight: 500;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 38px;
  align-items: center;
}

nav.main-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.02em;
  font-weight: 400;
  transition: color 0.3s ease;
  position: relative;
}

nav.main-nav a:not(.btn-cta):hover { color: var(--accent); }

nav.main-nav a:not(.btn-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s ease;
}

nav.main-nav a:not(.btn-cta):hover::after,
nav.main-nav a.active::after { width: 100%; }

nav.main-nav a.active { color: var(--accent); }

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 16px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s ease;
  list-style: none;
  display: block !important;
  margin-top: 12px;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li { display: block; }

.dropdown a {
  display: block !important;
  padding: 8px 24px;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0;
}

.dropdown a:hover {
  color: var(--accent);
  background: var(--bg-warm);
}

.dropdown a::after { display: none; }

/* CTA button in nav */
.btn-cta {
  padding: 10px 22px;
  background: #e8dfd0;
  border: 1px solid #ddd4c4;
  color: var(--ink) !important;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper) !important;
}

.btn-cta::after { display: none !important; }

.lang-switch {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-mute) !important;
  border: 1px solid var(--line);
  padding: 5px 10px;
  transition: all 0.3s ease;
}

.lang-switch:hover {
  color: var(--accent) !important;
  border-color: var(--accent);
}

.lang-switch::after { display: none !important; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s ease;
}

/* Mobile menu open state */
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(245, 241, 234, 0.98);
  z-index: 105;
  padding: 100px 36px 40px;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-overlay.active { display: flex; }

.mobile-nav-overlay a {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.3s ease;
  letter-spacing: -0.01em;
}

.mobile-nav-overlay a:last-child { border-bottom: none; }
.mobile-nav-overlay a:hover { color: var(--accent); }

.mobile-nav-overlay .mobile-cta {
  margin-top: 24px;
  padding: 18px;
  background: #e8dfd0;
  color: var(--ink);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  border-bottom: none;
}

.mobile-nav-overlay .mobile-cta:hover { background: var(--accent); color: var(--paper); }

.mobile-nav-overlay .mobile-phone {
  text-align: center;
  font-size: 16px;
  color: var(--ink-soft);
  border-bottom: none;
  margin-top: 8px;
}

/* ============ SHARED COMPONENTS ============ */

/* Buttons */
.btn-primary {
  padding: 16px 32px;
  background: #e8dfd0;
  color: var(--ink);
  border: none;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.05em;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.btn-primary:hover {
  background: var(--accent);
  color: var(--paper);
  transform: translateY(-1px);
}

.btn-primary svg {
  width: 14px;
  height: 14px;
  transition: transform 0.4s ease;
}

.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-ghost:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Eyebrow text */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 32px;
  font-weight: 500;
}

.eyebrow.center { justify-content: center; }

.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.eyebrow.center::before,
.eyebrow.center::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}

/* Headings */
h1.display {
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 100px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  color: var(--ink);
}

h1.display em,
h2.section-title em {
  font-style: normal;
  font-weight: 500;
  color: var(--accent);
}

h2.section-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.02em;
}

h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.005em;
}

/* Section structure */
section {
  padding: 110px 80px;
  position: relative;
}

.section-paper { background: var(--paper); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 80px;
  text-align: center;
}

.section-header.left { margin-left: 0; text-align: left; }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  padding: 160px 80px 100px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: calc(var(--max-width) + 160px);
  margin: 0 auto;
}

.hero-page {
  min-height: auto;
  padding: 180px 80px 100px;
  display: block;
  text-align: center;
  max-width: calc(var(--max-width) + 160px);
  margin: 0 auto;
}

.hero-page .container { max-width: 880px; }

.hero-page h1.display { margin-bottom: 24px; }

.hero-page .lead {
  font-size: 22px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 48px;
}

/* Hero with illustration (split layout for category pages) */
.hero-illustrated {
  min-height: auto;
  padding: 160px 80px 100px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 70px;
  align-items: center;
  max-width: calc(var(--max-width) + 160px);
  margin: 0 auto;
}

.hero-illustrated .hero-content { text-align: left; }
.hero-illustrated .hero-content .eyebrow { justify-content: flex-start; }
.hero-illustrated .hero-content .eyebrow::after { display: none; }
.hero-illustrated .hero-content h1.display { margin-bottom: 24px; }
.hero-illustrated .hero-content .lead {
  font-size: 21px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 0 48px;
}
.hero-illustrated .hero-content .hero-cta-group { justify-content: flex-start; }

.hero-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-illustration::before {
  content: '';
  position: absolute;
  inset: 20px;
  background: var(--bg-warm);
  z-index: 0;
  opacity: 0.35;
}

.hero-illustration img {
  max-width: 100%;
  height: auto;
  max-height: 540px;
  display: block;
  position: relative;
  z-index: 1;
}

/* City skyline illustration band */
.city-illustration {
  background: var(--paper);
  padding: 60px 80px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.city-illustration .container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.city-illustration img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.95;
}

.city-illustration .caption {
  text-align: center;
  font-family: var(--serif);
  color: var(--ink-mute);
  font-size: 15px;
  margin-top: 24px;
  letter-spacing: 0.04em;
}

/* Section divider */
.section-divider {
  text-align: center;
  padding: 50px 64px 0;
  margin: 0;
}

.section-divider img {
  max-width: 360px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.7;
}

.hero-content {
  animation: fadeUp 1.2s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}

.hero-sub {
  font-size: 20px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 18px;
  line-height: 1.6;
}

.hero-meta {
  font-family: var(--serif);
  color: var(--ink-mute);
  font-size: 19px;
  margin-bottom: 48px;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-page .hero-cta-group { justify-content: center; }

/* ============ HERO VISUAL ============ */
.hero-visual {
  position: relative;
  height: 580px;
  animation: fadeUp 1.4s 0.2s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}

.portrait {
  position: absolute;
  top: 0;
  right: 0;
  width: 78%;
  height: 88%;
  background: var(--bg-warm);
  overflow: hidden;
}

.portrait svg,
.portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.credential-card {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56%;
  background: var(--paper);
  padding: 32px 36px;
  border: 1px solid var(--line);
}

.credential-card .label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 14px;
  font-weight: 500;
}

.credential-card .quote {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 18px;
}

.credential-card .attribution {
  font-size: 12px;
  color: var(--ink-soft);
}

.vertical-mark {
  position: absolute;
  top: 12%;
  left: -8px;
  color: var(--ink-mute);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.32em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ============ FEATURE GRID (3-col) ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.feature {
  padding: 0 48px;
  border-right: 1px solid var(--line);
  text-align: center;
  transition: transform 0.5s ease;
}

.feature:first-child { padding-left: 0; }
.feature:last-child { border-right: none; padding-right: 0; }

.feature:hover { transform: translateY(-4px); }

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 28px;
  color: var(--accent);
  display: block;
}

.feature-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 24px;
  letter-spacing: 0.16em;
}

.feature h3 {
  font-size: 30px;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.feature p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
  max-width: 340px;
  margin: 0 auto;
}

/* ============ CATEGORIES GRID ============ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.category-card {
  background: var(--paper);
  border: 1px solid var(--line);
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  cursor: pointer;
  overflow: hidden;
}

.category-card:hover {
  border-color: var(--accent-soft);
}

.category-card .cat-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--bg-warm);
}

.category-card .cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.category-card:hover .cat-img {
  transform: scale(1.05);
}

.category-card .cat-text {
  padding: 18px 16px 22px;
}

.category-card h4 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.25;
  margin-bottom: 4px;
}

.category-card p {
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

/* ============ PROCESS STEPS ============ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px 40px;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
}

.step-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.18;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.step-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--accent);
  display: block;
}

.step h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 240px;
  margin: 0 auto;
}

/* ============ ABOUT BAND (текст + 3 trust-плашки) ============ */
.about-band {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.8vw, 46px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--ink);
}

.about-text h2 em {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}

.about-text p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.about-text p:last-child { margin-bottom: 0; }

.trust-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trust-item {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.trust-item svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  flex-shrink: 0;
  stroke-width: 1.2;
  margin-top: 2px;
}

.trust-item h4 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.3;
}

.trust-item p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* ============ REGION INFO (зона выезда) ============ */
.region-info {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: center;
}

.region-info-text h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--ink);
}

.region-info-text .cities {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}

.region-info-text p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.region-contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 36px 32px;
}

.region-contact-card .contact-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.region-contact-card .contact-row:first-child { padding-top: 0; }
.region-contact-card .contact-row:last-child { border-bottom: none; padding-bottom: 0; }

.region-contact-card .contact-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
  font-weight: 500;
}

.region-contact-card .contact-value {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.3s ease;
}

.region-contact-card a.contact-value:hover { color: var(--accent); }

/* ============ HOME CONTACT FORM ============ */
.home-form-section {
  background: var(--ink);
  color: var(--paper);
  padding: 110px 80px;
}

.home-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.home-form-wrap h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 4.6vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.home-form-wrap h2 em {
  color: #c9b88a;
  font-style: normal;
  font-weight: 500;
}

.home-form-wrap .lead-line {
  font-family: var(--serif);
  font-size: 19px;
  color: #c9b88a;
  margin-bottom: 14px;
  font-weight: 500;
}

.home-form-wrap .sub {
  font-size: 16px;
  color: rgba(250, 247, 241, 0.65);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.home-form {
  text-align: left;
  background: rgba(250, 247, 241, 0.04);
  border: 1px solid rgba(250, 247, 241, 0.12);
  padding: 40px;
}

.home-form .hf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.home-form .hf-group { display: flex; flex-direction: column; }
.home-form .hf-group.full { grid-column: 1 / -1; }

.home-form label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 241, 0.55);
  margin-bottom: 8px;
  font-weight: 500;
}

.home-form input,
.home-form textarea,
.home-form select {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(250, 247, 241, 0.2);
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--paper);
  transition: border-color 0.3s ease;
}

.home-form textarea { resize: vertical; min-height: 100px; }

.home-form input:focus,
.home-form textarea:focus,
.home-form select:focus {
  outline: none;
  border-bottom-color: #c9b88a;
}

.home-form input[type="file"] {
  padding: 8px 0;
  color: rgba(250, 247, 241, 0.7);
}

.home-form .hf-submit {
  margin-top: 12px;
  padding: 18px 32px;
  background: #c9b88a;
  color: var(--ink);
  border: none;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.05em;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease;
}

.home-form .hf-submit:hover { background: var(--paper); }

@media (max-width: 900px) {
  .about-band, .region-info {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .home-form-section { padding: 80px 36px; }
  .home-form { padding: 28px 24px; }
  .home-form .hf-row { grid-template-columns: 1fr; }
}

/* ============ CTA BAND ============ */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 80px;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 4.6vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.cta-band h2 em {
  color: #c9b88a;
  font-style: normal;
  font-weight: 500;
}

.cta-band p {
  font-size: 19px;
  color: rgba(250, 247, 241, 0.7);
  max-width: 580px;
  margin: 0 auto 44px;
  line-height: 1.55;
}

.cta-band .btn-primary {
  background: var(--paper);
  color: var(--ink);
}

.cta-band .btn-primary:hover {
  background: #c9b88a;
  color: var(--ink);
}

.cta-band .btn-ghost {
  color: var(--paper);
  border-bottom-color: rgba(250, 247, 241, 0.4);
  margin-left: 24px;
}

.cta-band .btn-ghost:hover {
  color: #c9b88a;
  border-bottom-color: #c9b88a;
}

/* ============ CITY/CATEGORY PAGE STYLES ============ */
.content-prose {
  max-width: 780px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink-soft);
}

.content-prose p { margin-bottom: 28px; }

.content-prose p:last-child { margin-bottom: 0; }

.content-prose h3 {
  color: var(--ink);
  font-size: 32px;
  font-weight: 600;
  margin: 60px 0 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.content-prose strong {
  color: var(--ink);
  font-weight: 500;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.two-column .visual {
  background: var(--bg-warm);
  height: 480px;
  position: relative;
  overflow: hidden;
}

.two-column .visual svg {
  width: 100%;
  height: 100%;
}

/* Local info card on city pages */
.local-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 880px;
  margin: 0 auto;
}

.local-card .info-block .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 500;
}

.local-card .info-block .value {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 8px;
}

.local-card .info-block .detail {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  letter-spacing: -0.005em;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--accent);
  font-weight: 300;
  transition: transform 0.3s ease;
  font-family: var(--sans);
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .answer {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

/* ============ FOOTER ============ */
footer.site-footer {
  background: var(--ink);
  color: rgba(250, 247, 241, 0.7);
  padding: 80px 80px 32px;
}

.footer-logo-wrap {
  max-width: var(--max-width);
  margin: 0 auto 48px;
  text-align: center;
}

.footer-logo-img {
  width: 80px;
  height: 80px;
  display: inline-block;
  border-radius: 50%;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(250, 247, 241, 0.1);
}

.footer-brand .logo {
  color: var(--paper);
  font-size: 22px;
  margin-bottom: 18px;
}

.footer-brand .logo .logo-mark {
  color: #c9b88a;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
  color: rgba(250, 247, 241, 0.55);
}

.footer-col h5 {
  color: var(--paper);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(250, 247, 241, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col a:hover { color: #c9b88a; }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(250, 247, 241, 0.4);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: rgba(250, 247, 241, 0.4);
  text-decoration: none;
}

.footer-bottom a:hover { color: #c9b88a; }

/* ============ WHATSAPP FLOATING ============ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@media (max-width: 900px) {
  .wa-float { display: flex; }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1280px) {
  header.site-header { padding: 18px 0; }
  .site-header-inner { padding: 0 36px; }
  section { padding: 90px 36px; }
  .hero, .hero-page, .hero-illustrated { padding-left: 36px; padding-right: 36px; }
  .cta-band { padding: 80px 36px; }
  footer.site-footer { padding: 60px 36px 24px; }
  .city-illustration { padding: 50px 36px; }
}

@media (max-width: 900px) {
  nav.main-nav ul { display: none; }
  .menu-toggle { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    gap: 56px;
    padding-top: 130px;
    padding-bottom: 70px;
  }

  .hero-visual { height: auto; min-height: 380px; }
  .portrait { position: relative; width: 100%; height: 400px; }

  .hero-illustrated {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 130px 28px 60px;
  }
  .hero-illustrated .hero-content { text-align: center; }
  .hero-illustrated .hero-content .eyebrow { justify-content: center; }
  .hero-illustrated .hero-content .lead { margin-left: auto; margin-right: auto; }
  .hero-illustrated .hero-content .hero-cta-group { justify-content: center; }
  .hero-illustration { order: -1; }
  .hero-illustration img { max-height: 360px; }

  .city-illustration { padding: 40px 28px; }

  .feature-grid { grid-template-columns: 1fr; gap: 56px; }
  .feature {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 0 0 48px !important;
  }
  .feature:last-child { border-bottom: none; padding-bottom: 0 !important; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .category-card .cat-img-wrap { height: 160px; }

  .process-grid { grid-template-columns: 1fr 1fr; gap: 48px; }

  .two-column { grid-template-columns: 1fr; gap: 40px; }
  .two-column .visual { height: 320px; }

  .local-card { grid-template-columns: 1fr; padding: 32px; gap: 28px; }

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

@media (max-width: 540px) {
  .hero h1.display, .hero-page h1.display { font-size: 42px; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .btn-primary { width: 100%; justify-content: center; }
  .btn-ghost { text-align: center; }
  .credential-card { padding: 20px; width: 90%; }
  .credential-card .quote { font-size: 15px; }
  .categories-grid { grid-template-columns: 1fr; gap: 10px; }
  .category-card .cat-img-wrap { height: 180px; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
