:root {
  --accent: #F11B34;
  --accent-dark: #c9152a;
  --accent-soft: rgba(241, 27, 52, 0.1);
  --bg-page: #ffffff;
  --bg-light: #faf9f7;
  --bg-cream: #f3f1ed;
  --bg-soft: #ebe8e3;
  --bg-card: #ffffff;
  --bg-dark: #f5f3f0;
  --bg-mid: #eeebe6;
  --text-primary: #1a1a1e;
  --text-secondary: #4a4a52;
  --text-muted: #6b6b74;
  --text-on-dark: #1a1a1e;
  --text-on-light: #1a1a1e;
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.12);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.06);
  --radius: 12px;
  --max: 1180px;
  --header-h: 72px;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--bg-page);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

a:hover {
  color: var(--accent-dark);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.35rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; }

ul, ol { margin: 0 0 1rem 1.25rem; }
li { margin-bottom: 0.4rem; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 9999;
  border-radius: 4px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.logo-link img {
  height: 40px;
  width: auto;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: var(--bg-light);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--bg-page);
  padding: 1.25rem;
  transform: translateY(-120%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s, opacity 0.35s, visibility 0.35s;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}

.main-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li {
  margin: 0;
  border-bottom: 1px solid var(--border);
}

.nav-list a {
  display: block;
  padding: 0.85rem 0.25rem;
  color: var(--text-primary);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--accent);
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }

  .main-nav {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    padding: 0;
    border: none;
    max-height: none;
    overflow: visible;
  }

  .nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1.25rem;
    justify-content: flex-end;
  }

  .nav-list li { border: none; }

  .nav-list a {
    padding: 0.35rem 0;
    font-size: 0.88rem;
  }
}

.disclaimer-bar {
  background: var(--bg-cream);
  color: var(--text-secondary);
  font-size: 0.78rem;
  padding: 0.55rem 0;
  text-align: center;
  margin-top: var(--header-h);
  border-bottom: 1px solid var(--border);
}

.ec-notice {
  background: var(--bg-page);
  border-bottom: 1px solid var(--border);
  padding: 0.45rem 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

.ec-notice p {
  margin: 0;
  line-height: 1.45;
}

.ec-notice a {
  color: var(--text-secondary);
  text-decoration: underline;
}

.ec-notice a:hover {
  color: var(--accent);
}

.content-notice {
  background: rgba(241, 27, 52, 0.06);
  border: 1px solid rgba(241, 27, 52, 0.2);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.content-notice strong {
  color: var(--text-primary);
}

.map-placeholder {
  background: var(--bg-cream);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
}

.map-placeholder p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.form-legal-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: -0.5rem 0 1rem;
  line-height: 1.5;
}

.disclaimer-bar p {
  margin: 0;
  max-width: 900px;
  margin-inline: auto;
  line-height: 1.45;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-primary);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.88) 0%,
    rgba(255, 248, 249, 0.82) 45%,
    rgba(255, 255, 255, 0.92) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1rem 4rem;
  max-width: 820px;
}

.hero-content h1 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.hero-content p {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  margin-bottom: 1.75rem;
  color: var(--text-secondary);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  font-family: inherit;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.btn-dark {
  background: var(--text-primary);
  color: #fff;
  border-color: var(--text-primary);
}

.btn-dark:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.hero .btn-outline {
  background: var(--bg-page);
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.hero .btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-dark {
  background: var(--bg-soft);
  color: var(--text-primary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-dark h2,
.section-dark h3 {
  color: var(--text-primary);
}

.section-dark p,
.section-dark li {
  color: var(--text-secondary);
}

.section-accent {
  background: var(--accent);
  color: #fff;
}

.section-accent h2,
.section-accent h3,
.section-accent p,
.section-accent li {
  color: #fff;
}

.section-light {
  background: var(--bg-page);
  color: var(--text-primary);
}

.section-cream {
  background: var(--bg-cream);
  color: var(--text-primary);
}

.section-header {
  margin-bottom: 2rem;
  max-width: 720px;
}

.section-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.section-dark .section-header .eyebrow {
  color: var(--accent);
}

.section-accent .section-header .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.section-dark a:not(.btn) {
  color: var(--accent);
}

.icon {
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
}

.section-accent .icon {
  color: #fff;
}

.grid-2 {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.section-dark .card {
  background: var(--bg-page);
  border-color: var(--border-strong);
  color: var(--text-primary);
}

.section-dark .card p {
  color: var(--text-secondary);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(241, 27, 52, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.section-dark .card-icon {
  background: var(--accent-soft);
}

.card h3 {
  color: inherit;
}

.media-block {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-block img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.media-block--full img {
  aspect-ratio: auto;
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
  background: var(--bg-page);
}

.media-caption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  background: var(--bg-cream);
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.split-section {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .split-section { grid-template-columns: 1fr 1.1fr; }
  .split-section.reverse { direction: rtl; }
  .split-section.reverse > * { direction: ltr; }
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 500px) {
  .stats-row { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {
  text-align: center;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(241, 27, 52, 0.08);
}

.section-dark .stat-item {
  background: var(--bg-page);
  border: 1px solid var(--border);
}

.stat-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--accent);
}

.section-accent .stat-item strong {
  color: #fff;
}

.section-accent .stat-item {
  background: rgba(255, 255, 255, 0.15);
}

.section-accent .stat-item strong {
  color: #fff;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
}

.timeline li {
  position: relative;
  margin-bottom: 1.5rem;
  padding-left: 0.5rem;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -1.85rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg-light);
}

.section-dark .timeline li::before {
  border-color: var(--bg-soft);
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 0.65rem;
}

.check-list .ph {
  color: var(--accent);
  margin-top: 0.15rem;
}

.section-accent .check-list .ph {
  color: #fff;
}

.numbered-steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
}

.numbered-steps li {
  counter-increment: step;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.25rem;
}

.numbered-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.quote-block {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  background: rgba(241, 27, 52, 0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.section-dark .quote-block {
  background: var(--bg-page);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
}

.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
}

.section-dark .faq-item {
  border-color: var(--border-strong);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem 2.5rem 1rem 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: inherit;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--accent);
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  padding: 0 0 1rem;
  display: none;
}

.faq-answer.is-visible {
  display: block;
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.calendar-table th,
.calendar-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.calendar-table th {
  background: var(--accent-soft);
  font-weight: 600;
  color: var(--text-primary);
}

.section-dark .calendar-table th {
  background: rgba(241, 27, 52, 0.14);
  color: var(--text-primary);
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 1rem;
  background: #fff;
  color: var(--text-on-light);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}

.checkbox-row {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.checkbox-row input {
  width: auto;
  margin-top: 0.25rem;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

@media (min-width: 600px) {
  .map-wrap iframe { height: 400px; }
}

.contact-details {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.contact-details li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-details .ph {
  color: var(--accent);
  font-size: 1.35rem;
  margin-top: 0.1rem;
}

.site-footer {
  background: var(--bg-cream);
  color: var(--text-secondary);
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

.site-footer h3 {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li { margin-bottom: 0.4rem; }

.footer-links a {
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
}

.footer-contact {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  font-size: 0.88rem;
}

.footer-contact li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.footer-contact .ph {
  color: var(--accent);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.footer-contact a {
  color: var(--text-secondary);
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-disclosure {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.trust-bar {
  background: var(--bg-cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.trust-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.trust-item .ph {
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.policy-content {
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 3rem;
  background: var(--bg-page);
  color: var(--text-primary);
}

 

.policy-content h1 {
  margin-bottom: 1rem;
}

.policy-content h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.policy-content h3 {
  margin-top: 1.25rem;
  font-size: 1.1rem;
}

.policy-content h4 {
  margin-top: 1rem;
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

.policy-content ul li,
.policy-content ol li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.policy-content table {
  margin: 1rem 0 1.5rem;
}

.page-hero-sm {
  padding: calc(var(--header-h) + 2.5rem) 0 2.5rem;
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-page) 100%);
  color: var(--text-primary);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero-sm h1 {
  margin-bottom: 0.5rem;
}

.page-hero-sm p {
  color: var(--text-secondary);
  max-width: 640px;
  margin-inline: auto;
}

.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 1rem 3rem;
}

.success-icon {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.cta-band {
  text-align: center;
  padding: 3rem 1.5rem;
}

.cta-band h2 {
  margin-bottom: 0.75rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.tag-list li {
  margin: 0;
  padding: 0.35rem 0.85rem;
  background: rgba(241, 27, 52, 0.12);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}

.section-dark .tag-list li {
  background: var(--bg-page);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--bg-page);
  color: var(--text-primary);
  padding: 1.25rem;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
  border-top: 3px solid var(--accent);
  transform: translateY(110%);
  transition: transform 0.4s;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.cookie-banner h2 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.cookie-banner p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.cookie-banner .btn-outline {
  color: var(--text-primary);
  border-color: var(--border-strong);
}

.cookie-banner .btn-outline:hover {
  background: var(--bg-soft);
  color: var(--text-primary);
  border-color: var(--border-strong);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  align-items: stretch;
}

.cookie-actions .btn-sm {
  min-width: 8.5rem;
  justify-content: center;
  flex: 1 1 auto;
}

.cookie-settings {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.cookie-settings.is-open {
  display: block;
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
}

.cookie-toggle.disabled {
  opacity: 0.7;
}

.cookie-toggle.disabled input {
  cursor: not-allowed;
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  overflow-x: auto;
  display: block;
}

@media (min-width: 600px) {
  .compare-table { display: table; }
}

.compare-table th,
.compare-table td {
  padding: 0.65rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: left;
}

.section-dark .compare-table th,
.section-dark .compare-table td {
  border-color: var(--border-strong);
}

.compare-table th {
  background: var(--accent);
  color: #fff;
}

.pillar-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 500px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
}

.pillar-item {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.section-dark .pillar-item {
  background: var(--bg-page);
  border-color: var(--border-strong);
}

.pillar-item .ph {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
}

.section-accent .pillar-item {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.section-accent .pillar-item p {
  color: rgba(255, 255, 255, 0.92);
}

.section-accent .pillar-item .ph {
  color: #fff;
}

.section-accent .btn-outline {
  color: #fff;
  border-color: #fff;
}

.section-accent .btn-outline:hover {
  background: #fff;
  color: var(--accent);
}

.stat-item span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.section-accent .stat-item span {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 320px) {
  .container {
    width: min(100% - 1rem, var(--max));
  }

  .hero-content h1 {
    font-size: 1.65rem;
  }

  .btn {
    padding: 0.75rem 1.2rem;
    font-size: 0.88rem;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
