/* =============================================================================
   LuX stylesheet
   -----------------------------------------------------------------------------
   Organised top to bottom as: design tokens, base/reset, layout helpers,
   typography, buttons, header, then one block per page section. Colours and
   spacing are driven by the custom properties in :root so the whole palette can
   be retuned from one place.

   A note on the brief: nothing on this site lifts, slides or jumps on hover.
   Hover feedback is limited to colour, underline and a soft shadow. Motion is
   reserved for the header and page transitions.
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------- */
:root {
  --ivory: #f7f4ef;        /* page background, warm off-white */
  --ivory-deep: #efeae1;   /* slightly darker panels */
  --ink: #17140f;          /* near-black, warm */
  --ink-soft: #4b453c;     /* body text */
  --muted: #6f685b;        /* captions, meta, eyebrows (AA contrast on ivory) */
  --line: #e2dcd0;         /* hairline borders */
  --brass: #9c7c4a;        /* the single accent, used sparingly */
  --brass-deep: #7d6238;   /* readable brass on light backgrounds */
  --brass-light: #d8bd8a;  /* readable brass on dark backgrounds (hero header) */
  --white: #ffffff;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1200px;
  --gutter: clamp(20px, 5vw, 56px);
  --section-y: clamp(64px, 10vw, 132px);

  --header-h: 76px;
}

/* ---- Reset / base -------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

/* Stop the page scrolling behind an open mobile menu. */
body.nav-open { overflow: hidden; }

/* ---- Layout helpers ------------------------------------------------------ */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }

.center { text-align: center; }

.section-head {
  max-width: 640px;
  margin-bottom: clamp(36px, 5vw, 64px);
}

/* ---- Typography ---------------------------------------------------------- */
.display {
  font-family: var(--serif);
  /* Cormorant is a delicate face; 500 gives display headings enough presence
     without losing the elegance that makes it read as luxury. */
  font-weight: 500;
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: 0;
  margin: 0;
}

/* Cormorant has a small x-height, so it is sized up a little versus a typical
   serif to hold the same visual weight. */
h1.display, .page-head .display { font-size: clamp(2.9rem, 6.4vw, 4.8rem); }
h2.display { font-size: clamp(2.2rem, 4.6vw, 3.5rem); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin: 0 0 1.1rem;
}
.eyebrow-light { color: rgba(255, 255, 255, 0.82); }

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 1.05em 2.1em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn-solid { background: var(--ink); color: var(--ivory); }
.btn-solid:hover { background: var(--brass-deep); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--ivory); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.6); }
.btn-ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-block { display: flex; width: 100%; margin-top: 0.6rem; }

/* "View this villa" style inline link with a moving underline (colour only). */
.link-more {
  display: inline-block;
  margin-top: 1.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-deep);
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
  transition: border-color 0.25s ease;
}

/* ---- Header -------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--wrap);
}
.brand {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: inherit;
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 2.6rem);
}
.nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: inherit;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, opacity 0.25s ease;
}
.nav a:hover { border-color: currentColor; }
.nav a.is-active { border-color: var(--brass); }
/* The phone number needs a brass that reads on whatever the header sits on:
   a light gold while transparent over the dark hero, a deep brass once the
   header turns solid ivory (rules further down handle the two states). */
.nav-phone { color: var(--brass-deep); }

/* Non-hero pages: header is solid from the start. */
body:not(.has-hero) .site-header {
  background: var(--ivory);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
/* Hero pages: transparent white header that turns solid once scrolled. */
body.has-hero .site-header { color: var(--white); }
/* Light gold phone while over the dark hero, so it stays legible. */
body.has-hero .site-header .nav-phone { color: var(--brass-light); }
body.has-hero .site-header.is-solid {
  background: var(--ivory);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
/* Back to deep brass once the header is solid ivory. */
body.has-hero .site-header.is-solid .nav-phone { color: var(--brass-deep); }

/* Hamburger button (hidden until the mobile breakpoint). */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 24px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ---- Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(580px, 92vh, 1040px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background: url("/images/villas/hero.jpg") center 60% / cover no-repeat;
  transform: scale(1.02); /* hides any edge softness, does not animate */
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 9, 7, 0.42) 0%,
    rgba(10, 9, 7, 0.10) 34%,
    rgba(10, 9, 7, 0.30) 72%,
    rgba(10, 9, 7, 0.72) 100%
  );
}
.hero-content {
  position: relative;
  padding-bottom: clamp(64px, 10vh, 120px);
  max-width: 760px;
  /* A soft shadow keeps the copy readable over the brighter parts of the photo. */
  text-shadow: 0 1px 24px rgba(8, 7, 5, 0.35);
}
.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--white);
  font-size: clamp(3.1rem, 7.4vw, 6.2rem);
  line-height: 1.0;
  letter-spacing: 0;
  margin: 0 0 1.4rem;
}
.hero-lede {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
}
.hero-scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 8px;
  margin-left: -1.5px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  animation: scrollpip 1.8s ease-in-out infinite;
}
@keyframes scrollpip {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 0; }
}

/* ---- Intro --------------------------------------------------------------- */
.intro-grid {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}
.intro-body h2 { margin-bottom: 1.4rem; }
.intro-body p { font-size: 1.15rem; color: var(--ink-soft); max-width: 46ch; }

/* ---- Featured editorial rows -------------------------------------------- */
.feature-rows {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 8vw, 104px);
  margin-block: clamp(40px, 6vw, 72px);
}
.feature-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
  width: 100%;
}
.feature-row:nth-child(even) .feature-media { order: 2; }
.feature-media { overflow: hidden; }
.feature-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.feature-name {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  line-height: 1.08;
  margin: 0 0 0.8rem;
  transition: color 0.25s ease;
}
.feature-summary { max-width: 42ch; margin-bottom: 1.4rem; }
.feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: baseline;
  font-size: 0.9rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
}
.feature-price {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--ink);
  margin-left: auto;
}
.feature-row:hover .feature-name { color: var(--brass-deep); }
.feature-row:hover .link-more { border-color: var(--brass); }

/* ---- Statement band ------------------------------------------------------ */
.band {
  position: relative;
  min-height: clamp(360px, 56vh, 560px);
  display: flex;
  align-items: center;
  /* A normal (scrolling) cover background. We avoid background-attachment:fixed
     because it is unreliable across browsers and rendering contexts. */
  background: var(--band-image) center 40% / cover no-repeat;
}
.band-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 8, 0.5);
}
.band-content { position: relative; text-align: center; }
.band-quote {
  color: var(--white);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.7rem);
  line-height: 1.28;
  max-width: 18ch;
  margin: 0 auto;
}

/* ---- Approach ------------------------------------------------------------ */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
}
.approach-item { border-top: 1px solid var(--ink); padding-top: 1.6rem; }
.approach-item h3 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  font-size: 1.7rem;
  margin: 0 0 0.7rem;
}

/* ---- CTA ----------------------------------------------------------------- */
.cta { background: var(--ink); }
.cta-inner { max-width: 640px; text-align: center; margin-inline: auto; }
.cta .display { color: var(--ivory); margin-bottom: 1.2rem; }
.cta p { color: rgba(247, 244, 239, 0.72); margin-bottom: 2rem; font-size: 1.1rem; }

/* ---- Footer -------------------------------------------------------------- */
.site-footer { background: #0f0d0a; color: rgba(247, 244, 239, 0.7); padding-block: clamp(56px, 8vw, 88px) 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .brand { color: var(--white); display: inline-block; margin-bottom: 1rem; }
.footer-brand p { max-width: 34ch; }
.footer-col h4 {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 1.2rem;
}
.footer-col a { display: block; color: rgba(247, 244, 239, 0.82); margin-bottom: 0.7rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--brass); }
.footer-note { margin-top: 0.4rem; }
.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 28px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.58);
}
.footer-base p { margin: 0; }

/* ---- Page head (interior pages) ----------------------------------------- */
.page-head {
  padding-top: calc(var(--header-h) + clamp(48px, 8vw, 96px));
  padding-bottom: clamp(20px, 4vw, 40px);
}
.page-head-lede {
  max-width: 56ch;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--ink-soft);
  margin-top: 1.4rem;
}

/* ---- Villa grid / cards -------------------------------------------------- */
.villa-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 56px);
}
.villa-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  /* Only the shadow and border respond to hover, so the card never moves. */
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.villa-card:hover {
  border-color: transparent;
  box-shadow: 0 22px 50px -28px rgba(23, 20, 15, 0.4);
}
.villa-card-media { position: relative; overflow: hidden; }
.villa-card-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.villa-card-price {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(15, 13, 10, 0.82);
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.02rem;
  padding: 0.4em 0.9em;
  letter-spacing: 0.01em;
}
.villa-card-body { padding: clamp(22px, 2.4vw, 32px); }
.villa-card-name {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  font-size: 1.9rem;
  margin: 0 0 0.7rem;
  transition: color 0.25s ease;
}
.villa-card:hover .villa-card-name { color: var(--brass-deep); }
.villa-card-summary { font-size: 0.98rem; margin-bottom: 1.3rem; }
.villa-card-meta {
  display: flex;
  gap: 1.2rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

/* ---- Villa detail -------------------------------------------------------- */
.villa-hero {
  position: relative;
  min-height: clamp(440px, 66vh, 720px);
  display: flex;
  align-items: flex-end;
  background: var(--villa-image) center / cover no-repeat;
}
.villa-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 9, 7, 0.34) 0%, rgba(10, 9, 7, 0) 40%, rgba(10, 9, 7, 0.66) 100%);
}
.villa-hero-content { position: relative; padding-bottom: clamp(36px, 6vw, 72px); }
.villa-hero-name { color: var(--white); font-size: clamp(2.4rem, 5vw, 4.2rem); }

.villa-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.villa-summary {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 2rem;
}
.villa-main p { margin-bottom: 1.3rem; color: var(--ink-soft); }
.villa-sub {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  font-size: 1.5rem;
  margin: 2.6rem 0 1.2rem;
}
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.6rem;
  border-bottom: 1px solid var(--line);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.35rem;
  width: 7px;
  height: 7px;
  background: var(--brass);
  transform: rotate(45deg);
}

.villa-aside { position: sticky; top: calc(var(--header-h) + 24px); }
.spec-card { background: var(--white); border: 1px solid var(--line); padding: clamp(26px, 3vw, 36px); }
.spec-price {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--ink);
  margin: 0 0 0.2rem;
}
.spec-ref { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.6rem; }
.spec-list { margin: 0 0 1.6rem; }
.spec-list > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--line);
}
.spec-list dt { color: var(--muted); }
.spec-list dd { margin: 0; color: var(--ink); font-weight: 400; }

/* ---- About --------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.about-text p { font-size: 1.12rem; margin-bottom: 1.3rem; }
.about-figure { margin: 0; }
.about-figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about-figure figcaption {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.stats { background: var(--ivory-deep); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px); }
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.stat-label { font-size: 0.86rem; letter-spacing: 0.06em; color: var(--muted); }

/* ---- Contact ------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.contact-sub {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  font-size: 1.25rem;
  margin: 0 0 0.6rem;
}
.contact-aside p { margin-bottom: 1.6rem; }
.contact-aside a:hover { color: var(--brass-deep); }
.contact-hours { color: var(--muted); font-size: 0.95rem; }

.contact-form-wrap { background: var(--white); border: 1px solid var(--line); padding: clamp(28px, 4vw, 52px); }
.form-context {
  font-size: 0.9rem;
  color: var(--muted);
  padding-bottom: 1.2rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid var(--line);
}
.field { margin-bottom: 1.5rem; }
.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.field .optional { color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 0; }
.field input,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 0.9em 1em;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brass);
  background: var(--white);
}
.field textarea { resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field.has-error input,
.field.has-error textarea { border-color: #b4402f; background: #fbf3f1; }
.field-error { display: block; margin-top: 0.5rem; font-size: 0.85rem; color: #b4402f; }

.notice { padding: 1.1em 1.3em; margin-bottom: 1.8rem; font-size: 0.96rem; border: 1px solid; }
.notice-good { background: #f0f4ee; border-color: #cdddc4; color: #3a5a2e; }
.notice-bad { background: #fbf3f1; border-color: #e6c4bd; color: #9a3626; }

/* ---- Error page ---------------------------------------------------------- */
.error-page { min-height: 60vh; }
.error-page .hero-actions { margin-top: 2rem; }

/* =============================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .intro-grid,
  .about-grid,
  .contact-layout,
  .villa-layout { grid-template-columns: 1fr; }

  .villa-aside { position: static; }
  .spec-card { max-width: 460px; }

  .feature-row,
  .feature-row:nth-child(even) .feature-media { grid-template-columns: 1fr; order: 0; }
  .feature-row { gap: 20px; }

  .approach-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  /* Fixed background attachment is unreliable on mobile, so let it scroll. */
  .band { background-attachment: scroll; }
}

@media (max-width: 720px) {
  /* Collapse the primary nav into a full-screen overlay panel. */
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: var(--ivory);
    color: var(--ink);
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  body.nav-open .nav { transform: translateX(0); }
  .nav a { color: var(--ink); font-size: 1.1rem; }
  .nav-phone { font-size: 1.1rem; }

  /* Turn the hamburger into a cross when open. */
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  /* Keep the toggle dark while the overlay is open, even on hero pages. */
  body.nav-open .site-header { color: var(--ink); }
  /* Inside the open ivory menu panel the phone must be deep brass, not the
     light gold used over the hero. */
  body.nav-open .nav-phone { color: var(--brass-deep); }

  /* On phones the hero copy fills most of the screen and sits over the brighter
     part of the photo, so give it a stronger, more even scrim and a heavier
     text shadow than on desktop. */
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 9, 7, 0.55) 0%,
      rgba(10, 9, 7, 0.48) 40%,
      rgba(10, 9, 7, 0.58) 72%,
      rgba(10, 9, 7, 0.78) 100%
    );
  }
  .hero-content { text-shadow: 0 1px 22px rgba(6, 5, 4, 0.6); }

  .villa-grid,
  .field-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-base { flex-direction: column; gap: 0.4rem; }

  .feature-meta { gap: 0.9rem; }
  .feature-price { margin-left: 0; width: 100%; }
}
