/* ─── Design Tokens ─────────────────────────────────────── */
:root {
  --slate:       #232C35;
  --slate-dark:  #161E25;
  --ground:      #F1F3F5;
  --white:       #FFFFFF;
  --ocean:       #2C6B4F;
  --ocean-dark:  #1F4E39;
  --timber:      #7A5535;
  --timber-dark: #5C3E25;
  --haze:        #8BAAB8;
  --body-text:   #374151;
  --muted:       #6B7280;
  --border:      #E5E7EB;
  --font-display: 'Lora', Georgia, serif;
  --font-body:    system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  /* motion */
  --ease-out:    cubic-bezier(0.25, 0, 0, 1);
  --dur-snap:    150ms;
  --dur-base:    250ms;
  --dur-reveal:  480ms;
  --dur-hero:    520ms;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--body-text);
  background: var(--ground);
  padding-bottom: 80px;
}

/* ─── Navigation ────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 54px;
  background: var(--slate);
}
.nav-logo {
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  line-height: 1;
}
.nav-logo span {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--haze);
  margin-top: 3px;
}
.nav-links { display: flex; gap: 20px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: #fff; }
.nav-book {
  background: var(--ocean);
  color: #fff;
  padding: 0 18px;
  height: 36px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.nav-book:hover { background: var(--ocean-dark); }
.nav-book:focus-visible { outline: 2px solid var(--haze); outline-offset: 2px; }
/* Hamburger button — hidden on desktop, shown on mobile */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 10px 7px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.ham-line {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 1px;
  transition: transform var(--dur-snap) var(--ease-out),
              opacity   var(--dur-snap) var(--ease-out);
}
.nav-hamburger:hover .ham-line { background: #fff; }
.nav-hamburger:focus-visible { outline: 2px solid var(--haze); outline-offset: 2px; }
.nav-hamburger[aria-expanded="true"] .ham-line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] .ham-line:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] .ham-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  top: 54px;
  left: 0; right: 0;
  z-index: 99;
  background: var(--slate-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  padding: 8px 20px 20px;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
}
.mobile-menu-inner a {
  display: block;
  padding: 14px 4px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  min-height: 48px;
  display: flex;
  align-items: center;
}
.mobile-menu-inner a:hover { color: #fff; }
.mobile-menu-inner .btn-check {
  margin-top: 14px;
  width: 100%;
  background: var(--ocean);
}

@media (max-width: 600px) {
  .site-nav { padding: 0 16px; }
  .nav-links a:not(.nav-book) { display: none; }
  .nav-hamburger { display: flex; }
}
@media (min-width: 601px) {
  .mobile-menu { display: none !important; }
}

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 88vh;
  min-height: 520px;
  margin-top: 54px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(22, 30, 37, 0.92) 0%,
    rgba(22, 30, 37, 0.40) 42%,
    rgba(22, 30, 37, 0.08) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 56px;
  max-width: 720px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  flex-wrap: wrap;
  letter-spacing: 0.02em;
}
.hero-trust .stars { color: #f5a623; letter-spacing: 0.05em; }
.hero-trust .trust-sep { opacity: 0.35; }
.hero-rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--haze);
  margin-bottom: 18px;
  opacity: 0.7;
}
.hero-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--haze);
  margin-bottom: 12px;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}
.hero-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  max-width: 440px;
  line-height: 1.65;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--ocean);
  color: #fff;
  padding: 13px 26px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
}
.btn-primary:hover { background: var(--ocean-dark); }
.btn-primary:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.btn-ghost {
  background: transparent;
  color: #fff;
  padding: 13px 26px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.45);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-ghost:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

@media (max-width: 520px) {
  .hero-content { padding: 0 20px 36px; }
  .hero-content h1 { font-size: 1.9rem; }
  .btn-primary, .btn-ghost { padding: 12px 20px; }
}

/* ─── Booking Bar ───────────────────────────────────────── */
.booking-bar {
  background: var(--slate-dark);
  padding: 20px 28px 28px;
}
.booking-bar-inner { max-width: 1100px; margin: 0 auto; }
.booking-bar-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--haze);
  margin-bottom: 12px;
}
.booking-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: flex-end;
}
.booking-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 115px;
}
.booking-field label {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.booking-field input,
.booking-field select {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 2px;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #fff;
  width: 100%;
  min-height: 44px;
  color-scheme: dark;
}
.booking-field input:focus,
.booking-field select:focus {
  outline: none;
  border-color: var(--haze);
  background: rgba(255,255,255,0.11);
}
.booking-field select option { background: var(--slate-dark); color: #fff; }
.booking-field--narrow { max-width: 80px; flex: none; }
.booking-field--medium { max-width: 190px; }
.btn-search {
  background: var(--ocean);
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 0 26px;
  min-height: 44px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-search:hover { background: var(--ocean-dark); }
.btn-search:focus-visible { outline: 2px solid var(--haze); outline-offset: 2px; }

@media (max-width: 560px) {
  .booking-bar { padding: 18px 16px 24px; }
  .booking-field { min-width: calc(50% - 5px); }
  .booking-field--narrow { max-width: 100%; flex: 1; }
  .booking-field--medium { max-width: 100%; }
  .btn-search { width: 100%; padding: 12px; }
}

/* ─── Wave Divider ──────────────────────────────────────── */
.wave-divider {
  display: block;
  width: 100%;
  height: 22px;
  color: var(--haze);
  opacity: 0.3;
  background: var(--ground);
}

/* ─── Tab Navigation ────────────────────────────────────── */
.tab-nav {
  scroll-margin-top: 60px;
  max-width: 1100px;
  margin: 28px auto 0;
  padding: 0 28px;
  display: flex;
  border-bottom: 1px solid var(--border);
}
.tab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 10px 0 12px;
  margin-right: 36px;
  margin-bottom: -1px;
  cursor: pointer;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1;
  text-align: left;
}
.tab-btn .tab-sub {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.tab-btn:hover { color: var(--slate); }
.tab-btn.active { color: var(--slate); border-bottom-color: var(--ocean); }
.tab-btn.active .tab-sub { color: var(--ocean); }
.tab-btn.tab-hawthorn.active { border-bottom-color: var(--timber); }
.tab-btn.tab-hawthorn.active .tab-sub { color: var(--timber); }
.tab-btn:focus-visible { outline: 2px solid var(--ocean); outline-offset: 2px; }

@media (max-width: 600px) {
  .tab-nav { padding: 0 16px; }
  .tab-btn { font-size: 0.95rem; margin-right: 24px; }
}

/* ─── Panels ────────────────────────────────────────────── */
.site-panel { display: none; }
.site-panel.active { display: block; }

/* ─── Section ───────────────────────────────────────────── */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 28px 56px;
}
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 8px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--slate);
}
.section-header .count { font-size: 0.78rem; color: var(--muted); }

@media (max-width: 600px) {
  .section { padding: 24px 16px 48px; }
}

/* ─── Property Grid ─────────────────────────────────────── */
.property-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 520px) {
  .property-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 800px) {
  .property-grid--sdw { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 700px) {
  .property-grid--hawthorn { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 520px) {
  .property-card--featured { grid-column: span 2; }
  .property-card--featured .card-img-wrapper { height: 240px; }
}
@media (min-width: 800px) {
  .property-card--featured { grid-column: span 2; }
}

/* ─── Property Card ─────────────────────────────────────── */
.property-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  border-top: 3px solid transparent;
}
.property-card:focus-within { box-shadow: 0 0 0 2px var(--ocean); }
.property-card--sdw      { border-top-color: var(--ocean); }
.property-card--hawthorn { border-top-color: var(--timber); }
.property-card--external { border-top-color: var(--haze); }
.property-card--contact  { border-top-color: var(--muted); }
.property-card--promo    { border-top-color: var(--timber); }

.card-img-link { display: block; }
.card-img-wrapper {
  position: relative;
  height: 175px;
  overflow: hidden;
  background: #c0d4e0;
  flex-shrink: 0;
}
.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 300ms var(--ease-out);
}
.card-img-link:hover .card-img-wrapper img { transform: scale(1.03); }
.card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-badge {
  position: absolute;
  bottom: 9px; left: 10px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  color: #fff;
}
.badge-sdw      { background: var(--ocean); }
.badge-hawthorn { background: var(--timber); }
.badge-seaview  { background: #3a6e8a; }
.badge-studio   { background: #6d4e2b; }
.badge-contact  { background: var(--muted); }
.badge-external { background: rgba(0,0,0,0.55); }
.badge-luxury   { background: #5a3d7a; }

.card-body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-body h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 3px;
  line-height: 1.3;
}
.card-title-link {
  color: inherit;
  text-decoration: none;
}
.card-title-link:hover { color: var(--ocean); }
.property-card--hawthorn .card-title-link:hover { color: var(--timber); }
.card-location {
  font-size: 0.74rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.card-features {
  font-size: 0.73rem;
  color: var(--body-text);
  margin-bottom: 14px;
  line-height: 1.8;
}
.feat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-right: 8px;
  white-space: nowrap;
}
.feat svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: var(--muted);
}
.feat--light { color: rgba(255,255,255,0.85); }
.feat--light svg { color: rgba(255,255,255,0.55); }

/* ─── CTA Buttons ───────────────────────────────────────── */
.btn-check {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--ocean);
  color: #fff;
  padding: 11px 14px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  margin-top: auto;
  cursor: pointer;
  border: none;
  min-height: 44px;
}
.btn-check:hover { background: var(--ocean-dark); }
.btn-check:focus-visible { outline: 2px solid var(--ocean); outline-offset: 2px; }
.btn-check--hawthorn { background: var(--timber); }
.btn-check--hawthorn:hover { background: var(--timber-dark); }
.btn-check--hawthorn:focus-visible { outline-color: var(--timber); }
.btn-check--dingle-mist { background: var(--haze); }
.btn-check--dingle-mist:hover { background: #6B8F9E; }
.btn-check--dingle-mist:focus-visible { outline-color: var(--haze); }
.btn-check--contact  { background: var(--muted); }
.btn-check--contact:hover { background: #4b5563; }
.btn-check--external { background: #4b5563; }
.btn-check--external:hover { background: var(--slate); }
.cta-hint {
  font-size: 0.63rem;
  color: var(--muted);
  text-align: center;
  margin-top: 6px;
  line-height: 1.5;
}

/* ─── Hawthorn promo card in SDW tab ────────────────────── */
.hawthorn-promo {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hawthorn-promo-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  display: block;
}
.hawthorn-promo-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(0,0,0,0.07);
  border-top: 3px solid var(--timber);
  max-width: 600px;
}
@media (min-width: 560px) {
  .hawthorn-promo-card { grid-template-columns: 240px 1fr; }
}
.hawthorn-promo-card .card-img-wrapper { height: 180px; }
@media (min-width: 560px) {
  .hawthorn-promo-card .card-img-wrapper { height: 100%; min-height: 170px; }
}
.hawthorn-promo-card .card-body { padding: 20px 22px 18px; }
.hawthorn-promo-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--timber);
  margin-bottom: 6px;
  display: block;
}
.hawthorn-promo-card h3 { font-size: 1.05rem; margin-bottom: 4px; color: var(--slate); font-weight: 700; }
.hawthorn-promo-card .card-location { margin-bottom: 10px; }
.hawthorn-promo-card .card-features { margin-bottom: 16px; }

/* ─── Property Detail Page ──────────────────────────────── */
.property-hero {
  position: relative;
  height: 65vh;
  min-height: 400px;
  overflow: hidden;
  margin-top: 54px;
}
.property-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.property-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(22,30,37,0.90) 0%,
    rgba(22,30,37,0.30) 55%,
    rgba(22,30,37,0.05) 100%
  );
}
.property-hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 40px 48px;
  max-width: 900px;
}
.property-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  text-decoration: none;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.property-back:hover { color: #fff; }
.property-hero-content h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
}
.property-location-hero {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
  margin-bottom: 14px;
}
.property-hero-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  color: #fff;
  margin-bottom: 14px;
}

.property-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 28px 64px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 800px) {
  .property-body { grid-template-columns: 1fr; }
  .property-hero-content { padding: 0 20px 36px; }
}

.property-main {}
.property-section { margin-bottom: 40px; }
.property-section h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--slate);
  margin-bottom: 14px;
}
.property-section p {
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 0.97rem;
}

.booking-widget {
  background: var(--slate-dark);
  padding: 22px;
  border-radius: 2px;
  position: sticky;
  top: 70px;
}
.booking-widget .booking-form { flex-direction: column; }
.booking-widget .booking-field { min-width: unset; flex: unset; width: 100%; }
.booking-widget .booking-field--narrow { max-width: unset; }

/* ─── Content Pages ─────────────────────────────────────── */
.content-hero {
  background: var(--slate);
  margin-top: 54px;
  padding: 72px 28px 64px;
}
.content-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}
.content-hero h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}
.content-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 520px;
}
.content-hero .hero-eyebrow { margin-bottom: 14px; }

.content-section {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 28px 64px;
}
.content-section h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--slate);
  margin-bottom: 12px;
  margin-top: 40px;
}
.content-section h2:first-child { margin-top: 0; }
.content-section p {
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 0.97rem;
}
.content-section ul {
  margin: 0 0 16px 20px;
  color: var(--body-text);
  line-height: 1.75;
  font-size: 0.97rem;
}
.content-section li { margin-bottom: 6px; }
.content-cta {
  background: var(--white);
  border-top: 3px solid var(--ocean);
  padding: 28px 32px;
  border-radius: 2px;
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.content-cta p { color: var(--body-text); font-size: 0.95rem; line-height: 1.5; margin: 0; }
.content-cta strong { color: var(--slate); display: block; font-size: 1rem; margin-bottom: 4px; }

/* ─── Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--slate);
  color: rgba(255,255,255,0.6);
  padding: 48px 28px 28px;
  font-size: 0.82rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 36px;
}
.footer-brand {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 8px;
}
.footer-inner h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--haze);
  margin-bottom: 12px;
}
.footer-inner p { line-height: 1.7; margin-bottom: 6px; }
.footer-inner a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}
.footer-inner a:hover { color: rgba(255,255,255,0.95); }
.footer-inner a.footer-social-link {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-desc { min-height: 4em; }
@media (min-width: 640px) {
  .footer-col--cta {
    border-left: 1px solid rgba(255,255,255,0.08);
    padding-left: 28px;
  }
}
.footer-divider {
  max-width: 1100px; margin: 32px auto 20px;
  border: none; border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-copy {
  max-width: 1100px; margin: 0 auto;
  font-size: 0.7rem; color: rgba(255,255,255,0.28);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 6px;
}

/* ─── Sticky Mobile Bar ─────────────────────────────────── */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--slate-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 11px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sticky-trust {
  display: flex; flex-direction: column;
  color: #fff; font-size: 0.75rem; line-height: 1.5;
}
.sticky-trust .stars { color: #f5a623; }
.sticky-trust .hint  { color: rgba(255,255,255,0.4); font-size: 0.65rem; }
.sticky-bar .btn-check {
  width: auto; flex-shrink: 0;
  padding: 11px 20px; white-space: nowrap; margin-top: 0;
  background: var(--ocean);
}
.sticky-bar .btn-check:hover { background: var(--ocean-dark); }
@media (max-width: 768px) {
  .sticky-bar { display: flex; }
  body { padding-bottom: 72px; }
}

/* ─── Transitions ───────────────────────────────────────── */
.btn-primary, .btn-ghost, .nav-book {
  transition: background-color var(--dur-snap) var(--ease-out),
              border-color     var(--dur-snap) var(--ease-out),
              transform        var(--dur-snap) var(--ease-out);
}
.btn-check, .btn-search {
  transition: background-color var(--dur-snap) var(--ease-out),
              transform        var(--dur-snap) var(--ease-out);
}
.property-card {
  transition: box-shadow var(--dur-base) var(--ease-out),
              transform  var(--dur-base)   var(--ease-out);
}
.property-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.14);
  transform: translateY(-3px);
}
.tab-btn {
  transition: color        var(--dur-snap) var(--ease-out),
              border-color var(--dur-snap) var(--ease-out);
}
.btn-primary:active, .btn-ghost:active, .btn-check:active,
.btn-search:active,  .nav-book:active   { transform: scale(0.97); }

/* Nav scroll shadow */
.site-nav { transition: box-shadow var(--dur-base) var(--ease-out); }
.site-nav.nav-scrolled { box-shadow: 0 1px 12px rgba(0,0,0,0.24); }

/* Booking field focus */
.booking-field input,
.booking-field select {
  transition: border-color var(--dur-snap) var(--ease-out),
              background   var(--dur-snap) var(--ease-out);
}

/* ─── Hero Entrance ──────────────────────────────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(var(--_d, 18px)); }
  to   { opacity: 1; transform: none; }
}
.hero-trust      { animation: heroFadeUp var(--dur-hero) var(--ease-out) 100ms both; --_d: 12px; }
.hero-rule       { animation: heroFadeUp var(--dur-hero) var(--ease-out) 180ms both; --_d:  6px; }
.hero-eyebrow    { animation: heroFadeUp var(--dur-hero) var(--ease-out) 240ms both; --_d: 10px; }
.hero-content h1 { animation: heroFadeUp var(--dur-hero) var(--ease-out) 340ms both; --_d: 20px; }
.hero-content p  { animation: heroFadeUp var(--dur-hero) var(--ease-out) 440ms both; --_d: 14px; }
.hero-ctas       { animation: heroFadeUp var(--dur-hero) var(--ease-out) 540ms both; --_d: 10px; }

/* ─── Tab Panel Entrance ─────────────────────────────────── */
@keyframes panelReveal {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.site-panel.panel-enter { animation: panelReveal 260ms var(--ease-out) both; }

/* ─── Scroll Reveal ──────────────────────────────────────── */
html.js-ready [data-reveal] { opacity: 0; }

html.js-ready .hawthorn-promo[data-reveal],
html.js-ready .content-cta[data-reveal]  { transform: translateY(18px); }

@keyframes cardFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
html.js-ready [data-reveal].revealed {
  animation: cardFadeIn var(--dur-reveal) var(--ease-out) var(--stagger-delay, 0ms) both;
}

@keyframes singletonReveal {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
html.js-ready .hawthorn-promo[data-reveal].revealed,
html.js-ready .content-cta[data-reveal].revealed {
  animation: singletonReveal var(--dur-reveal) var(--ease-out) both;
}

/* ─── Sticky Bar Entrance ────────────────────────────────── */
@keyframes barSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: none;             opacity: 1; }
}
.sticky-bar.bar-anim { animation: barSlideUp 300ms var(--ease-out) both; }

/* ─── Accessibility & Motion ────────────────────────────── */
:focus-visible { outline: 2px solid var(--ocean); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:        0.01ms !important;
    animation-iteration-count: 1      !important;
    transition-duration:       0.01ms !important;
    scroll-behavior:           auto   !important;
  }
  html.js-ready [data-reveal],
  html.js-ready [data-reveal].revealed { opacity: 1 !important; transform: none !important; }
}

/* ─── Reviews Strip ─────────────────────────────────────── */
.reviews-strip {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.reviews-strip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.reviews-strip-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--muted);
}
.reviews-strip-meta .stars { color: #f5a623; font-size: 0.95rem; }
.reviews-strip-meta strong { color: var(--slate); }
.reviews-strip-link {
  font-size: 0.82rem;
  color: var(--ocean);
  text-decoration: none;
  font-weight: 500;
}
.reviews-strip-link:hover { text-decoration: underline; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
}
.review-quote {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--body-text);
  flex: 1;
  font-style: italic;
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.review-stars { color: #f5a623; font-size: 0.8rem; letter-spacing: 0.05em; }
.review-author { font-size: 0.82rem; font-weight: 600; color: var(--slate); }
.review-date   { font-size: 0.75rem; color: var(--muted); }
.review-card--hawthorn { border-color: rgba(122,85,53,0.18); }
.review-card--hawthorn .review-stars { color: var(--timber); }

@media (max-width: 800px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (min-width: 601px) and (max-width: 800px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Contact Page ──────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
  padding-top: 48px;
  padding-bottom: 72px;
}
.contact-heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--slate);
  margin-bottom: 24px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-required { color: var(--ocean); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--body-text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 3px;
  padding: 10px 14px;
  transition: border-color var(--dur-snap) var(--ease-out);
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(44,107,79,0.12);
}
.form-field textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.form-hint { font-size: 0.78rem; color: var(--muted); }

/* Sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info-block {
  background: var(--white);
  border-top: 3px solid var(--border);
  border-radius: 2px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-info-block--ocean { border-top-color: var(--ocean); }
.contact-info-block--timber { border-top-color: var(--timber); }
.contact-info-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-info-brand {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--slate);
  margin-bottom: 4px;
}
.contact-info-block address {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--body-text);
  line-height: 1.6;
}
.contact-info-link {
  font-size: 0.88rem;
  color: var(--ocean);
  text-decoration: none;
  display: block;
}
.contact-info-link:hover { text-decoration: underline; }
.contact-info-ext {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--dur-snap) var(--ease-out);
}
.contact-info-ext:hover { color: var(--slate); }
.contact-book-cta {
  background: var(--slate);
  border-radius: 2px;
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-book-cta p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.55;
  margin: 0;
}
.contact-banner {
  border-radius: 2px;
  padding: 14px 18px;
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 24px;
}
.contact-banner--success {
  background: rgba(44,107,79,0.08);
  border: 1.5px solid rgba(44,107,79,0.3);
  color: var(--ocean-dark);
}
.contact-banner--error {
  background: rgba(220,38,38,0.06);
  border: 1.5px solid rgba(220,38,38,0.25);
  color: #b91c1c;
}
.contact-banner a { color: inherit; font-weight: 600; }
.form-field-error {
  font-size: 0.78rem;
  color: #dc2626;
  margin-top: 4px;
}
@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-sidebar { flex-direction: row; flex-wrap: wrap; }
  .contact-info-block { flex: 1 1 240px; }
  .contact-book-cta { flex: 1 1 100%; }
}
@media (max-width: 560px) {
  .form-row--2col { grid-template-columns: 1fr; }
  .contact-sidebar { flex-direction: column; }
}

/* ─── Intent Picker (Contact Page) ─────────────────────── */
.intent-picker {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.intent-btn {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: 14px 14px 12px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  text-align: left;
  color: var(--body-text);
  transition: border-color var(--dur-snap) var(--ease-out),
              box-shadow    var(--dur-snap) var(--ease-out);
}
.intent-btn svg { color: var(--muted); margin-bottom: 4px; flex-shrink: 0; }
.intent-btn:hover {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(44,107,79,0.08);
}
.intent-btn.active {
  border-color: var(--ocean);
  background: rgba(44,107,79,0.04);
  box-shadow: 0 0 0 3px rgba(44,107,79,0.1);
}
.intent-btn.active svg { color: var(--ocean); }
.intent-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate);
  line-height: 1.2;
}
.intent-btn.active .intent-label { color: var(--ocean-dark); }
.intent-sub {
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.3;
}
.intent-btn:focus-visible { outline: 2px solid var(--ocean); outline-offset: 2px; }

.intent-panel { margin-top: 4px; }

.intent-context {
  color: var(--body-text);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.intent-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 16px;
}
.intent-note a { color: var(--ocean); text-decoration: none; }
.intent-note a:hover { text-decoration: underline; }

/* Booking cards */
.intent-book-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.intent-book-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 18px 18px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-top: 3px solid var(--ocean);
  border-radius: 2px;
  cursor: pointer;
  text-align: left;
  transition: border-color var(--dur-snap) var(--ease-out),
              box-shadow   var(--dur-snap) var(--ease-out),
              transform    var(--dur-base) var(--ease-out);
}
.intent-book-card:hover {
  border-color: var(--ocean);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.intent-book-card:focus-visible { outline: 2px solid var(--ocean); outline-offset: 2px; }
.intent-book-card--hawthorn { border-top-color: var(--timber); }
.intent-book-card--hawthorn:hover { border-color: var(--timber); }
.intent-book-brand {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 1rem;
  color: var(--slate);
  display: block;
}
.intent-book-type {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.4;
  display: block;
}
.intent-book-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ocean);
  margin-top: 10px;
  display: block;
}
.intent-book-card--hawthorn .intent-book-cta { color: var(--timber); }

/* WhatsApp CTA */
.intent-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 22px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 4px;
  transition: background var(--dur-snap) var(--ease-out);
}
.intent-whatsapp-btn:hover { background: #1ebe5a; color: #fff; }
.intent-whatsapp-btn:focus-visible { outline: 2px solid #25D366; outline-offset: 2px; }

/* Form required note */
.form-required-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  .intent-btn { min-width: calc(50% - 5px); flex: none; }
  .intent-book-options { grid-template-columns: 1fr; }
}
