:root {
  --bg: #f8f1e7;
  --bg-soft: #fbf6ef;
  --paper: rgba(255, 250, 244, 0.82);
  --paper-strong: rgba(255, 248, 239, 0.94);
  --text: #2c180f;
  --muted: #6e5547;
  --line: rgba(126, 92, 61, 0.22);
  --gold: #c9a84c;
  --gold-deep: #8f5a16;
  --accent: #7f0f1f;
  --accent-soft: rgba(127, 15, 31, 0.08);
  --teal: #1d9e75;
  --amber: #ba7517;
  --brown: #3b2210;
  --cream: #fff4e4;
  --shadow: 0 28px 70px rgba(63, 27, 12, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(214, 169, 102, 0.22),
      transparent 30%
    ),
    radial-gradient(
      circle at right 15%,
      rgba(191, 105, 57, 0.12),
      transparent 22%
    ),
    linear-gradient(180deg, #fff9f2 0%, #f7eee3 42%, #f2e4d5 100%);
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.page-shell {
  overflow: clip;
}

.hero-stage {
  display: block;
}

.hero-fold {
  display: block;
}

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

.topbar {
  position: relative;
  z-index: 40;
  padding: 16px 14px 0;
}

.nav-shell {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px 28px;
  border-radius: 22px;
  background: rgba(10, 10, 10, 0.92);
  border: 1px solid rgba(255, 214, 150, 0.14);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  flex-shrink: 0;
}

.brand-mark {
  width: 170px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(83, 44, 18, 0.08));
}

.brand-mark.secondary {
  width: 86px;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 214, 150, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 34px);
  flex: 1;
  min-width: 0;
}

.nav-links a {
  color: rgba(255, 245, 233, 0.88);
  font-size: 0.94rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: #f0bc6e;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-phone {
  color: #fff2e2;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.nav-button {
  padding: 13px 18px;
  border-radius: 14px;
  font-size: 0.92rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 214, 150, 0.14);
  color: #fff2e2;
  box-shadow: none;
}

.mobile-nav-actions {
  display: none;
  align-items: center;
  gap: 10px;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  color: #4be07e;
  box-shadow: none;
  transition: transform 180ms ease;
}

.whatsapp-link:hover {
  transform: translateY(-2px);
}

.whatsapp-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
  content: "";
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before {
  position: absolute;
  top: -6px;
  left: 0;
}

.nav-toggle-lines::after {
  position: absolute;
  top: 6px;
  left: 0;
}

.topbar.open .nav-toggle-lines {
  background: transparent;
}

.topbar.open .nav-toggle-lines::before {
  transform: translateY(6px) rotate(45deg);
}

.topbar.open .nav-toggle-lines::after {
  transform: translateY(-6px) rotate(-45deg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(182, 122, 39, 0.2);
  background: rgba(255, 251, 246, 0.72);
  color: var(--gold-deep);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-heading h2,
.story h2,
.cta-panel h2,
.ambassador-card h2,
.legacy-copy h2,
.footer-card h2,
.keyword-hero h1,
.hero-copy h1 {
  margin: 0;
  font-family: "Iowan Old Style", "Baskerville", "Palatino Linotype", serif;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.section-heading h2 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  margin-top: 26px;
}

.section-heading p,
.hero-copy p,
.story p,
.lead-card p,
.config-card p,
.proof-card p,
.location-card p,
.legacy-copy p,
.keyword-hero p,
footer p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.button,
button {
  display: inline-block;
  max-width: 100%;
  text-align: center;
  vertical-align: middle;
  border: 0;
  cursor: pointer;
  border-radius: 16px;
  padding: 16px 22px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff9f2;
  background: linear-gradient(135deg, #b67a27, #8f5a16);
  box-shadow: 0 18px 36px rgba(143, 90, 22, 0.24);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.button:hover,
button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(143, 90, 22, 0.28);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(143, 90, 22, 0.24);
  box-shadow: none;
}

.hero {
  min-height: auto;
  padding: 18px 14px 28px;
  position: relative;
  isolation: isolate;
}

.hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1672 / 941;
  border-radius: 28px;
  overflow: hidden;
  background: #f7efe5;
}

.hero-media::after {
  content: none;
}

@media (min-width: 1024px) {
  .hero {
    padding-bottom: 18px;
  }

  .hero-media {
    aspect-ratio: 1672 / 820;
  }

  .hero-capture {
    padding-bottom: 28px;
  }
}

.hero-art,
.hero-art img,
.hero-art picture {
  width: 100%;
  height: 100%;
}

.hero-art {
  position: absolute;
  inset: 0;
}

.hero-art img {
  object-fit: cover;
}

.hero-tag {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-copy-shell {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 28px;
  padding: 110px 48px 48px;
}

.hero-copy {
  max-width: 620px;
  color: #fff7eb;
}

.hero-copy h1 {
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  text-shadow: 0 12px 36px rgba(25, 10, 2, 0.22);
}

.hero-copy p {
  color: rgba(255, 244, 230, 0.88);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  max-width: 520px;
}

.hero-price-card {
  justify-self: end;
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 249, 241, 0.92);
  border: 1px solid rgba(182, 122, 39, 0.2);
  box-shadow: 0 22px 48px rgba(38, 18, 10, 0.16);
  max-width: 320px;
}

.hero-price-card strong {
  display: block;
  font-family: "Iowan Old Style", "Baskerville", serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.hero-price-card span {
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-price-badge,
.hero-geo-note {
  display: none;
}

.hero-price-badge.show,
.hero-geo-note.show {
  display: inline-flex;
}

.hero-price-badge {
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(59, 34, 16, 0.92);
  color: var(--cream);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-geo-note {
  color: #6a4221;
  font-size: 0.88rem;
}

.form-note,
.micro-trust {
  margin-top: 14px;
  font-size: 0.92rem;
  color: var(--muted);
}

.hero-capture {
  margin-top: 18px;
  z-index: 3;
  padding: 0 14px 38px;
  position: relative;
}

.hero-capture-shell {
  width: min(760px, calc(100vw - 56px));
  margin: 0 auto;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.94);
  border: 1px solid rgba(182, 122, 39, 0.14);
  box-shadow: 0 16px 34px rgba(83, 44, 18, 0.08);
  backdrop-filter: blur(10px);
}

.hero-capture-form {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-capture-form input,
.hero-capture-form select {
  flex: 1;
  min-width: 0;
  border: 0 !important;
  outline: none !important;
  background: transparent;
  padding: 14px 18px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: background-color 0.22s ease;
  box-shadow: none !important;
}

.hero-capture-form input:focus,
.hero-capture-form select:focus {
  background-color: rgba(201, 168, 76, 0.08);
}

.hero-capture-form select {
  cursor: pointer;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238f5a16' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 16px !important;
  padding-right: 42px !important;
}

/* Subtle separators in row layout */
.hero-capture-form input + input,
.hero-capture-form input + select,
.hero-capture-form select + input,
.hero-capture-form select + select {
  border-left: 1px solid rgba(182, 122, 39, 0.18);
}

.hero-capture-form button {
  width: 50px;
  min-width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-capture-form button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero-seo-copy {
  width: min(1280px, calc(100vw - 28px));
  margin: 22px auto 0;
  text-align: left;
}

.hero-seo-section {
  padding: 0 14px 10px;
}

.hero-seo-copy h1 {
  margin: 0;
  color: #2c180f;
  font-family: "Iowan Old Style", "Baskerville", "Palatino Linotype", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero-seo-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  max-width: 520px;
}

.hero-trust-copy {
  margin: 14px auto 0;
  width: min(760px, calc(100vw - 56px));
  text-align: center;
  color: #6a4221;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats-strip {
  margin-top: 0;
  position: relative;
  z-index: 2;
  padding: 0 14px;
}

.stats-wrap {
  width: min(1280px, calc(100vw - 28px));
  margin: 0 auto;
  background: linear-gradient(135deg, #2f1b12, #523121);
  color: #f8efe4;
  border-radius: 26px;
  padding: 22px 26px;
  box-shadow: 0 22px 42px rgba(55, 26, 11, 0.26);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.stat {
  text-align: center;
  padding: 0 12px 0 0;
  border-right: 1px solid rgba(255, 240, 221, 0.14);
}

.stat:last-child {
  border-right: 0;
  padding-right: 0;
}

.stat strong {
  display: block;
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  font-family: "Iowan Old Style", "Baskerville", serif;
  font-weight: 500;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 241, 224, 0.82);
}

@media (min-width: 1280px) {
  .stats-wrap {
    width: min(1340px, calc(100vw - 36px));
  }
}

.story {
  padding-top: 76px;
}

.story-block {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: stretch;
  padding: 24px;
  border-radius: 34px;
  background: linear-gradient(
    180deg,
    rgba(255, 251, 246, 0.92),
    rgba(247, 235, 220, 0.94)
  );
  border: 1px solid rgba(182, 122, 39, 0.16);
  box-shadow: var(--shadow);
}

.story h2 {
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.story p {
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  max-width: 620px;
}

.story-main {
  padding: 18px 14px;
}

.story-side {
  display: grid;
  gap: 14px;
}

.story-mini {
  padding: 22px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(182, 122, 39, 0.14);
}

.story-mini strong {
  display: block;
  margin-bottom: 8px;
  color: #60381d;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-mini p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
}

.config-grid,
.amenities-grid,
.proof-grid,
.location-grid,
.legacy-grid,
.footer-grid,
.video-testimonials-grid {
  display: grid;
  gap: 24px;
}

.config-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.config-card {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 251, 246, 0.74);
  border: 1px solid rgba(182, 122, 39, 0.16);
  box-shadow: 0 20px 45px rgba(83, 44, 18, 0.08);
  backdrop-filter: blur(12px);
}

.config-card.recommended {
  background: linear-gradient(
    180deg,
    rgba(255, 247, 236, 0.96),
    rgba(248, 232, 209, 0.84)
  );
  border-color: rgba(182, 122, 39, 0.35);
  transform: translateY(-12px);
}

.badge {
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(127, 15, 31, 0.1);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.config-card h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Baskerville", serif;
  font-size: 2rem;
  font-weight: 500;
}

.meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.94rem;
}

.price {
  display: grid;
  gap: 4px;
}

.price strong {
  font-family: "Iowan Old Style", "Baskerville", serif;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
}

.price span {
  color: var(--muted);
  font-size: 0.98rem;
}

.amenities-shell {
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(
    180deg,
    rgba(255, 251, 246, 0.86),
    rgba(250, 240, 227, 0.9)
  );
  border: 1px solid rgba(182, 122, 39, 0.16);
  box-shadow: var(--shadow);
}

.amenities-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

.amenity-group {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(182, 122, 39, 0.14);
}

.amenity-group h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-family: "Iowan Old Style", "Baskerville", serif;
  font-weight: 500;
}

.amenity-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.faq-item {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 251, 246, 0.82);
  border: 1px solid rgba(182, 122, 39, 0.16);
  box-shadow: 0 20px 45px rgba(83, 44, 18, 0.08);
}

.faq-item h3 {
  margin: 0;
  font-size: 1.35rem;
  font-family: "Iowan Old Style", "Baskerville", serif;
  font-weight: 500;
  line-height: 1.12;
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.faq-item-wide {
  grid-column: 1 / -1;
}

.proof-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.proof-card,
.location-card,
.legacy-card,
.cta-panel,
.footer-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 251, 246, 0.82);
  border: 1px solid rgba(182, 122, 39, 0.16);
  box-shadow: 0 20px 45px rgba(83, 44, 18, 0.08);
  backdrop-filter: blur(12px);
}

.proof-card.highlight {
  background: linear-gradient(
    180deg,
    rgba(255, 247, 236, 0.96),
    rgba(248, 232, 209, 0.78)
  );
}

.proof-number {
  display: block;
  font-family: "Iowan Old Style", "Baskerville", serif;
  font-size: 3.3rem;
  line-height: 1;
  margin: 14px 0 10px;
}

.testimonial {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(126, 92, 61, 0.16);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.testimonial strong {
  display: block;
  margin-top: 10px;
  font-size: 0.94rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6a4221;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.testimonial-avatar.teal {
  background: var(--teal);
}

.testimonial-avatar.amber {
  background: var(--amber);
}

.testimonial-copy {
  min-width: 0;
}

.location-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

#location.section {
  padding-top: 44px;
  padding-bottom: 52px;
}

.map-card {
  min-height: 420px;
  overflow: hidden;
  background: #f3e6d6;
  position: relative;
}

.map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 248, 238, 0.16),
    rgba(43, 23, 13, 0.06)
  );
  pointer-events: none;
}

.map-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.82) contrast(1.02);
}

.map-title {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  z-index: 2;
  flex-wrap: wrap;
}

.map-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.94);
  border: 1px solid rgba(182, 122, 39, 0.16);
  color: var(--gold-deep);
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-pins {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.pin {
  position: absolute;
  display: grid;
  gap: 4px;
  max-width: 180px;
}

.pin strong {
  padding: 8px 12px;
  border-radius: 14px;
  background: rgba(43, 23, 13, 0.84);
  color: #fff7eb;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 16px 28px rgba(43, 23, 13, 0.18);
}

.pin span {
  color: #6a4221;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-left: 4px;
}

.ambassador {
  background: transparent;
}

.ambassador-intro {
  grid-column: 1 / -1;
  justify-self: start;
  margin-bottom: -10px;
  background: rgba(255, 249, 241, 0.84);
  border-color: rgba(182, 122, 39, 0.18);
  color: #8f5a16;
  box-shadow: 0 10px 24px rgba(83, 44, 18, 0.06);
}

.ambassador-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: 40px;
  align-items: stretch;
}

.ambassador-media {
  min-height: 100%;
  display: flex;
}

.ambassador-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: right center;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.ambassador-card {
  padding: 44px;
  border-radius: 36px;
  background: rgba(255, 251, 246, 0.72);
  border: 1px solid rgba(182, 122, 39, 0.16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.ambassador-card h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  margin: 18px 0 16px;
}

.ambassador-card p {
  color: var(--muted);
  font-size: 1.04rem;
  margin: 0 0 16px;
}

.ambassador-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(182, 122, 39, 0.14);
}

.ambassador-cell {
  padding: 0 16px;
  text-align: center;
  color: #60381d;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-right: 1px solid rgba(182, 122, 39, 0.12);
}

.ambassador-cell:last-child {
  border-right: 0;
}

.quote-block {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(126, 92, 61, 0.16);
  color: #60381d;
  font-family: "Iowan Old Style", "Baskerville", serif;
  font-size: 1.5rem;
  line-height: 1.3;
}

.urgency {
  padding-top: 60px;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  gap: 28px;
  background:
    linear-gradient(
      135deg,
      rgba(43, 23, 13, 0.96),
      rgba(108, 59, 26, 0.94)
    ),
    radial-gradient(
      circle at top left,
      rgba(255, 211, 140, 0.16),
      transparent 36%
    );
  color: #fff7eb;
  border: 0;
  box-shadow: 0 28px 60px rgba(55, 26, 11, 0.28);
}

.cta-panel h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  margin-bottom: 18px;
}

.cta-panel p,
.cta-panel .micro-trust {
  color: rgba(255, 244, 230, 0.82);
}

.lead-form,
.lead-form-compact {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.lead-form input,
.lead-form select,
.lead-form-compact input,
.lead-form-compact select {
  width: 100%;
  border: 1px solid rgba(128, 85, 43, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  padding: 15px 16px;
  color: var(--text);
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form-compact input:focus,
.lead-form-compact select:focus {
  border-color: rgba(182, 122, 39, 0.72);
  box-shadow: 0 0 0 4px rgba(182, 122, 39, 0.12);
}

.lead-form select,
.lead-form-compact select {
  cursor: pointer;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238f5a16' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 16px !important;
  padding-right: 42px !important;
}

.lead-form select option,
.lead-form-compact select option {
  background-color: #fffaf4;
  color: var(--text);
}

.cta-panel .lead-form {
  margin-top: 0;
}

.cta-panel .lead-form input,
.cta-panel .lead-form select {
  background: rgba(255, 251, 245, 0.92);
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cta-actions .button.secondary {
  color: #fff7eb;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 244, 230, 0.18);
}

.legacy-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

.video-testimonials {
  margin-top: 36px;
}

.video-testimonials-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 251, 246, 0.72);
  border: 1px solid rgba(182, 122, 39, 0.14);
  box-shadow: 0 20px 45px rgba(83, 44, 18, 0.07);
}

.video-testimonials .section-heading {
  max-width: 640px;
  margin-bottom: 28px;
}

.video-testimonials .section-heading h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin-top: 18px;
}

.video-testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.video-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(182, 122, 39, 0.12);
  box-shadow: none;
}

.video-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16 / 9;
  background: #ead8c1;
  cursor: pointer;
}

.video-card-media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 16px;
}

.video-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.video-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 16, 8, 0.04), rgba(31, 16, 8, 0.28));
}

.video-card-media:hover img {
  transform: scale(1.03);
  filter: saturate(1.04);
}

.video-card-play {
  position: absolute;
  inset: auto auto 12px 12px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(43, 23, 13, 0.88);
  color: #fff7eb;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.video-card-play svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.video-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-family: "Iowan Old Style", "Baskerville", serif;
  font-weight: 500;
  line-height: 1.15;
}

.video-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.legacy-copy {
  padding: 32px;
  border-radius: 32px;
  background: rgba(255, 251, 246, 0.82);
  border: 1px solid rgba(182, 122, 39, 0.16);
  box-shadow: var(--shadow);
}

.legacy-copy h2 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  margin: 16px 0 18px;
}

.legacy-visual {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 24px;
  box-shadow: 0 18px 36px rgba(55, 26, 11, 0.16);
}

.credentials {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.credential {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(126, 92, 61, 0.12);
  color: var(--muted);
}

.credential strong {
  color: var(--text);
}

.footer {
  padding: 28px 0 48px;
}

.footer-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

.footer-card h2 {
  margin: 16px 0 14px;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.footer-meta {
  margin-top: 20px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.disclaimer {
  margin-top: 16px;
  font-size: 0.88rem;
}

.keyword-page .topbar {
  position: relative;
}

.keyword-hero {
  padding-top: 36px;
}

.keyword-back {
  display: inline-flex;
  margin-bottom: 18px;
  color: #6a4221;
  font-weight: 600;
}

.keyword-intro-card {
  padding: 40px;
  border-radius: 32px;
  background: rgba(255, 251, 246, 0.82);
  border: 1px solid rgba(182, 122, 39, 0.16);
  box-shadow: var(--shadow);
}

.keyword-hero h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  margin-top: 18px;
}

.keyword-hero p {
  max-width: 900px;
  font-size: 1.06rem;
}

.return-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.return-banner-inner {
  margin: 0 auto;
  width: min(760px, calc(100vw - 24px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 0 0 18px 18px;
  background: #6a4221;
  color: var(--cream);
  box-shadow: 0 18px 34px rgba(31, 16, 8, 0.24);
  transform: translateY(-110%);
  opacity: 0;
  transition:
    transform 240ms ease,
    opacity 240ms ease;
  pointer-events: auto;
}

.return-banner.show .return-banner-inner {
  transform: translateY(0);
  opacity: 1;
}

.return-banner button {
  padding: 0;
  background: transparent;
  color: var(--cream);
  box-shadow: none;
  font-size: 1.2rem;
}

.sticky-bar {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 30;
  display: none;
  flex-direction: column;
  background: rgba(59, 34, 16, 0.98);
  box-shadow: 0 -18px 32px rgba(31, 16, 8, 0.22);
  border: 1px solid rgba(255, 244, 228, 0.12);
  border-radius: 18px;
  overflow: hidden;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
  padding-bottom: env(safe-area-inset-bottom);
}

.sticky-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-bar-message {
  display: none;
  padding: 10px 16px 8px;
  color: var(--cream);
  font-size: 0.86rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
}

.sticky-bar-message.show {
  display: block;
}

.sticky-bar-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 56px;
}

.sticky-bar a,
.sticky-bar button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 0;
  min-height: 56px;
  box-shadow: none;
}

.sticky-call {
  background: transparent;
  color: var(--cream);
  border-right: 0.5px solid rgba(255, 244, 228, 0.7);
}

.sticky-price {
  background: var(--gold);
  color: #2c180f;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(29, 15, 10, 0.6);
  backdrop-filter: blur(8px);
}

.modal.open {
  display: grid;
}

.modal-card {
  width: min(520px, 100%);
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 251, 245, 0.98),
    rgba(251, 242, 231, 0.96)
  );
  border: 1px solid rgba(182, 122, 39, 0.2);
  box-shadow: var(--shadow);
  position: relative;
}

.modal-card h3 {
  margin: 0 0 10px;
  font-size: 2rem;
  font-family: "Iowan Old Style", "Baskerville", serif;
  font-weight: 500;
}

.close-modal {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(128, 85, 43, 0.16);
  background: rgba(255, 255, 255, 0.75);
  color: var(--text);
  box-shadow: none;
  padding: 0;
  font-size: 1.2rem;
}

.form-success {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(32, 120, 66, 0.08);
  color: #1d663b;
  font-size: 0.94rem;
}

.form-success.show {
  display: block;
}

@media (max-width: 1120px) {
  .topbar {
    padding: 14px 12px 0;
  }

  .nav-shell {
    gap: 18px;
    padding: 14px 18px;
  }

  .brand {
    gap: 12px;
  }

  .brand-mark {
    width: 138px;
  }

  .brand-mark.secondary {
    width: 72px;
    padding-left: 12px;
  }

  .nav-links {
    gap: clamp(10px, 1.2vw, 18px);
  }

  .nav-links a {
    font-size: 0.8rem;
    letter-spacing: 0.04em;
  }

  .nav-phone {
    font-size: 0.88rem;
  }

  .nav-button {
    padding: 12px 14px;
    font-size: 0.84rem;
  }

  .cta-panel,
  .ambassador-wrap,
  .legacy-grid,
  .footer-grid,
  .location-grid,
  .proof-grid,
  .hero-copy-shell {
    grid-template-columns: 1fr;
  }

  .config-grid,
  .amenities-grid,
  .video-testimonials-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-copy-shell {
    align-items: end;
  }

  .hero-price-card {
    justify-self: start;
    max-width: 360px;
  }

  .config-card.recommended {
    transform: none;
  }

  .hero-capture-shell {
    width: min(100%, calc(100vw - 32px));
  }

  .story-block {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1120px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
    display: grid;
    align-items: center;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: center;
    gap: 20px;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 214, 150, 0.12);
  }

  .nav-cta {
    grid-column: 3;
    justify-self: end;
    gap: 10px;
  }

  .nav-phone {
    font-size: 0.82rem;
  }
}

@media (max-width: 768px) {
  .hero-stage {
    height: 100svh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .hero-fold {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    justify-content: flex-start;
    min-height: 0;
  }

  .section {
    padding: 72px 0;
  }

  #location.section {
    padding-top: 32px;
    padding-bottom: 38px;
  }

  .topbar {
    padding: 12px 10px 0;
    min-height: 76px;
    flex: 0 0 76px;
  }

  .nav-shell {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px 14px;
  }

  .brand-mark {
    width: 118px;
  }

  .brand-mark.secondary {
    width: 60px;
    padding-left: 12px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-nav-actions {
    display: inline-flex;
    justify-self: end;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .topbar.open .nav-shell {
    position: absolute;
    top: 12px;
    left: 10px;
    right: 10px;
    gap: 18px;
    z-index: 45;
  }

  .topbar.open .nav-links,
  .topbar.open .nav-cta {
    display: grid;
    grid-column: 1 / -1;
  }

  .topbar.open .nav-links {
    gap: 14px;
    padding-top: 8px;
  }

  .topbar.open .nav-links a {
    padding: 10px 4px;
    border-bottom: 1px solid rgba(126, 92, 61, 0.1);
  }

  .topbar.open .nav-cta {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 10px;
    justify-items: center;
  }

  .nav-phone {
    display: block;
    padding: 12px 0 2px;
    text-align: center;
    width: 100%;
  }

  .topbar.open .nav-phone {
    justify-self: center;
    max-width: max-content;
  }

  .nav-button {
    justify-self: end;
    margin-top: 6px;
  }

  .topbar.open .nav-button {
    justify-self: center;
  }

  .hero {
    padding: 14px 10px 22px;
    flex: 1 1 auto;
    min-height: 0;
  }

  .hero-media {
    aspect-ratio: 599 / 900;
    border-radius: 22px;
    height: 100%;
    max-height: none;
  }

  .hero-media::after {
    content: none;
  }

  .hero-art img {
    object-fit: cover;
    object-position: center top;
  }

  .hero-copy-shell {
    gap: 18px;
    padding: 86px 18px 18px;
    align-content: end;
  }

  .hero-tag {
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    max-width: calc(100% - 28px);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-align: center;
    white-space: nowrap;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-price-card {
    width: 100%;
    max-width: none;
  }

  .hero-capture {
    margin-top: 10px;
    padding: 0 10px 20px;
    flex: 0 0 auto;
  }

  .hero-seo-copy {
    margin-top: 16px;
    width: calc(100vw - 20px);
    padding: 0 10px;
  }

  .hero-trust-copy {
    width: calc(100vw - 20px);
    padding: 0 10px;
    margin-top: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .hero-seo-section {
    padding: 0 10px 6px;
    flex: 0 0 auto;
  }

  .hero-seo-copy h1 {
    font-size: clamp(1.35rem, 6.4vw, 1.85rem);
    line-height: 1.02;
  }

  .hero-seo-copy p {
    margin-top: 8px;
    font-size: 0.92rem;
  }

  .hero-capture-shell {
    width: 100%;
    padding: 7px;
  }

  .hero-capture-form {
    gap: 6px;
    min-height: 0;
  }

  .hero-capture-form input,
  .hero-capture-form select {
    padding: 12px 14px;
    font-size: 0.98rem;
  }

  .hero-capture-form button {
    width: 42px;
    min-width: 42px;
    height: 42px;
  }

  .hero-capture-form button svg {
    width: 16px;
    height: 16px;
  }

  .stats-wrap {
    width: 100%;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .stat {
    padding: 20px 14px 18px;
    border-radius: 18px;
    border-right: 0;
    background: linear-gradient(135deg, #2f1b12, #523121);
    border: 1px solid rgba(255, 214, 150, 0.1);
    box-shadow: 0 20px 38px rgba(55, 26, 11, 0.22);
  }

  .config-grid,
  .amenities-grid,
  .video-testimonials-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .lead-card,
  .proof-card,
  .location-card,
  .legacy-card,
  .cta-panel,
  .footer-card,
  .story-block,
  .ambassador-card,
  .amenities-shell,
  .keyword-intro-card {
    padding: 22px;
    border-radius: 24px;
  }

  .video-testimonials-shell {
    padding: 22px;
    border-radius: 24px;
  }

  .map-title {
    top: 18px;
    left: 18px;
    right: 18px;
    gap: 10px;
  }

  .map-badge {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    padding: 8px 12px;
  }

  .ambassador-media img {
    min-height: 340px;
    max-height: 420px;
    border-radius: 24px 24px 0 0;
    object-position: center 18%;
  }

  .ambassador-wrap {
    gap: 0;
  }

  .ambassador-intro {
    justify-self: center;
    margin-bottom: 12px;
    text-align: center;
  }

  .ambassador-media {
    background: rgba(255, 251, 246, 0.72);
    border: 1px solid rgba(182, 122, 39, 0.16);
    border-bottom: 0;
    border-radius: 24px 24px 0 0;
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  .ambassador-card {
    border-radius: 0 0 24px 24px;
    border-top: 0;
    padding-top: 18px;
  }

  .ambassador-table {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 12px;
  }

  .ambassador-cell {
    padding: 0 8px;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .keyword-hero {
    padding-top: 24px;
  }

  .footer {
    padding-bottom: 72px;
  }

  .sticky-bar {
    display: flex;
  }
}

/* Footer Bottom Styles */
.footer-bottom-container {
  margin-top: 28px;
  position: relative;
  z-index: 2;
}

.footer-bottom-card {
  padding: 38px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #2f1b12, #523121);
  color: #fff7eb;
  border: 1px solid rgba(182, 122, 39, 0.16);
  box-shadow: 0 20px 45px rgba(83, 44, 18, 0.08);
}

.footer-bottom-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
  border-bottom: 1px solid rgba(255, 244, 230, 0.12);
  padding-bottom: 28px;
  margin-bottom: 28px;
}

.footer-bottom-col h4 {
  font-family: "Iowan Old Style", "Baskerville", serif;
  font-size: 1.25rem;
  margin: 0 0 18px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.footer-bottom-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-bottom-nav a {
  color: rgba(255, 244, 230, 0.82);
  text-decoration: none;
  font-size: 0.94rem;
  transition: color 220ms ease, padding-left 220ms ease;
  display: inline-flex;
  align-items: center;
}

.footer-bottom-nav a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-about-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 244, 230, 0.82);
  margin: 0;
}

.rera-badge {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(29, 15, 10, 0.12);
  border: 1px solid rgba(29, 15, 10, 0.35);
  border-radius: 6px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.rera-id {
  font-size: 0.94rem;
  color: #fff;
  margin: 0;
}

.rera-id strong {
  color: var(--gold);
}

.footer-advisory-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.advisory-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 244, 230, 0.9);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  transition: all 220ms ease;
}

.advisory-contact-link:hover {
  color: var(--gold);
}

.advisory-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.82;
  transition: opacity 220ms ease;
}

.advisory-contact-link:hover .advisory-icon {
  opacity: 1;
}

.footer-keywords-section {
  margin-top: 32px;
  border-top: 1px solid rgba(255, 244, 230, 0.12);
  padding-top: 24px;
}

.footer-keywords-section h5 {
  font-family: "Iowan Old Style", "Baskerville", serif;
  font-size: 1.15rem;
  color: var(--gold);
  margin: 0 0 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.keywords-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.keywords-cloud span, .keywords-cloud a {
  font-size: 0.8rem;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 244, 230, 0.07);
  border-radius: 999px;
  color: rgba(255, 244, 230, 0.65);
  text-decoration: none;
  transition: all 220ms ease;
}

.keywords-cloud a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.footer-contact-detail {
  font-size: 0.94rem;
  color: rgba(255, 244, 230, 0.82);
  margin: 0 0 12px;
  line-height: 1.5;
}

.footer-contact-detail strong {
  color: #fff;
  display: block;
  margin-bottom: 2px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
}

.footer-contact-detail a {
  color: inherit;
  text-decoration: none;
  transition: color 220ms ease;
}

.footer-contact-detail a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.footer-bottom-copyright {
  text-align: center;
  font-size: 0.86rem;
  color: rgba(255, 244, 230, 0.6);
  line-height: 1.6;
}

.footer-bottom-copyright p {
  margin: 0 0 10px;
}

.footer-bottom-copyright .disclaimer-note {
  font-size: 0.76rem;
  margin-top: 16px;
  text-align: justify;
}

@media (max-width: 960px) {
  .footer-bottom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .footer-bottom-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom-card {
    padding: 24px;
  }
}
