:root {
  --bg: #fcf9f3;
  --bg-soft: #f2ece0;
  --surface: rgba(255, 250, 244, 0.9);
  --surface-strong: #fffdf9;
  --card: rgba(255, 251, 246, 0.86);
  --text: #183129;
  --text-soft: #4e625b;
  --line: rgba(24, 49, 41, 0.12);
  --brand: #17372e;
  --brand-2: #8a6a3c;
  --accent: #c9a25c;
  --accent-soft: rgba(201, 162, 92, 0.18);
  --success: #1f8b5a;
  --shadow: 0 20px 60px rgba(23, 55, 46, 0.1);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(201, 162, 92, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(23, 55, 46, 0.14), transparent 30%),
    linear-gradient(180deg, #f8f2e6 0%, #fcfaf6 48%, #f2ece0 100%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

pre {
  margin: 0;
  white-space: pre-wrap;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 1000;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.alt-surface {
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.78), rgba(244, 238, 228, 0.92));
}

.eyebrow {
  margin: 0 0 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--brand-2);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3rem, 8vw, 5.8rem);
}

h2 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #dfb979);
  color: #18251f;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 24px rgba(138, 106, 60, 0.18);
}

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

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(23, 55, 46, 0.16);
  color: var(--brand);
  box-shadow: none;
}

.button-ghost {
  background: transparent;
  border-color: rgba(23, 55, 46, 0.16);
  color: var(--brand);
  box-shadow: none;
}

.button-small {
  min-height: 2.6rem;
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(252, 249, 243, 0.84);
  border-bottom: 1px solid rgba(23, 55, 46, 0.08);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  min-height: 4rem;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #295545);
  color: #f7f2e6;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.brand-copy strong {
  font-size: 0.82rem;
  line-height: 1.05;
}

.brand-copy span {
  font-size: 0.72rem;
  color: var(--text-soft);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}

.nav-toggle span:not(.sr-only) {
  width: 1rem;
  height: 2px;
  background: var(--brand);
  border-radius: 999px;
}

.site-nav {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 1rem;
  right: 1rem;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 252, 247, 0.98);
  box-shadow: var(--shadow);
  max-height: calc(100vh - 7rem);
  overflow: auto;
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  color: var(--brand);
}

.site-nav a.button-small {
  justify-content: center;
}

.site-nav a.is-active {
  background: var(--accent-soft);
}

.nav-more {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-more > summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
  cursor: pointer;
}

.nav-more > summary::-webkit-details-marker {
  display: none;
}

.nav-more > summary::after {
  content: "▾";
  font-size: 0.72em;
  line-height: 1;
  opacity: 0.8;
}

.nav-more[open] > summary {
  background: var(--accent-soft);
}

.nav-more-panel {
  display: none;
  gap: 0.25rem;
}

.nav-more[open] > .nav-more-panel {
  display: flex;
}

.nav-more:not([open]) > .nav-more-panel {
  display: none;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 162, 92, 0.16), transparent 25%),
    radial-gradient(circle at 20% 10%, rgba(23, 55, 46, 0.12), transparent 30%);
  pointer-events: none;
}

.hero-grid,
.page-hero-shell,
.split-layout,
.review-strip,
.booking-layout,
.cta-band-shell,
.footer-shell {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 3rem 0 2rem;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-copy,
.hero-panel,
.highlight-card,
.spotlight-card,
.review-card,
.feature-card,
.contact-card,
.booking-summary,
.booking-form-shell,
.panel-card,
.mini-card,
.map-placeholder {
  border: 1px solid rgba(23, 55, 46, 0.08);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 2rem;
  background:
    linear-gradient(145deg, rgba(255, 251, 245, 0.92), rgba(250, 244, 235, 0.76)),
    rgba(255, 251, 246, 0.72);
}

.hero-text {
  max-width: 42rem;
  font-size: 1.08rem;
}

.button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.button-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.inline-link {
  color: var(--brand);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.hero-actions,
.review-links,
.stack-actions,
.summary-actions,
.cta-band-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-points,
.check-list,
.tag-list,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-points {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.guide-link-grid,
.area-grid {
  display: grid;
  gap: 1rem;
}

.lifestyle-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.lifestyle-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 0.95rem;
  min-height: 100%;
  padding: 0.95rem;
  border: 1px solid rgba(23, 55, 46, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(246, 239, 227, 0.88));
  box-shadow: var(--shadow);
}

.lifestyle-card-media {
  display: block;
  overflow: hidden;
  min-height: 88px;
  border-radius: 18px;
  background: rgba(23, 55, 46, 0.08);
}

.lifestyle-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.lifestyle-card h3 {
  margin-bottom: 0.55rem;
}

.lifestyle-card p {
  margin-bottom: 0;
}

.guide-link-card,
.area-card {
  display: block;
  padding: 1.5rem;
  border: 1px solid rgba(23, 55, 46, 0.08);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow);
}

.guide-link-card h3,
.area-card h3 {
  margin-bottom: 0.75rem;
}

.support-card {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(23, 55, 46, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.support-card p:last-child {
  margin-bottom: 0;
}

.support-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}

.channel-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(23, 55, 46, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-points li,
.check-list li {
  position: relative;
  padding-left: 1.65rem;
  color: var(--text);
  font-weight: 600;
}

.hero-points li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #e7c88d);
  box-shadow: 0 0 0 5px rgba(201, 162, 92, 0.14);
}

.hero-panel {
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(23, 55, 46, 0.95), rgba(33, 78, 63, 0.94));
  color: #fefbf5;
}

.hero-panel p,
.hero-panel .panel-label {
  color: rgba(254, 251, 245, 0.78);
}

.panel-card {
  padding: 1.5rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.panel-label {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.panel-stack {
  display: grid;
  gap: 0.85rem;
}

.mini-card {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.mini-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #f5d89f;
  font-weight: 800;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 2rem;
}

.section-heading-left {
  margin-bottom: 1.4rem;
}

.split-layout,
.booking-layout,
.review-strip,
.cta-band-shell,
.footer-shell {
  display: grid;
  gap: 1.5rem;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.highlight-card,
.booking-form-shell,
.booking-summary,
.map-placeholder {
  padding: 1.6rem;
}

.check-list {
  display: grid;
  gap: 0.9rem;
}

.card-grid,
.feature-grid {
  display: grid;
  gap: 1rem;
}

.spotlight-card,
.review-card,
.feature-card,
.contact-card {
  padding: 1.5rem;
}

.spotlight-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.spotlight-media {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(244, 236, 223, 0.72));
  aspect-ratio: 4 / 3;
}

.spotlight-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-badge {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--brand-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spotlight-area {
  margin: 0.4rem 0 0.9rem;
  color: var(--brand);
  font-weight: 700;
}

.spotlight-subline {
  margin: -0.25rem 0 0.7rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.rating-line {
  margin: 0;
  color: var(--brand);
  font-weight: 800;
}

.price-line {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}

.spotlight-meta {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.2rem 0 1.4rem;
}

.booking-steps {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text);
  font-weight: 600;
}

.booking-steps li + li {
  margin-top: 0.5rem;
}

.tag-list li {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(23, 55, 46, 0.08);
  color: var(--brand);
  font-size: 0.88rem;
  font-weight: 700;
}

.review-strip {
  align-items: center;
}

.hero-inline-image {
  margin: 1rem 0 0;
  max-width: 18rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-inline-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.card-actions {
  margin-top: auto;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(23, 55, 46, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.price-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 1rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid rgba(23, 55, 46, 0.08);
}

.price-table th {
  color: var(--brand);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.fine-print {
  margin-top: 1rem;
  font-size: 0.92rem;
}

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

.faq-item {
  padding: 0;
  border: 1px solid rgba(23, 55, 46, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-item summary {
  padding: 1.2rem 1.3rem;
  font-weight: 800;
  color: var(--brand);
  cursor: pointer;
  list-style: none;
}

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

.faq-item p {
  margin: 0;
  padding: 0 1.3rem 1.3rem;
}

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 20rem;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(23, 55, 46, 0.16), rgba(201, 162, 92, 0.18)),
    rgba(255, 255, 255, 0.5);
}

.map-placeholder span {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--brand);
  font-size: 1.2rem;
  font-weight: 800;
}

.map-embed-shell {
  gap: 1rem;
  align-content: center;
  padding: 1rem;
}

.map-embed-shell p {
  margin-bottom: 0;
}

.map-embed-frame {
  width: 100%;
  min-height: 20rem;
  border: 0;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.65);
}

.cta-band {
  padding-top: 2rem;
}

.cta-band-shell {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--brand), #2e5c4a);
  box-shadow: var(--shadow);
}

.cta-band-shell h2,
.cta-band-shell p {
  color: #fefaf4;
}

.cta-band .button-ghost {
  border-color: rgba(255, 255, 255, 0.26);
  color: #fefaf3;
}

.page-hero {
  padding: 3rem 0 1.5rem;
}

.page-hero-shell {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border: 1px solid rgba(23, 55, 46, 0.08);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 251, 245, 0.92), rgba(250, 244, 235, 0.76)),
    rgba(255, 251, 246, 0.72);
  box-shadow: var(--shadow);
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.compact-card {
  min-height: 100%;
}

.price-tag {
  color: var(--brand);
  font-size: 1.1rem;
}

.booking-form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.booking-form label {
  display: grid;
  gap: 0.55rem;
  color: var(--brand);
  font-weight: 700;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(23, 55, 46, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
}

.booking-form textarea {
  resize: vertical;
}

.full-span {
  grid-column: 1 / -1;
}

.booking-summary {
  display: grid;
  gap: 1rem;
  align-content: start;
  background:
    linear-gradient(180deg, rgba(23, 55, 46, 0.96), rgba(35, 75, 62, 0.94)),
    rgba(23, 55, 46, 0.94);
}

.booking-summary pre,
.booking-summary p,
.booking-summary .panel-label,
.booking-summary code {
  color: #fefbf5;
}

.booking-summary pre {
  min-height: 12rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.summary-actions {
  align-items: center;
}

.site-footer {
  padding: 1.4rem 0 2rem;
}

.footer-shell {
  padding: 1.6rem 0 0;
  border-top: 1px solid rgba(23, 55, 46, 0.12);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1rem;
}

.footer-links a {
  color: var(--brand);
  font-weight: 700;
}

.footer-note {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.floating-contact {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: grid;
  gap: 0.75rem;
}

.floating-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.3rem;
  padding: 0.95rem 1.1rem;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 20px 40px rgba(23, 55, 46, 0.18);
}

.floating-contact-link-whatsapp {
  background: linear-gradient(135deg, var(--success), #46b67f);
  color: #f8fff9;
}

.floating-contact-link-telegram {
  background: linear-gradient(135deg, #2c8fd8, #45b3ea);
  color: #f8fcff;
}

.floating-contact-link span:last-child {
  white-space: nowrap;
}

.reveal {
  animation: fadeUp 0.8s ease both;
}

.reveal-delay {
  animation-delay: 0.18s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 700px) {
  .card-grid,
  .feature-grid,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .review-strip,
  .split-layout,
  .booking-layout,
  .footer-shell {
    grid-template-columns: 1.2fr 0.9fr;
  }
}

@media (min-width: 860px) {
  .section {
    padding: 6rem 0;
  }

  .header-shell {
    min-height: 72px;
  }

  .brand {
    gap: 0.45rem;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-copy strong {
    font-size: 0.8rem;
  }

  .brand-copy span {
    display: none;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 0.18rem;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    max-height: none;
    overflow: visible;
  }

  .site-nav a {
    padding: 0.42rem 0.62rem;
    font-size: 0.76rem;
    white-space: nowrap;
  }

  .nav-more {
    align-items: stretch;
  }

  .nav-more > summary {
    padding: 0.42rem 0.62rem;
    font-size: 0.76rem;
  }

  .nav-more[open] > .nav-more-panel {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    min-width: 12.5rem;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 252, 247, 0.98);
    box-shadow: var(--shadow);
    z-index: 5;
    flex-direction: column;
  }

  .nav-more:not([open]) > .nav-more-panel {
    display: none !important;
  }

  .hero {
    padding: 4rem 0 3rem;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }

  .cta-band-shell,
  .review-strip,
  .page-hero-shell {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }

  .site-nav [data-link-key="whatsapp"] {
    min-height: 2.05rem;
    padding: 0.38rem 0.58rem;
  }
}

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

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

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

@media (max-width: 1130px) and (min-width: 860px) {
  .site-nav [data-link-key="whatsapp"] {
    width: 2.3rem;
    min-width: 2.3rem;
    padding-inline: 0;
    gap: 0;
    font-size: 0;
    overflow: hidden;
  }

  .site-nav [data-link-key="whatsapp"] .button-icon {
    margin: 0;
    width: 1.1rem;
    height: 1.1rem;
  }
}

@media (max-width: 859px) {
  .header-shell {
    min-height: 3.6rem;
  }

  .brand {
    gap: 0.4rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-copy strong {
    font-size: 0.76rem;
  }

  .brand-copy span {
    display: none;
  }

  .site-nav {
    gap: 0.35rem;
  }

  .nav-more {
    width: 100%;
  }

  .nav-more > summary {
    width: 100%;
    justify-content: space-between;
    padding-inline: 0.9rem;
  }

  .nav-more[open] > .nav-more-panel {
    padding-left: 0.3rem;
  }

  .nav-more:not([open]) > .nav-more-panel {
    display: none;
  }

  .site-nav [data-link-key="whatsapp"] {
    justify-content: center;
  }
}
