/* ============================================================
   SITE.CSS — Shorestay Layout & Components
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: var(--bg); overflow-x: hidden; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
*::selection { background: rgba(203,172,101,0.32); color: #0A0F26; }

/* ---- Containers ---- */
.container-sm { max-width: 880px;  margin: 0 auto; width: 100%; }
.container-md { max-width: 1200px; margin: 0 auto; width: 100%; }
.container-lg { max-width: 1360px; margin: 0 auto; width: 100%; }

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 720ms cubic-bezier(0.2,0.7,0.2,1),
              transform 720ms cubic-bezier(0.2,0.7,0.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---- Eyebrow ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 18px;
}
.eyebrow-rule {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--shoreline-gold);
  opacity: 0.7;
  flex-shrink: 0;
}
.eyebrow.on-deep { color: var(--shoreline-gold); }
.eyebrow.on-deep .eyebrow-rule { opacity: 1; }

/* ---- Script / accent helpers ---- */
.script { font-family: var(--font-script); font-weight: 400; font-style: normal; letter-spacing: 0; line-height: 0.85; }
.accent-bronze { color: var(--gold-700); }
.accent-gold   { color: var(--shoreline-gold); }

/* ---- Body text ---- */
.body-lg { font-size: 19px; color: var(--ink-700); line-height: 1.62; margin: 0 0 22px; }
.body-lg:last-child { margin-bottom: 0; }

/* ============================================================
   NAV
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: padding 360ms cubic-bezier(0.2,0.7,0.2,1),
              background 360ms cubic-bezier(0.2,0.7,0.2,1),
              border-color 360ms cubic-bezier(0.2,0.7,0.2,1);
}
#site-header.scrolled {
  padding: 12px 0;
  background: rgba(0,11,61,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255,255,255,0.08);
}

.nav-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  border-bottom: 0;
  flex-shrink: 0;
}
#nav-logo {
  height: 123px; /* 56 × 2.2 */
  width: auto;
  margin-left: -8px;
  transition: height 360ms cubic-bezier(0.2,0.7,0.2,1);
}
#site-header.scrolled #nav-logo { height: 97px; /* 44 × 2.2 */ }

.nav-links { display: flex; gap: 36px; margin-left: auto; }
.nav-link {
  font-family: var(--font-display);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 0;
  transition: color 200ms;
  white-space: nowrap;
}
/* Beat .shoreline a specificity (0,1,1) with ID + class (1,1,0) */
#site-header .nav-link         { color: rgba(255,255,255,0.86); border-bottom: 0; }
#site-header .nav-link:hover   { color: #CBAC65; border-bottom: 0; }
#site-header .mobile-nav-link  { color: #fff; border-bottom: 0; }

.nav-cta {
  background: #CBAC65;
  border-bottom: 0;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  transition: background 200ms;
  white-space: nowrap;
  flex-shrink: 0;
}
/* Beat .shoreline a for nav CTA */
#site-header .nav-cta         { color: #1f1700; border-bottom: 0; }
#site-header .nav-cta:hover   { background: #fff; color: #1f1700; border-bottom: 0; }

.nav-burger {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  margin-left: auto;
  padding: 8px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.burger-icon { display: block; }
.burger-open { display: none; }
#site-header.menu-open .burger-closed { display: none; }
#site-header.menu-open .burger-open  { display: block; }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(0,11,61,0.98);
  padding: 24px clamp(20px, 4vw, 48px) 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: block; }

.mobile-nav-link {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 16px 0;
  text-decoration: none;
}
.mobile-nav-link:last-child { border-bottom: 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
  background: #CBAC65;
  border: 0;
  border-bottom: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background 220ms;
}
/* Beat .shoreline a specificity */
.shoreline .btn-gold         { color: #1f1700; border-bottom: 0; }
.shoreline .btn-gold:hover   { background: #fff; color: #1f1700; border-bottom: 0; }

.btn-lg      { padding: 18px 32px; font-size: 13px; box-shadow: 0 12px 32px -10px rgba(203,172,101,0.55); }
.btn-cta-lg  { padding: 20px 36px; font-size: 13px; box-shadow: 0 18px 40px -14px rgba(203,172,101,0.6); }

.btn-text-arrow {
  border-bottom: 0;
  padding: 18px 8px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.shoreline .btn-text-arrow { color: #fff; border-bottom: 0; }
.circle-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-outline-white {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.32);
  padding: 20px 32px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 200ms, border-color 200ms;
}
/* Beat .shoreline a — WhatsApp button text + underline */
.shoreline .btn-outline-white       { color: #fff; border-bottom: 0; }
.shoreline .btn-outline-white:hover { background: rgba(255,255,255,0.08); border-color: #CBAC65; color: #fff; border-bottom: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(190px, 20vh, 240px) clamp(20px, 4vw, 48px) clamp(56px, 9vh, 96px);
  background-image: url('../assets/lifestyle/cowrie-cove-9.jpg');
  background-size: cover;
  background-position: center;
  background-color: #000B3D;
  overflow: hidden;
}
.hero-overlay-tb {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(0,11,61,0.86) 0%, rgba(0,11,61,0.34) 42%, rgba(0,11,61,0.62) 100%);
}
.hero-overlay-lr {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to right, rgba(0,11,61,0.55) 0%, rgba(0,11,61,0.15) 38%, transparent 60%);
}
.hero-content {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
}
.hero-heading {
  font-family: var(--font-display);
  color: #fff;
  letter-spacing: 0.015em;
  line-height: 1.05;
  margin: 0 0 24px;
  max-width: 1100px;
  font-weight: 400;
  font-size: clamp(44px, 6.2vw, 80px);
}
.hero-script {
  font-size: clamp(48px, 7.6vw, 116px);
  color: #CBAC65;
  display: inline-block;
  vertical-align: baseline;
}
.hero-body {
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.55;
  max-width: 540px;
  margin: 36px 0 44px;
  font-family: var(--font-body);
}
/* Beat .shoreline h1 (0,1,1) and .shoreline p (0,1,1) with two classes (0,2,0) */
.hero .hero-heading { color: #fff; margin-bottom: 0; }
.hero .hero-body    { color: rgba(255,255,255,0.86); margin-top: 80px; }
.hero-ctas { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

/* ============================================================
   ABOUT
   ============================================================ */
.section-about {
  background: var(--sand-50);
  padding: clamp(96px, 14vh, 160px) clamp(20px, 4vw, 48px);
}
.section-about h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 60px);
  letter-spacing: 0.02em;
  line-height: 1.08;
  color: var(--ink-900);
  margin: 0 0 40px;
  font-weight: 400;
}
.about-script { font-size: 1.18em; }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.section-portfolio { padding: clamp(96px, 14vh, 160px) clamp(20px, 4vw, 48px); }

.portfolio-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}
.portfolio-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 60px);
  letter-spacing: 0.02em;
  line-height: 1.08;
  color: var(--ink-900);
  margin: 0;
  font-weight: 400;
}
.portfolio-intro { font-size: 17px; color: var(--ink-700); line-height: 1.6; margin: 0; max-width: 480px; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Property card */
.property-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 16px -8px rgba(10,15,38,0.10);
  transition: box-shadow 380ms cubic-bezier(0.2,0.7,0.2,1);
  text-decoration: none;
  display: block;
}
.shoreline .property-card { color: inherit; border-bottom: 0; }
.property-card:hover { box-shadow: 0 28px 64px -22px rgba(0,11,61,0.32); }
.property-card--featured { grid-column: span 2; }

.property-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.property-card--featured .property-card-img { aspect-ratio: 16/9; }

.property-card-img-inner {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.001);
  transition: transform 800ms cubic-bezier(0.2,0.7,0.2,1);
}
.property-card:hover .property-card-img-inner { transform: scale(1.05); }

.property-card-img-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,11,61,0.42) 0%, transparent 38%);
}

.property-card-badge {
  position: absolute; top: 18px; left: 18px;
  background: rgba(255,255,255,0.96);
  color: var(--gold-700);
  font-family: var(--font-display);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.property-card-airbnb {
  position: absolute; bottom: 18px; right: 18px;
  background: rgba(255,255,255,0.96);
  color: var(--ink-900);
  font-family: var(--font-body);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.92;
  transition: opacity 220ms;
}
.property-card:hover .property-card-airbnb { opacity: 1; }

.property-card-body { padding: 22px 26px 26px; }
.property-location {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 8px;
}
.property-name {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
  font-weight: 400;
  color: var(--ink-900);
  line-height: 1.15;
}
.property-desc { font-size: 14.5px; color: var(--ink-500); line-height: 1.5; margin: 0 0 16px; }
.property-meta {
  display: flex;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(10,15,38,0.08);
  font-size: 12.5px;
  color: var(--ink-700);
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.property-meta-divider { color: var(--ink-300); }

.portfolio-footer {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(10,15,38,0.10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.accent-bronze-text { color: var(--gold-700); }

/* ============================================================
   VALUE PROP
   ============================================================ */
.section-value {
  padding: clamp(96px, 14vh, 160px) clamp(20px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.sunray-ornament {
  position: absolute; top: -10px; right: -20px;
  width: 360px;
  opacity: 0.18;
  pointer-events: none;
}
.value-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
  position: relative;
}
.on-deep-h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 56px);
  letter-spacing: 0.02em;
  line-height: 1.08;
  color: #fff;
  margin: 0;
  font-weight: 400;
}
.value-body   { font-size: 19px; color: rgba(255,255,255,0.82); line-height: 1.62; margin: 0 0 28px; }
.value-body-2 { font-size: 17px; color: rgba(255,255,255,0.78); line-height: 1.62; margin: 0; }

.value-pullquote {
  margin: 40px 0;
  padding: 32px 36px;
  border-left: 3px solid #CBAC65;
  background: rgba(203,172,101,0.08);
  border-radius: 4px 18px 18px 4px;
}
.pullquote-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #CBAC65;
  margin-bottom: 14px;
}
.pullquote-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: 0.015em;
  line-height: 1.22;
  color: #fff;
  margin: 0;
  font-weight: 400;
}
.pullquote-script { font-size: 1.4em; }

/* ============================================================
   SERVICES
   ============================================================ */
.section-services { padding: clamp(96px, 14vh, 160px) clamp(20px, 4vw, 48px); }

.services-head { text-align: center; margin: 0 auto 80px; max-width: 720px; }
.services-head h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 60px);
  letter-spacing: 0.02em;
  line-height: 1.08;
  color: var(--ink-900);
  margin: 0;
  font-weight: 400;
}
.services-script { font-size: 1.18em; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(10,15,38,0.10);
  border-left: 1px solid rgba(10,15,38,0.10);
}
.service-item {
  padding: 40px 40px 44px;
  border-right: 1px solid rgba(10,15,38,0.10);
  border-bottom: 1px solid rgba(10,15,38,0.10);
  background: transparent;
  transition: background 320ms cubic-bezier(0.2,0.7,0.2,1);
}
.service-item:hover { background: rgba(203,172,101,0.06); }

.service-num-row { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.service-num { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.18em; color: #CBAC65; font-weight: 600; }
.service-rule { display: inline-block; width: 24px; height: 1px; background: #CBAC65; }

.service-item h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
  font-weight: 400;
  color: var(--ink-900);
  line-height: 1.18;
}
.service-item p { font-size: 15.5px; color: var(--ink-700); line-height: 1.6; margin: 0; max-width: 460px; }

/* ============================================================
   WHY SHORESTAY
   ============================================================ */
.section-why { padding: clamp(96px, 14vh, 160px) clamp(20px, 4vw, 48px); }

.why-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background-image: url('../assets/lifestyle/cowrie-cove-1.jpg');
  background-size: cover;
  background-position: center;
  box-shadow: 0 40px 90px -30px rgba(0,11,61,0.35);
}
.why-caption-card {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 18px 20px;
}
.why-caption-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 6px;
}
.why-caption-text { font-size: 13.5px; color: var(--ink-900); line-height: 1.5; margin: 0; }

.why-content h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 52px);
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--ink-900);
  margin: 0 0 36px;
  font-weight: 400;
}
.why-content .body-lg { max-width: 540px; }

.why-markers {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 36px;
  row-gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(10,15,38,0.12);
  max-width: 540px;
}
.why-marker-label { font-family: var(--font-display); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-700); margin-bottom: 6px; }
.why-marker-value { font-size: 14px; color: var(--ink-700); line-height: 1.4; }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.section-testimonial { padding: clamp(96px, 14vh, 160px) clamp(20px, 4vw, 48px); }
.testimonial-inner { max-width: 920px; margin: 0 auto; text-align: center; }

.quote-mark {
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 0.6;
  color: #CBAC65;
  margin-bottom: 8px;
  letter-spacing: 0;
  height: 40px;
  overflow: hidden;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 44px);
  letter-spacing: 0.015em;
  line-height: 1.22;
  color: var(--ink-900);
  margin: 0 0 36px;
  font-weight: 400;
  font-style: normal;
}
.testimonial-em { font-style: normal; font-size: 1.18em; letter-spacing: 0; color: var(--ink-900); }
.testimonial-attr {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--ink-500);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.attr-rule { display: inline-block; width: 32px; height: 1px; background: #CBAC65; }

/* ============================================================
   CLOSING CTA
   ============================================================ */
.section-cta {
  padding: clamp(140px, 18vh, 220px) clamp(20px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.cta-bg-photo {
  position: absolute; inset: 0;
  background-image: url('../assets/lifestyle/lifestyle-2.png');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
}
.cta-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,11,61,0.92) 0%, rgba(0,11,61,0.96) 100%);
  pointer-events: none;
}
.cta-inner { max-width: 880px; margin: 0 auto; text-align: center; position: relative; }

.cta-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #CBAC65;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.cta-rule { display: inline-block; width: 28px; height: 1px; background: #CBAC65; }

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 64px);
  letter-spacing: 0.02em;
  line-height: 1.06;
  color: #fff;
  font-weight: 400;
}
.cta-script { font-size: 1.18em; color: #CBAC65; }
.cta-body {
  font-size: 18px;
  line-height: 1.7;
}
/* High-specificity overrides (beat .shoreline h2 at 0,1,1 and .shoreline p at 0,1,1) */
.section-cta .cta-heading {
  color: #fff;
  margin: 0 0 56px;        /* headline → body gap */
}
.section-cta .cta-body {
  color: rgba(255,255,255,0.82);
  text-align: center;
  margin: 0 auto 52px;     /* auto sides = centred block */
  max-width: 520px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 56px;
}
.trust-chips { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 0; }
.trust-chip {
  border: 1px solid rgba(203,172,101,0.4);
  color: rgba(255,255,255,0.86);
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.trust-dot { width: 5px; height: 5px; border-radius: 999px; background: #CBAC65; display: inline-block; flex-shrink: 0; }


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #00061F;
  color: #fff;
  border-top: 1px solid rgba(203,172,101,0.18);
}
.footer-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 72px clamp(20px, 4vw, 48px) 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 56px;
}
.footer-logo { height: 96px; width: auto; margin-left: -8px; margin-bottom: 18px; }
.footer-rule { width: 48px; height: 1px; background: #CBAC65; margin: 6px 0 18px; }
.footer-tagline { color: rgba(255,255,255,0.78); font-size: 14.5px; line-height: 1.6; margin: 0; max-width: 360px; }
.footer-location { margin-top: 22px; font-size: 12px; color: #CBAC65; line-height: 1.7; font-family: var(--font-display); letter-spacing: 0.18em; text-transform: uppercase; }

.footer-col-label { font-family: var(--font-display); font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: #CBAC65; margin-bottom: 20px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 14px;
  text-decoration: none;
  border-bottom: 0;
  transition: color 200ms;
}
.shoreline .footer-col a       { color: rgba(255,255,255,0.86); border-bottom: 0; }
.shoreline .footer-col a:hover { color: #CBAC65; border-bottom: 0; }

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(203,172,101,0.22);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { text-decoration: none; transition: color 200ms; }
.shoreline .footer-legal a       { color: rgba(255,255,255,0.6); border-bottom: 0; }
.shoreline .footer-legal a:hover { color: rgba(255,255,255,0.86); border-bottom: 0; }

/* ============================================================
   RESPONSIVE — 920px
   ============================================================ */
@media (max-width: 920px) {
  .nav-links, .nav-cta { display: none !important; }
  .nav-burger { display: flex !important; }

  .portfolio-head { grid-template-columns: 1fr !important; gap: 28px !important; }
  .portfolio-grid { grid-template-columns: 1fr !important; }
  .property-card--featured { grid-column: span 1 !important; }
  .property-card--featured .property-card-img { aspect-ratio: 4/3 !important; }

  .value-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .why-grid   { grid-template-columns: 1fr !important; gap: 40px !important; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .services-grid { grid-template-columns: 1fr !important; }

  .cta-buttons { flex-direction: column; align-items: center; width: 100%; }
  .btn-outline-white { justify-content: center; }
  .hero-ctas { gap: 12px; }
}

@media (max-width: 640px) {
  .why-markers { grid-template-columns: 1fr !important; }
}
