:root {
  --accent: #f4651a;
  --accent-soft: rgba(244, 101, 26, 0.14);
  --bg: #f2f4f8;
  --surface: #ffffff;
  --surface-alt: #e8ecf4;
  --text: #141820;
  --muted: #4f5866;
  --line: rgba(20, 24, 32, 0.12);
  --radius: 14px;
  --shadow: 0 16px 40px rgba(20, 28, 45, 0.08);
  --shadow-hover: 0 22px 50px rgba(20, 28, 45, 0.12);
  --max: 1120px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --card: #ffffff;
  --card-alt: #f7f9fc;
  --card-tint: #f1f4fa;
  --input-bg: #ffffff;
  --footer-bg: #e4e9f2;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-width: 320px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #ff7a35;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--accent);
  color: #1a0e08;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  z-index: 2000;
}

.skip-link:focus {
  left: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  width: 44px;
  height: 44px;
}

.brand span {
  font-size: 0.95rem;
  line-height: 1.2;
  max-width: 12rem;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 10px;
  padding: 0.45rem 0.6rem;
  cursor: pointer;
}

.nav-toggle i {
  font-size: 1.25rem;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: var(--accent);
  color: var(--text);
}

main {
  overflow-x: hidden;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.1rem;
}

.hero {
  position: relative;
  min-height: clamp(420px, 72vh, 640px);
  display: grid;
  align-items: stretch;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 244, 0.78));
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 22% 18%, rgba(244, 101, 26, 0.12), transparent 48%);
  z-index: -1;
  pointer-events: none;
}

.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.4rem 1.1rem 3rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 34rem;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.hero-panel:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(244, 101, 26, 0.45);
  box-shadow: var(--shadow-hover);
}

.hero-panel h2 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
}

.hero-form label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.hero-form input[type="email"] {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--input-bg);
  color: var(--text);
  margin-bottom: 0.75rem;
}

.hero-form input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #1a0e08;
}

.btn-primary:hover {
  background: #ff7a35;
  color: #1a0e08;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--text);
}

.section {
  padding: 3.25rem 0;
}

.section.alt {
  background: var(--surface-alt);
  border-block: 1px solid var(--line);
}

.section.tint {
  background: #dfe5ef;
}

.section-head {
  max-width: 46rem;
  margin-bottom: 1.75rem;
}

.section-head h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}

.section-head p.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.section.alt .card {
  background: var(--card-alt);
}

.section.tint .card {
  background: var(--card-tint);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 101, 26, 0.35);
}

.card h3 {
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.card h3 i {
  color: var(--accent);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.pill-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.columns-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.steps li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem 1rem 3rem;
  position: relative;
  background: var(--card-alt);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.checklist {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.checklist li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  border: 1px dashed rgba(244, 101, 26, 0.45);
  background: rgba(244, 101, 26, 0.08);
}

.checklist i {
  color: var(--accent);
  margin-top: 0.15rem;
}

.quote-band {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.25rem;
  background: rgba(244, 101, 26, 0.1);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 0.75rem;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  background: var(--card);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.map-frame {
  width: 100%;
  min-height: 320px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  filter: none;
}

.disclaimer {
  font-size: 0.92rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  background: var(--card-alt);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.5rem;
  background: var(--footer-bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--line);
  padding: 1rem 1rem 1.15rem;
  box-shadow: 0 -12px 36px rgba(20, 28, 45, 0.1);
  transform: translateY(110%);
  transition: transform 0.35s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
}

.cookie-text {
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 24, 32, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1300;
  padding: 1rem;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-dialog {
  width: min(520px, 100%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem;
  max-height: 90vh;
  overflow: auto;
  box-shadow: var(--shadow-hover);
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.switch {
  position: relative;
  width: 46px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #c5cbd6;
  border-radius: 999px;
  transition: 0.2s;
}

.slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #ffffff;
  border-radius: 50%;
  transition: 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.switch input:checked + .slider {
  background: var(--accent);
}

.switch input:checked + .slider::before {
  transform: translateX(20px);
}

.switch input:disabled + .slider {
  opacity: 0.55;
  cursor: not-allowed;
}

.form-grid {
  display: grid;
  gap: 0.85rem;
}

.form-grid label {
  font-size: 0.88rem;
  color: var(--muted);
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--input-bg);
  color: var(--text);
  font: inherit;
}

.form-grid textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox-row {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--muted);
}

.page-hero {
  padding: 2.5rem 0 1rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(244, 101, 26, 0.08), transparent);
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 46rem;
}

.section-editorial {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.editorial-shell {
  padding-top: 0.5rem;
}

.editorial-top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  padding: clamp(1.75rem, 4vw, 3rem) 0 clamp(2rem, 5vw, 3.25rem);
}

.editorial-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}

.editorial-title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3.6vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text);
}

.editorial-lead {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.55;
}

.editorial-body {
  margin: 0 0 1.35rem;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.75;
}

.editorial-body p {
  margin: 0 0 1rem;
}

.editorial-body p:last-child {
  margin-bottom: 0;
}

.btn-editorial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-editorial:hover {
  background: var(--accent);
  color: #1a0e08;
  border-color: var(--accent);
}

.editorial-photos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.editorial-photo {
  position: relative;
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.editorial-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.editorial-photo--accent::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 10px;
  height: 42%;
  background: var(--accent);
  border-radius: 0 0 2px 0;
}

.editorial-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.editorial-card {
  position: relative;
  padding: clamp(1.35rem, 3vw, 2rem);
  background: var(--surface);
  border-right: 1px solid var(--line);
  min-height: 100%;
}

.editorial-card:last-child {
  border-right: 0;
}

.editorial-card--accent {
  background: var(--accent);
  color: #fff;
  border-right-color: rgba(255, 255, 255, 0.25);
}

.editorial-card--accent::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 10px;
  height: 38%;
  background: #3d4451;
  border-radius: 0 0 0 2px;
}

.editorial-card-icon {
  font-size: 2rem;
  margin-bottom: 0.85rem;
  line-height: 1;
}

.editorial-card--accent .editorial-card-icon {
  color: #fff;
}

.editorial-card:not(.editorial-card--accent) .editorial-card-icon {
  color: var(--accent);
}

.editorial-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.editorial-card--accent h3 {
  color: #fff;
}

.editorial-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  font-style: italic;
}

.editorial-card:not(.editorial-card--accent) p {
  color: var(--text);
}

.editorial-card--accent p {
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .split,
  .columns-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .editorial-top {
    grid-template-columns: 1fr;
  }

  .editorial-features {
    grid-template-columns: 1fr;
  }

  .editorial-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .editorial-card:last-child {
    border-bottom: 0;
  }

  .editorial-card--accent {
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  body.nav-open .site-nav {
    max-height: 320px;
  }

  .site-nav ul {
    flex-direction: column;
    padding: 0.75rem 1.1rem 1rem;
    gap: 0.25rem;
  }
}

@media (max-width: 360px) {
  .header-inner,
  .wrap {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .hero-grid {
    padding-top: 1.75rem;
  }
}
