:root {
  --bg: #f6f2ec;
  --surface: #ffffff;
  --surface-alt: #fdfbf8;
  --text: #1a1612;
  --muted: #5c554d;
  --accent: #c49b4d;
  --accent-deep: #9a7328;
  --accent-light: #e8dcc8;
  --gold: #d4a853;
  --dark: #141c19;
  --line: rgba(26, 22, 18, 0.08);
  --shadow: 0 24px 56px rgba(20, 18, 14, 0.06);
  --shadow-lg: 0 32px 64px rgba(20, 18, 14, 0.1);
  --shadow-card: 0 12px 40px rgba(154, 115, 40, 0.08);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Manrope", sans-serif;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--text);
  background: #f8f6f2;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.trust-strip {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-strip span { color: var(--gold); }

.marquee {
  overflow: hidden;
  white-space: nowrap;
  background: #252d2a;
  color: rgba(255, 255, 255, 0.72);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  user-select: none;
}

.marquee-track {
  display: inline-flex;
  animation: marquee-scroll 50s linear infinite;
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 2ch;
  padding-right: 2ch;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
  .marquee-content:last-child {
    display: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 22, 18, 0.07);
}

.header-shell {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.header-note {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand,
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  padding: 5px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1;
}

.brand-text {
  display: inline-block;
}

.brand span,
.footer-brand span {
  color: var(--accent);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.nav a,
.header-cta,
.btn {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav a {
  color: rgba(26, 22, 18, 0.78);
  font-size: 0.8125rem;
  transition: color var(--transition);
}

.nav a:hover {
  color: var(--accent-deep);
}

.nav a.is-active {
  color: var(--accent-deep);
  font-weight: 800;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 6px;
  background: var(--accent-deep);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(154, 115, 40, 0.2);
  transition: background var(--transition), box-shadow var(--transition);
}

.header-cta:hover {
  background: #855f20;
  box-shadow: 0 4px 12px rgba(154, 115, 40, 0.25);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: background var(--transition);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 252, 248, 0.99);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  z-index: 40;
}

.nav-drawer.is-open {
  display: block;
}

.nav-drawer-nav {
  flex-direction: column;
  gap: 4px;
}

.nav-drawer-nav a {
  display: block;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
}

.nav-drawer-nav a:hover {
  background: rgba(212, 168, 83, 0.08);
}

.nav-drawer-nav .header-cta {
  margin-top: 12px;
  justify-content: center;
}

.hero {
  position: relative;
  padding: 26px 0 42px;
}

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

.hero-media {
  background: url("https://sayahomes.com/images/saya-gold-avenue/gold-avenue-banner.webp") center/cover no-repeat;
  background-attachment: scroll;
}

@media (min-width: 821px) {
  .hero-media { background-attachment: fixed; }
}

.hero-overlay {
  background:
    linear-gradient(105deg, rgba(14, 12, 10, 0.92) 0%, rgba(22, 19, 16, 0.75) 45%, rgba(28, 24, 20, 0.4) 100%),
    linear-gradient(180deg, transparent 60%, rgba(246, 242, 236, 0.97) 100%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 420px);
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 120px);
}

.hero-copy {
  color: #fff;
  padding: 68px 0;
}

.eyebrow,
.form-kicker,
.field span,
.contact-lines span {
  display: block;
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section:not(.hero) .eyebrow {
  margin-bottom: 12px;
  color: var(--accent-deep);
}

.eyebrow {
  color: var(--accent-deep);
  letter-spacing: 0.12em;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.hero h1,
.section h2,
.form-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 12.5ch;
  font-size: clamp(3.8rem, 7vw, 6.4rem);
  text-wrap: balance;
  letter-spacing: -0.045em;
}

.hero-text,
.section-text,
.feature-list p,
.plan-card li,
.advantage-card p,
.footer-copy,
.form-note {
  line-height: 1.7;
}

.hero-text {
  max-width: 58ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.hero-summary article {
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.hero-summary strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 0.95;
  color: #fff;
}

.hero-summary span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.btn:hover {
  box-shadow: 0 4px 16px rgba(20, 18, 14, 0.12);
}

.btn-primary {
  background: var(--accent-deep);
  color: #fff;
  box-shadow: 0 2px 8px rgba(154, 115, 40, 0.22);
}

.btn-primary:hover {
  background: #855f20;
  box-shadow: 0 4px 16px rgba(154, 115, 40, 0.28);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-wide {
  width: 100%;
}

.hero-feature-card,
.enquiry-form {
  padding: 26px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-side {
  display: grid;
  gap: 16px;
}

.hero-feature-card {
  background: rgba(22, 20, 18, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.enquiry-form-hero {
  background: #fff;
  border: 1px solid rgba(26, 22, 18, 0.08);
  box-shadow: 0 16px 48px rgba(20, 18, 14, 0.06);
}

.form-kicker {
  color: var(--muted);
}

.form-title {
  font-size: 1.95rem;
  color: var(--text);
}

.hero-feature-card .form-title {
  color: #fff;
}

.feature-points {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.feature-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9375rem;
}

.feature-points span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
  margin-bottom: 14px;
}

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

.field input,
.field select,
.field textarea {
  width: 100%;
  margin-top: 8px;
  padding: 16px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(31, 26, 22, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent-deep);
  box-shadow: 0 0 0 3px rgba(154, 115, 40, 0.12);
  background: #fff;
}

.field textarea {
  min-height: 126px;
  resize: vertical;
}

.field-full {
  grid-column: 1 / -1;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  min-height: 1.4em;
  margin: 12px 0 0;
  color: var(--text);
  font-size: 0.92rem;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.78;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
  background:
    radial-gradient(circle at top, rgba(154, 115, 40, 0.18), transparent 36%),
    linear-gradient(180deg, #f7f1e7 0%, #fffaf3 100%);
}

.thank-you-panel {
  width: min(100%, 680px);
  padding: 48px 36px;
  border: 1px solid rgba(26, 22, 18, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 60px rgba(20, 18, 14, 0.08);
  text-align: center;
}

.thank-you-panel h1 {
  margin: 10px 0 16px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
}

.thank-you-panel .section-text {
  max-width: 42ch;
  margin: 0 auto 24px;
}

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

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

.stat-card,
.plan-card,
.gallery-card,
.advantage-card,
.location-list article {
  background: var(--surface);
  box-shadow: 0 4px 24px rgba(20, 18, 14, 0.06);
  border: 1px solid rgba(26, 22, 18, 0.06);
  transition: box-shadow var(--transition);
}

.stat-card:hover,
.plan-card:hover,
.advantage-card:hover,
.location-list article:hover {
  box-shadow: 0 16px 48px rgba(20, 18, 14, 0.08);
}

.stat-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--accent-deep);
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 0.96;
  color: var(--accent-deep);
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.section-alt {
  background: #faf9f7;
}

.section h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  position: relative;
}

.section-copy h2 {
  max-width: 18ch;
}

.section-head h2 {
  max-width: none;
}

.section-copy h2::after,
.section-head h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 20px;
  background: var(--accent-deep);
  border-radius: 2px;
}

.section-text {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 54ch;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 40px;
  max-width: 720px;
}

.section-head .section-text.narrow {
  margin-top: 4px;
}

.narrow {
  max-width: 52ch;
}

.split-layout,
.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.split-layout .section-copy {
  max-width: 520px;
}

.split-layout .section-media {
  position: relative;
}

.split-layout.reverse {
  grid-template-columns: 1fr 1fr;
}

.split-layout.reverse .section-copy {
  order: 2;
}

.split-layout.reverse .section-media {
  order: 1;
}

.feature-list {
  display: grid;
  gap: 0;
  margin-top: 32px;
}

.feature-list article {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.feature-list article:first-child {
  border-top: none;
  padding-top: 0;
}

.feature-list h3,
.plan-card strong,
.advantage-card h3,
.location-list strong {
  margin: 0;
}

.feature-list h3,
.advantage-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
}

.feature-list p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.section-media img {
  width: 100%;
  min-height: 400px;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 48px rgba(20, 18, 14, 0.08);
}

.plans-hero {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  margin-bottom: 40px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 8px 32px rgba(20, 18, 14, 0.06);
  border: 1px solid rgba(26, 22, 18, 0.06);
}

.plans-hero img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.plans-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 32px;
  background: var(--surface);
}

.plans-summary span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-deep);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plans-summary strong {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--text);
}

.plans-summary p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.plan-card {
  padding: 24px 22px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.plan-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: var(--accent-deep);
}

.plan-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.plan-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--text);
}

.plan-card p {
  margin: 4px 0 16px;
  color: var(--muted);
  font-size: 0.9375rem;
  font-weight: 500;
}

.plan-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.plan-card li + li {
  margin-top: 6px;
}

/* Amenities section */
.section-amenities .section-copy {
  max-width: 560px;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 2px 12px rgba(20, 18, 14, 0.04);
  border: 1px solid rgba(26, 22, 18, 0.06);
  border-left: 3px solid var(--accent-deep);
  transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
  min-width: 0;
}

.amenity-item:hover {
  box-shadow: 0 8px 28px rgba(20, 18, 14, 0.08);
  border-color: rgba(154, 115, 40, 0.2);
  background: #fff;
}

.amenity-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  border-radius: 10px;
  background: rgba(154, 115, 40, 0.1);
  position: relative;
}

.amenity-icon::after {
  content: "";
  width: 6px;
  height: 10px;
  border: 2px solid var(--accent-deep);
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg) translateY(-1px);
  position: absolute;
}

.amenity-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.3;
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

@media (min-width: 900px) {
  .section-amenities .amenity-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}

.section-media-amenities img {
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 56px rgba(20, 18, 14, 0.1);
}

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

.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 4px 24px rgba(20, 18, 14, 0.06);
  border: 1px solid rgba(26, 22, 18, 0.06);
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover {
  box-shadow: 0 24px 56px rgba(20, 18, 14, 0.1);
}

.gallery-card:hover img {
  transform: scale(1.03);
}

.gallery-card figcaption {
  padding: 16px 20px 18px;
  color: var(--muted);
  background: var(--surface);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.advantage-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  text-align: left;
  min-height: 200px;
}

.advantage-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  padding: 12px;
  border-radius: 12px;
  background: rgba(154, 115, 40, 0.08);
}

.advantage-card h3 {
  margin-top: 20px;
  font-weight: 600;
}

.advantage-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

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

.location-list article {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 24px;
  border-radius: var(--radius-lg);
  min-height: 80px;
}

.location-list article:hover {
  box-shadow: 0 12px 36px rgba(20, 18, 14, 0.07);
}

.location-list strong {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
}

.location-list span {
  color: var(--accent-deep);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.section-contact {
  padding-top: 80px;
}

.contact-shell {
  padding: 48px 48px;
  border-radius: var(--radius-lg);
  background: var(--dark);
  color: #fff;
  box-shadow: 0 24px 64px rgba(20, 18, 14, 0.14);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-shell .section-copy h2 {
  max-width: none;
}

.contact-shell .section-text {
  margin-top: 14px;
}

.contact-shell .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.contact-shell .section-text,
.contact-shell .field span,
.contact-lines span {
  color: rgba(255, 255, 255, 0.74);
}

.contact-lines {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.contact-lines > div {
  padding: 4px 0;
}

.contact-lines strong {
  display: block;
  margin-top: 6px;
  font-size: 1.0625rem;
  font-weight: 600;
}

.contact-shell .enquiry-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.contact-shell .field input,
.contact-shell .field select,
.contact-shell .field textarea {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.contact-shell .field input:focus,
.contact-shell .field select:focus,
.contact-shell .field textarea:focus {
  border-color: rgba(240, 201, 141, 0.5);
  box-shadow: 0 0 0 4px rgba(240, 201, 141, 0.08);
  background: rgba(255, 255, 255, 0.12);
}

.site-footer {
  padding: 36px 0 42px;
}

.footer-shell {
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  background: #1a201d;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-block {
  display: grid;
  gap: 16px;
}

.footer-brand {
  font-size: 1.8rem;
}

.footer-brand .brand-text {
  align-items: baseline;
}

.footer-copy {
  margin: 0;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-column h3 {
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.footer-column a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
}

.footer-meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-layout,
  .split-layout,
  .contact-shell,
  .plans-hero {
    grid-template-columns: 1fr;
  }

  .split-layout .section-copy {
    max-width: none;
  }

  .stats-grid,
  .plans-grid,
  .gallery-grid,
  .advantages-grid,
  .location-list {
    grid-template-columns: 1fr 1fr;
  }

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

  .gallery-wide {
    grid-column: auto;
  }

  .stats-band {
    margin-top: 0;
  }

  .section-media img {
    max-height: none;
  }
}

@media (max-width: 820px) {
  body {
    background: #f8f6f2;
  }

  .trust-strip {
    padding: 10px 16px;
    font-size: 0.625rem;
    letter-spacing: 0.1em;
  }

  .marquee {
    display: none;
  }

  .site-header {
    position: sticky;
    top: 0;
    border-bottom: 1px solid rgba(26, 22, 18, 0.08);
  }

  .header-shell {
    min-height: 56px;
    padding: 12px 0;
    grid-template-columns: 1fr auto auto;
    gap: 16px;
    align-items: center;
  }

  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .header-cta {
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
  }

  .hero {
    padding-top: 0;
    padding-bottom: 32px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(18, 15, 12, 0.72) 0%, rgba(18, 15, 12, 0.4) 50%, rgba(248, 246, 242, 0.98) 85%);
  }

  .hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
  }

  .hero-copy {
    padding: 28px 0 24px;
  }

  .hero .eyebrow {
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(1.875rem, 6.5vw, 2.75rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
  }

  .hero-text {
    max-width: none;
    font-size: 0.9375rem;
    margin-top: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
  }

  .hero-tags {
    display: none;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 50px;
    justify-content: center;
  }

  .hero-feature-card,
  .enquiry-form,
  .plans-summary,
  .stat-card,
  .plan-card,
  .advantage-card,
  .location-list article,
  .footer-shell {
    border-radius: 12px;
  }

  .split-layout .section-media,
  .split-layout.reverse .section-media {
    order: 1;
  }

  .split-layout .section-copy,
  .split-layout.reverse .section-copy {
    order: 2;
  }

  .section-amenities .split-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  #amenities .section-media {
    order: 0;
    width: 100%;
    margin-bottom: 24px;
  }

  #amenities .section-copy {
    order: 1;
    width: 100%;
  }

  .section-amenities .split-layout {
    gap: 0;
  }

  .hero-summary,
  .plans-grid,
  .amenity-grid,
  .advantages-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .gallery-grid,
  .location-list {
    grid-template-columns: 1fr;
  }

  .stats-band {
    padding: 20px 0 0;
    margin-top: 0;
  }

  .stats-grid {
    gap: 12px;
  }

  .section-media img {
    min-height: 240px;
    border-radius: 12px;
  }

  .plans-hero {
    border-radius: 12px;
  }

  .plans-hero img {
    min-height: 200px;
  }

  .plans-summary,
  .stat-card,
  .plan-card,
  .advantage-card,
  .location-list article {
    padding: 20px 18px;
  }

  .section h2,
  .form-title {
    max-width: none;
  }

  .section h2 {
    font-size: clamp(1.75rem, 5.5vw, 2.25rem);
    line-height: 1.2;
  }

  .section-copy h2::after,
  .section-head h2::after {
    margin-top: 14px;
  }

  .section-text,
  .feature-list p,
  .advantage-card p,
  .plans-summary p,
  .gallery-card figcaption,
  .footer-copy,
  .footer-meta {
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .enquiry-form-hero {
    padding: 20px 18px;
    margin-top: 0;
  }

  .form-title {
    font-size: 1.25rem;
    line-height: 1.25;
  }

  .form-note {
    font-size: 0.8125rem;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 48px;
    padding: 14px 16px;
  }

  .gallery-card img {
    height: 220px;
  }

  .gallery-card {
    border-radius: 12px;
  }

  .section-amenities .section-copy {
    max-width: none;
  }

  .section-amenities h2 {
    font-size: 1.5rem;
    line-height: 1.25;
  }

  .section-amenities .section-text {
    margin-top: 12px;
  }

  #amenities .section-media {
    margin-top: 8px;
    width: 100%;
  }

  #amenities .section-media img {
    width: 100%;
    min-height: 240px;
    max-height: 320px;
    object-fit: cover;
    border-radius: 12px;
  }

  .amenity-grid {
    gap: 14px;
    margin-top: 28px;
  }

  .amenity-item {
    padding: 18px 20px;
  }

  .amenity-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
  }

  .amenity-name {
    font-size: 0.875rem;
  }

  .footer-top {
    gap: 24px;
  }

  .hero-feature-card {
    display: none;
  }

  .hero-summary {
    display: none;
  }

  .section {
    padding: 56px 0;
  }

  .section-head {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
  }

  .location-list article {
    align-items: center;
  }

  .stat-card strong,
  .plans-summary strong,
  .plan-card strong {
    font-size: 1.75rem;
  }

  .nav-drawer {
    padding: 16px 20px 24px;
    border-bottom: 1px solid rgba(26, 22, 18, 0.08);
  }

  .nav-drawer-nav a {
    min-height: 48px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.02em;
  }

  .nav-drawer-nav .header-cta {
    margin-top: 16px;
    min-height: 50px;
  }

  .contact-shell {
    padding: 28px 20px;
    border-radius: 12px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1180px);
    margin-left: auto;
    margin-right: auto;
  }

  .site-header .container {
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
  }

  .trust-strip {
    padding: 10px 16px;
    font-size: 0.6rem;
  }

  .brand,
  .footer-brand {
    font-size: 1.25rem;
  }

  .brand-logo img {
    width: 36px;
    height: 36px;
  }

  .header-cta {
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
  }

  .header-note {
    display: none;
  }

  .btn {
    min-height: 50px;
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
  }

  .section {
    padding: 48px 0;
  }

  .hero {
    padding-bottom: 28px;
  }

  .hero-copy {
    padding: 24px 0 20px;
  }

  .hero h1 {
    font-size: clamp(1.625rem, 8vw, 2.25rem);
    line-height: 1.15;
  }

  .hero-text {
    font-size: 0.875rem;
  }

  .hero-actions {
    margin-top: 20px;
    gap: 10px;
  }

  .enquiry-form,
  .contact-shell {
    padding: 22px 18px;
  }

  .enquiry-form-hero {
    padding: 20px 18px;
  }

  .form-grid {
    gap: 16px;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 48px;
    padding: 14px 16px;
    font-size: 1rem;
  }

  .plans-summary strong,
  .plan-card strong,
  .stat-card strong {
    font-size: 1.5rem;
  }

  .form-title {
    font-size: 1.125rem;
    line-height: 1.3;
  }

  .section h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .location-list strong {
    font-size: 1rem;
  }

  .section-media img,
  .plans-hero img,
  .gallery-card img {
    min-height: 200px;
    height: 200px;
  }

  #amenities .section-media img {
    min-height: 220px;
    max-height: 280px;
  }

  .advantages-grid,
  .location-list,
  .stats-grid {
    gap: 12px;
  }

  .location-list article,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .stat-card,
  .plan-card,
  .advantage-card,
  .location-list article {
    padding: 18px 16px;
  }

  .footer-shell {
    padding: 28px 20px;
  }

  .footer-top {
    gap: 28px;
  }

  .footer-links {
    gap: 4px;
  }

  .footer-column a {
    min-height: 40px;
    display: flex;
    align-items: center;
    font-size: 0.9375rem;
  }

  .footer-bottom {
    gap: 12px;
    padding-top: 20px;
  }

  .footer-meta {
    font-size: 0.8125rem;
    line-height: 1.6;
  }

  .section-amenities h2 {
    font-size: 1.375rem;
  }

  .amenity-item {
    padding: 16px 18px;
  }

  .amenity-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
  }

  .amenity-name {
    font-size: 0.875rem;
  }

  .nav-drawer-nav a {
    min-height: 48px;
  }
}
