/* ==========================================================
   NMB Housing — Shared Styles
   Used across all pages: index, about, houses, pricing,
   photos, hosts, faq, reserve, contact
   ========================================================== */

/* === DESIGN TOKENS === */
:root {
  --cream: #FBF6EC;
  --cream-deep: #F4ECD8;
  --sand: #E5D3B0;
  --coral: #E8754E;
  --coral-deep: #C95A36;
  --navy: #0F2A44;
  --navy-soft: #1C3A57;
  --teal: #2C8B8B;
  --muted: #6B6357;
  --line: rgba(15, 42, 68, 0.12);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --max: 1280px;
  --pad: clamp(1.25rem, 4vw, 3rem);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
code {
  font-family: 'Menlo', 'Monaco', monospace;
  background: rgba(15, 42, 68, 0.08);
  padding: 0.1em 0.4em;
  border-radius: 4px;
  font-size: 0.9em;
}

/* Subtle grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.6 0 0 0 0 0.55 0 0 0 0 0.45 0 0 0 0.16 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
}

/* === LAYOUT === */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  z-index: 2;
}

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(251, 246, 236, 0.85);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--coral);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--coral); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--navy);
  color: var(--cream);
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--coral); transform: translateY(-1px); }
.menu-btn { display: none; font-size: 1.5rem; padding: 0.4rem; }
@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .nav-cta {
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
  }
  .nav-links.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 1rem;
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 14px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
    border: 1px solid var(--line);
    gap: 1rem;
  }
}

/* === HERO (homepage) === */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(4rem, 9vw, 7rem);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 75% 20%, rgba(232, 117, 78, 0.22), transparent 60%),
    radial-gradient(ellipse 60% 40% at 15% 70%, rgba(44, 139, 139, 0.18), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(15, 42, 68, 0.05);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.7s ease backwards;
}
.hero-tag .dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}
h1.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 1.6rem;
  animation: fadeUp 0.8s ease 0.1s backwards;
}
h1.hero-title em { font-style: italic; color: var(--coral); }
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.55;
  color: var(--muted);
  max-width: 30rem;
  margin-bottom: 2.4rem;
  animation: fadeUp 0.8s ease 0.2s backwards;
}
.hero-sub strong {
  color: var(--navy);
  font-weight: 600;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeUp 0.8s ease 0.3s backwards;
}
.hero-stats {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  animation: fadeUp 0.8s ease 0.4s backwards;
  flex-wrap: wrap;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-num span { font-size: 0.55em; color: var(--muted); }
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  height: clamp(380px, 50vw, 560px);
  animation: fadeUp 1s ease 0.3s backwards;
}
.hv-card {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(15, 42, 68, 0.3);
  transition: transform 0.5s ease;
}
.hv-1 {
  top: 0; right: 0;
  width: 65%; height: 70%;
  background: linear-gradient(135deg, #f4a373, #e8754e);
  transform: rotate(2deg);
}
.hv-1::before {
  content: '🏖️';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(4rem, 10vw, 7rem);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}
.hv-2 {
  bottom: 0; left: 0;
  width: 55%; height: 55%;
  background: linear-gradient(160deg, #2C8B8B, #1a5e5e);
  transform: rotate(-3deg);
}
.hv-2::before {
  content: '🌊';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}
.hv-3 {
  bottom: 20%; right: 5%;
  width: 34%; height: 32%;
  background: var(--navy);
  color: var(--cream);
  transform: rotate(5deg);
  display: grid;
  place-items: center;
  padding: 1rem;
  text-align: center;
}
.hv-card:hover { transform: rotate(0deg) scale(1.03); }
.hv-3 .badge-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  line-height: 1.2;
}
.hv-3 .badge-sub {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-top: 0.5rem;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  position: relative;
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 10%, rgba(232, 117, 78, 0.20), transparent 60%),
    radial-gradient(ellipse 50% 35% at 10% 80%, rgba(44, 139, 139, 0.15), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}
.page-hero .container { position: relative; }
.page-hero .eyebrow {
  display: block;
  margin-bottom: 1rem;
  animation: fadeUp 0.6s ease backwards;
}
.page-hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  max-width: 18ch;
  animation: fadeUp 0.7s ease 0.1s backwards;
}
.page-hero-title em { font-style: italic; color: var(--coral); }
.page-hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  color: var(--muted);
  max-width: 42rem;
  line-height: 1.55;
  animation: fadeUp 0.7s ease 0.2s backwards;
}

/* === BUTTONS === */
.btn-primary {
  background: var(--coral);
  color: var(--cream);
  padding: 1rem 1.8rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.98rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px -8px rgba(232, 117, 78, 0.5);
}
.btn-primary:hover {
  background: var(--coral-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(232, 117, 78, 0.6);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  padding: 1rem 1.8rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.98rem;
  border: 1.5px solid var(--navy);
  transition: all 0.25s ease;
  display: inline-block;
}
.btn-secondary:hover { background: var(--navy); color: var(--cream); }
.btn-light {
  background: rgba(251,246,236,0.15);
  color: var(--cream);
  padding: 1rem 1.8rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.98rem;
  border: 1.5px solid rgba(251,246,236,0.3);
  transition: all 0.25s ease;
  display: inline-block;
}
.btn-light:hover { background: rgba(251,246,236,0.25); }
.btn-coral {
  background: var(--coral);
  color: var(--cream);
  padding: 1rem 1.8rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.98rem;
  transition: all 0.25s ease;
  display: inline-block;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.3);
}
.btn-coral:hover { background: var(--coral-deep); transform: translateY(-2px); }
.link-arrow {
  font-weight: 500;
  color: var(--coral);
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.2s;
  display: inline-block;
  margin-top: 1rem;
}
.link-arrow:hover { border-color: var(--coral); }

/* === TICKER === */
.ticker {
  background: var(--navy);
  color: var(--cream);
  padding: 1.2rem 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.ticker-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: scroll 32s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 300;
  width: max-content;
}
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}
.ticker-track span::after {
  content: '✦';
  color: var(--coral);
  font-style: normal;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* === SECTION === */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  z-index: 2;
}
.section-head {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head .eyebrow { display: block; margin-bottom: 1rem; }
h2.section-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h2.section-title em { font-style: italic; color: var(--coral); }

/* === PROSE (long-form text) === */
.prose {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--navy-soft);
}
.prose p { margin-bottom: 1.4rem; }
.prose h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--navy);
}
.prose p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  float: left;
  line-height: 0.85;
  padding: 0.4rem 0.6rem 0 0;
  color: var(--coral);
}

/* === ABOUT GRID === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }
.about-text .eyebrow { display: block; margin-bottom: 1rem; }
.about-text h2 { margin-bottom: 1.8rem; }
.about-text p {
  font-size: 1.08rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
  color: var(--navy-soft);
}
.about-text p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  float: left;
  line-height: 0.85;
  padding: 0.4rem 0.6rem 0 0;
  color: var(--coral);
}
.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sand), var(--coral));
  box-shadow: 0 30px 60px -20px rgba(15, 42, 68, 0.25);
  display: grid;
  place-items: center;
}
.about-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.3), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(15,42,68,0.2), transparent 50%);
}
.about-visual .av-emoji {
  font-size: clamp(5rem, 12vw, 9rem);
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
  position: relative;
}
.about-visual-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

/* === FEATURE GRID (homepage) === */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.feature {
  padding: 2rem;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: all 0.3s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(15,42,68,0.2);
  background: rgba(232, 117, 78, 0.08);
  border-color: rgba(232, 117, 78, 0.3);
}
.feature-icon {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  background: var(--coral);
  color: var(--cream);
  border-radius: 12px;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
}
.feature h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--navy);
}
.feature p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

/* === AMENITIES (dark block) === */
.amenities {
  background: var(--navy);
  color: var(--cream);
  border-radius: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem);
  position: relative;
  overflow: hidden;
}
.amenities::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,117,78,0.25), transparent 70%);
  border-radius: 50%;
}
.amenities h2 { color: var(--cream); position: relative; }
.amenities .eyebrow { color: var(--coral); display: block; margin-bottom: 1rem; }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  position: relative;
  margin-top: 2.5rem;
}
.amenity {
  padding: 1.8rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}
.amenity:hover {
  background: rgba(232,117,78,0.1);
  border-color: rgba(232,117,78,0.3);
  transform: translateY(-4px);
}
.amenity-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--coral);
  border-radius: 12px;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.amenity h4 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.amenity p {
  color: rgba(251,246,236,0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* === HOUSES === */
.house-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.house-card {
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.house-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(15,42,68,0.25);
}
.house-img {
  aspect-ratio: 4/3;
  position: relative;
  display: grid;
  place-items: center;
}
.house-img::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.2), transparent 50%);
}
.house-emoji {
  font-size: clamp(3.5rem, 6vw, 5rem);
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.2));
  position: relative; z-index: 1;
}
.house-tag {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(251, 246, 236, 0.95);
  color: var(--navy);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  z-index: 1;
}
.house-info {
  padding: 1.8rem;
}
.house-info h3 {
  font-size: 1.6rem;
  margin-bottom: 0.3rem;
}
.house-meta {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  font-weight: 500;
}
.house-features {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}
.house-features li {
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--navy-soft);
  line-height: 1.5;
}
.house-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 600;
}

/* === STAT ROW === */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}
.stat-card {
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}
.stat-card-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  line-height: 1;
  font-weight: 400;
  color: var(--coral);
  margin-bottom: 0.6rem;
  letter-spacing: -0.03em;
}
.stat-card-label {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* === PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 720px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(15,42,68,0.2);
}
.price-card.featured {
  background: linear-gradient(140deg, var(--coral) 0%, var(--coral-deep) 100%);
  color: var(--cream);
}
.price-card.featured h3 { color: var(--cream); }
.price-card.featured .price-num { color: var(--cream); }
.price-card.featured .price-label { color: rgba(251,246,236,0.85); }
.price-card.featured .dates { color: rgba(251,246,236,0.8); }
.price-card.featured .season { color: rgba(251,246,236,0.85); }
.price-card.featured .price-includes li { color: rgba(251,246,236,0.9); }
.price-card.featured .price-includes li::before { color: var(--cream); }
.price-card .season {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--coral);
}
.price-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.4rem;
}
.price-card .dates {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.price-num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.04em;
}
.price-currency {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
}
.price-label {
  font-size: 1rem;
  color: var(--muted);
}
.price-includes {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 0.6rem;
}
.price-includes li {
  padding-left: 1.6rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--navy-soft);
  line-height: 1.5;
}
.price-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 600;
}

.deposit-banner {
  margin-top: 2rem;
  padding: 1.6rem 1.8rem;
  background: var(--navy);
  color: var(--cream);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.deposit-banner strong {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--coral);
}
.deposit-banner span { flex: 1; min-width: 220px; font-size: 0.95rem; line-height: 1.5; }

/* Damage policy note (sits just below deposit banner) */
.deposit-policy {
  margin-top: 0.8rem;
  padding: 1.2rem 1.6rem;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-left: 3px solid var(--coral);
  border-radius: 12px;
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.deposit-policy strong {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--coral-deep);
  white-space: nowrap;
}
.deposit-policy span {
  flex: 1;
  min-width: 220px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--navy-soft);
}

/* Payment options note (sits below deposit banner) */
.payment-note {
  margin-top: 1rem;
  padding: 1rem 1.4rem;
  background: rgba(232, 117, 78, 0.08);
  border: 1px solid rgba(232, 117, 78, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.95rem;
  color: var(--navy-soft);
  line-height: 1.5;
}
.payment-note strong {
  color: var(--coral-deep);
  font-weight: 600;
}
.payment-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* Email-us-for-questions note (used on pricing & similar pages) */
.email-note {
  margin-top: 1.5rem;
  padding: 1rem 1.4rem;
  background: rgba(44, 139, 139, 0.08);
  border: 1px solid rgba(44, 139, 139, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.95rem;
  color: var(--navy-soft);
  line-height: 1.5;
}
.email-note strong {
  color: var(--teal);
  font-weight: 600;
}
.email-note a {
  color: var(--coral);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
  word-break: break-word;
}
.email-note a:hover { border-color: var(--coral); }
.email-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* === "WHAT'S INCLUDED" CARD (pricing page, shared between seasons) === */
.includes-card {
  margin-top: 2rem;
  padding: clamp(1.8rem, 3.5vw, 2.5rem);
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.includes-card .eyebrow {
  display: block;
  margin-bottom: 0.5rem;
}
.includes-card h4 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.3vw, 1.6rem);
  font-weight: 400;
  margin-bottom: 1.3rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.includes-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.7rem 1.8rem;
}
.includes-list li {
  padding-left: 1.6rem;
  position: relative;
  font-size: 0.98rem;
  color: var(--navy-soft);
  line-height: 1.45;
}
.includes-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 700;
}

/* === LENGTH OF STAY POLICY (pricing page) === */
.length-of-stay {
  margin-top: 2.5rem;
  padding: clamp(1.8rem, 3.5vw, 2.5rem);
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.length-of-stay .eyebrow {
  display: block;
  margin-bottom: 0.7rem;
}
.length-of-stay h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: 1rem;
  color: var(--navy);
}
.length-of-stay > p {
  color: var(--navy-soft);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 56ch;
}
.length-of-stay > p strong {
  color: var(--coral-deep);
  font-weight: 600;
}

/* Three example cards in a grid */
.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.example-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
}
.example-card-standard {
  background: linear-gradient(160deg, #fff 0%, #FBF6EC 100%);
  border-color: rgba(232, 117, 78, 0.25);
}
.example-card-header {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.example-weeks {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.example-note-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.example-card-standard .example-note-label {
  color: var(--coral-deep);
}
.example-rows {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}
.example-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.8rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--navy-soft);
}
.example-row:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}
.example-row strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
  white-space: nowrap;
}
.example-row-refund strong { color: var(--teal); }
.example-row-total {
  padding-top: 0.7rem;
  border-top: 2px solid var(--coral);
  margin-top: 0.3rem;
}
.example-row-total span {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.example-row-total strong {
  color: var(--coral);
  font-size: 1.25rem;
  font-weight: 500;
}
.example-note {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--muted);
  font-style: italic;
  max-width: 56ch;
}

/* === STEPS === */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.step {
  padding: 2rem;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 18px;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 1rem;
  font-style: italic;
}
.step h4 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  font-family: var(--font-display);
  font-weight: 500;
}
.step p {
  color: var(--navy-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* === GALLERY === */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}
@media (max-width: 820px) { .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; } }
@media (max-width: 480px) { .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; } }
.gallery-item {
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
@media (max-width: 480px) {
  .gallery-item.tall, .gallery-item.wide { grid-row: auto; grid-column: auto; }
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
}
.gallery-emoji {
  font-size: clamp(3rem, 5vw, 4rem);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
  position: relative; z-index: 1;
}
.gallery-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* === HOST CARDS === */
.host-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 720px) { .host-grid { grid-template-columns: 1fr; } }
.host-card {
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
}
.host-photo {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1;
  border-radius: 14px;
  margin: 0 auto 1.5rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  object-fit: cover;
  box-shadow: 0 14px 30px -10px rgba(0,0,0,0.2);
  position: relative;
}
.host-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.18), transparent 50%);
  pointer-events: none;
}
img.host-photo { display: block; }
.host-initial {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 6rem);
  color: rgba(255,255,255,0.95);
  font-weight: 300;
  font-style: italic;
  letter-spacing: -0.05em;
  position: relative;
  z-index: 1;
  text-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.host-card h3 {
  font-size: 1.7rem;
  margin-bottom: 0.3rem;
}
.host-role {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.host-card p {
  color: var(--navy-soft);
  font-size: 0.98rem;
  line-height: 1.6;
  text-align: left;
}

/* === FAMILY PHOTO GRID (hosts page) === */
.family-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.family-photo {
  aspect-ratio: 1;
  border-radius: 16px;
  cursor: pointer;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px -8px rgba(15, 42, 68, 0.2);
}
.family-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.18), transparent 50%);
  pointer-events: none;
}
.family-photo:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 30px -10px rgba(15, 42, 68, 0.35);
}
.family-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.family-emoji {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
  position: relative;
  z-index: 1;
}
.family-hint {
  text-align: center;
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
}
.family-more-btn {
  display: block;
  margin: 1.5rem auto 0;
  padding: 0.9rem 1.6rem;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--coral-deep);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.family-more-btn:hover {
  background: var(--cream);
  border-color: var(--coral);
  transform: translateY(-1px);
}

/* === FAQ === */
.faq-list { max-width: 820px; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 1.6rem 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.faq-q h4 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.faq-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  font-size: 1.3rem;
  color: var(--coral);
  line-height: 1;
}
.faq-item.open .faq-toggle {
  background: var(--coral);
  color: var(--cream);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-top 0.3s ease;
  color: var(--navy-soft);
  font-size: 1.02rem;
  line-height: 1.65;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-top: 1rem;
}

/* === RESERVE PAGE === */
.reserve-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
}
@media (max-width: 900px) { .reserve-grid { grid-template-columns: 1fr; } }
.reserve-card {
  background: var(--cream-deep);
  border-radius: 24px;
  padding: clamp(2rem, 4vw, 3rem);
}
.reserve-card .eyebrow {
  display: block;
  margin-bottom: 0.6rem;
}
.reserve-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}
.reserve-card > p {
  color: var(--navy-soft);
  margin-bottom: 1.8rem;
  line-height: 1.6;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.reserve-sidebar {
  display: grid;
  gap: 1.5rem;
  align-content: start;
}
.reserve-block {
  background: var(--cream-deep);
  border-radius: 18px;
  padding: 1.8rem;
}
.reserve-block .eyebrow {
  display: block;
  margin-bottom: 0.5rem;
}
.reserve-block h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}
.reserve-block p {
  font-size: 0.95rem;
  color: var(--navy-soft);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.coming-soon-card {
  background: var(--navy);
  color: var(--cream);
  border-radius: 14px;
  padding: 1.3rem;
  margin-top: 1rem;
  position: relative;
}
.cs-badge {
  display: inline-block;
  background: var(--coral);
  color: var(--cream);
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.coming-soon-card h4 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.coming-soon-card p {
  color: rgba(251,246,236,0.75);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}

/* === CTA STRIP === */
.cta-strip {
  background: var(--navy);
  color: var(--cream);
  border-radius: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(232,117,78,0.3), transparent 70%);
  border-radius: 50%;
}
.cta-strip > * { position: relative; z-index: 1; }
.cta-strip-title {
  color: var(--cream);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 0.6rem;
}
.cta-strip-title em { color: var(--coral); font-style: italic; }
.cta-strip-sub {
  color: rgba(251,246,236,0.75);
  font-size: 1rem;
  line-height: 1.5;
  max-width: 36rem;
}
.cta-strip-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* === CONTACT === */
.contact {
  background: var(--cream-deep);
  border-radius: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(44,139,139,0.15), transparent 70%);
  border-radius: 50%;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  position: relative;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact .eyebrow { display: block; margin-bottom: 1rem; }
.contact h2 { margin-bottom: 1.5rem; }
.contact-lead {
  font-size: 1.08rem;
  color: var(--navy-soft);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.contact-items { display: grid; gap: 1rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.3rem;
  background: rgba(255,255,255,0.6);
  border-radius: 14px;
  border: 1px solid var(--line);
  transition: all 0.25s;
}
.contact-item:hover {
  background: rgba(255,255,255,0.95);
  transform: translateX(4px);
}
.contact-item .ic {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--cream);
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-item .ci-content { flex: 1; min-width: 0; }
.contact-item .ci-label {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.contact-item .ci-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 400;
  word-break: break-word;
  transition: color 0.2s;
}
.contact-item:hover .ci-value { color: var(--coral); }

/* === FORM === */
.contact-form { display: grid; gap: 1.1rem; }
.field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.field input,
.field textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 1.5px solid var(--line);
  background: rgba(255,255,255,0.7);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--navy);
  transition: all 0.2s;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(232,117,78,0.1);
}
.field textarea { min-height: 110px; resize: vertical; }
.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.5rem;
}
.form-note a { color: var(--coral); border-bottom: 1px solid transparent; }
.form-note a:hover { border-color: var(--coral); }

/* Form status banner (success / error after submit) */
.form-status {
  margin-top: 0.5rem;
  padding: 1rem 1.3rem;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.form-status.success {
  background: rgba(123, 166, 143, 0.18);
  border: 1px solid rgba(123, 166, 143, 0.45);
  color: #3F6B52;
}
.form-status.error {
  background: rgba(232, 117, 78, 0.1);
  border: 1px solid rgba(232, 117, 78, 0.35);
  color: var(--coral-deep);
}
.form-status a {
  color: inherit;
  border-bottom: 1px solid currentColor;
  font-weight: 600;
}
.field .optional {
  font-size: 0.85em;
  color: var(--muted);
  font-weight: 400;
  margin-left: 0.3rem;
}

/* === APPLY PAGE FORM === */
.apply-wrap { max-width: 820px; margin: 0 auto; }
.apply-form {
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2.5rem;
  margin-top: 2rem;
  display: grid;
  gap: 0;
}
@media (max-width: 600px) { .apply-form { padding: 1.5rem; border-radius: 16px; } }

.form-section {
  padding-bottom: 1.8rem;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid var(--line);
}
.form-section:last-of-type { border-bottom: none; padding-bottom: 0.5rem; margin-bottom: 1rem; }
.form-section-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--coral-deep);
  margin-bottom: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-section .field:not(:last-child) { margin-bottom: 1.2rem; }

.req {
  color: var(--coral);
  font-weight: 600;
  margin-left: 0.1rem;
}

.field select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  color: var(--navy);
  cursor: pointer;
  appearance: none;
  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 fill='%230F2A44' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
}
.field select:focus {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
  border-color: var(--coral);
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.4rem;
}
.radio {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.98rem;
  color: var(--navy);
  font-weight: 400;
}
.radio input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--coral);
  cursor: pointer;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--navy-soft);
  line-height: 1.5;
  padding: 1rem;
  background: rgba(232, 117, 78, 0.05);
  border: 1px solid rgba(232, 117, 78, 0.2);
  border-radius: 12px;
}
.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--coral);
  cursor: pointer;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.checkbox-label a { color: var(--coral); border-bottom: 1px solid transparent; }
.checkbox-label a:hover { border-color: var(--coral); }

.apply-submit {
  justify-self: start;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  font-size: 1.05rem;
}
@media (max-width: 600px) {
  .apply-submit { justify-self: stretch; width: 100%; text-align: center; }
}

/* === COUPLE CALLOUT === */
.couple-callout {
  background: linear-gradient(135deg, rgba(229, 168, 168, 0.18), rgba(232, 117, 78, 0.10));
  border: 1px solid rgba(229, 168, 168, 0.4);
  border-left: 4px solid var(--coral);
  border-radius: 14px;
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 820px;
  margin: 0 auto;
}
.couple-callout-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
}
.couple-callout-content strong {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--coral-deep);
  display: block;
  margin-bottom: 0.3rem;
}
.couple-callout-content p {
  font-size: 0.95rem;
  color: var(--navy-soft);
  line-height: 1.55;
  margin: 0;
}
.couple-callout-content a {
  color: var(--coral);
  border-bottom: 1px solid var(--coral);
  font-weight: 500;
}

/* === NOTE CARD (for site owner reminders) === */
.note-card {
  margin-top: 3rem;
  padding: 1.6rem 1.8rem;
  background: rgba(232, 117, 78, 0.08);
  border-left: 3px solid var(--coral);
  border-radius: 10px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--navy-soft);
}
.note-card strong {
  color: var(--coral-deep);
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
}

/* === FOOTER === */
.footer {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  position: relative;
  z-index: 2;
  margin-top: 4rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(251,246,236,0.12);
}
@media (max-width: 820px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}
.footer-brand .logo { color: var(--cream); }
.footer-brand .logo-mark {
  background: var(--coral);
  color: var(--navy);
}
.footer-brand p {
  margin-top: 1.5rem;
  color: rgba(251,246,236,0.65);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 360px;
}
.footer h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.footer ul { list-style: none; display: grid; gap: 0.6rem; }
.footer ul a {
  color: rgba(251,246,236,0.75);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--coral); }
.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(251,246,236,0.5);
}
.footer-bottom em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--coral);
}

/* === HOUSE CARD: "View photos" CTA + cursor + tag positioning === */
.house-card { cursor: pointer; }
.house-photos-cta {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(15, 42, 68, 0.85);
  color: var(--cream);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 2;
}
.house-card:hover .house-photos-cta,
.house-card:focus-within .house-photos-cta {
  opacity: 1;
  transform: translateY(0);
}
/* On mobile (no hover), always show the photos hint */
@media (hover: none) {
  .house-photos-cta { opacity: 1; transform: translateY(0); }
}

/* === PHOTO GALLERY MODAL === */
.photo-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 18, 30, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  animation: fadeIn 0.25s ease;
}
.photo-modal[hidden] { display: none; }
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--cream);
  font-size: 1.8rem;
  line-height: 1;
  border-radius: 50%;
  z-index: 10;
  transition: all 0.2s ease;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.modal-close:hover {
  background: var(--coral);
  border-color: var(--coral);
  transform: rotate(90deg);
}
.modal-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1rem;
  min-height: 0;
}
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--cream);
  font-size: 2.2rem;
  line-height: 1;
  border-radius: 50%;
  z-index: 5;
  transition: all 0.2s ease;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.modal-nav:hover {
  background: var(--coral);
  border-color: var(--coral);
}
.modal-prev { left: 1.5rem; }
.modal-next { right: 1.5rem; }
.modal-photo-wrap {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-photo-wrap img {
  max-width: min(1200px, calc(100vw - 8rem));
  max-height: calc(100vh - 10rem);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px -10px rgba(0, 0, 0, 0.6);
}
.modal-photo-wrap img[hidden] { display: none; }

.modal-no-photos {
  text-align: center;
  color: var(--cream);
  padding: 3rem 2rem;
  max-width: 420px;
}
.modal-no-photos[hidden] { display: none; }
.modal-no-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  opacity: 0.7;
}
.modal-no-photos h4 {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}
.modal-no-photos p {
  color: rgba(251, 246, 236, 0.7);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.8rem;
}
.modal-no-photos .btn-primary { margin: 0 auto; }

.modal-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem 1.5rem;
  color: var(--cream);
  flex-wrap: wrap;
  gap: 1rem;
}
.modal-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
}
.modal-counter {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: rgba(251, 246, 236, 0.6);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 700px) {
  .modal-prev { left: 0.5rem; width: 44px; height: 44px; font-size: 1.8rem; }
  .modal-next { right: 0.5rem; width: 44px; height: 44px; font-size: 1.8rem; }
  .modal-photo-wrap img {
    max-width: calc(100vw - 1rem);
    max-height: calc(100vh - 9rem);
  }
  .modal-bottom { padding: 0.8rem 1rem 1rem; }
  .modal-title { font-size: 1.1rem; }
}

/* === POLAROID WALL (photos page) === */
.polaroid-wall {
  columns: 4 220px;
  column-gap: 2rem;
  padding: 1rem 0;
}
@media (max-width: 900px) { .polaroid-wall { column-gap: 1.5rem; } }
@media (max-width: 600px) { .polaroid-wall { columns: 2 160px; column-gap: 1rem; } }

.polaroid {
  display: inline-block;
  width: 100%;
  margin-bottom: 2.4rem;
  break-inside: avoid;
  background: #fefefe;
  padding: 14px 14px 56px;
  box-shadow: 0 14px 30px -10px rgba(15, 42, 68, 0.25), 0 2px 4px rgba(0,0,0,0.04);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  background-image: linear-gradient(135deg, rgba(0,0,0,0.02) 0%, transparent 50%, rgba(0,0,0,0.015) 100%);
}

/* Varied rotations — feels like photos tossed on a table */
.polaroid:nth-child(7n+1) { transform: rotate(-2.5deg); }
.polaroid:nth-child(7n+2) { transform: rotate(1.5deg); }
.polaroid:nth-child(7n+3) { transform: rotate(-1deg); }
.polaroid:nth-child(7n+4) { transform: rotate(3deg); }
.polaroid:nth-child(7n+5) { transform: rotate(-2deg); }
.polaroid:nth-child(7n+6) { transform: rotate(0.5deg); }
.polaroid:nth-child(7n)   { transform: rotate(-3deg); }

.polaroid:hover,
.polaroid:focus-visible {
  transform: rotate(0deg) translateY(-8px) scale(1.03);
  box-shadow: 0 24px 40px -8px rgba(15, 42, 68, 0.35), 0 4px 8px rgba(0,0,0,0.08);
  z-index: 10;
}

/* Washi tape — every polaroid has tape, cycling through 3 styles for variety */
.polaroid::before {
  content: '';
  position: absolute;
  z-index: 1;
  border-left: 1px dashed rgba(0,0,0,0.06);
  border-right: 1px dashed rgba(0,0,0,0.06);
}
.polaroid:nth-child(3n+1)::before {
  /* Yellow tape, top center */
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 70px;
  height: 22px;
  background: rgba(244, 199, 92, 0.55);
}
.polaroid:nth-child(3n+2)::before {
  /* Coral diagonal, top right corner */
  top: -6px;
  right: 6px;
  transform: rotate(35deg);
  width: 60px;
  height: 18px;
  background: rgba(232, 117, 78, 0.55);
}
.polaroid:nth-child(3n)::before {
  /* Teal diagonal, top left corner */
  top: -6px;
  left: 6px;
  transform: rotate(-35deg);
  width: 60px;
  height: 18px;
  background: rgba(44, 139, 139, 0.5);
}

.polaroid-photo {
  aspect-ratio: 1;
  width: 100%;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: var(--coral);
}
.polaroid-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.25), transparent 50%);
  pointer-events: none;
}
img.polaroid-photo {
  object-fit: cover;
  height: 100%;
  display: block;
}
.polaroid-emoji {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.18));
  position: relative;
  z-index: 1;
}

.polaroid-caption {
  position: absolute;
  bottom: 18px;
  left: 14px;
  right: 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.92rem;
  line-height: 1.25;
  color: var(--navy);
  text-align: center;
}

/* Facebook link below polaroid wall */
.facebook-link {
  text-align: center;
  margin-top: 2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--navy-soft);
}
.facebook-link a {
  color: var(--coral);
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.2s ease;
  padding-bottom: 2px;
}
.facebook-link a:hover { border-bottom-color: var(--coral); }

/* === MOBILE TWEAKS === */
@media (max-width: 600px) {
  body { font-size: 16px; }
  .ticker-track { font-size: 1.1rem; gap: 2rem; }
  .ticker-track span { gap: 2rem; }
  .nav-inner { padding: 0.9rem 0; }

  /* Logo: hide text, keep icon only — gives more room for CTA */
  .logo span:not(.logo-mark) { display: none; }

  /* Compact hero stats — let them stack into a 2x2-ish grid */
  .hero-stats {
    gap: 1.25rem 2rem;
    padding-top: 1.5rem;
  }

  /* Smaller drop caps so they don't overwhelm narrow text */
  .about-text p:first-of-type::first-letter,
  .prose p:first-of-type::first-letter {
    font-size: 3rem;
    padding: 0.3rem 0.4rem 0 0;
  }

  /* Hero visual: less dramatic on small phones */
  .hero-visual { height: 360px; }
  .hv-1, .hv-2 { transform: rotate(0deg); }
  .hv-3 { transform: rotate(0deg); }
  .hv-3 .badge-text { font-size: 0.85rem; }

  /* CTA strip: stack actions properly */
  .cta-strip { padding: 1.8rem; }
  .cta-strip-actions { width: 100%; }
  .cta-strip-actions a { flex: 1; text-align: center; min-width: 130px; }

  /* About visual: smaller on mobile so it doesn't dominate */
  .about-visual { aspect-ratio: 1/1; max-width: 280px; margin: 0 auto; }
  .about-visual .av-emoji { font-size: 5rem; }

  /* Section padding tighter on mobile */
  .section { padding: 3rem 0; }

  /* Page hero on inner pages */
  .page-hero { padding: 3rem 0 2rem; }
}

@media (max-width: 380px) {
  /* Ultra-narrow phones (iPhone SE-class) */
  .nav-cta {
    padding: 0.5rem 0.85rem;
    font-size: 0.78rem;
  }
  .hero-actions a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
