
/* ===== Variables ===== */
:root {
  --green-dark: #1a4d1a;
  --green-darker: #083119;
  --green-heading: #385C3A;
  --green-cta-bg: #1a4d1a;
  --green-cta-bg-hover: #083119;
  --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: hidden;
}
.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
  box-sizing: border-box;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 96px;
  width: auto;
}
.nav-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  flex-shrink: 0;
  min-width: 0;
}
.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.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;
}
.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;
}

/* Shared base for nav CTA buttons */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 44px;
  padding: 12px 20px;
  font-size: 0.875rem;
  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;
}

/* Green CTA button – same as BP Royal home page */
.nav-cta-btn.green-cta-btn,
.green-cta-btn {
  background: var(--green-cta-bg);
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 0.7rem 2.2rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.nav-cta-btn.green-cta-btn:hover,
.green-cta-btn:hover {
  background-color: var(--green-cta-bg-hover);
}

/* Gold CTA (nav) – same as Home Page #B79C4F */
.nav-cta-btn:not(.green-cta-btn) {
  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(.green-cta-btn):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;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
}
.hero-bg {
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}
.hero-bg img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}
.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  margin: 0;
  padding: clamp(5rem, 18vw, 10rem) clamp(1.5rem, 6vw, 4rem) 3rem clamp(1.5rem, 6vw, 4rem);
  max-width: 50%;
  text-align: left;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(5rem, 12vw, 8.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  width: max-content;
  max-width: 100%;
  text-align: left;
  background: linear-gradient(135deg, #8B6914, #D4AF37, #F5D060, #C9A227, #8B6914);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-headline-spacer {
  display: block;
  margin-top: 0.5em;
}
.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.2em;
}
/* Hero: headline only */
.hero-content-only .hero-headline { margin-bottom: 0; }

.hero-headline .hero-headline-support,
.hero-headline .hero-headline-location {
  font-size: 0.45em;
  opacity: 0.9;
  font-weight: 500;
}

/* ===== 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;
  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: wrap;
  justify-content: center;
  gap: 1.25rem 1.75rem;
  color: var(--text-body);
  font-size: 0.9rem;
  padding: 0 1.5rem 0.25rem;
  max-width: 100%;
}
.hero-sub-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.stars { color: #c9a84c; }
.icon-check, .icon-medical, .icon-star, .icon-building {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.icon-check {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232e7d32'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}
.icon-medical {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234A4A4A'%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-1 11h-4v4h-4v-4H6v-4h4V6h4v4h4v4z'/%3E%3C/svg%3E");
}
.icon-star {
  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 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E");
}
.icon-building {
  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");
}

/* ===== 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: var(--sans);
  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);
}
.btn-gold.btn-link { background: transparent; box-shadow: none; color: var(--gold); }
.btn-gold.btn-link:hover { color: var(--gold-darker); text-decoration: underline; transform: none; }
.btn-submit { width: 100%; margin-top: 0.5rem; }

/* ===== Section typography ===== */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  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-transform: none;
}
.hero-sub-headline {
  text-transform: none;
}
.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;
}

/* ===== Hidden Impact (3 stat boxes) ===== */
.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.impact-stat {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-left: 4px solid var(--gold);
  text-align: left;
}
.impact-stat-value {
  display: block;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.impact-stat-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.55;
}

/* ===== How It Works (four steps) ===== */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.step-block {
  text-align: center;
  position: relative;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-heading);
  margin-bottom: 1rem;
  background: #fff;
}
.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-heading);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}
.step-body {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0 0 1rem;
  line-height: 1.55;
}
.step-pill {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

/* ===== Why Skin Restore (6 cards) ===== */
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.why-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: relative;
  text-align: left;
  border-top: 4px solid var(--gold);
}
.why-card-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  opacity: 0.85;
}
.why-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-heading);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.why-card-body {
  font-size: 0.9rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.55;
}

/* ===== Science at Source ===== */
.science-source-card {
  max-width: 720px;
  margin: 2rem auto 0;
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border-left: 4px solid var(--gold);
  text-align: left;
}
.science-source-card-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-heading);
  margin: 0 0 1rem;
}
.science-source-card p {
  font-size: 0.95rem;
  color: var(--text-body);
  margin: 0 0 1rem;
  line-height: 1.6;
}
.science-source-subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-heading);
  margin: 1.5rem 0 0.75rem;
}
.science-source-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.science-source-list li {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 0.5rem;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}
.science-source-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 900px) {
  .impact-stats { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .why-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .steps-row { grid-template-columns: 1fr; }
  .why-cards { 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;
  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;
  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 (two columns) ===== */
.section-headline.science-headline { text-align: left; }
.science-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 1.5rem;
}
.science-col p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
}
.science-col p:last-child { margin-bottom: 0; }

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

/* ===== 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;
  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: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.testimonial-stars {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: #c9a84c;
  letter-spacing: 0.05em;
}
.testimonial-text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  font-style: italic;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-initial {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--green-heading);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.testimonial-meta {
  margin: 0 0 0.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}
.testimonial-verified {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-body);
  opacity: 0.9;
}

@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-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 {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-item 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 { 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; }

.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 label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-heading);
  margin-bottom: 0.35rem;
}
.consultation-form input {
  width: 100%;
  padding: 10px 12px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 1rem;
  background: #fafafa;
}
.consultation-form input:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}

@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(--green-dark);
  font-weight: 600;
  text-decoration: none;
}
.footer-phone:hover { color: var(--green-darker); }
.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 ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-lang-toggle { padding: 5px 10px; font-size: 0.8rem; }
  .nav-ctas { gap: 8px; }
  .nav-cta-btn { min-width: 0; padding: 8px 12px; font-size: 0.8rem; }
}

@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;
    gap: 12px;
    padding: 10px 0;
  }
  .nav-logo {
    flex: 0 0 auto;
  }
  .nav-lang-toggle {
    margin-left: auto;
  }
  .nav-ctas {
    flex: 1 1 100%;
    order: 3;
    justify-content: center;
    gap: 10px;
    margin-top: 4px;
  }
  .nav-cta-btn {
    padding: 10px 14px;
    font-size: 0.8rem;
    white-space: nowrap;
  }
  .nav-cta-btn.green-cta-btn {
    padding: 10px 14px;
    font-size: 0.8rem;
  }
  /* Hero: gold text down the left side, over green marble only (no overlap with before/after image) */
  .hero {
    min-height: 420px;
    display: flex;
    align-items: stretch;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    min-height: 420px;
  }
  .hero-bg img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: center center;
  }
  .hero-content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 42%;
    max-width: 42%;
    padding: 2rem 0 2.5rem 1rem;
    padding-left: clamp(1rem, 4vw, 1.5rem);
    padding-right: 0.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }
  .hero-headline {
    font-size: clamp(1.85rem, 6.5vw, 2.75rem);
    line-height: 1.25;
    max-width: 100%;
    width: 100%;
    text-align: left;
    display: block;
  }
  .hero-headline br {
    display: block;
    content: "";
    margin-top: 0.2em;
  }
  .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;
  }
  .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: 8px 10px;
    gap: 8px;
  }
  .nav-lang-toggle { padding: 4px 8px; font-size: 0.75rem; }
  .nav-logo img {
    height: 56px;
  }
  .nav-cta-btn {
    min-width: 0;
    padding: 8px 12px;
    font-size: 0.75rem;
  }
  .nav-cta-btn.green-cta-btn {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
  .section {
    padding: 2rem 1rem;
  }
  /* Hero: keep gold text down the left over green marble only */
  .hero {
    min-height: 380px;
  }
  .hero-bg,
  .hero-bg img {
    min-height: 380px;
  }
  .hero-content {
    width: 42%;
    max-width: 42%;
    padding: 1.5rem 0 2rem 0.75rem;
    padding-left: clamp(0.75rem, 3vw, 1rem);
  }
  .hero-headline {
    font-size: clamp(1.6rem, 6vw, 2.35rem);
    line-height: 1.25;
  }
  .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;
  }
}

