:root {
  --bg: #fffaf5;
  --surface: #ffffff;
  --surface-soft: #f7efe4;
  --surface-dark: #171212;
  --surface-dark-soft: #241b1c;
  --text: #2a1d1d;
  --text-soft: #6c5b5c;
  --text-light: #f7f1ea;
  --line: rgba(101, 76, 76, 0.16);
  --primary: #b48a4a;
  --primary-dark: #8f6b34;
  --accent: #5c3342;
  --shadow: 0 20px 50px rgba(29, 17, 18, 0.12);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: min(1120px, calc(100% - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
ul,
ol {
  margin-top: 0;
}

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

.narrow {
  max-width: 850px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--surface-dark);
  color: var(--text-light);
  border-radius: 0 0 0.75rem 0.75rem;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 250, 245, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
  padding-block: 0.85rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  flex: 1 1 auto;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #d8b880);
  color: #24160e;
  font-weight: 700;
  letter-spacing: 0.08em;
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-text strong {
  font-size: 1rem;
  line-height: 1.2;
}

.brand-text small {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  cursor: pointer;
  flex: 0 0 auto;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.primary-nav {
  position: static;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 20px;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.28s ease, opacity 0.2s ease, margin-top 0.2s ease, padding 0.2s ease;
}

.primary-nav.is-open {
  max-height: 28rem;
  margin-top: 0.25rem;
  padding: 0.7rem;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 1;
  visibility: visible;
}

.primary-nav a {
  padding: 0.8rem 0.95rem;
  border-radius: 12px;
  color: var(--text-soft);
  font-weight: 600;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  background: var(--surface-soft);
  color: var(--text);
}

.nav-cta {
  background: var(--primary);
  color: #1f120b !important;
  text-align: center;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(20, 15, 16, 0.82), rgba(60, 34, 43, 0.72)),
    url("images/city2.jpg") center/cover no-repeat;
  color: var(--text-light);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 221, 167, 0.18), transparent 34%),
    radial-gradient(circle at right bottom, rgba(255, 255, 255, 0.08), transparent 24%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  padding: 4.5rem 0 3.8rem;
}

.eyebrow,
.section-label {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.38rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #f9e1b2;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-label {
  background: rgba(180, 138, 74, 0.14);
  color: var(--primary-dark);
}

.hero-copy h1,
.section h2,
.site-footer h2 {
  margin: 0 0 1rem;
  line-height: 1.15;
}

.hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(2.35rem, 6vw, 4.5rem);
}

.hero-text {
  max-width: 64ch;
  color: rgba(247, 241, 234, 0.9);
}

.hero-actions,
.section-action {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: #23140d;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #c79a54;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.hero-section .btn-secondary {
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-small {
  min-height: 44px;
  padding-inline: 1.15rem;
}

.hero-points {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.6rem 0 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 1.5rem;
  color: rgba(247, 241, 234, 0.88);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--primary);
}

.hero-card,
.media-card,
.info-card,
.feature-card,
.city-card,
.profile-card,
.step-card,
.testimonial-card,
.blog-card,
.cta-box,
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.hero-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.hero-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.hero-card-content {
  padding: 1.2rem 1.2rem 1.35rem;
}

.hero-card-content strong {
  display: block;
  margin-bottom: 0.4rem;
}

.hero-card-content p {
  margin-bottom: 0;
  color: rgba(247, 241, 234, 0.88);
}

.trust-bar {
  background: var(--surface-dark);
  color: var(--text-light);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-items {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 0;
  text-align: center;
  font-weight: 700;
}

.trust-items span {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.section {
  padding: 4.2rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(180, 138, 74, 0.08), rgba(180, 138, 74, 0.02));
}

.section-dark {
  background: var(--surface-dark);
  color: var(--text-light);
}

.section-dark .section-label {
  background: rgba(255, 255, 255, 0.08);
  color: #f9d79a;
}

.section-dark p,
.section-dark li,
.section-dark .feature-card p,
.section-dark .city-card p,
.section-dark .faq-list p {
  color: rgba(247, 241, 234, 0.82);
}

.section-dark a {
  color: #f4d79e;
}

.section h2 {
  font-size: clamp(1.9rem, 4.3vw, 3rem);
}

.section-intro {
  max-width: 64ch;
  color: var(--text-soft);
}

.split-layout,
.two-column-text,
.card-grid,
.feature-grid,
.city-grid,
.profile-grid,
.steps-grid,
.testimonial-grid,
.blog-grid,
.footer-grid {
  display: grid;
  gap: 1.25rem;
}

.split-layout {
  align-items: center;
}

.media-card {
  overflow: hidden;
}

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

.info-card,
.feature-card,
.city-card,
.profile-card,
.step-card,
.testimonial-card {
  padding: 1.5rem;
}

.city-card,
.profile-card,
.testimonial-card {
  padding: 0;
  overflow: hidden;
}

.info-card h3,
.feature-card h3,
.city-card h3,
.profile-card h3,
.step-card h3,
.blog-copy h3,
.faq-list summary {
  margin: 0 0 0.75rem;
  line-height: 1.25;
}

.feature-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.section-dark .feature-card,
.section-dark .city-card {
  background: var(--surface-dark-soft);
  border-color: rgba(255, 255, 255, 0.08);
}

.section-dark .info-card {
  background: var(--surface);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.section-dark .info-card h3 {
  color: var(--primary-dark);
}

.section-dark .info-card p {
  color: var(--text);
}

.section-dark .feature-card h3,
.section-dark .city-card h3 {
  color: #fff6e6;
}

.section-dark .feature-card p,
.section-dark .city-card p {
  color: rgba(247, 241, 234, 0.88);
}

.city-card img,
.profile-card img,
.testimonial-card img {
  width: 100%;
  object-fit: cover;
}

.city-card img {
  aspect-ratio: 16 / 10;
}

.city-card-body {
  padding: 1.35rem 1.35rem 1.5rem;
}

.city-card h3 {
  font-size: 1.45rem;
}

.city-card p {
  line-height: 1.8;
}

.landing-hero {
  background:
    linear-gradient(125deg, rgba(18, 12, 14, 0.86), rgba(62, 33, 42, 0.74)),
    url("images/city2.jpg") center/cover no-repeat;
}

.landing-hero-baby {
  background:
    linear-gradient(125deg, rgba(18, 12, 14, 0.84), rgba(58, 30, 39, 0.72)),
    url("images/city3.jpg") center/cover no-repeat;
}

.landing-hero-kl {
  background:
    linear-gradient(125deg, rgba(18, 12, 14, 0.86), rgba(54, 29, 36, 0.74)),
    url("images/city2.jpg") center/cover no-repeat;
}

.landing-hero-about {
  background:
    linear-gradient(135deg, #2a1b21 0%, #4d3340 48%, #6b4a5d 100%);
}

.legal-page {
  padding: 3rem 0 4.5rem;
  background: linear-gradient(180deg, #fffaf5 0%, #f9f1e7 100%);
}

.legal-container {
  max-width: 900px;
}

.legal-section {
  margin-bottom: 1.25rem;
  padding: 1.7rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.legal-section h1,
.legal-section h2 {
  margin: 0 0 0.9rem;
  line-height: 1.2;
}

.legal-section h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.legal-section h2 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.legal-section p {
  margin-bottom: 0.9rem;
  color: var(--text);
  line-height: 1.8;
}

.legal-section ul {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
}

.legal-section li {
  margin-bottom: 0.55rem;
  color: var(--text);
}

.legal-section a {
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-note p {
  margin-bottom: 0;
  font-weight: 700;
}

.landing-hero-blog-real {
  background:
    linear-gradient(125deg, rgba(18, 12, 14, 0.84), rgba(57, 34, 42, 0.74)),
    url("images/city2.jpg") center/cover no-repeat;
}

.blog-page {
  padding-bottom: 4.5rem;
}

.blog-hero {
  padding: 2.4rem 0 1.6rem;
  background: linear-gradient(180deg, #f6eee3 0%, #fffaf5 100%);
}

.blog-hero-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.blog-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.blog-breadcrumbs a {
  color: var(--primary-dark);
}

.blog-kicker {
  display: inline-block;
  margin: 0 0 0.9rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(180, 138, 74, 0.14);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-hero h1 {
  margin: 0 0 1rem;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  line-height: 1.08;
}

.blog-dek {
  max-width: 72ch;
  margin: 0 0 1.1rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.blog-meta span {
  padding: 0.45rem 0.8rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 600;
}

.blog-hero .hero-actions {
  margin-top: 0;
  margin-bottom: 1.4rem;
}

.blog-hero .btn-secondary {
  background: var(--surface);
}

.blog-cover {
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.blog-cover img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center 22%;
}

.blog-container {
  max-width: 900px;
  padding-top: 3rem;
}

.blog-section {
  margin-bottom: 1.35rem;
  padding: 1.7rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.blog-section h2,
.blog-section h3 {
  margin: 0 0 0.9rem;
  line-height: 1.22;
}

.blog-section h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.blog-section h3 {
  font-size: 1.12rem;
  color: var(--primary-dark);
}

.blog-section p {
  margin-bottom: 0.95rem;
  color: var(--text);
  line-height: 1.85;
}

.blog-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.blog-list li {
  margin-bottom: 0.6rem;
  color: var(--text);
}

.blog-image-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
}

.blog-image-grid figure {
  margin: 0;
  overflow: hidden;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.blog-image-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.blog-image-grid figcaption {
  padding: 0.9rem 1rem 1rem;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.6;
}

.blog-card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-card {
  padding: 1.15rem 1.1rem;
  background: #fcf8f2;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.blog-card p:last-child,
.blog-card ul:last-child {
  margin-bottom: 0;
}

.blog-faq {
  background: linear-gradient(180deg, #fffdf9 0%, #fbf7f2 100%);
}

.connect-blog-page .blog-container {
  max-width: 980px;
}

.connect-blog-page .blog-image-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.connect-blog-page .blog-cover img {
  aspect-ratio: 16 / 8;
}

.blog-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.blog-table th,
.blog-table td {
  padding: 1rem 1.05rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.blog-table th {
  background: var(--surface-soft);
  color: var(--text);
}

.blog-table td {
  background: var(--surface);
  color: var(--text);
}

.blog-table tbody tr:nth-child(even) td {
  background: #fcf8f2;
}

.blog-table tbody tr:last-child td {
  border-bottom: 0;
}

.blog-cta {
  background: linear-gradient(180deg, #f7efe4, #fbf7f2);
}

.blog-cta-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.2rem;
}

.blog-index-page .blog-container {
  max-width: 1100px;
}

.blog-index-page .blog-hero .hero-actions,
.blog-index-page .blog-cta .hero-actions {
  justify-content: center;
}

.blog-index-page .blog-intro {
  padding-bottom: 1.6rem;
}

.blog-index-page .blog-intro .blog-container,
.blog-index-page .blog-featured-links {
  text-align: center;
}

.blog-index-page .blog-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.blog-index-page .blog-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  background: #fffdf9;
}

.blog-index-page .blog-card-image {
  display: block;
  background: #efe5d8;
}

.blog-index-page .blog-card-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.blog-index-page .blog-card-content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.35rem 1.35rem 1.45rem;
}

.blog-index-page .blog-card-content h3 {
  margin: 0 0 0.85rem;
  font-size: 1.35rem;
  line-height: 1.3;
}

.blog-index-page .blog-card-content h3 a:hover,
.blog-index-page .blog-card-content h3 a:focus-visible {
  color: var(--primary-dark);
}

.blog-index-page .blog-category {
  margin: 0 0 0.75rem;
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-index-page .blog-excerpt {
  margin: 0 0 1.2rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.blog-index-page .blog-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: auto;
  padding: 0.75rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-weight: 700;
}

.blog-index-page .blog-read-more:hover,
.blog-index-page .blog-read-more:focus-visible {
  background: var(--surface-soft);
  border-color: rgba(101, 76, 76, 0.28);
}

.blog-index-page .blog-featured-links {
  max-width: 860px;
  margin: 0 auto;
}

.blog-index-page .blog-featured-links p:last-child {
  margin-bottom: 0;
}

.blog-index-page .blog-featured-links a {
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-index-page .blog-cta .cta-box {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 767px) {
  .blog-hero {
    padding: 1.8rem 0 1.2rem;
  }

  .blog-hero h1 {
    max-width: none;
    font-size: clamp(2rem, 10vw, 2.9rem);
  }

  .blog-dek {
    font-size: 1rem;
  }

  .blog-meta {
    gap: 0.55rem;
  }

  .blog-cover img {
    aspect-ratio: 4 / 3;
    object-position: center top;
  }

  .blog-card-grid,
  .connect-blog-page .blog-image-grid {
    grid-template-columns: 1fr;
  }

  .blog-index-page .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-index-page .blog-card-image img {
    height: 220px;
  }
}

.landing-hero-grid {
  position: relative;
  display: grid;
  gap: 2rem;
  padding: 5rem 0 4.2rem;
}

.landing-copy .hero-text {
  max-width: 68ch;
}

.landing-checks {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.7rem 0 0;
  list-style: none;
}

.landing-checks li {
  position: relative;
  padding-left: 1.5rem;
  color: rgba(247, 241, 234, 0.9);
}

.landing-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--primary);
}

.landing-panel {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.landing-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.landing-panel-copy {
  padding: 1.3rem 1.3rem 1.5rem;
}

.landing-panel-copy strong {
  display: block;
  margin-bottom: 0.55rem;
}

.landing-panel-copy p {
  margin-bottom: 0;
  color: rgba(247, 241, 234, 0.88);
}

.landing-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.4rem 0;
  padding-left: 1.2rem;
}

.landing-list li {
  padding-left: 0.15rem;
}

.landing-boxes {
  display: grid;
  gap: 1rem;
  margin-top: 1.7rem;
}

.landing-box {
  padding: 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.landing-box h3 {
  margin: 0 0 0.65rem;
  color: var(--primary-dark);
}

.landing-box p {
  margin-bottom: 0;
  color: var(--text);
}

.section-dark .landing-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.section-dark .landing-box h3 {
  color: #fff6e6;
}

.section-dark .landing-box p {
  color: rgba(247, 241, 234, 0.88);
}

.table-wrap {
  overflow-x: auto;
  margin-top: 1.6rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.05rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.compare-table th {
  background: var(--surface-soft);
  color: var(--text);
  font-size: 0.96rem;
}

.compare-table td {
  background: var(--surface);
  color: var(--text);
}

.compare-table tbody tr:nth-child(even) td {
  background: #fcf8f2;
}

.compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.landing-intro-light {
  color: rgba(247, 241, 234, 0.84);
}

.featured-sugar-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.4rem;
}

.featured-sugar-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
}

.featured-sugar-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.featured-sugar-copy {
  padding: 1.25rem 1.25rem 1.4rem;
}

.featured-sugar-copy h3 {
  margin: 0 0 0.7rem;
  color: #fff6e6;
}

.featured-sugar-copy p {
  margin-bottom: 0;
  color: rgba(247, 241, 234, 0.86);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: rgba(180, 138, 74, 0.15);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  fill: #f4d79e;
}

.profile-card span {
  font-weight: 700;
}

.profile-card {
  background: linear-gradient(180deg, #ffffff, #fbf7f2);
}

.profile-card img {
  aspect-ratio: 5 / 4;
}

.profile-copy {
  padding: 1.3rem 1.3rem 1.5rem;
}

.profile-copy h3 {
  margin-bottom: 0.7rem;
}

.profile-copy p:first-of-type {
  margin-bottom: 0.8rem;
  color: var(--text-soft);
}

.step-card {
  position: relative;
  padding-top: 4rem;
}

.step-number {
  position: absolute;
  left: 1.5rem;
  top: 1.3rem;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #24160e;
  font-weight: 800;
}

.blog-card {
  overflow: hidden;
  display: grid;
}

.blog-card img {
  aspect-ratio: 16 / 10;
}

.blog-copy {
  padding: 1.3rem 1.3rem 1.45rem;
}

.blog-copy p,
.profile-card p:last-child,
.testimonial-card p,
.faq-list p,
.city-card p,
.feature-card p,
.info-card p,
.step-card p {
  margin-bottom: 0;
}

.testimonial-card {
  background: linear-gradient(180deg, #fffdfa, #f5ece1);
  border-color: rgba(139, 103, 56, 0.12);
}

.testimonial-card img {
  aspect-ratio: 16 / 10;
}

.testimonial-copy {
  padding: 1.25rem 1.3rem 1.45rem;
}

.testimonial-copy p {
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.8;
}

.testimonial-copy strong {
  color: var(--primary-dark);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  padding: 1.2rem 1.25rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  padding-right: 2rem;
  position: relative;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -0.05rem;
  font-size: 1.5rem;
  color: var(--primary-dark);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin-top: 0.9rem;
  color: var(--text-soft);
}

.cta-section {
  padding-top: 0;
}

.cta-box {
  max-width: 1120px;
  margin-inline: auto;
  padding: clamp(2rem, 4vw, 3.4rem);
  background: linear-gradient(135deg, #fffaf2, #f3e6cf 55%, #efe2ca);
  border: 1px solid rgba(180, 138, 74, 0.18);
  box-shadow: 0 24px 60px rgba(48, 30, 16, 0.08);
  text-align: center;
}

.cta-box h2 {
  max-width: 22ch;
  margin-inline: auto;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.cta-box p {
  max-width: 70ch;
  margin-inline: auto;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-soft);
}

.cta-box .hero-actions {
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.cta-box .btn {
  min-width: 220px;
}

.cta-box .btn-secondary {
  background: rgba(255, 255, 255, 0.45);
  border-color: rgba(122, 92, 46, 0.18);
}

.cta-box .section-label {
  margin-bottom: 1.2rem;
  background: rgba(180, 138, 74, 0.12);
  color: #a1742b;
}

.site-footer {
  background: #120e0f;
  color: rgba(247, 241, 234, 0.84);
  padding: 4rem 0 1.5rem;
}

.footer-title {
  font-size: 1.1rem;
}

.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 0.65rem;
}

.footer-links a {
  color: rgba(247, 241, 234, 0.78);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: #f4d79e;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.92rem;
  color: rgba(247, 241, 234, 0.58);
}

@media (min-width: 700px) {
  .trust-items,
  .card-grid.three-up,
  .profile-grid,
  .steps-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-grid,
  .city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column-text,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-boxes,
  .featured-sugar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .header-inner {
    flex-wrap: nowrap;
    padding-block: 0;
  }

  .brand {
    flex: 0 1 auto;
  }

  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    width: auto;
    max-height: none;
    overflow: visible;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
  }

  .primary-nav a {
    padding: 0.55rem 0.85rem;
  }

  .hero-grid,
  .split-layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  }

  .landing-hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: center;
  }

  .hero-grid {
    align-items: center;
    padding: 6rem 0 4.8rem;
  }

  .reverse-on-mobile > :first-child {
    order: 2;
  }

  .reverse-on-mobile > :last-child {
    order: 1;
  }

  .trust-items {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .city-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .profile-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-sugar-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.9fr 0.9fr 1fr;
  }
}

@media (min-width: 1100px) {
  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 699px) {
  .site-header {
    position: static;
  }

  .header-inner {
    row-gap: 0.8rem;
  }

  .brand {
    min-width: 0;
  }

  .brand-text {
    align-items: center;
    text-align: center;
  }

  .brand-text strong {
    font-size: 0.92rem;
  }

  .brand-text small {
    font-size: 0.76rem;
  }

  .hero-copy {
    text-align: center;
  }

  .landing-copy {
    text-align: left;
  }

  .eyebrow {
    margin-inline: auto;
  }

  .landing-copy .eyebrow {
    margin-inline: 0;
  }

  .hero-copy h1 {
    max-width: 11ch;
    margin-inline: auto;
  }

  .hero-text {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-points {
    max-width: 20rem;
    margin-inline: auto;
    text-align: left;
  }

  .section,
  .site-footer {
    padding-block: 3.4rem;
  }

  .cta-box {
    padding: 1.75rem 1.25rem;
  }

  .cta-box h2 {
    max-width: 11ch;
  }

  .cta-box p {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .cta-box .btn {
    width: 100%;
    min-width: 0;
  }

  .footer-grid {
    gap: 2rem;
  }
}

/* Homepage-only premium refresh */
.home-page {
  background:
    radial-gradient(circle at top left, rgba(201, 154, 69, 0.08), transparent 28%),
    linear-gradient(180deg, #f8f1e6 0%, #f3eadc 100%);
  color: #2a1d1d;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

.home-page .site-header {
  background: rgba(12, 10, 10, 0.9);
  border-bottom-color: rgba(201, 154, 69, 0.16);
  box-shadow: 0 16px 40px rgba(8, 6, 6, 0.24);
}

.home-page .header-inner {
  min-height: 92px;
  padding-block: 1rem;
}

.home-page .brand {
  gap: 1rem;
}

.home-page .brand-mark {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #f4d8a2 0%, #c99a45 45%, #8e6530 100%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.55), 0 12px 22px rgba(128, 92, 38, 0.2);
}

.home-page .brand-text strong {
  font-size: 1.02rem;
}

.home-page .brand-text small,
.home-page .primary-nav a {
  color: #f0dfbf;
}

.home-page .brand-text strong {
  color: #fff8ea;
}

.home-page .nav-toggle {
  border-color: rgba(201, 154, 69, 0.18);
  background: rgba(35, 26, 22, 0.82);
  box-shadow: 0 10px 24px rgba(5, 4, 4, 0.2);
}

.home-page .nav-toggle span {
  background: #f3e2bf;
}

.home-page .nav-cta,
.home-page .home-cta-button {
  background: linear-gradient(135deg, #dfbf7f 0%, #c99a45 48%, #a9772d 100%);
  color: #23140d !important;
  border: 1px solid rgba(104, 71, 27, 0.15);
  box-shadow: 0 14px 28px rgba(166, 121, 45, 0.28);
}

.home-page .nav-cta:hover,
.home-page .nav-cta:focus-visible,
.home-page .home-cta-button:hover,
.home-page .home-cta-button:focus-visible {
  background: linear-gradient(135deg, #ebcf96 0%, #cf9f4f 48%, #af7d33 100%);
}

.home-page .home-container {
  width: min(1120px, calc(100% - 2rem));
}

.home-page .home-section {
  padding: 80px 0;
}

.home-page .home-hero {
  position: relative;
  background:
    linear-gradient(115deg, rgba(9, 10, 15, 0.86), rgba(18, 20, 31, 0.72) 48%, rgba(50, 33, 28, 0.46)),
    url("images/city2.jpg") center/cover no-repeat;
}

.home-page .hero-overlay {
  background:
    linear-gradient(180deg, rgba(5, 6, 10, 0.1), rgba(5, 6, 10, 0.22)),
    radial-gradient(circle at top left, rgba(253, 212, 142, 0.14), transparent 30%),
    radial-gradient(circle at right center, rgba(255, 255, 255, 0.05), transparent 24%);
}

.home-page .hero-grid {
  gap: 2.5rem;
  align-items: center;
  padding: 5.75rem 0 4rem;
}

.home-page .home-hero-content {
  max-width: 680px;
}

.home-page .eyebrow,
.home-page .section-label {
  padding: 0.48rem 0.95rem;
  border-radius: 8px;
  background: #d6b86a;
  color: #1a1510;
  box-shadow: 0 10px 24px rgba(24, 17, 10, 0.14);
  letter-spacing: 0.14em;
}

.home-page .hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(3.625rem, 7vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-family: Georgia, "Times New Roman", serif;
  text-wrap: balance;
}

.home-page .hero-text,
.home-page p {
  line-height: 1.7;
}

.home-page .hero-text {
  max-width: 620px;
  font-size: 1.06rem;
  color: rgba(249, 242, 232, 0.92);
}

.home-page .btn {
  min-height: 54px;
  padding-inline: 1.5rem;
}

.home-page .home-hero-card,
.home-page .home-image-card,
.home-page .home-card,
.home-page .home-city-card,
.home-page .home-blog-card,
.home-page .home-final-cta,
.home-page .home-faq .faq-list details {
  border-radius: 22px;
  box-shadow: 0 22px 50px rgba(49, 33, 28, 0.1);
}

.home-page .home-hero-card {
  background: linear-gradient(180deg, rgba(18, 20, 31, 0.56), rgba(13, 14, 24, 0.7));
  border: 1px solid rgba(214, 184, 106, 0.16);
  overflow: hidden;
}

.home-page .home-hero-card img {
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
}

.home-page .hero-card-content {
  padding: 1.3rem 1.35rem 1.45rem;
  background: linear-gradient(180deg, rgba(9, 10, 15, 0.2), rgba(9, 10, 15, 0.62));
}

.home-page .hero-card-content strong {
  font-size: 1.15rem;
}

.home-page .hero-card-content p {
  color: rgba(249, 242, 232, 0.85);
}

.home-page .home-trust-badges {
  background: linear-gradient(180deg, #111111, #090909);
  border-block-color: rgba(214, 184, 106, 0.09);
}

.home-page .trust-items {
  gap: 1rem;
  padding: 1.1rem 0;
}

.home-page .trust-items span {
  padding: 0.85rem 1.1rem;
  background: rgba(214, 184, 106, 0.08);
  border-color: rgba(214, 184, 106, 0.14);
  color: #f6e7c0;
}

.home-page .section-alt {
  background: linear-gradient(180deg, rgba(201, 154, 69, 0.1), rgba(255, 255, 255, 0));
}

.home-page .home-section-dark {
  background:
    radial-gradient(circle at top right, rgba(201, 154, 69, 0.1), transparent 24%),
    linear-gradient(180deg, #141414 0%, #090909 100%);
}

.home-page .section h2 {
  max-width: 20ch;
  font-size: clamp(2.375rem, 4.5vw, 2.875rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-family: Georgia, "Times New Roman", serif;
  text-wrap: balance;
}

.home-page .section-intro,
.home-page .two-column-text p,
.home-page .split-layout p,
.home-page .blog-copy p,
.home-page .testimonial-copy p,
.home-page .faq-list p {
  font-size: 1.02rem;
}

.home-page .split-layout,
.home-page .two-column-text,
.home-page .home-card-grid,
.home-page .feature-grid,
.home-page .home-city-grid,
.home-page .profile-grid,
.home-page .steps-grid,
.home-page .home-blog-grid {
  gap: 1.5rem;
}

.home-page .home-card,
.home-page .info-card,
.home-page .step-card,
.home-page .testimonial-card {
  border-color: rgba(109, 81, 63, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #fffaf4 100%);
}

.home-page .intro-section .split-layout > div:first-child,
.home-page .section-alt .split-layout > div:first-child {
  padding: clamp(1.8rem, 3vw, 2.5rem);
  border-radius: 24px;
  box-shadow: 0 24px 54px rgba(45, 31, 21, 0.12);
}

.home-page .intro-section .split-layout > div:first-child {
  background: linear-gradient(180deg, #131313 0%, #090909 100%);
  color: #f7efde;
}

.home-page .intro-section .split-layout > div:first-child p,
.home-page .intro-section .split-layout > div:first-child a {
  color: rgba(247, 239, 222, 0.88);
}

.home-page .intro-section .split-layout > div:first-child h2 {
  color: #fff6e5;
}

.home-page .section-alt .split-layout > div:first-child {
  background: linear-gradient(180deg, #f6ebd7 0%, #eed8ae 100%);
}

.home-page .info-card,
.home-page .step-card,
.home-page .testimonial-card,
.home-page .feature-card,
.home-page .blog-card {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.home-page .info-card:hover,
.home-page .step-card:hover,
.home-page .testimonial-card:hover,
.home-page .feature-card:hover,
.home-page .home-city-card:hover,
.home-page .home-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 58px rgba(49, 33, 28, 0.14);
}

.home-page .media-card,
.home-page .profile-card,
.home-page .blog-card,
.home-page .city-card {
  overflow: hidden;
}

.home-page .home-image-card img,
.home-page .city-card img,
.home-page .blog-card img,
.home-page .profile-card img {
  width: 100%;
  object-fit: cover;
}

.home-page .home-image-card img {
  min-height: 100%;
}

.home-page .media-card img {
  aspect-ratio: 16 / 12;
}

.home-page .feature-card {
  padding: 1.6rem;
  background: linear-gradient(180deg, #050505 0%, #0d0d0d 100%);
  border-color: rgba(214, 184, 106, 0.14);
  box-shadow: inset 0 -12px 22px rgba(255, 255, 255, 0.03);
}

.home-page .feature-icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: #d6b86a;
  color: #17120d;
}

.home-page .feature-icon svg {
  width: 24px;
  fill: currentColor;
}

.home-page .home-city-grid .city-card img {
  height: 220px;
  aspect-ratio: auto;
}

.home-page .home-city-card {
  background: linear-gradient(180deg, #0d0d0d 0%, #111111 100%);
  border-color: rgba(214, 184, 106, 0.12);
}

.home-page .home-city-card h3 {
  color: #efd596;
}

.home-page .home-city-card p {
  color: rgba(250, 243, 230, 0.86);
}

.home-page .city-card-body {
  padding: 1.45rem;
}

.home-page .city-card h3 {
  font-size: 1.3rem;
}

.home-page .blog-card {
  grid-template-rows: auto 1fr;
  background: linear-gradient(180deg, #050505 0%, #0c0c0c 100%);
  border-color: rgba(214, 184, 106, 0.12);
}

.home-page .home-blog-card img {
  height: 220px;
  aspect-ratio: auto;
}

.home-page .blog-copy {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  height: 100%;
  padding: 1.4rem 1.35rem 1.5rem;
}

.home-page .blog-copy h3 {
  font-size: 1.25rem;
  margin-bottom: 0;
  color: #e4be67;
}

.home-page .blog-copy p {
  color: rgba(248, 239, 223, 0.82);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.home-page .blog-copy .btn {
  margin-top: auto;
  align-self: flex-start;
  background: #d6b86a;
  border-color: #d6b86a;
  color: #14100c;
}

.home-page .profile-card img {
  height: 260px;
}

.home-page .profile-card {
  background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
  border-color: rgba(214, 184, 106, 0.12);
}

.home-page .profile-copy {
  padding: 1.35rem;
}

.home-page .profile-copy h3 {
  color: #edcf8c;
}

.home-page .profile-copy p {
  color: rgba(247, 239, 222, 0.84);
}

.home-page .profile-copy span {
  color: #d6b86a;
}

.home-page .testimonial-card {
  padding: 0;
  background: linear-gradient(180deg, #101010 0%, #060606 100%);
  border-color: rgba(214, 184, 106, 0.12);
}

.home-page .testimonial-copy {
  padding: 1.55rem;
}

.home-page .testimonial-copy h3 {
  margin: 0 0 0.75rem;
  font-size: 1.18rem;
  color: #e7c878;
}

.home-page .testimonial-copy p {
  color: rgba(248, 240, 225, 0.84);
}

.home-page .home-faq .faq-list {
  gap: 1rem;
}

.home-page .home-faq .faq-list details {
  padding: 1.15rem 1.25rem;
  border-color: rgba(109, 81, 63, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #fffaf4 100%);
}

.home-page .home-faq .faq-list summary {
  min-height: 32px;
  display: flex;
  align-items: center;
  padding-right: 2.4rem;
}

.home-page .home-faq .faq-list summary::after {
  width: 30px;
  height: 30px;
  top: 50%;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(201, 154, 69, 0.12);
  transform: translateY(-50%);
  font-size: 1.2rem;
}

.home-page .home-final-cta {
  max-width: 1120px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.42), transparent 34%),
    linear-gradient(135deg, #d9bf75 0%, #d3b15b 52%, #c9a14b 100%);
  border: 0;
  box-shadow: 0 28px 64px rgba(28, 18, 8, 0.18);
}

.home-page .home-final-cta h2 {
  max-width: 14ch;
  color: #120f0b;
}

.home-page .home-final-cta p:first-of-type {
  max-width: 760px;
  font-size: 1.08rem;
  font-weight: 600;
  color: #2c2218;
}

.home-page .home-final-cta p:last-of-type {
  max-width: 760px;
  color: #3b2e21;
}

.home-page .home-final-cta .home-cta-button {
  background: #090909;
  color: #fff4de !important;
  border-color: #090909;
  box-shadow: 0 14px 28px rgba(9, 9, 9, 0.26);
}

.home-page .site-footer {
  background: linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
  color: rgba(249, 240, 220, 0.84);
  border-top: 1px solid rgba(214, 184, 106, 0.1);
}

.home-page .site-footer .footer-title {
  color: #d8b764;
  font-size: 1.3rem;
}

.home-page .site-footer p,
.home-page .site-footer li,
.home-page .site-footer a {
  color: rgba(249, 240, 220, 0.84);
}

.home-page .site-footer .footer-links a:hover,
.home-page .site-footer .footer-links a:focus-visible,
.home-page .site-footer a:hover,
.home-page .site-footer a:focus-visible {
  color: #f1cd78;
}

.home-page .site-footer .btn-primary {
  background: #d6b86a;
  color: #14100c;
}

.home-page .footer-bottom {
  border-top-color: rgba(214, 184, 106, 0.12);
}

.home-page .section.section-alt.home-section,
.home-page .section.home-section {
  position: relative;
}

.home-page .section.home-section::after,
.home-page .section.section-alt.home-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 120px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(201, 154, 69, 0.45), transparent);
  opacity: 0.55;
}

.home-page .cta-section.home-section::after,
.home-page .hero-section.home-hero::after,
.home-page .trust-bar.home-trust-badges::after {
  display: none;
}

@media (min-width: 900px) {
  .home-page .hero-copy h1,
  .home-page .section h2,
  .home-page .cta-box h2 {
    margin-inline: auto;
    text-align: center;
  }

  .home-page .hero-copy {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

  .home-page .hero-text,
  .home-page .section-intro,
  .home-page .home-final-cta p {
    margin-inline: auto;
  }

  .home-page .hero-actions,
  .home-page .section-action {
    justify-content: center;
  }

  .home-page .section > .home-container > .section-label,
  .home-page .section > .home-container > h2,
  .home-page .section > .home-container > .section-intro,
  .home-page .section > .home-container.narrow > .section-label,
  .home-page .section > .home-container.narrow > h2 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .home-page .home-final-cta h2 {
    max-width: 18ch;
  }

  .home-page .primary-nav {
    gap: 0.3rem;
  }

  .home-page .primary-nav a {
    padding: 0.7rem 0.95rem;
  }

  .home-page .hero-grid,
  .home-page .split-layout {
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  }

  .home-page .intro-section .split-layout,
  .home-page .section-alt.home-section .split-layout {
    align-items: stretch;
  }

  .home-page .intro-section .split-layout > div:first-child,
  .home-page .section-alt.home-section .split-layout > div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .home-page .two-column-text {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .home-blog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 899px) {
  .home-page .primary-nav.is-open {
    margin-top: 0.45rem;
    padding: 0.9rem;
    background: rgba(14, 12, 12, 0.98);
    border-color: rgba(214, 184, 106, 0.16);
  }

  .home-page .hero-grid {
    padding-top: 4.75rem;
  }

  .home-page .home-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 699px) {
  .home-page .header-inner {
    min-height: 84px;
    padding-block: 0.85rem;
  }

  .home-page .brand {
    justify-content: center;
    padding-right: 0;
  }

  .home-page .site-header {
    background: rgba(12, 10, 10, 0.96);
  }

  .home-page .home-section {
    padding: 48px 0;
  }

  .home-page .hero-grid {
    gap: 1.4rem;
    padding: 3.4rem 0 2.4rem;
  }

  .home-page .hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(2.4rem, 10vw, 2.75rem);
  }

  .home-page .hero-text,
  .home-page .section-intro,
  .home-page .split-layout p,
  .home-page .two-column-text p,
  .home-page .blog-copy p,
  .home-page .testimonial-copy p,
  .home-page .faq-list p {
    font-size: 0.98rem;
  }

  .home-page .home-blog-grid {
    grid-template-columns: 1fr;
  }

  .home-page .intro-section .split-layout > div:first-child,
  .home-page .section-alt .split-layout > div:first-child {
    padding: 1.35rem;
  }

  .home-page .home-blog-card img,
  .home-page .home-city-grid .city-card img,
  .home-page .profile-card img {
    height: 220px;
  }

  .home-page .hero-actions .btn,
  .home-page .section-action .btn {
    width: 100%;
  }

  .home-page .home-faq .faq-list details {
    padding: 1rem 1rem 1.05rem;
  }
}

/* Other premium pages */
.site-landing-page,
.article-page,
.blog-page {
  background:
    radial-gradient(circle at top left, rgba(201, 154, 69, 0.08), transparent 24%),
    linear-gradient(180deg, #f7efe2 0%, #f2e6d6 100%);
}

.site-landing-page .site-header,
.article-page .site-header,
.blog-page .site-header {
  background: rgba(10, 9, 9, 0.92);
  border-bottom: 1px solid rgba(201, 154, 69, 0.16);
  box-shadow: 0 16px 40px rgba(8, 6, 6, 0.22);
}

.site-landing-page .brand-text strong,
.article-page .brand-text strong,
.blog-page .brand-text strong {
  color: #fff8ea;
}

.site-landing-page .brand-text small,
.site-landing-page .primary-nav a,
.article-page .brand-text small,
.article-page .primary-nav a,
.blog-page .brand-text small,
.blog-page .primary-nav a {
  color: #f0dfbf;
}

.site-landing-page .brand-mark,
.article-page .brand-mark,
.blog-page .brand-mark {
  background: linear-gradient(135deg, #f4d8a2 0%, #c99a45 45%, #8e6530 100%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.55), 0 12px 22px rgba(128, 92, 38, 0.2);
}

.site-landing-page .nav-toggle,
.article-page .nav-toggle,
.blog-page .nav-toggle {
  border-color: rgba(201, 154, 69, 0.18);
  background: rgba(35, 26, 22, 0.82);
}

.site-landing-page .nav-toggle span,
.article-page .nav-toggle span,
.blog-page .nav-toggle span {
  background: #f3e2bf;
}

.site-landing-page .nav-cta,
.article-page .nav-cta,
.blog-page .nav-cta {
  background: linear-gradient(135deg, #dfbf7f 0%, #c99a45 48%, #a9772d 100%);
  color: #23140d !important;
  box-shadow: 0 14px 28px rgba(166, 121, 45, 0.28);
}

.site-landing-page .hero-section,
.article-page .blog-hero,
.blog-page .blog-hero {
  position: relative;
  overflow: hidden;
}

.site-landing-page .landing-hero {
  background:
    linear-gradient(115deg, rgba(8, 10, 16, 0.88), rgba(18, 20, 30, 0.76) 48%, rgba(54, 32, 29, 0.44)),
    url("images/city2.jpg") center/cover no-repeat;
}

.site-landing-page .landing-hero-baby {
  background:
    linear-gradient(115deg, rgba(8, 10, 16, 0.88), rgba(22, 18, 26, 0.76) 48%, rgba(58, 36, 27, 0.42)),
    url("images/city3.jpg") center/cover no-repeat;
}

.site-landing-page .landing-hero-kl {
  background:
    linear-gradient(115deg, rgba(8, 10, 16, 0.9), rgba(17, 19, 29, 0.78) 48%, rgba(58, 36, 28, 0.44)),
    url("images/city2.jpg") center/cover no-repeat;
}

.site-landing-page .landing-hero-about {
  background:
    linear-gradient(115deg, rgba(8, 10, 16, 0.88), rgba(34, 25, 30, 0.72) 48%, rgba(86, 57, 45, 0.46));
}

.site-landing-page .hero-overlay {
  background:
    linear-gradient(180deg, rgba(5, 6, 10, 0.12), rgba(5, 6, 10, 0.24)),
    radial-gradient(circle at top left, rgba(253, 212, 142, 0.12), transparent 30%);
}

.site-landing-page .landing-hero-grid {
  gap: 2.4rem;
  padding: 5.5rem 0 4.3rem;
}

.site-landing-page .landing-copy h1,
.article-page .blog-hero h1,
.blog-page .blog-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.site-landing-page .landing-copy h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 4.4rem);
  line-height: 1.04;
}

.site-landing-page .eyebrow,
.site-landing-page .section-label,
.article-page .blog-kicker,
.blog-page .blog-kicker {
  border-radius: 8px;
  background: #d6b86a;
  color: #15110d;
  box-shadow: 0 10px 24px rgba(24, 17, 10, 0.14);
  letter-spacing: 0.14em;
}

.site-landing-page .landing-copy .hero-text {
  max-width: 64ch;
  color: rgba(249, 242, 232, 0.92);
}

.site-landing-page .btn-primary,
.article-page .btn-primary,
.blog-page .btn-primary,
.site-landing-page .landing-panel,
.article-page .blog-cover,
.blog-page .blog-card,
.blog-page .cta-box {
  box-shadow: 0 22px 50px rgba(30, 20, 14, 0.16);
}

.site-landing-page .btn-primary,
.article-page .btn-primary,
.blog-page .btn-primary {
  background: linear-gradient(135deg, #dfbf7f 0%, #c99a45 48%, #a9772d 100%);
  color: #22160f;
}

.site-landing-page .btn-secondary,
.article-page .btn-secondary,
.blog-page .btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(201, 154, 69, 0.12);
  color: #2a1d1d;
}

.site-landing-page .hero-section .btn-secondary,
.article-page .hero-section .btn-secondary,
.blog-page .hero-section .btn-secondary,
.site-landing-page .landing-copy .btn-secondary {
  color: #2a1d1d;
  border-color: rgba(201, 154, 69, 0.18);
}

.site-landing-page .landing-checks li {
  color: rgba(247, 241, 234, 0.9);
}

.site-landing-page .landing-checks li::before {
  background: #d6b86a;
}

.site-landing-page .landing-panel {
  border: 1px solid rgba(214, 184, 106, 0.14);
  background: linear-gradient(180deg, rgba(18, 20, 31, 0.56), rgba(13, 14, 24, 0.7));
}

.site-landing-page .landing-panel-copy {
  background: linear-gradient(180deg, rgba(8, 10, 16, 0.18), rgba(8, 10, 16, 0.58));
}

.site-landing-page .landing-panel-copy strong {
  color: #fff6e5;
}

.site-landing-page .landing-panel-copy p {
  color: rgba(247, 241, 234, 0.86);
}

.site-landing-page .trust-bar {
  background: linear-gradient(180deg, #111111, #090909);
  border-block-color: rgba(214, 184, 106, 0.09);
}

.site-landing-page .trust-items span {
  background: rgba(214, 184, 106, 0.08);
  border-color: rgba(214, 184, 106, 0.14);
  color: #f6e7c0;
}

.site-landing-page .section-alt,
.article-page .section-alt,
.blog-page .section-alt {
  background: linear-gradient(180deg, rgba(201, 154, 69, 0.1), rgba(255, 255, 255, 0));
}

.site-landing-page .section-dark {
  background:
    radial-gradient(circle at top right, rgba(201, 154, 69, 0.1), transparent 24%),
    linear-gradient(180deg, #141414 0%, #090909 100%);
}

.site-landing-page .section h2,
.article-page .blog-section h2,
.blog-page .section h2,
.about-page .section h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.03em;
}

.site-landing-page .section > .container > .section-label,
.site-landing-page .section > .container > h2,
.site-landing-page .section > .container.narrow > .section-label,
.site-landing-page .section > .container.narrow > h2,
.blog-page .blog-intro .section-label,
.blog-page .blog-intro h2,
.blog-page .blog-featured-links .section-label,
.blog-page .blog-featured-links h2,
.blog-page .blog-cta .section-label,
.blog-page .blog-cta h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.site-landing-page .info-card,
.site-landing-page .landing-box,
.site-landing-page .table-wrap,
.article-page .blog-section,
.article-page .blog-card,
.blog-page .blog-card,
.blog-page .blog-featured-links,
.blog-page .blog-intro .blog-container {
  border-color: rgba(109, 81, 63, 0.12);
  border-radius: 22px;
  box-shadow: 0 22px 50px rgba(30, 20, 14, 0.1);
}

.site-landing-page .split-layout > div:first-child {
  padding: clamp(1.8rem, 3vw, 2.5rem);
  border-radius: 24px;
  box-shadow: 0 24px 54px rgba(45, 31, 21, 0.12);
  background: linear-gradient(180deg, #fffdfa 0%, #f6ebd7 100%);
}

.landing-page-mummy .split-layout > div:first-child,
.about-page .split-layout > div:first-child {
  background: linear-gradient(180deg, #131313 0%, #090909 100%);
  color: #f7efde;
}

.landing-page-mummy .split-layout > div:first-child p,
.landing-page-mummy .split-layout > div:first-child a,
.about-page .split-layout > div:first-child p,
.about-page .split-layout > div:first-child a {
  color: rgba(247, 239, 222, 0.88);
}

.landing-page-mummy .split-layout > div:first-child h2,
.about-page .split-layout > div:first-child h2 {
  color: #fff6e5;
}

.site-landing-page .media-card,
.site-landing-page .city-card,
.site-landing-page .feature-card,
.site-landing-page .featured-sugar-card {
  border-radius: 24px;
  overflow: hidden;
}

.site-landing-page .city-card,
.site-landing-page .featured-sugar-card,
.site-landing-page .section-dark .landing-box,
.site-landing-page .section-dark .feature-card {
  background: linear-gradient(180deg, #090909 0%, #121212 100%);
  border-color: rgba(214, 184, 106, 0.12);
}

.site-landing-page .section-dark .landing-box h3,
.site-landing-page .section-dark .city-card h3,
.site-landing-page .section-dark .feature-card h3,
.site-landing-page .featured-sugar-copy h3 {
  color: #efd596;
}

.site-landing-page .section-dark .landing-box p,
.site-landing-page .section-dark .city-card p,
.site-landing-page .section-dark .feature-card p,
.site-landing-page .featured-sugar-copy p {
  color: rgba(250, 243, 230, 0.86);
}

.site-landing-page .landing-box h3,
.site-landing-page .info-card h3 {
  color: #9a6d2e;
}

.site-landing-page .compare-table th {
  background: #e9d4ac;
  color: #1d1712;
}

.site-landing-page .compare-table td {
  background: #fffaf2;
}

.site-landing-page .compare-table tbody tr:nth-child(even) td {
  background: #f7eedf;
}

.blog-page .blog-hero,
.article-page .blog-hero {
  background:
    linear-gradient(115deg, rgba(8, 10, 16, 0.92), rgba(16, 18, 26, 0.84) 55%, rgba(60, 37, 29, 0.62));
  color: #fff5e4;
}

.blog-page .blog-breadcrumbs,
.article-page .blog-breadcrumbs {
  color: rgba(247, 241, 234, 0.72);
}

.blog-page .blog-breadcrumbs a,
.article-page .blog-breadcrumbs a {
  color: #f1cd78;
}

.blog-page .blog-dek,
.article-page .blog-dek {
  color: rgba(247, 241, 234, 0.88);
}

.blog-page .blog-meta span,
.article-page .blog-meta span {
  background: rgba(214, 184, 106, 0.1);
  border-color: rgba(214, 184, 106, 0.14);
  color: #f2e2be;
}

.article-page .blog-cover,
.blog-page .blog-card,
.blog-page .blog-intro .blog-container,
.blog-page .blog-featured-links,
.blog-page .blog-cta .cta-box {
  background: linear-gradient(180deg, #070707 0%, #111111 100%);
  border-color: rgba(214, 184, 106, 0.12);
}

.article-page .blog-container {
  max-width: 980px;
}

.article-page .blog-section {
  background: linear-gradient(180deg, #fffdfa 0%, #f8efe0 100%);
}

.article-page .blog-section h3,
.blog-page .blog-card-content h3 a,
.blog-page .blog-read-more,
.blog-page .blog-category {
  color: #c89a42;
}

.article-page .blog-image-grid figure,
.article-page .blog-card {
  border-radius: 18px;
}

.article-page .blog-image-grid figure {
  background: linear-gradient(180deg, #111111 0%, #181818 100%);
  border: 1px solid rgba(214, 184, 106, 0.12);
}

.article-page .blog-image-grid figcaption {
  color: rgba(247, 241, 234, 0.76);
}

.article-page .blog-card-grid .blog-card,
.article-page .blog-checklist-card {
  background: linear-gradient(180deg, #090909 0%, #151515 100%);
  border: 1px solid rgba(214, 184, 106, 0.12);
}

.article-page .blog-card-grid .blog-card h3,
.article-page .blog-checklist-card h3,
.article-page .blog-card-grid .blog-card p,
.article-page .blog-checklist-card li {
  color: rgba(248, 239, 223, 0.86);
}

.article-page .table-wrap {
  border-color: rgba(214, 184, 106, 0.12);
}

.article-page .blog-table th {
  background: #ead4aa;
  color: #1d1712;
}

.article-page .blog-table td {
  background: #fffaf2;
}

.article-page .blog-table tbody tr:nth-child(even) td {
  background: #f7eedf;
}

.blog-page .blog-intro .blog-container,
.blog-page .blog-featured-links {
  padding: 2rem 1.5rem;
}

.blog-page .blog-intro h2,
.blog-page .blog-featured-links h2 {
  color: #fff6e5;
}

.blog-page .blog-intro .section-label,
.blog-page .blog-featured-links .section-label {
  color: #15110d;
}

.blog-page .blog-grid {
  gap: 1.4rem;
}

.blog-page .blog-card-image {
  background: #161616;
}

.blog-page .blog-card-content {
  background: linear-gradient(180deg, #070707 0%, #111111 100%);
}

.blog-page .blog-card-content h3 a {
  color: #e1bb64;
}

.blog-page .blog-excerpt,
.blog-page .blog-featured-links p,
.blog-page .blog-intro p {
  color: rgba(248, 239, 223, 0.82);
}

.blog-page .blog-read-more {
  background: #d6b86a;
  border-color: #d6b86a;
  color: #14100c;
}

.blog-page .blog-cta .cta-box {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.42), transparent 34%),
    linear-gradient(135deg, #d9bf75 0%, #d3b15b 52%, #c9a14b 100%);
  border: 0;
}

.blog-page .blog-cta .cta-box h2,
.blog-page .blog-cta .cta-box p {
  color: #20170f;
}

.site-landing-page .site-footer,
.article-page .site-footer,
.blog-page .site-footer {
  background: linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
  color: rgba(249, 240, 220, 0.84);
  border-top: 1px solid rgba(214, 184, 106, 0.1);
}

.site-landing-page .site-footer .footer-title,
.article-page .site-footer .footer-title,
.blog-page .site-footer .footer-title {
  color: #d8b764;
  font-size: 1.3rem;
}

.site-landing-page .site-footer p,
.site-landing-page .site-footer li,
.site-landing-page .site-footer a,
.article-page .site-footer p,
.article-page .site-footer li,
.article-page .site-footer a,
.blog-page .site-footer p,
.blog-page .site-footer li,
.blog-page .site-footer a {
  color: rgba(249, 240, 220, 0.84);
}

.site-landing-page .site-footer .btn-primary,
.article-page .site-footer .btn-primary,
.blog-page .site-footer .btn-primary {
  background: #d6b86a;
  color: #14100c;
}

@media (min-width: 900px) {
  .site-landing-page .landing-hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
    align-items: center;
  }

  .site-landing-page .split-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: stretch;
  }

  .site-landing-page .split-layout > div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 899px) {
  .site-landing-page .primary-nav.is-open,
  .article-page .primary-nav.is-open,
  .blog-page .primary-nav.is-open {
    background: rgba(14, 12, 12, 0.98);
    border-color: rgba(214, 184, 106, 0.16);
  }
}

@media (max-width: 699px) {
  .site-landing-page .landing-copy h1,
  .article-page .blog-hero h1,
  .blog-page .blog-hero h1 {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .site-landing-page .landing-hero-grid {
    padding: 3.6rem 0 2.8rem;
  }

  .site-landing-page .split-layout > div:first-child,
  .blog-page .blog-intro .blog-container,
  .blog-page .blog-featured-links {
    padding: 1.35rem;
  }
}
