/* ============================================================
   THE ISLAND COLLECTIVE — styles.css
   Luxury Accommodation Hobart | theislandcollective.com.au
   ============================================================ */

/* ── TOKENS ── */
:root {
  --ink:         #1a1a18;
  --ink-mid:     #3a3a36;
  --ink-lt:      #7a7a72;
  --sand:        #c8a87a;
  --sand-lt:     #dfc9a4;
  --sand-pale:   #f5ede0;
  --cream:       #faf7f2;
  --stone:       #e8e2d8;
  --stone-mid:   #d4cdc0;
  --forest:      #1e2e24;
  --forest-mid:  #2c4236;
  --sage:        #5a7a62;
  --sage-lt:     #8aa890;
  --white:       #ffffff;

  --serif:       'Playfair Display', 'Georgia', serif;
  --sans:        'Jost', 'Lato', sans-serif;
  --mono:        'Space Mono', monospace;

  --max:         1200px;
  --nav-h:       72px;
  --radius:      3px;

  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm:   0 2px 16px rgba(26,26,24,0.07);
  --shadow-md:   0 8px 40px rgba(26,26,24,0.12);
  --shadow-lg:   0 24px 64px rgba(26,26,24,0.16);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.15; letter-spacing: -0.5px; }
h1 { font-size: clamp(36px, 6vw, 80px); }
h2 { font-size: clamp(28px, 4vw, 52px); }
h3 { font-size: clamp(22px, 2.5vw, 34px); }
h4 { font-size: clamp(18px, 2vw, 24px); }
p  { font-size: 16px; line-height: 1.85; color: var(--ink-mid); font-weight: 300; }
em { font-style: italic; }
strong { font-weight: 700; color: var(--ink); }

/* ── UTILITIES ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
.text-sand   { color: var(--sand); }
.text-sage   { color: var(--sage); }
.text-cream  { color: var(--cream); }
.text-center { text-align: center; }

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}
.section-kicker::before { content: ''; width: 28px; height: 1px; background: var(--sage); opacity: 0.5; }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  transition: all 0.25s var(--ease);
}
.btn-sand {
  background: var(--sand);
  color: var(--forest);
}
.btn-sand:hover { background: var(--sand-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,168,122,0.3); }

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(26,26,24,0.25);
}
.btn-outline-dark:hover { border-color: var(--sand); color: var(--sand); }

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250,247,242,0.3);
}
.btn-outline-light:hover { border-color: var(--sand-lt); color: var(--sand-lt); }

.btn-dark { background: var(--forest); color: var(--cream); }
.btn-dark:hover { background: var(--forest-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
#nav.scrolled {
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 32px rgba(26,26,24,0.08);
  border-bottom: 1px solid var(--stone);
}
#nav.dark-nav { background: rgba(30,46,36,0.95); backdrop-filter: blur(16px); }
#nav.dark-nav.scrolled { background: rgba(30,46,36,0.98); }

.nav-logo {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo small {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(250,247,242,0.45);
  margin-top: 3px;
}
#nav.scrolled .nav-logo,
#nav:not(.dark-nav) .nav-logo { color: var(--ink); }
#nav.scrolled .nav-logo small,
#nav:not(.dark-nav) .nav-logo small { color: var(--ink-lt); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(250,247,242,0.7);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
#nav.scrolled .nav-links a,
#nav:not(.dark-nav) .nav-links a { color: var(--ink-lt); }
.nav-links a:hover { color: var(--sand) !important; }

.nav-links .nav-cta {
  background: var(--sand);
  color: var(--forest) !important;
  padding: 10px 22px;
}
.nav-links .nav-cta:hover { background: var(--sand-lt); transform: none; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  border: 1px solid var(--stone);
  border-radius: 6px;
  padding: 8px;
  min-width: 220px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.25s, transform 0.25s;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--ink-mid) !important;
  padding: 10px 14px;
  border-radius: 4px;
  text-transform: none;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a:hover { background: var(--sand-pale); color: var(--ink) !important; }

/* Mobile toggle */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  z-index: 1001;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}
#nav.scrolled .nav-burger span { background: var(--ink); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--forest);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--cream);
  padding: 12px 24px;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--sand); }
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 28px;
  background: none; border: none;
  font-size: 28px; color: var(--cream);
}

/* ── HERO (HOME) ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background: var(--forest);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.squarespace-cdn.com/content/v1/692150992fb41d11177eed15/396365f0-8f06-4da5-a18f-5c319feee1b4/DSC00884+%281%29.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  transform: scale(1.05);
  transition: transform 8s var(--ease);
}
.hero-bg-img.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,46,36,0.85) 0%, rgba(30,46,36,0.2) 50%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  padding: 0 48px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s var(--ease) forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--sand);
  opacity: 0.5;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.45s var(--ease) forwards;
}
.hero-title em { color: var(--sand); font-style: italic; }
.hero-dek {
  font-size: 17px;
  font-weight: 300;
  color: rgba(250,247,242,0.7);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s var(--ease) forwards;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.75s var(--ease) forwards;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s var(--ease) forwards;
}
.hero-scroll-hint span { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(250,247,242,0.4); font-weight: 700; }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(250,247,242,0.4), transparent); animation: scrollPulse 2s ease-in-out infinite; }

/* ── STRIP ── */
.strip {
  background: var(--sand);
  padding: 18px 48px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.strip-item {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 10px;
}
.strip-item::before { content: '✦'; font-size: 8px; opacity: 0.6; }

/* ── SECTION COMMON ── */
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.section-dark { background: var(--forest); }
.section-stone { background: var(--sand-pale); border-top: 1px solid var(--stone); border-bottom: 1px solid var(--stone); }
.section-cream { background: var(--cream); }

.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-kicker { justify-content: center; }

/* ── LEAD GRID ── */
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.lead-text h2 { margin-bottom: 22px; }
.lead-text p + p { margin-top: 16px; }

.lead-visual-wrap {
  position: relative;
}
.lead-img {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--forest);
}
.lead-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.lead-img:hover img { transform: scale(1.04); }

.float-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--sand);
  padding: 22px 24px;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 140px;
}
.float-badge-num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 900;
  color: var(--forest);
  letter-spacing: -1px;
  line-height: 1;
}
.float-badge-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(30,46,36,0.55);
  margin-top: 6px;
}

/* ── PROPERTIES GRID ── */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.property-card {
  background: var(--cream);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--stone);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.property-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--stone-mid); }

.property-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--forest-mid);
  position: relative;
}
.property-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.property-card:hover .property-thumb img { transform: scale(1.06); }
.property-location-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(30,46,36,0.8);
  backdrop-filter: blur(8px);
  color: var(--sand-lt);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid rgba(200,168,122,0.2);
}

.property-body {
  padding: 28px 28px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.property-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.property-desc {
  font-size: 14px;
  color: var(--ink-lt);
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
}
.property-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}
.property-feat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  background: var(--sand-pale);
  color: var(--forest);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--stone);
}
.property-footer {
  padding-top: 18px;
  border-top: 1px solid var(--stone);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ── PULL QUOTE ── */
.pull-quote-block {
  background: var(--forest);
  border-radius: 6px;
  padding: 72px 80px;
  position: relative;
  overflow: hidden;
}
.pq-forest-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 75% 50%, rgba(90,122,98,0.2) 0%, transparent 60%);
}
.pq-mark {
  font-family: var(--serif);
  font-size: 140px;
  color: rgba(200,168,122,0.1);
  line-height: 0.7;
  position: absolute;
  top: 28px; left: 48px;
}
.pq-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.8vw, 34px);
  color: var(--cream);
  line-height: 1.55;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.pq-text em { color: var(--sand); font-style: normal; }
.pq-attr {
  text-align: center;
  margin-top: 28px;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(200,168,122,0.45);
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.pq-divider {
  width: 40px; height: 1px;
  background: rgba(200,168,122,0.3);
  margin: 18px auto 0;
}

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--cream);
  border: 1px solid var(--stone);
  border-radius: 6px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.review-stars { color: var(--sand); font-size: 13px; letter-spacing: 2px; margin-bottom: 16px; }
.review-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 22px;
}
.review-author {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-lt);
  padding-top: 16px;
  border-top: 1px solid var(--stone);
}

/* ── FAQ ── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--stone); }
.faq-btn {
  width: 100%; background: none; border: none;
  text-align: left; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  font-family: var(--serif);
  font-size: 16px; font-weight: 700;
  color: var(--ink); line-height: 1.4;
  transition: color 0.2s;
}
.faq-btn:hover { color: var(--sage); }
.faq-icon {
  width: 24px; height: 24px;
  border: 1px solid var(--stone-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--sage);
  flex-shrink: 0; margin-top: 1px;
  transition: transform 0.3s, background 0.2s;
}
.faq-answer {
  font-size: 14px; color: var(--ink-lt);
  line-height: 1.85; max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s;
}
.faq-answer.open { max-height: 320px; padding-bottom: 22px; }
.faq-answer a { color: var(--sage); text-decoration: underline; }

/* ── ABOUT PAGE ── */
.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  position: relative;
  overflow: hidden;
  background: var(--forest);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,46,36,0.9) 0%, rgba(30,46,36,0.3) 60%, transparent 100%);
}
.page-hero-content { position: relative; z-index: 2; width: 100%; }
.page-title {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 16px;
}
.page-title em { color: var(--sand); font-style: italic; }
.page-subtitle { font-size: 17px; color: rgba(250,247,242,0.6); font-weight: 300; max-width: 480px; line-height: 1.8; }

/* About content */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-img-stack { position: relative; }
.about-img-main {
  border-radius: 6px; overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--forest);
  box-shadow: var(--shadow-md);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 55%;
  border-radius: 6px; overflow: hidden;
  aspect-ratio: 1;
  background: var(--forest-mid);
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-md);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }

.about-text-block {}
.about-text-block h2 { margin-bottom: 22px; }
.about-text-block p + p { margin-top: 16px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.value-item {
  background: var(--sand-pale);
  border: 1px solid var(--stone);
  border-radius: 6px;
  padding: 24px 22px;
}
.value-icon { font-size: 22px; margin-bottom: 10px; }
.value-title { font-family: var(--serif); font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.value-desc { font-size: 13px; color: var(--ink-lt); line-height: 1.7; }

/* ── CONTACT PAGE ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info {}
.contact-info h2 { margin-bottom: 22px; }
.contact-info p { margin-bottom: 32px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--stone);
}
.contact-detail:last-child { border-bottom: none; }
.contact-icon {
  width: 40px; height: 40px;
  background: var(--sand-pale);
  border: 1px solid var(--stone);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-lt); margin-bottom: 4px; }
.contact-value { font-size: 15px; color: var(--ink); font-weight: 500; }
.contact-value a { color: var(--sage); transition: color 0.2s; }
.contact-value a:hover { color: var(--sand); }

/* Contact Form */
.contact-form-wrap {
  background: var(--cream);
  border: 1px solid var(--stone);
  border-radius: 8px;
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-form-sub { font-size: 14px; color: var(--ink-lt); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-lt);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--stone-mid);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(90,122,98,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--ink-lt); }
.form-group textarea { height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; justify-content: center; }
.form-success {
  display: none;
  background: var(--sand-pale);
  border: 1px solid var(--stone);
  border-radius: 6px;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--forest);
  font-weight: 500;
  margin-top: 16px;
}

/* ── MAP PLACEHOLDER ── */
.map-section { background: var(--stone); }
.map-embed {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--forest);
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-rings {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.cta-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,168,122,0.06);
}
.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-eyebrow {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  font-weight: 300;
  color: var(--sage-lt);
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: block;
}
.cta-title {
  font-family: var(--serif);
  font-size: clamp(34px, 5.5vw, 68px);
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 22px;
}
.cta-title em { color: var(--sand); font-style: italic; }
.cta-body {
  font-size: 16px; color: rgba(250,247,242,0.5);
  max-width: 440px; margin: 0 auto 44px;
  line-height: 1.8; font-weight: 300;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer {
  background: #0e1812;
  padding: 72px 48px 36px;
  border-top: 1px solid rgba(200,168,122,0.12);
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-brand-name {
  font-family: var(--serif);
  font-size: 20px; font-weight: 700;
  color: var(--sand);
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.footer-about {
  font-size: 13px; color: rgba(250,247,242,0.3);
  line-height: 1.9; max-width: 300px; margin-bottom: 24px;
}
.footer-col-title {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(200,168,122,0.35); margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 13px; color: rgba(250,247,242,0.3); transition: color 0.2s; }
.footer-links a:hover { color: var(--sand); }
.footer-bottom {
  max-width: var(--max); margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 11px; color: rgba(250,247,242,0.18); }
.footer-copy a { color: var(--sand); }
.footer-legal { display: flex; gap: 24px; list-style: none; }
.footer-legal a { font-size: 11px; color: rgba(250,247,242,0.18); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(250,247,242,0.5); }

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 0.9; transform: scaleY(1.1); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  #nav { padding: 0 32px; }
  .lead-grid, .about-grid, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .properties-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-img-accent { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .pull-quote-block { padding: 48px 36px; }
  .strip { padding: 16px 24px; gap: 20px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .container { padding: 0 20px; }
  #nav { padding: 0 20px; }
  .nav-links, .nav-dropdown-menu { display: none !important; }
  .nav-burger { display: flex; }
  .section { padding: 64px 0; }
  .hero-content, .page-hero-content { padding: 0 20px; }
  .cta-section { padding: 80px 20px; }
  footer { padding: 56px 20px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .float-badge { display: none; }
  .contact-form-wrap { padding: 32px 24px; }
}
