/* ============================================================
   TENDED — Prestige Institution Design
   Palette: Deep Green / Ivory / Muted Gold / Charcoal
   Typography: Lora (display) + DM Sans (utility) — self-hosted
   ============================================================ */

/* #6: Self-hosted fonts */
@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/lora-regular.woff2) format("woff2");
}
@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(fonts/lora-500.woff2) format("woff2");
}
@font-face {
  font-family: "Lora";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(fonts/lora-600.woff2) format("woff2");
}
@font-face {
  font-family: "Lora";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/lora-italic.woff2) format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/dm-sans-latin.woff2) format("woff2");
}
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(fonts/dm-sans-latin.woff2) format("woff2");
}


:root {
  --green:        #1a3c24;
  --green-deep:   #0f2618;
  --ivory:        #f6f1e7;
  --ivory-warm:   #ede6d8;
  --cream:        #faf7f0;
  --gold:         #c4a265;
  --gold-muted:   rgba(196, 162, 101, 0.35);
  --charcoal:     #2a2a28;
  --text:         #3a3a38;
  --text-muted:   #5a5a56;
  --text-heading:  #1a2e20;
  --white:        #ffffff;

  --serif:   "Lora", "Georgia", serif;
  --sans:    "DM Sans", "Helvetica Neue", Helvetica, sans-serif;

  --container:    1100px;
  --section-pad:  6.5rem;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* #4: Accessible focus styles */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
*:focus:not(:focus-visible) {
  outline: none;
}

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus {
  left: 1rem; top: 1rem; z-index: 1000;
  background: var(--green); color: var(--ivory);
  padding: 0.75rem 1rem; font-family: var(--sans);
}

.hide-mobile { display: inline; }


/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 240, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196, 162, 101, 0.18);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* #7: Brand mark + wordmark */
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--green);
}

.brand-mark {
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.site-nav a {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.site-nav a:hover {
  color: var(--green);
}

.header-phone {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.2s;
}

.header-phone:hover {
  color: var(--gold);
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 38, 24, 0.55) 0%,
    rgba(15, 38, 24, 0.4) 50%,
    rgba(15, 38, 24, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 5rem 2rem 4rem;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 2rem;
  background: rgba(15, 38, 24, 0.5);
  display: inline-block;
  padding: 0.4rem 1rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.005em;
  color: var(--ivory);
  margin-bottom: 1.8rem;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(246, 241, 231, 0.85);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

/* #3: Hero actions — two equal CTAs */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--green);
  padding: 1rem 2.4rem;
  border: 1px solid rgba(196, 162, 101, 0.3);
  cursor: pointer;
  transition: background 0.25s, transform 0.15s, border-color 0.25s;
}

.cta:hover {
  background: var(--green-deep);
  border-color: var(--gold);
  transform: translateY(-1px);
}

/* #3: Phone CTA — equal visual weight */
.cta-phone {
  background: transparent;
  border-color: rgba(246, 241, 231, 0.4);
}

.cta-phone:hover {
  background: rgba(246, 241, 231, 0.1);
  border-color: var(--ivory);
}


/* ============================================================
   CREDENTIALS STRIP
   ============================================================ */
.strip {
  padding: 1.5rem 2rem;
  background: var(--green-deep);
  text-align: center;
}

.strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.strip-inner span {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory-warm);
}

.strip-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}


/* ============================================================
   MONOGRAM SEPARATOR
   ============================================================ */
.monogram-break {
  padding: 2.5rem 0;
  text-align: center;
  background: var(--cream);
}

.monogram-break img {
  width: 44px;
  height: 44px;
  opacity: 0.7;
}


/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: var(--section-pad) 2rem;
}

.section-cream {
  background: var(--ivory);
}

.section-dark {
  background: var(--green-deep);
  color: var(--ivory);
}

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

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

.section-cta {
  margin-top: 3rem;
  text-align: center;
}

.cta-micro {
  margin-top: 0.8rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.editorial-heading {
  margin-bottom: 2rem;
}

.editorial-heading h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-heading);
  margin-bottom: 1rem;
}

.editorial-heading-light h2 {
  color: var(--ivory);
}

.gold-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.section-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 560px;
}

.section-body-light {
  color: rgba(246, 241, 231, 0.75);
}


/* ============================================================
   SPLIT LAYOUT
   ============================================================ */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-reverse {
  direction: rtl;
}

.split-reverse > * {
  direction: ltr;
}

.split-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-heading);
  margin-bottom: 1.2rem;
}

.split-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.split-text p:last-child {
  margin-bottom: 0;
}

.split-image {
  overflow: hidden;
}

.split-image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}


/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 2.5rem;
}

.service-item {
  border-top: 1px solid var(--gold-muted);
  padding-top: 1.6rem;
}

.service-item h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-heading);
  margin-bottom: 0.6rem;
}

.service-item p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ============================================================
   FOUNDER STATEMENT
   ============================================================ */
.proof-section {
  background: var(--cream);
  padding: 5rem 2rem;
  border-top: 1px solid rgba(196, 162, 101, 0.12);
  border-bottom: 1px solid rgba(196, 162, 101, 0.12);
}

.proof-layout {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 4rem;
  align-items: center;
}

.proof-image {
  overflow: hidden;
}

.proof-image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.proof-text {
  padding: 1rem 0;
}

.proof-quote {
  margin-bottom: 1.2rem;
}

.proof-quote p {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-heading);
}

.proof-attribution {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}


/* ============================================================
   STANDARDS
   ============================================================ */
.standards-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.standards-image {
  overflow: hidden;
}

.standards-image img {
  width: 100%;
  object-fit: cover;
  object-position: center 35%;
  aspect-ratio: 4 / 3;
}

.standards-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.standard-item {
  border-top: 1px solid var(--gold-muted);
  padding-top: 1.2rem;
}

.standard-item h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 0.4rem;
}

.standard-item p {
  font-size: 0.95rem;
  color: rgba(246, 241, 231, 0.65);
  line-height: 1.6;
}


/* ============================================================
   STEPS
   ============================================================ */
.steps {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.8rem;
}

.steps li {
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(196, 162, 101, 0.15);
}

.steps li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.step-num {
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  padding-top: 0.2rem;
  min-width: 2rem;
  text-align: center;
}

.steps h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-heading);
  margin-bottom: 0.25rem;
}

.steps p {
  font-size: 0.98rem;
  color: var(--text-muted);
}


/* ============================================================
   SERVICE AREA
   ============================================================ */
.area-list {
  margin-top: 1.5rem;
  columns: 2;
  column-gap: 3rem;
}

.area-list li {
  font-family: var(--sans);
  font-size: 0.98rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(196, 162, 101, 0.12);
}


/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  margin-top: 0.5rem;
  display: grid;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(196, 162, 101, 0.15);
  padding: 1.3rem 0;
}

.faq-item:first-child {
  border-top: 1px solid rgba(196, 162, 101, 0.15);
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--text-heading);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: "\2013";
}

.faq-item p {
  margin-top: 0.8rem;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
}

.inline-link {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: var(--gold-muted);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}

.inline-link:hover {
  text-decoration-color: var(--gold);
}


/* ============================================================
   ENQUIRE
   ============================================================ */
.enquire-layout {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 4rem;
  align-items: start;
}

.enquire-copy {
  padding-top: 0.5rem;
}

.enquire-contact {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gold-muted);
}

.enquire-contact p {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.5);
  margin-bottom: 0.8rem;
}

.contact-line {
  display: block;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ivory);
  padding: 0.35rem 0;
  transition: color 0.2s;
}

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

.contact-note {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: rgba(246, 241, 231, 0.35);
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

.enquire-detail {
  margin-top: 2rem;
  overflow: hidden;
  opacity: 0.75;
}

.enquire-detail img {
  width: 100%;
  object-fit: cover;
}

.enquire-form {
  display: grid;
  gap: 1rem;
}

.enquire-form > label {
  display: grid;
  gap: 0.4rem;
}

.form-label {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory-warm);
}

.optional {
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: none;
  color: rgba(246, 241, 231, 0.45);
}

.form-more {
  margin-top: 0.5rem;
  border: 1px solid rgba(196, 162, 101, 0.2);
  padding: 0;
  transition: border-color 0.25s;
}

.form-more:hover {
  border-color: rgba(196, 162, 101, 0.4);
}

.form-more[open] {
  border-color: rgba(196, 162, 101, 0.35);
}

.form-more summary {
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1rem;
  transition: color 0.2s, background 0.2s;
}

.form-more summary::-webkit-details-marker { display: none; }

.form-more summary:hover {
  color: var(--ivory);
  background: rgba(196, 162, 101, 0.06);
}

.form-more-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.85rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s, background 0.25s;
}

.form-more[open] .form-more-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--green-deep);
}

.form-more-hint {
  font-weight: 400;
  color: rgba(246, 241, 231, 0.35);
}

.form-more-fields {
  display: grid;
  gap: 1rem;
  padding: 0 1rem 1rem;
}

.form-more-fields label {
  display: grid;
  gap: 0.4rem;
}

input, select, textarea {
  width: 100%;
  border: 1px solid rgba(196, 162, 101, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  transition: border-color 0.2s;
}

input::placeholder, textarea::placeholder {
  color: rgba(246, 241, 231, 0.3);
}

/* #4: Custom select chevron */
select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c4a265' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

select option {
  background: var(--charcoal);
  color: var(--ivory);
}

/* #2: Post-submit reassurance */
.form-reassurance {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: rgba(246, 241, 231, 0.45);
  line-height: 1.5;
  text-align: center;
  padding: 0.2rem 0;
}

.cta-form {
  width: 100%;
  text-align: center;
  padding: 1.1rem;
  background: var(--gold);
  color: var(--green-deep);
  font-weight: 500;
  border-color: var(--gold);
}

.cta-form:hover {
  background: #d4b375;
  transform: none;
}

.form-privacy {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: rgba(246, 241, 231, 0.3);
  text-align: center;
  letter-spacing: 0.02em;
}

.cta-form:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}


/* ============================================================
   FORM CONFIRMATION
   ============================================================ */
.form-confirmation {
  display: none;
  text-align: center;
  padding: 3rem 1.5rem;
}

.form-confirmation .confirmation-icon {
  margin-bottom: 1.5rem;
}

.form-confirmation .confirmation-icon img {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  opacity: 0.8;
}

.confirmation-heading {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 1rem;
}

.confirmation-body {
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(246, 241, 231, 0.8);
  max-width: 440px;
  margin: 0 auto 0.5rem;
}

.confirmation-note {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

.confirmation-cta p {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.5);
  margin-bottom: 0.5rem;
}

.confirmation-cta .contact-line {
  font-size: 1.1rem;
  font-weight: 500;
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 4rem 2rem 2.5rem;
  background: var(--charcoal);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(246, 241, 231, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wordmark-footer {
  color: rgba(246, 241, 231, 0.6);
  font-size: 1.3rem;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(246, 241, 231, 0.35);
}

.footer-founder {
  font-size: 0.82rem;
  color: rgba(246, 241, 231, 0.25);
  margin-top: 0.3rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-col a,
.footer-col span {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: rgba(246, 241, 231, 0.45);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--ivory);
}

.footer-bottom {
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.2);
}


/* ============================================================
   STICKY MOBILE CTA — #3 split buttons
   ============================================================ */
.mobile-cta {
  display: none;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .split-reverse {
    direction: ltr;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .standards-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .standards-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .proof-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .proof-text {
    text-align: center;
  }

  .proof-image img {
    max-width: 400px;
    margin: 0 auto;
  }

  .enquire-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .area-list {
    columns: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 680px) {
  :root {
    --section-pad: 4.5rem;
  }

  .site-nav {
    display: none;
  }

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

  .hero {
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-content {
    padding: 3rem 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-phone {
    text-align: center;
  }

  .section {
    padding: var(--section-pad) 1.5rem;
  }

  .hide-mobile {
    display: none;
  }

  .strip-inner {
    flex-direction: column;
    gap: 0.8rem;
  }

  .strip-dot {
    display: none;
  }

  .split-image img {
    aspect-ratio: 16 / 10;
  }

  .enquire-detail {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* #3: Split sticky mobile CTA */
  .mobile-cta {
    display: flex;
    gap: 0.5rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    padding: 0.65rem 1rem;
    background: rgba(15, 38, 24, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(196, 162, 101, 0.2);
  }

  .cta-mobile {
    flex: 1;
    text-align: center;
    padding: 0.85rem 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }

  .cta-mobile:first-child {
    background: var(--gold);
    color: var(--green-deep);
    border-color: var(--gold);
  }

  .cta-mobile:first-child:hover {
    background: #d4b375;
    transform: none;
  }

  .cta-mobile-phone {
    background: transparent;
    border-color: rgba(246, 241, 231, 0.4);
  }

  .cta-mobile-phone:hover {
    background: rgba(246, 241, 231, 0.1);
    border-color: var(--ivory);
    transform: none;
  }

  body {
    padding-bottom: 4.5rem;
  }
}
