/* ============================================================
   STACK & STONE — Main Stylesheet
   Design: Dark Luxury Minimal | Gold Accents | Strong Lines
   ============================================================ */

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --black:    #1E1E1E;
  --grey:     #8A8A8A;
  --sage:     #6F8F7B;
  --gold:     #C2A46D;
  --gold-dim: #a8894e;
  --white:    #F4F2EE;
  --off:      #2A2A2A;
  --border:   rgba(194, 164, 109, 0.2);
  --surface:  #242424;
  --text-dim: #B0AEA9;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --max-w: 1160px;
  --radius: 2px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
p { color: var(--text-dim); font-weight: 400; }

/* ── Layout Utilities ────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section--dark { background: var(--black); }
.section--surface { background: var(--surface); }
.section-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.section-title { margin-bottom: 1rem; }
.section-title span { color: var(--gold); }
.section-sub { max-width: 560px; margin-bottom: 3rem; font-size: 1.05rem; }
.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 2.5rem;
}
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.text-gold { color: var(--gold); }
.text-sage { color: var(--sage); }
.text-center { text-align: center; }
.text-center .gold-line { margin-left: auto; margin-right: auto; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(244,242,238,0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-sage {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}
.btn-sage:hover {
  background: transparent;
  color: var(--sage);
}
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn--full { width: 100%; justify-content: center; }
.btn--center { justify-content: center; }

/* ── Utilities ──────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -48px;
  left: 1rem;
  z-index: 1200;
  background: var(--gold);
  color: var(--black);
  padding: 0.75rem 1rem;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: top var(--transition);
}
.skip-link:focus { top: 1rem; }
.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1rem;
}
.section-heading--center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 1rem;
}
.section-heading--center .gold-line { margin: 0 auto 2rem; }
.section-heading--center .section-sub { margin-left: auto; margin-right: auto; }
.stack-list { display: grid; gap: 1rem; }
.stack-list--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.stack-list--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.note-card {
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--border);
  background: rgba(194,164,109,0.04);
}
.note-card p { font-size: 0.9rem; }
.note-card span {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(30, 30, 30, 0.97);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
  padding: 1.2rem 0;
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.nav__logo img { width: 44px; height: 44px; border-radius: 50%; }
.nav__logo-text { font-family: var(--font-head); }
.nav__logo-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
}
.nav__logo-name span { color: var(--gold); }
.nav__logo-tag {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  line-height: 1;
  margin-top: 0.2rem;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links a {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__links a:hover, .nav__links a.active {
  color: var(--white);
}
.nav__links a:hover::after, .nav__links a.active::after {
  width: 100%;
}
.nav__cta { margin-left: 1.5rem; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 5rem;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(194,164,109,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(111,143,123,0.05) 0%, transparent 50%),
    var(--black);
}
.hero__grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(194,164,109,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(194,164,109,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.2s;
}
.hero__eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero__eyebrow-text {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero__title {
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.4s;
}
.hero__title em {
  font-style: normal;
  color: var(--gold);
  position: relative;
  display: inline-block;
}
.hero__subtitle {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.6s;
}
.hero__actions {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.8s;
}
.hero__stats {
  margin-top: 4rem;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 1s;
}
.hero__stat {}
.hero__stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 0.3rem;
}
.hero__visual {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  animation: fadeIn 1.2s ease forwards 0.5s;
}
.hero__logo-large {
  width: clamp(280px, 30vw, 420px);
  opacity: 0.08;
  filter: grayscale(30%);
}

/* ── Services ────────────────────────────────────────────── */
.service-card {
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}
.service-card:hover { border-color: rgba(194,164,109,0.4); transform: translateY(-3px); }
.service-card:hover::before { height: 100%; }
.service-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 0.6rem; font-size: 1rem; }
.service-card p { font-size: 0.9rem; line-height: 1.65; }

/* ── Packages ────────────────────────────────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.pkg-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.pkg-card:hover {
  border-color: rgba(194,164,109,0.5);
  transform: translateY(-4px);
}
.pkg-card--featured {
  border-color: var(--gold);
  background: rgba(194,164,109,0.04);
}
.pkg-card--featured .pkg-badge {
  display: block;
}
.pkg-card--bundle {
  border-color: var(--sage);
  background: rgba(111,143,123,0.05);
  grid-column: 1 / -1;
}
.pkg-badge {
  display: none;
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
}
.pkg-badge--sage {
  background: var(--sage);
  color: var(--white);
}
.pkg-label {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}
.pkg-label--sage { color: var(--sage); }
.pkg-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--white);
}
.pkg-price {
  margin-bottom: 0.4rem;
}
.pkg-price__amount {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.pkg-price__amount--sage { color: var(--sage); }
.pkg-price__period {
  font-size: 0.8rem;
  color: var(--grey);
  margin-left: 0.25rem;
}
.pkg-price__original {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--grey);
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}
.pkg-price__save {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}
.pkg-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}
.pkg-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}
.pkg-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: var(--text-dim);
}
.pkg-feature svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--sage);
  margin-top: 0.2rem;
}
.pkg-feature--note {
  color: var(--grey);
  font-size: 0.8rem;
  font-style: italic;
}
.pkg-feature--note svg { color: var(--grey); }
.pkg-bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.pkg-bundle-item {
  padding: 1rem;
  border: 1px solid rgba(111,143,123,0.2);
  background: rgba(111,143,123,0.05);
}
.pkg-bundle-item__name {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.pkg-bundle-item__price {
  font-size: 0.78rem;
  color: var(--grey);
  text-decoration: line-through;
}

/* ── Contact / Pricing Helpers ──────────────────────────── */
.contact-panel {
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--surface);
}
.contact-panel--form { background: rgba(36, 36, 36, 0.9); }
.contact-note {
  margin-top: 2rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  background: rgba(194,164,109,0.05);
}
.contact-note p { font-size: 0.84rem; line-height: 1.65; }
.contact-note span {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-form__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
.form-check { align-items: flex-start; }
.form-check__title {
  display: block;
  font-weight: 500;
  font-size: 0.86rem;
  color: var(--white);
}
.form-check__meta {
  display: block;
  font-size: 0.72rem;
  color: var(--grey);
  margin-top: 0.15rem;
}
.form-notice a { color: var(--gold); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.pricing-grid--full { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pricing-summary {
  max-width: 760px;
  margin-bottom: 2rem;
}
.pricing-band {
  border: 1px solid var(--border);
  background: rgba(111,143,123,0.05);
  padding: 1.5rem;
}
.pricing-band__title {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
}
.pricing-band__price {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.pricing-band__meta {
  font-size: 0.85rem;
  color: var(--grey);
}
.pricing-disclosure {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.pricing-disclosure span {
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.35rem;
}
.pricing-note {
  font-size: 0.8rem;
  color: var(--grey);
}
.feature-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0 1.5rem;
}
.feature-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--text-dim);
  font-size: 0.9rem;
}
.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-top: 0.3rem;
  border-radius: 999px;
  border: 1px solid var(--sage);
  box-shadow: inset 0 0 0 3px rgba(111,143,123,0.18);
}
.bundle-card {
  border-color: rgba(111,143,123,0.35);
  background: rgba(111,143,123,0.04);
}
.bundle-card .pkg-price__amount { color: var(--sage); }
.bundle-card .pkg-badge { display: block; }
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.bundle-grid__item {
  padding: 1rem;
  border: 1px solid rgba(111,143,123,0.2);
  background: rgba(111,143,123,0.05);
}
.bundle-grid__name {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.bundle-grid__price {
  font-size: 0.78rem;
  color: var(--grey);
  text-decoration: line-through;
}

/* ── Contact Form ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info {}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-info__icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-info__icon svg { width: 18px; height: 18px; }
.contact-info__label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.2rem;
}
.contact-info__value {
  font-size: 0.95rem;
  color: var(--white);
}
.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
}
.form-control {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-control:focus { border-color: var(--gold); }
.form-control::placeholder { color: rgba(138,138,138,0.5); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-packages-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.75rem;
}
.form-packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.form-check {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-dim);
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: var(--transition);
  user-select: none;
}
.form-check:hover { border-color: rgba(194,164,109,0.4); color: var(--white); }
.form-check input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}
.form-check.selected {
  border-color: var(--gold);
  background: rgba(194,164,109,0.06);
  color: var(--white);
}
.form-notice {
  font-size: 0.8rem;
  color: var(--grey);
  font-style: italic;
}
.alert {
  padding: 1rem 1.25rem;
  border: 1px solid;
  font-size: 0.9rem;
  border-radius: var(--radius);
}
.alert-success { border-color: var(--sage); color: var(--sage); background: rgba(111,143,123,0.08); }
.alert-error { border-color: #e07070; color: #e07070; background: rgba(224,112,112,0.08); }

/* ── Why Us / Value Props ────────────────────────────────── */
.value-card {
  padding: 2rem 1.5rem;
  border-top: 2px solid var(--border);
  transition: var(--transition);
}
.value-card:hover { border-top-color: var(--gold); }
.value-card__num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(194,164,109,0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.value-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.875rem; }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(194,164,109,0.08) 0%, transparent 50%),
    var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { margin-bottom: 2rem; font-size: 1.05rem; }

/* ── Page Hero ───────────────────────────────────────────── */
.page-hero {
  padding: 9rem 0 4rem;
  background:
    radial-gradient(ellipse 50% 100% at 80% 50%, rgba(194,164,109,0.05) 0%, transparent 60%),
    var(--black);
  border-bottom: 1px solid var(--border);
}
.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.page-hero__eyebrow-line { width: 28px; height: 1px; background: var(--gold); }
.page-hero__eyebrow-text {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.page-hero p { font-size: 1.05rem; max-width: 540px; margin-top: 0.75rem; }

/* ── About page ──────────────────────────────────────────── */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -1.5rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  animation: rotateSlow 20s linear infinite;
  border-top-color: var(--gold);
  border-right-color: var(--gold);
}
.about-logo-wrap img {
  width: clamp(200px, 25vw, 300px);
  border-radius: 50%;
}
.about-values { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.about-value {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.about-value__dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.45rem;
}
.about-value h4 { font-size: 0.85rem; color: var(--white); margin-bottom: 0.2rem; letter-spacing: 0.05em; }
.about-value p { font-size: 0.85rem; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand {}
.footer__logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer__logo img { width: 38px; height: 38px; border-radius: 50%; }
.footer__logo-name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.footer__logo-name span { color: var(--gold); }
.footer__tagline {
  font-size: 0.8rem;
  color: var(--grey);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.footer__brandline {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer__social { display: flex; gap: 0.75rem; }
.footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  transition: var(--transition);
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold); }
.footer__social a svg { width: 16px; height: 16px; }
.footer__col-title {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a {
  font-size: 0.875rem;
  color: var(--grey);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy {
  font-size: 0.8rem;
  color: var(--grey);
}
.footer__copy a { color: var(--gold); }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a {
  font-size: 0.78rem;
  color: var(--grey);
  transition: color var(--transition);
}
.footer__legal a:hover { color: var(--white); }

/* ── WhatsApp Floating ───────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: #fff;
  padding: 0.75rem 1.25rem 0.75rem 1rem;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.whatsapp-float:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  color: #fff;
}
.whatsapp-float svg { width: 20px; height: 20px; flex-shrink: 0; }
.whatsapp-float span { display: none; }
@media (min-width: 600px) { .whatsapp-float span { display: block; } }

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Privacy / Simple pages ──────────────────────────────── */
.simple-content {
  padding: 9rem 0 5rem;
  max-width: 760px;
}
.simple-content h2 { font-size: 1.3rem; margin: 2.5rem 0 0.75rem; color: var(--white); }
.simple-content p { margin-bottom: 1rem; }
.simple-content ul { padding-left: 1.2rem; list-style: disc; color: var(--text-dim); }
.simple-content ul li { margin-bottom: 0.4rem; font-size: 0.9rem; }
.cta-banner .section-label {
  display: block;
  text-align: center;
  margin: 0 auto 1rem;
}
.pkg-name--bundle { font-size: 1.5rem; }
.bundle-layout {
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.bundle-heading-label { margin-bottom: 0.85rem; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-logo-wrap { display: none; }
  .section-heading--split { grid-template-columns: 1fr; }
  .pricing-grid, .pricing-grid--full { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--black);
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 999;
  }
  .nav__links.open a { font-size: 1.2rem; }
  .nav__cta { display: none; }
  .hero__visual { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .form-packages-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .pkg-bundle-grid { grid-template-columns: 1fr 1fr; }
  .hero__stats { gap: 2rem; }
  .contact-form__actions { flex-direction: column; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { text-align: center; justify-content: center; }
  .pkg-bundle-grid { grid-template-columns: 1fr; }
  .bundle-grid { grid-template-columns: 1fr; }
}