@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap");

:root {
  --gold: #b78b52;
  --gold-deep: #956d3b;
  --sand: #f5f1ea;
  --ivory: #f8f5ef;
  --charcoal: #2a2a2a;
  --taupe: #8c7b6b;
  --border: rgba(42, 42, 42, 0.12);
  --border-strong: rgba(42, 42, 42, 0.2);
  --glass: rgba(255, 255, 255, 0.78);
  --glass-strong: rgba(255, 255, 255, 0.88);
  --shadow-soft: 0 18px 44px rgba(42, 42, 42, 0.08);
  --shadow-card: 0 28px 70px rgba(42, 42, 42, 0.12);
  --shadow-strong: 0 32px 90px rgba(42, 42, 42, 0.16);
  --max-width: 1200px;
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Montserrat", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(183, 139, 82, 0.16), transparent 22rem),
    radial-gradient(circle at top right, rgba(140, 123, 107, 0.16), transparent 28rem),
    linear-gradient(180deg, #faf7f2 0%, var(--sand) 42%, #efe7dc 100%);
  color: var(--charcoal);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

button,
.btn,
.gallery-dot,
.gallery-arrow {
  cursor: pointer;
}

.shell {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.topbar.is-scrolled {
  background: rgba(248, 245, 239, 0.88);
  border-color: rgba(42, 42, 42, 0.08);
  box-shadow: 0 18px 48px rgba(42, 42, 42, 0.08);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand img {
  width: 138px;
  max-height: 56px;
  object-fit: contain;
}

.brand span {
  display: none;
  color: rgba(42, 42, 42, 0.6);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  align-items: center;
}

.nav-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  gap: 1.35rem;
}

.nav-links a {
  position: relative;
  color: rgba(42, 42, 42, 0.72);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: rgba(183, 139, 82, 0.72);
  transition: transform 220ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--charcoal);
  outline: none;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  gap: 0.9rem;
  margin-left: auto;
}

.nav-phone {
  display: none;
  color: rgba(42, 42, 42, 0.66);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: min(860px, calc(100svh - 10px));
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  transform: scale(1.02);
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 6.2s ease;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(104deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.18) 44%, rgba(42, 42, 42, 0.06)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.08) 42%, rgba(245, 241, 234, 0.18) 72%, var(--sand) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: grid;
  align-items: end;
  gap: 1.2rem;
  padding: clamp(6.2rem, 12vw, 9.4rem) 0 clamp(2.7rem, 6vw, 4.2rem);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.3rem;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
.plan-value,
.hero-panel-item strong,
.highlight-card strong,
.feature-card strong,
.amenity-card strong,
.trust-card strong,
.faq-card strong,
.media-frame figcaption strong,
.contact-card strong,
.footer-panel strong {
  font-family: var(--font-heading);
  margin: 0;
}

h1 {
  max-width: 760px;
  color: var(--ivory);
  font-size: clamp(2.9rem, 7.2vw, 5.35rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.hero-copy p {
  max-width: 600px;
  margin: 1.1rem 0 0;
  color: rgba(248, 245, 239, 0.88);
  font-size: clamp(0.98rem, 1.25vw, 1.06rem);
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.hero-badge {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--ivory);
  padding: 0.72rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.45rem;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 1.55rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease,
    background 200ms ease,
    color 200ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn-primary {
  border: 1px solid rgba(183, 139, 82, 0.76);
  background: linear-gradient(135deg, #c79b60, var(--gold-deep));
  color: #fff;
  box-shadow: 0 18px 36px rgba(149, 109, 59, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 24px 44px rgba(149, 109, 59, 0.34);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  color: var(--ivory);
  box-shadow: 0 14px 34px rgba(42, 42, 42, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-panel,
.highlight-card,
.feature-card,
.amenity-card,
.plan-card,
.location-panel,
.form-panel,
.faq-card,
.trust-card,
.footer-panel,
.contact-card,
.thankyou-panel {
  border: 1px solid var(--border);
  background: var(--glass);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-panel {
  align-self: end;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--ivory);
  padding: 1.15rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.panel-eyebrow {
  display: inline-block;
  color: rgba(248, 245, 239, 0.86);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-panel-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0.9rem;
}

.hero-panel-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.92rem;
}

.hero-panel-item span {
  display: block;
  color: rgba(248, 245, 239, 0.72);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-panel-item strong {
  display: block;
  margin-top: 0.7rem;
  color: var(--ivory);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.02;
}

.hero-panel p {
  margin: 0.9rem 0 0;
  color: rgba(248, 245, 239, 0.76);
  font-size: 0.88rem;
  line-height: 1.62;
}

.section {
  padding: clamp(2.9rem, 6vw, 4.8rem) 0;
}

section[id] {
  scroll-margin-top: 108px;
}

.section-header {
  max-width: 760px;
}

.section-header-centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header-centered .eyebrow {
  justify-content: center;
}

.section-title {
  margin: 0;
  font-size: clamp(2.15rem, 4.4vw, 3.85rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.section-copy {
  margin: 0.9rem 0 0;
  color: rgba(42, 42, 42, 0.68);
  font-size: 0.98rem;
  line-height: 1.72;
}

.overview-grid,
.contact-shell,
.essentials-grid {
  display: grid;
  gap: 1.15rem;
}

.overview-stack {
  display: grid;
  gap: 0.95rem;
}

.highlight-grid,
.feature-grid,
.amenity-grid,
.faq-grid,
.trust-grid {
  display: grid;
  gap: 1rem;
}

.highlight-grid {
  margin-top: 1.25rem;
}

.highlight-card,
.feature-card,
.amenity-card,
.plan-card,
.faq-card,
.trust-card {
  border-radius: var(--radius-md);
  padding: 1.2rem;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.highlight-card:hover,
.feature-card:hover,
.amenity-card:hover,
.plan-card:hover,
.faq-card:hover,
.trust-card:hover {
  transform: translateY(-3px);
  border-color: rgba(183, 139, 82, 0.32);
  box-shadow: var(--shadow-strong);
}

.highlight-card {
  background:
    linear-gradient(150deg, rgba(183, 139, 82, 0.14), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.84);
}

.highlight-card span,
.plan-card span,
.gallery-caption span,
.media-frame figcaption span,
.location-pill,
.mini-compliance span,
.field label,
.footer-panel strong {
  display: inline-block;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.highlight-card strong {
  display: block;
  margin-top: 0.8rem;
  font-size: clamp(1.35rem, 2.1vw, 1.8rem);
  line-height: 1.02;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 100%;
  box-shadow: var(--shadow-card);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 42, 42, 0.58), rgba(42, 42, 42, 0.08) 56%);
}

.media-frame figcaption {
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 2;
}

.media-frame figcaption strong {
  display: block;
  margin-top: 0.55rem;
  color: var(--ivory);
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  line-height: 1.02;
}

.feature-grid {
  margin-top: 1.45rem;
}

.compact-feature-grid {
  margin-top: 0;
}

.compact-feature-grid .feature-card {
  padding: 1.05rem;
}

.compact-feature-grid .feature-card strong {
  font-size: 1.35rem;
}

.compact-feature-grid .feature-card p {
  margin-top: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.62;
}

.feature-card strong,
.amenity-card strong,
.trust-card strong,
.faq-card strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1.05;
}

.feature-card p,
.amenity-card p,
.plan-card p,
.faq-card p,
.trust-card p,
.contact-card p {
  margin: 0.8rem 0 0;
  color: rgba(42, 42, 42, 0.68);
  line-height: 1.75;
}

.gallery-section .section-header,
.trust-section .section-header {
  margin-bottom: 1.7rem;
}

.gallery-shell {
  border-radius: var(--radius-lg);
}

.gallery {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow-card);
  touch-action: pan-y;
}

.gallery-track {
  display: flex;
  width: 100%;
  transition: transform 520ms ease;
  will-change: transform;
}

.gallery-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
}

.gallery-slide img {
  width: 100%;
  height: clamp(430px, 56vw, 760px);
  object-fit: cover;
}

.gallery-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(42, 42, 42, 0.6), rgba(42, 42, 42, 0.08) 58%),
    linear-gradient(90deg, rgba(183, 139, 82, 0.14), transparent 54%);
}

.gallery-caption {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 2;
}

.gallery-caption strong {
  display: block;
  margin-top: 0.55rem;
  color: var(--ivory);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1;
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.gallery-dots,
.gallery-arrows,
.location-pills,
.mini-compliance,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.gallery-dot,
.gallery-arrow {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  color: var(--charcoal);
}

.gallery-dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  padding: 0;
}

.gallery-dot.is-active {
  background: var(--gold);
  border-color: rgba(183, 139, 82, 0.64);
}

.gallery-arrow {
  min-height: 44px;
  border-radius: 999px;
  padding: 0 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.essentials-grid {
  align-items: start;
}

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

.plan-card {
  background:
    linear-gradient(150deg, rgba(183, 139, 82, 0.14), rgba(255, 255, 255, 0.4)),
    rgba(255, 255, 255, 0.88);
}

.plan-value {
  display: block;
  margin-top: 0.8rem;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.location-panel {
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.location-section .location-compact {
  max-width: 920px;
}

.location-compact .location-panel {
  margin-top: 1rem;
}

.location-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.location-list li {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.62);
  color: rgba(42, 42, 42, 0.72);
  padding: 0.92rem 1rem 0.92rem 2.25rem;
  line-height: 1.65;
}

.location-list li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.45rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: var(--gold);
}

.location-pill,
.mini-compliance span {
  border: 1px solid rgba(42, 42, 42, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(42, 42, 42, 0.72);
  padding: 0.78rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}

.contact-shell {
  align-items: start;
}

.contact-copy {
  padding-top: 0.2rem;
}

.contact-card {
  margin-top: 1rem;
  border-radius: var(--radius-md);
  padding: 1.2rem;
}

.contact-card strong {
  display: block;
  font-size: 1.75rem;
  line-height: 1.05;
}

.form-panel,
.thankyou-panel {
  border-radius: var(--radius-lg);
  padding: clamp(1.05rem, 2.2vw, 1.55rem);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.92), rgba(245, 241, 234, 0.84)),
    var(--glass-strong);
}

.field-grid {
  display: grid;
  gap: 0.9rem;
}

.field {
  margin: 0;
}

.field.is-hidden {
  display: none;
}

.field label {
  display: block;
  margin-bottom: 0.55rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(42, 42, 42, 0.14);
  border-radius: 16px;
  background: rgba(248, 245, 239, 0.78);
  color: rgba(42, 42, 42, 0.92);
  padding: 0.86rem 0.95rem;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(42, 42, 42, 0.44);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(183, 139, 82, 0.72);
  background: rgba(248, 245, 239, 0.96);
  box-shadow: 0 0 0 3px rgba(183, 139, 82, 0.14);
}

.phone-input-row {
  display: grid;
  gap: 0.7rem;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #cb7f7f;
}

.field-error {
  display: none;
  margin-top: 0.45rem;
  color: #b35e5e;
  font-size: 0.78rem;
}

.field.has-error .field-error {
  display: block;
}

.form-panel .btn {
  width: 100%;
  margin-top: 1rem;
}

.form-error {
  display: none;
  margin-top: 1rem;
  border: 1px solid rgba(179, 94, 94, 0.24);
  border-radius: 18px;
  background: rgba(179, 94, 94, 0.08);
  color: #8e4f4f;
  padding: 0.9rem 1rem;
  font-size: 0.86rem;
}

.form-error.is-visible {
  display: block;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.form-success.is-visible {
  display: block;
}

.form-success h3 {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 0.95;
}

.disclaimer {
  margin: 0.7rem 0 0;
  color: rgba(42, 42, 42, 0.54);
  font-size: 0.74rem;
  line-height: 1.65;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.faq-grid,
.trust-grid {
  margin-top: 1.5rem;
}

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

.footer-panel {
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 2.8vw, 2rem);
  background:
    linear-gradient(160deg, rgba(183, 139, 82, 0.12), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.9);
}

.footer-grid {
  display: grid;
  gap: 1.3rem;
}

.footer-panel strong {
  display: block;
  margin-bottom: 0.6rem;
}

.footer-panel p,
.footer-panel a,
.copyright {
  color: rgba(42, 42, 42, 0.66);
  font-size: 0.9rem;
  line-height: 1.75;
}

.copyright {
  margin: 1rem 0 0;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 42;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(183, 139, 82, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--charcoal);
  padding: 0 1.2rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.mobile-contact-bar {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 45;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  width: min(430px, calc(100% - 24px));
  min-height: 62px;
  padding: 0.45rem;
  transform: translateX(-50%);
  border: 1px solid rgba(42, 42, 42, 0.1);
  border-radius: 999px;
  background: rgba(248, 245, 239, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-card);
}

.mobile-contact-bar a {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(42, 42, 42, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--charcoal);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-contact-bar a:last-child {
  border-color: rgba(183, 139, 82, 0.54);
  background: linear-gradient(135deg, #c79b60, var(--gold-deep));
  color: #fff;
}

.thankyou-page {
  min-height: calc(100svh - 82px);
  display: grid;
  align-items: center;
}

.thankyou-panel {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.thankyou-panel h1 {
  color: var(--charcoal);
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.thankyou-panel .btn-ghost {
  border-color: rgba(42, 42, 42, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--charcoal);
}

.js-enhanced [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms ease, transform 800ms ease;
}

.js-enhanced [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 700px) {
  .brand span {
    display: block;
  }

  .cta-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .highlight-grid,
  .feature-grid,
  .amenity-grid,
  .faq-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .field.is-phone {
    grid-column: span 2;
  }

  .phone-input-row {
    grid-template-columns: minmax(148px, 0.48fr) minmax(0, 1fr);
  }
}

@media (min-width: 980px) {
  .nav-phone {
    display: block;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.64fr);
    align-items: end;
  }

  .overview-grid,
  .contact-shell,
  .essentials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
  }

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

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

  .mobile-contact-bar {
    display: none;
  }
}

@media (max-width: 979px) {
  .whatsapp-float {
    display: none;
  }
}

@media (max-width: 699px) {
  .shell {
    width: min(100% - 24px, 100%);
  }

  .nav-actions .btn {
    min-height: 46px;
    padding: 0 1.1rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-grid {
    padding-top: 6rem;
  }

  .hero-panel-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-controls {
    align-items: center;
  }

  body {
    padding-bottom: 86px;
  }
}

@media (max-width: 520px) {
  .nav {
    min-height: 76px;
  }

  .brand img {
    width: 112px;
  }

  h1 {
    font-size: 2.45rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-panel-grid {
    grid-template-columns: 1fr;
  }

  .gallery-slide img,
  .media-frame img {
    min-height: 360px;
    height: 360px;
  }

  .gallery-caption strong,
  .media-frame figcaption strong {
    font-size: 1.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
