
/* ===== Variables ===== */
:root {
  --green-dark: #1a4d1a;
  --green-darker: #083119;
  --green-heading: #385C3A;
  --gold: #B79C4F;
  --gold-mid: #c4a95a;
  --gold-light: #f0e6c8;
  --gold-dark: #a68e46;
  --gold-darker: #9a7b2d;
  --gold-hover-light: #e8dbb8;
  --text-dark: #1a1a1a;
  --text-body: #4A4A4A;
  --marble-bg: #f8f6f3;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Open Sans', system-ui, sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--text-body);
  background: var(--marble-bg);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ===== Marble background (sections) ===== */
.section {
  background: var(--marble-bg);
  background-image: url('images/white-marble-bg.jpeg');
  background-size: cover;
  background-position: center;
  padding: 4rem 1.5rem;
  border-top: 4px solid var(--gold);
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== Navigation ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  box-sizing: border-box;
  padding-left: clamp(16px, 4vw, 24px);
  padding-right: clamp(16px, 4vw, 24px);
  background: url('images/white-stone.png') center / cover no-repeat;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.site-header::-webkit-scrollbar {
  height: 6px;
}
.site-header::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.05);
}
.site-header::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, 0.4);
  border-radius: 3px;
}
.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0;
  padding: 12px 0 12px clamp(64px, 14vw, 140px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: nowrap;
  box-sizing: border-box;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 4px;
}
.nav-logo img {
  height: 96px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
/* Links + language toggle: left-aligned, side by side */
.nav-center {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-width: 0;
  padding: 0 4px;
  margin: 0;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  flex-shrink: 0;
  min-width: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li {
  flex-shrink: 0;
}
.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-dark);
  letter-spacing: 0.3px;
  white-space: nowrap;
  padding: 4px 2px;
  display: inline-block;
}
.nav-links a:hover { color: var(--gold-dark); }

/* Language toggle (English | Spanish) */
.nav-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 6px 10px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--gold);
  border-radius: 8px;
  font-size: 0.8rem;
  font-family: var(--sans);
  flex-shrink: 0;
  white-space: nowrap;
  margin-left: 4px;
}
.nav-lang-option {
  background: none;
  border: none;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  color: #888;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-lang-option:hover {
  color: var(--text-body);
}
.nav-lang-option.active {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.nav-lang-sep {
  color: rgba(0, 0, 0, 0.25);
  pointer-events: none;
  user-select: none;
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 8px;
}

/* Shared base for nav CTA buttons */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 40px;
  padding: 10px 16px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  white-space: nowrap;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
}

/* Green (phone) CTA */
.nav-cta-btn.nav-cta-phone {
  background: var(--green-dark);
  color: #fff;
  box-shadow: 0 2px 8px rgba(26, 26, 26, 0.2);
}
.nav-cta-btn.nav-cta-phone:hover {
  background: var(--green-darker);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 26, 26, 0.3);
}

/* Gold CTA (nav "Book Consultation" — same as Home Page #B79C4F) */
.nav-cta-btn:not(.nav-cta-phone) {
  background: var(--gold);
  color: #1a1a1a;
  box-shadow: 0 2px 8px rgba(201, 162, 39, 0.35);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.nav-cta-btn:not(.nav-cta-phone):hover {
  background: var(--gold-dark);
  color: #1a1a1a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: max(100vh, 56.25vw);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 0 0 clamp(3rem, 10vw, 6rem);
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 6vw, 4rem) 3rem clamp(1.5rem, 6vw, 4rem);
  text-align: left;
}
.hero-tagline {
  font-family: var(--sans);
  font-size: clamp(0.8rem, 1.8vw, 0.95rem);
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  text-align: left;
  margin: 0 0 0.25em;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 6.75rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  width: max-content;
  max-width: 100%;
  text-align: left;
  /* Metallic gold: multiple stops + larger size for banding */
  background: linear-gradient(
    105deg,
    #6b5510 0%,
    #9a7b2d 12%,
    #d4af37 25%,
    #f5e6b8 38%,
    #c9a84c 50%,
    #e8d5a3 62%,
    #b8963a 75%,
    #8B6914 88%,
    #6b5510 100%
  );
  background-size: 220% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* Subtle depth so letters don't look flat */
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}
/* Service name on its own line with spaced words */
.hero-headline-service {
  display: block;
  white-space: nowrap;
  letter-spacing: 0.2em;
  word-spacing: 0.35em;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  text-transform: uppercase;
  margin-bottom: 0.2em;
  /* Inherit gold gradient from parent */
}
.hero-headline .hero-headline-support,
.hero-headline .hero-headline-location {
  display: block;
  font-size: max(0.45em, clamp(0.9rem, 2.5vw, 1.35rem));
  opacity: 0.92;
  font-weight: 500;
}
.hero-headline .hero-headline-support {
  margin-bottom: 0.25em;
}
.hero-headline .hero-headline-location {
  margin-top: 0.35em;
}
.hero-headline-nowrap { white-space: nowrap; }
.hero-headline-spacer {
  display: block;
  margin-top: 0.5em;
}
.hero-headline-accent {
  font-style: italic;
}
.hero-content-only .hero-headline {
  margin-bottom: 0;
}
/* ===== Hero sub (white marble section below hero) ===== */
.hero-sub {
  padding: 4rem 1.5rem;
}
.hero-sub-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero-sub-headline {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 1rem;
}
.hero-sub-headline .text-green { color: var(--green-heading); }
.hero-sub-headline .text-gold { color: var(--gold); }
.hero-sub-desc {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0 0 2rem;
}
.hero-sub-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.hero-sub-card {
  background: #fff;
  padding: 1.25rem 1.75rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  text-align: center;
  min-width: 140px;
}
.hero-sub-card-value {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.hero-sub-card-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-body);
}
.hero-sub-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.hero-sub-link {
  color: var(--green-heading);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
}
.hero-sub-link:hover { text-decoration: underline; }
.hero-sub-note {
  font-size: 0.85rem;
  color: var(--text-body);
  margin: 0 0 1.5rem;
  opacity: 0.9;
}
.hero-sub-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.5), transparent);
  max-width: 560px;
  margin: 0 auto 1.25rem;
}
.hero-sub-benefits {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  color: var(--text-body);
  font-size: clamp(0.75rem, 1.1vw, 0.9rem);
}
.hero-sub-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0 clamp(0.75rem, 1.5vw, 1.25rem);
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}
.hero-sub-benefits li:first-child {
  padding-left: 0;
}
.hero-sub-benefits li:last-child {
  border-right: none;
  padding-right: 0;
}
.stars { color: #c9a84c; }
.icon-capsule, .icon-check, .icon-box, .icon-suite, .icon-board, .icon-shield-gold, .icon-pin {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.icon-check {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23a8d5a2'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}
.icon-capsule {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23e57373' d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z'/%3E%3Cpath fill='%23ffd54f' d='M12 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6z'/%3E%3C/svg%3E");
}
.icon-suite {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c9a84c'%3E%3Cpath d='M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z'/%3E%3C/svg%3E");
}
.icon-box {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238d6e63'%3E%3Cpath d='M20 8H4V6h16v2zm-2 6H6v-2h12v2zm4-8H2v16h20V6z'/%3E%3C/svg%3E");
}
.icon-board {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c9a84c'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z'/%3E%3C/svg%3E");
}
.icon-shield-gold {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23c9a84c' d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath fill='%23f5e6c8' d='M12 5.08L6 7.5v4.5c0 3.8 2.5 7.2 6 8.5 3.5-1.3 6-4.7 6-8.5V7.5l-6-2.42z'/%3E%3C/svg%3E");
}
.icon-pin {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c0392b'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

/* ===== Gold CTA button (same as Home Page #B79C4F) ===== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  min-height: 44px;
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #1a1a1a;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: var(--gold);
  box-shadow: 0 2px 8px rgba(201, 162, 39, 0.35);
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4);
}

/* Optional: text-only gold link (no background) */
.btn-gold.btn-link {
  background: transparent;
  box-shadow: none;
  color: var(--gold);
}
.btn-gold.btn-link:hover {
  color: #9a7b2d;
  text-decoration: underline;
  transform: none;
}

/* Optional: full-width submit button */
.btn-gold.btn-submit {
  width: 100%;
  margin-top: 0.5rem;
}

/* ===== Section typography ===== */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-body);
  margin: 0 0 0.5rem;
  text-align: center;
}
.section-headline {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--green-heading);
  margin: 0 0 1rem;
  text-align: center;
  line-height: 1.25;
}
.text-gold { color: var(--gold); }
.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  color: var(--text-body);
  font-size: 1rem;
}

/* ===== The Problem ===== */
.section-headline-problem { max-width: 720px; margin-left: auto; margin-right: auto; }
.problem-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.problem-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}
.problem-card-icon {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.icon-sandal { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235dade2'%3E%3Cpath d='M8 22h2v-2H8v2zm4 0h2v-2h-2v2zm-8-4h2v-4H4v4zm4 4h2v-4H8v4zm0-6h2v-4h-2v4zm4 2h2v-4h-2v4zm4-6h2V8h-2v6zm0-4V4h-2v4h2z'/%3E%3C/svg%3E"); }
.icon-leg-ache { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f1c40f'%3E%3Cpath d='M13 3v10h8l-1 2H4v-4h6l1-2H3V3h10z'/%3E%3C/svg%3E"); }
.icon-trend { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e74c3c'%3E%3Cpath d='M16 6l2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6h-6z'/%3E%3C/svg%3E"); }
.icon-money { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c9a84c'%3E%3Cpath d='M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z'/%3E%3C/svg%3E"); }
.problem-card-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-heading);
  margin: 0 0 0.5rem;
}
.problem-card-body {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .problem-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .problem-cards { grid-template-columns: 1fr; }
}

/* ===== How It Works ===== */
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
  margin-top: 2rem;
}
.how-connector {
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-mid), var(--gold));
  z-index: 0;
}
.how-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 0.5rem;
}
.how-step-num {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background: var(--gold-dark);
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.3);
}
.how-step-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-heading);
  margin: 0 0 0.5rem;
}
.how-step-body {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0 0 0.75rem;
  line-height: 1.55;
}
.how-step-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  color: var(--gold-darker);
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.1);
}
@media (max-width: 900px) {
  .how-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .how-connector { display: none; }
}
@media (max-width: 560px) {
  .how-steps { grid-template-columns: 1fr; }
}

/* ===== What Changes ===== */
.changes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.changes-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}
.changes-card-icon {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.icon-swimsuit { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231abc9c'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z'/%3E%3C/svg%3E"); }
.icon-lightning { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f1c40f'%3E%3Cpath d='M7 2v11h3v9l7-12h-4l4-8z'/%3E%3C/svg%3E"); }
.icon-chest { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c9a84c'%3E%3Cpath d='M20 6H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 12H4V8h16v10z'/%3E%3C/svg%3E"); }
.icon-calendar { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e74c3c'%3E%3Cpath d='M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM9 10H7v2h2v-2zm4 0h-2v2h2v-2zm4 0h-2v2h2v-2z'/%3E%3C/svg%3E"); }
.icon-blueprint { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236c7bd8'%3E%3Cpath d='M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-5 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z'/%3E%3C/svg%3E"); }
.icon-shield-risk { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23c9a84c' d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath fill='%23e74c3c' d='M12 12l4 4h-3v4h-2v-4H8l4-4z'/%3E%3C/svg%3E"); }
.changes-card-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-heading);
  margin: 0 0 0.5rem;
}
.changes-card-body {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.55;
}
.changes-card-quote {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-body);
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 0.75rem;
}
@media (max-width: 900px) {
  .changes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .changes-grid { grid-template-columns: 1fr; }
}

/* ===== Journey / Timeline ===== */
.section-journey .section-inner { max-width: 720px; }
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
}
.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-marker {
  position: absolute;
  left: -2rem;
  top: 0.4rem;
  width: 14px;
  height: 14px;
  margin-left: -4px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px #fff;
}
.timeline-content { margin-left: 0; }
.timeline-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.25rem;
}
.timeline-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-heading);
  margin: 0 0 0.5rem;
}
.timeline-body {
  font-size: 0.95rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.65;
}

/* ===== Four Reasons ===== */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
  margin-top: 1rem;
}
.reason-block {
  position: relative;
}
.reason-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 1rem;
  max-width: 80%;
}
.reason-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.reason-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-heading);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}
.reason-body {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .reasons-grid { grid-template-columns: 1fr; }
}

/* ===== The Science (4 cards) ===== */
.science-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.science-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}
.science-card-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-heading);
  margin: 0 0 0.75rem;
}
.science-card-body {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
}
.science-card-stat {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-body);
}
.science-card-stat-num {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-right: 0.35rem;
}

@media (max-width: 700px) {
  .science-cards { grid-template-columns: 1fr; }
}

/* ===== Our Promise ===== */
.section-promise {
  background: linear-gradient(180deg, var(--marble-bg) 0%, rgba(79, 46, 69, 0.08) 100%);
}
.section-promise-inner { max-width: 640px; margin: 0 auto; }
.section-label-promise { color: var(--gold); }
.promise-card {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  text-align: center;
}
.promise-icon {
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.promise-headline {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-heading);
  margin: 0 0 1rem;
}
.promise-body {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ===== Real Stories ===== */
.section-stories-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

/* Shine effect frame for REAL STORIES (user-supplied code) */
.testimonials-headline-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px 16px;
  background: transparent;
  border: 10px solid #c9a84c;
  border-radius: 0;
  width: max-content;
  max-width: 100%;
  margin-left: 0;
  margin-right: auto;
  box-shadow:
    inset 0 3px 8px rgba(255, 255, 255, 0.45),
    inset 0 -2px 6px rgba(0, 0, 0, 0.1),
    0 0 28px rgba(201, 168, 76, 0.45),
    0 6px 24px rgba(143, 111, 34, 0.28);
}
.testimonials-headline-frame::before {
  content: '';
  position: absolute;
  inset: -10px;
  padding: 10px;
  background: linear-gradient(165deg, #e8d5a3 0%, #d4af37 20%, #f5e6b8 50%, #c9a84c 80%, #9a7b2d 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  pointer-events: none;
}
.testimonials-headline-frame::after {
  content: '';
  position: absolute;
  inset: -10px;
  padding: 10px;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.8) 40%,
    rgba(255, 248, 220, 1) 50%,
    rgba(255, 255, 255, 0.8) 60%,
    transparent 80%
  );
  background-size: 200% 100%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
  animation: frameShimmer 2.5s linear infinite;
}
@keyframes frameShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.testimonials-headline {
  margin: 0;
  text-transform: uppercase;
  font-family: var(--sans);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-heading);
  letter-spacing: 0.02em;
}

.stories-left {
  text-align: left;
}
.stories-desc {
  margin: 1.25rem 0;
  color: var(--text-body);
  font-size: 0.95rem;
}
.stories-left .btn-gold { margin-top: 0.5rem; }

.stories-right { display: flex; flex-direction: column; gap: 1.25rem; }
.testimonial-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.testimonial-stars {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.testimonial-text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}
.testimonial-meta {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0;
}
.testimonial-initial {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid var(--gold);
  border-radius: 50%;
}
.testimonial-meta > div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.testimonial-name {
  display: block;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.testimonial-role,
.testimonial-detail {
  font-size: 0.8rem;
  color: var(--text-body);
}
.testimonial-verified {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: var(--green-heading);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.testimonial-verified .icon-check {
  width: 14px;
  height: 14px;
}

@media (max-width: 800px) {
  .section-stories-inner { grid-template-columns: 1fr; }
  .stories-left { margin-bottom: 0.5rem; text-align: center; }
  .testimonials-headline-frame { margin-left: auto; }
}

/* ===== FAQ ===== */
.section-faq .section-inner { max-width: 680px; }
.faq-list { margin-top: 1.5rem; }
.faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border-left: 4px solid var(--gold);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(201, 168, 76, 0.08); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.3s;
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding: 0 1.25rem 1rem;
}
.faq-answer p {
  margin: 0;
  padding-top: 0.25rem;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ===== Consultation ===== */
.consultation-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.consultation-book-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin: 0 0 0.25rem;
  text-align: left;
}
.consultation-book-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-top: 0.25rem;
}
.consultation-headline {
  margin: 0 0 0.5rem;
  text-align: left;
}
.consultation-sub {
  font-size: 1.1rem;
  color: var(--green-heading);
  font-weight: 600;
  text-align: left;
  margin: 0 0 0.75rem;
}
.consultation-desc {
  text-align: left;
  margin: 0 0 1.5rem;
  color: var(--text-body);
  font-size: 0.95rem;
}
.contact-item,
.contact-block {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-item strong,
.contact-block strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--text-body);
  margin-bottom: 0.25rem;
}
.contact-phone {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
}
.contact-phone:hover { color: var(--green-darker); }
.contact-item span,
.contact-block span { color: var(--green-heading); font-size: 0.95rem; }
.contact-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}
.contact-icon-phone { background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 013.07-8.67A2 2 0 0119.4 2h3a2 2 0 012 2.18 19.79 19.79 0 01-3.07 8.67'/%3E%3C/svg%3E") center/14px no-repeat; }
.contact-icon-pin { background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0118 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center/14px no-repeat; }
.contact-icon-clock { background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E") center/14px no-repeat; }
.contact-icon-calendar { background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E") center/14px no-repeat; }

.consultation-benefits {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}
.consultation-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-body);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}
.consultation-how-fast {
  background: rgba(255,255,255,0.7);
  border-left: 4px solid var(--gold);
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.25rem;
}
.consultation-how-fast h4 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--text-dark);
}
.consultation-how-fast p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-body);
}
.consultation-disclaimer {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--text-body);
  text-align: center;
}

.consultation-form-wrap {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.form-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-heading);
  margin: 0 0 0.25rem;
}
.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0 0 1.25rem;
}
.consultation-form .form-row {
  margin-bottom: 1rem;
}
.form-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-row-two .form-row { margin-bottom: 0; }
@media (max-width: 500px) {
  .form-row-two { grid-template-columns: 1fr; }
}
.consultation-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-heading);
  margin-bottom: 0.35rem;
}
.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 1rem;
  font-family: var(--sans);
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fafafa;
}
.consultation-form select {
  cursor: pointer;
  appearance: auto;
}
.consultation-form textarea {
  resize: vertical;
  min-height: 80px;
}
.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.btn-dark {
  width: 100%;
  margin-top: 0.5rem;
  padding: 12px 24px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  background: var(--green-darker);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-dark:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

@media (max-width: 760px) {
  .consultation-two-col { grid-template-columns: 1fr; }
}

/* ===== Related Services (marble layout) ===== */
.related-services-section {
  background: #f8f6f3;
  background-image: url('images/white-stone.png');
  background-size: cover;
  background-position: center;
  padding: 70px 40px;
}
.related-services-section .related-services-subtitle {
  font-family: var(--serif);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: #4a4a4a;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 10px;
}
.related-services-section .related-services-headline {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #1a4d1a;
  text-align: center;
  margin: 0 0 36px;
  border: none;
  background: none;
}
.related-services-section .related-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.related-services-section .related-services-card {
  text-decoration: none;
  display: block;
  background: #fff;
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-top: 2px solid var(--gold);
  padding: 28px 24px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: border-color 0.3s, transform 0.3s;
}
.related-services-section .related-services-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-3px);
}
.related-services-section .related-services-card h3 {
  font-family: var(--serif);
  color: var(--green-dark);
  font-size: 1.05rem;
  margin: 0 0 8px;
}
.related-services-section .related-services-card p {
  color: var(--text-body);
  font-size: 0.85rem;
  margin: 0 0 14px;
  line-height: 1.6;
}
.related-services-section .related-services-card .related-services-cta {
  color: var(--gold-dark);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}
.related-services-section .related-services-card:hover .related-services-cta {
  color: var(--gold-darker);
}
@media (max-width: 600px) {
  .related-services-section { padding: 50px 20px; }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--marble-bg);
  background-image: url('images/white-marble-bg.jpeg');
  background-size: cover;
  padding: 2rem 1.5rem 1.5rem;
  border-top: 4px solid var(--gold);
}
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.footer-copy {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0 0 0.5rem;
}
.footer-phone {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}
.footer-phone:hover { color: var(--gold-dark); }
.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--text-body);
  opacity: 0.9;
  margin: 0 auto 0.35rem;
  max-width: 640px;
}
.footer-seo {
  font-size: 0.8rem;
  color: var(--text-body);
  opacity: 0.85;
  margin: 0 0 1rem;
}
.footer-legal {
  font-size: 0.8rem;
}
.footer-legal a {
  color: var(--text-body);
  text-decoration: none;
}
.footer-legal a:hover { text-decoration: underline; }

/* ===== Popup consultation form ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.popup-overlay[hidden] {
  display: none !important;
}
.popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.popup-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow: visible;
}
.popup-form-wrap {
  margin: 0;
  overflow-y: auto;
  max-height: 90vh;
  padding-top: 3rem;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-body);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: color 0.2s, background 0.2s;
}
.popup-close:hover {
  color: var(--text-dark);
  background: #f5f5f5;
}

/* ===== Mobile & responsive ===== */
/* Hide nav links when there isn’t room; show compact bar (logo + lang + CTAs) to avoid overlap */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-center {
    flex: 0 0 auto;
    min-width: 0;
    padding: 0 4px;
    margin: 0;
  }
  .nav-lang-toggle { padding: 5px 10px; font-size: 0.8rem; margin-left: 0; }
  .nav-ctas { gap: 8px; margin-left: 8px; }
  .nav-cta-btn { min-width: 0; padding: 8px 14px; font-size: 0.8rem; }
  .nav-inner { gap: 12px; }
}

@media (max-width: 768px) {
  body { overflow-x: hidden; }
  /* Balanced nav bar: wrap so logo + lang on row 1, CTAs on row 2 centered and fully visible */
  .nav-inner {
    flex-wrap: wrap;
    padding-left: 12px;
    padding-right: 12px;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .nav-center {
    margin-left: auto;
  }
  .nav-ctas {
    flex: 1 1 100%;
    order: 3;
    justify-content: center;
    margin-left: 0;
    margin-top: 4px;
  }
  .nav-cta-btn {
    padding: 10px 14px;
    font-size: 0.8rem;
  }
  /* Hero: stack image above headline on mobile so full headline is visible and fits with image */
  .hero {
    flex-direction: column;
    min-height: 0;
    height: auto;
    aspect-ratio: auto;
  }
  .hero-bg {
    position: relative;
    width: 100%;
    min-height: 260px;
    flex-shrink: 0;
    background: var(--green-darker);
  }
  .hero-bg img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center center;
  }
  .hero-content {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 2rem 1.25rem 2.5rem;
    background: linear-gradient(180deg, var(--green-darker) 0%, #0d2818 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .hero-headline {
    font-size: clamp(2.5rem, 8vw, 4rem);
    line-height: 1.25;
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
  }
  .hero-headline-service {
    font-size: clamp(1.15rem, 3.5vw, 1.75rem);
    letter-spacing: 0.15em;
    word-spacing: 0.25em;
  }
  .hero-headline-nowrap {
    white-space: normal;
  }
  .section {
    padding: 2.5rem 1rem;
  }
  .section-inner {
    padding: 0;
  }
  .hero-sub {
    padding: 2.5rem 1rem;
  }
  .hero-sub-headline {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .hero-sub-desc {
    margin-bottom: 1.5rem;
  }
  .hero-sub-cards {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .hero-sub-card {
    min-width: 100%;
    padding: 1rem 1.25rem;
  }
  .hero-sub-cta-row {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 0.5rem;
  }
  .hero-sub-cta-row .btn-gold {
    width: 100%;
    justify-content: center;
  }
  .hero-sub-benefits {
    gap: 1rem 1.25rem;
    font-size: 0.85rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-sub-benefits li {
    flex-shrink: 1;
  }
  .section-headline {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 0.75rem;
  }
  .section-intro {
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }
  .timeline {
    padding-left: 1.75rem;
  }
  .timeline-marker {
    width: 12px;
    height: 12px;
    left: -1.75rem;
    margin-left: -3px;
  }
  .timeline-title {
    font-size: 1.25rem;
  }
  .timeline-body {
    font-size: 0.9rem;
  }
  .timeline-item {
    padding-bottom: 2rem;
  }
  .reasons-grid {
    gap: 1.5rem 1rem;
    margin-top: 0.5rem;
  }
  .reason-num {
    font-size: 2rem;
  }
  .reason-title {
    font-size: 0.75rem;
  }
  .reason-body {
    font-size: 0.85rem;
  }
  .science-two-col {
    gap: 1.5rem;
    margin-top: 1rem;
  }
  .science-col p {
    font-size: 0.9rem;
  }
  .section-stories-inner {
    gap: 2rem;
  }
  .testimonials-headline-frame {
    padding: 12px 20px 14px;
  }
  .testimonials-headline {
    font-size: 1.5rem;
  }
  .testimonial-card {
    padding: 1.25rem;
  }
  .testimonial-text {
    font-size: 0.9rem;
  }
  .consultation-two-col {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .consultation-form-wrap {
    order: -1;
    padding: 1.5rem;
  }
  .faq-question {
    padding: 1rem 1rem;
    min-height: 48px;
    align-items: center;
  }
  .form-title {
    font-size: 1.35rem;
  }
  .consultation-how-fast {
    padding: 0.875rem 1rem;
  }
  .site-footer {
    padding: 1.5rem 1rem 1.25rem;
  }
  .footer-bottom {
    padding: 0 0.5rem;
  }
  .footer-copy {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  .footer-seo {
    font-size: 0.75rem;
  }
  .footer-legal {
    font-size: 0.75rem;
  }
  .popup-overlay {
    padding: 1rem;
    align-items: flex-start;
    padding-top: 2rem;
  }
  .popup-box {
    max-width: 100%;
  }
  .popup-close {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
    top: 0.75rem;
    right: 0.75rem;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    padding: 10px 12px;
    gap: 8px;
  }
  .nav-lang-toggle { padding: 4px 8px; font-size: 0.75rem; }
  .nav-logo img {
    height: 64px;
  }
  .nav-cta-btn {
    min-width: 0;
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
  }
  .nav-cta-btn.nav-cta-phone {
    padding: 0.75rem 1rem;
  }
  .section {
    padding: 2rem 1rem;
  }
  .hero-bg {
    min-height: 260px;
    max-height: 360px;
  }
  .hero-content {
    padding: 1.5rem 1rem 2rem;
  }
  .hero-headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .hero-headline-service {
    font-size: clamp(1rem, 3vw, 1.4rem);
    letter-spacing: 0.12em;
    word-spacing: 0.2em;
  }
  .hero-sub-headline {
    font-size: 1.5rem;
  }
  .hero-sub-note {
    font-size: 0.8rem;
  }
  .btn-gold {
    padding: 12px 20px;
    font-size: 0.95rem;
    white-space: normal;
    text-align: center;
  }
  .section-label {
    font-size: 0.7rem;
  }
  .section-headline {
    font-size: 1.5rem;
  }
  .timeline-label {
    font-size: 0.65rem;
  }
  .timeline-title {
    font-size: 1.1rem;
  }
  .reason-num {
    font-size: 1.75rem;
  }
  .testimonials-headline {
    font-size: 1.35rem;
  }
  .consultation-headline {
    font-size: 1.35rem;
  }
  .consultation-sub {
    font-size: 1rem;
  }
  .contact-item {
    margin-bottom: 1rem;
  }
  .footer-copy {
    font-size: 0.8rem;
  }
}

