/* ============================================================
   Stays Optimized — Complete Stylesheet
   Tone: Editorial Luxury Hospitality
   Fonts: Cormorant Garamond (headings) + Inter Tight (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Inter+Tight:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --navy:       #1D2B4A;
  --navy-light: #26365C;
  --navy-mid:   #2F406B;
  --gold:       #C4952A;
  --gold-light: #D4A840;
  --gold-pale:  #F3E8CC;
  --cream:      #FAF8F3;
  --cream-dark: #F0EAE0;
  --white:      #FFFFFF;
  --text-dark:  #1D2B4A;
  --text-mid:   #4A5568;
  --text-light: #718096;
  --text-xlight:#A0AEC0;
  --border:     #E6DFD3;
  --border-dark:#D0C8B8;
  --shadow-sm:  0 2px 8px rgba(29,43,74,0.08);
  --shadow-md:  0 4px 24px rgba(29,43,74,0.12);
  --shadow-lg:  0 8px 48px rgba(29,43,74,0.18);
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --max-w:      1200px;
  --transition: 200ms cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol { list-style: none; }

/* ── Typography Scale ────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }
h5 { font-size: 1rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
h6 { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }

p { font-size: 1rem; line-height: 1.7; color: var(--text-mid); max-width: 68ch; }

/* ── Layout Utilities ────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

.eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,169,110,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  font-size: 0.8rem;
  padding: 0.6rem 1.25rem;
}

/* ── Navigation ──────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 300ms ease;
}

.site-header .nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: height 300ms ease;
}

.site-header.scrolled {
  background: rgba(26,33,53,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.site-header.at-top {
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, transparent 100%);
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: inherit;
}
.nav-dropdown-trigger:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-dropdown-arrow {
  font-size: 0.65rem;
  display: inline-block;
  transition: transform var(--transition);
  opacity: 0.7;
}
.nav-dropdown.open .nav-dropdown-arrow {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #1a2135;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  min-width: 178px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  z-index: 200;
  overflow: hidden;
}
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu a {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.85);
  padding: 0.7rem 1rem;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  border-radius: 0;
}
.nav-dropdown-menu a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-cta {
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 300ms ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  padding: 0.75rem 2rem;
  display: block;
  text-align: center;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }

.mobile-nav .mobile-cta {
  margin-top: 2rem;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

/* Ken Burns keyframes */
@keyframes kenBurnsIn {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
@keyframes kenBurnsOut {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.hero-slide.active { animation: kenBurnsIn 8s ease-out forwards; }
.hero-slide.was-active { animation: kenBurnsOut 1.5s ease-out forwards; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,33,53,0.35) 0%,
    rgba(26,33,53,0.55) 50%,
    rgba(26,33,53,0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-chips {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.chip {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.chip:hover {
  background: rgba(201,169,110,0.25);
  border-color: var(--gold);
  color: var(--white);
}

/* ── Proof / Stats Bar ───────────────────────────────────── */
.proof-section {
  background: var(--white);
  padding: 5rem 0;
}

.proof-title {
  text-align: center;
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  line-height: 1.4;
}

.proof-quote {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.proof-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.proof-quote cite {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  font-style: normal;
}

.scarcity-bar {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 1.5rem auto 2rem;
  max-width: 680px;
}

.scarcity-bar strong { color: var(--gold); }

/* ── Pain / Solution Section ─────────────────────────────── */
.pain-section {
  background: var(--cream);
  padding: 5rem 0;
}

.pain-questions {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}

.pain-questions h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
  opacity: 0.92;
}
.pain-questions h2:first-of-type { opacity: 1; }

.pain-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}

.pain-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.pain-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.pain-card p { font-size: 0.9rem; color: var(--text-mid); }

.approach-block {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem 3rem;
  margin-bottom: 3rem;
}

.approach-block h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

.approach-block p { color: rgba(255,255,255,0.8); max-width: none; margin-bottom: 1rem; }

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

.approach-list li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.88);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.5;
}

.approach-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.sol-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.sol-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: default;
}
.sol-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.sol-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.sol-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.sol-card p { font-size: 0.88rem; color: var(--text-mid); }

/* ── About ───────────────────────────────────────────────── */
.about-section {
  background: var(--white);
  padding: 5rem 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.about-logo-col {
  text-align: center;
}

.about-logo-col img {
  max-width: 220px;
  margin: 0 auto 1rem;
}

.about-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
}

.about-divider {
  width: 1px;
  height: auto;
  background: var(--border);
  display: none;
}

.about-text h2 {
  margin-bottom: 1.25rem;
}

.about-text p {
  margin-bottom: 1rem;
  max-width: none;
}

.about-text .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
  margin: 1.25rem 0 2rem;
}

/* ── Properties ──────────────────────────────────────────── */
.properties-section {
  background: var(--cream);
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 3rem;
  text-align: center;
}

.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { margin: 0 auto; }

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.property-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.property-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.property-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.property-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.property-card:hover .property-img img { transform: scale(1.04); }

.property-location {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  background: rgba(26,33,53,0.85);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.property-body {
  padding: 1.5rem;
}

.property-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.property-meta {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 0.875rem;
  flex-wrap: wrap;
}

.property-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-mid);
  font-weight: 500;
}

.property-meta-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--gold);
}

.property-desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: none;
}

/* ── Why Us ──────────────────────────────────────────────── */
.why-section {
  background: var(--white);
  padding: 5rem 0;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 600px;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  pointer-events: none;
}

.why-text .eyebrow { margin-bottom: 0.5rem; }
.why-text h2 { margin-bottom: 2rem; }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.feature-icon svg {
  width: 18px;
  height: 18px;
  color: var(--navy);
}

.feature-item h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.feature-item p { font-size: 0.875rem; max-width: none; }

/* ── Services ────────────────────────────────────────────── */
.services-section {
  background: var(--cream);
  padding: 5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-pale);
  transform: translateY(-2px);
}
.service-card.wide { grid-column: 1 / -1; }

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}
.service-card.wide h3 { font-size: 1.3rem; }
.service-card p { font-size: 0.875rem; max-width: none; }

.service-card-img {
  display: block;
  width: calc(100% + 3.5rem);
  margin: -1.75rem -1.75rem 1.5rem;
  height: 180px;
  object-fit: cover;
}
.service-card.wide .service-card-img { height: 260px; }

/* ── Pricing ─────────────────────────────────────────────── */
.pricing-section {
  background: var(--white);
  padding: 5rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-top: 3rem;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  position: relative;
  transition: box-shadow var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-md); }

.pricing-card.featured {
  border-color: var(--gold);
  border-width: 2px;
  background: var(--navy);
  color: var(--white);
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.pricing-card.featured h3 { color: var(--white); }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.85); }

.pricing-feature svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--gold);
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-section {
  background: var(--cream);
  padding: 5rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}
.stars svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.testimonial-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  max-width: none;
}

.testimonial-author {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section {
  background: var(--white);
  padding: 5rem 0;
}

.faq-list {
  max-width: 780px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  background: var(--white);
  transition: background var(--transition);
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question:hover { background: var(--cream); }
.faq-item.open .faq-question { background: var(--cream); }

.faq-question h3 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms ease, padding 350ms ease;
  padding: 0 1.5rem;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: none;
}

/* ── Blog Preview ────────────────────────────────────────── */
.blog-section {
  background: var(--cream);
  padding: 5rem 0;
}

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.blog-card-body { padding: 1.5rem; }

.blog-card-img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.blog-date {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.625rem;
  display: block;
}

.blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 1rem;
  display: block;
  transition: color var(--transition);
}
.blog-card:hover .blog-title { color: var(--gold); }

.blog-read-more {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition), gap var(--transition);
}
.blog-card:hover .blog-read-more {
  color: var(--gold);
  gap: 0.6rem;
}

/* ── Contact ─────────────────────────────────────────────── */
.contact-section {
  background: var(--navy);
  padding: 5rem 0;
}

.contact-section h2 { color: var(--white); }
.contact-section .eyebrow { color: var(--gold); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-left h2 { margin-bottom: 1rem; }

.contact-left p {
  color: rgba(255,255,255,0.75);
  max-width: none;
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
}
.contact-info-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1rem;
}
.form-group:last-of-type { margin-bottom: 0; }

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.75rem;
}

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: var(--gold-pale);
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { margin: 0 auto 2rem; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 3.5rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}

.footer-socials {
  display: flex;
  gap: 0.625rem;
}
.footer-social {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  cursor: pointer;
}
.footer-social:hover { background: rgba(201,169,110,0.25); }
.footer-social svg {
  width: 15px;
  height: 15px;
  color: rgba(255,255,255,0.65);
}

.footer-col h5 {
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
  font-family: 'Inter Tight', sans-serif;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  cursor: pointer;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ── Scroll Animations ───────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 100ms; }
.fade-up:nth-child(3) { transition-delay: 200ms; }
.fade-up:nth-child(4) { transition-delay: 300ms; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
  .hero-slide.active { animation: none; }
  .hero-slide.was-active { animation: none; }
}

/* ── Divider ─────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem 0;
}
.divider.centered { margin: 1.25rem auto; }

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 8rem 0 4rem;
  text-align: center;
  color: var(--white);
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.75); margin: 0 auto; }

/* ── Short Term Rentals page ─────────────────────────────── */
.rentals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ── Services page ───────────────────────────────────────── */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.services-full-grid .service-card.wide { grid-column: 1 / -1; }

/* ── Blog page ───────────────────────────────────────────── */
.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
  .pain-cards { grid-template-columns: 1fr; }
  .sol-cards { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; text-align: center; }
  .about-logo-col img { margin: 0 auto; }
  .why-inner { grid-template-columns: 1fr; }
  .why-image { height: 400px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid .service-card.wide { grid-column: 1 / -1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .properties-grid { grid-template-columns: 1fr 1fr; }
  .rentals-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-chips { gap: 0.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 1.25rem 1rem; }
  .stat-item:last-child { border-bottom: none; }
  .approach-list { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .properties-grid { grid-template-columns: 1fr; }
  .blog-page-grid { grid-template-columns: 1fr; }
  .rentals-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .blog-header { flex-direction: column; align-items: flex-start; }
  .approach-block { padding: 2rem 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section { padding: 3.5rem 0; }
  .hero { min-height: 580px; }
  .hero-chips .chip { font-size: 0.72rem; padding: 0.4rem 0.875rem; }
  .btn { padding: 0.75rem 1.5rem; }
}
