/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --cream: #f6f1e9;
  --ink: #0f1b28;
  --ink-60: rgba(15, 27, 40, 0.6);
  --ink-20: rgba(15, 27, 40, 0.12);
  --gold: #b8914a;
  --gold-lt: #e8d5a8;
  --white: #fdfaf5;
  --card-bg: #fdfaf5;
  --border: rgba(15, 27, 40, 0.1);
  --radius: 4px;
  --ff-head: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Outfit', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── RESET ──────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ─── UTILITIES ──────────────────────────────────────────── */
.container {
  width: min(1160px, 92vw);
  margin-inline: auto;
}
.section {
  padding-block: 100px;
}
.section-sm {
  padding-block: 72px;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.h1 {
  font-family: var(--ff-head);
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.h2 {
  font-family: var(--ff-head);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.h3 {
  font-family: var(--ff-head);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 400;
  line-height: 1.2;
}
.body-lg {
  font-size: 17px;
  font-weight: 300;
  color: var(--ink-60);
  line-height: 1.7;
}
.body-sm {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-60);
}

/* ─── BUTTON ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  border: none;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: #1a3249;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(15, 27, 40, 0.22);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}
.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background: #9e7b3a;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184, 145, 74, 0.3);
}
.arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.25s var(--ease);
}
.btn:hover .arrow-icon {
  transform: translateX(4px);
}

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(246, 241, 233, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}
.nav.scrolled {
  box-shadow: 0 2px 24px rgba(15, 27, 40, 0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink-60);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--ink-20);
  border-radius: 20px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 16px;
  border: none;
  background: transparent;
  color: var(--ink-60);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.lang-btn.active {
  background: var(--ink);
  color: var(--cream);
}
.nav-cta {
  display: none;
}
@media (min-width: 900px) {
  .nav-cta {
    display: inline-flex;
  }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  display: block;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  padding: 32px 24px;
  gap: 24px;
  border-top: 1px solid var(--border);
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: var(--ff-head);
  font-size: 28px;
  font-weight: 300;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: block;
  padding-top: 68px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(184, 145, 74, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(15, 27, 40, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}
.hero-content {
  padding: 80px 0 80px;
  animation: fadeUp 0.9s var(--ease) both;
  min-width: 0;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(48px, 5.8vw, 82px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: 0;
  max-width: 9.2em;
  margin-bottom: 28px;
}
.hero-title-line {
  display: block;
  width: fit-content;
  max-width: 100%;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--ink-60);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
}
.hero-visual {
  position: relative;
  width: 100%;
  min-height: clamp(460px, 52vw, 640px);
  animation: fadeIn 1.1s var(--ease) 0.2s both;
  min-width: 0;
}
.hero-img-wrap {
  position: absolute;
  top: 68px;
  right: 0;
  bottom: 0;
  width: min(100%, 560px);
  overflow: hidden;
  border-radius: 8px 0 0 8px;
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d6cfc3 0%, #c4bdb2 40%, #b0a898 100%);
  position: relative;
  overflow: hidden;
}
.hero-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 30%, rgba(255, 255, 255, 0.18) 0%, transparent 70%),
    linear-gradient(180deg, rgba(246, 241, 233, 0.08) 0%, rgba(15, 27, 40, 0.12) 100%);
}
.hero-badge {
  position: absolute;
  bottom: 48px;
  left: 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(15, 27, 40, 0.1);
  animation: slideIn 1s var(--ease) 0.6s both;
  min-width: 220px;
}
.hero-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.hero-badge-text strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.hero-badge-text span {
  font-size: 11px;
  color: var(--ink-60);
}
.hero-badge-2 {
  position: absolute;
  top: 100px;
  left: 0;
  background: var(--ink);
  color: var(--cream);
  border-radius: 8px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(15, 27, 40, 0.2);
  animation: slideIn 1s var(--ease) 0.8s both;
}
.hero-badge-2 strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 400;
  color: var(--gold-lt);
}
.hero-badge-2 span {
  font-size: 11px;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .hero-title {
    font-size: clamp(46px, 12vw, 70px);
    max-width: 8.4em;
  }
}

@media (max-width: 430px) {
  .hero-title {
    font-size: clamp(42px, 11vw, 52px);
    max-width: 7.2em;
  }
}

/* ─── TRUST BAR ──────────────────────────────────────────── */
.trust-bar {
  background: var(--ink);
  padding: 28px 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(246, 241, 233, 0.75);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.trust-item:last-child {
  border-right: none;
}
.trust-item-icon {
  color: var(--gold-lt);
  font-size: 16px;
}

/* ─── SERVICES ───────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  box-shadow: 0 12px 40px rgba(15, 27, 40, 0.08);
  transform: translateY(-3px);
}
.service-icon {
  font-size: 32px;
  margin-bottom: 20px;
}
.service-card .h3 {
  margin-bottom: 12px;
}
.service-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--ff-head);
  font-size: 64px;
  font-weight: 300;
  color: var(--ink-20);
  line-height: 1;
  user-select: none;
}

/* ─── HOW IT WORKS ───────────────────────────────────────── */
.how-bg {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.how-bg::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(184, 145, 74, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.how-bg .tag {
  color: var(--gold-lt);
}
.how-bg .tag::before {
  background: var(--gold-lt);
}
.how-bg .h2 {
  color: var(--cream);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 56px;
}
.how-step {
  background: var(--ink);
  padding: 40px 32px;
  position: relative;
  transition: background 0.3s var(--ease);
}
.how-step:hover {
  background: #1a3249;
}
.how-step-num {
  font-family: var(--ff-head);
  font-size: 56px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.how-step h3 {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
}
.how-step p {
  font-size: 14px;
  color: rgba(246, 241, 233, 0.6);
  line-height: 1.65;
}

/* ─── PRICING ────────────────────────────────────────────── */
.property-size-wrap {
  max-width: 840px;
  margin: 40px auto 0;
  text-align: center;
}
.property-size-title {
  font-family: var(--ff-head);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 18px;
}
.property-size-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.property-size-btn {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--ink-60);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  padding: 0 16px;
  cursor: pointer;
  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    color 0.2s var(--ease);
}
.property-size-btn:hover,
.property-size-btn:focus-visible {
  border-color: rgba(184, 145, 74, 0.45);
  color: var(--ink);
  outline: none;
}
.property-size-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
  align-items: stretch;
}
.price-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 36px;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.price-card.featured {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: scale(1.03);
}
.price-card:hover:not(.featured) {
  box-shadow: 0 12px 40px rgba(15, 27, 40, 0.08);
  transform: translateY(-3px);
}
.price-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.price-card.featured .price-label {
  color: var(--gold-lt);
}
.price-name {
  font-family: var(--ff-head);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 8px;
}
.price-desc {
  font-size: 14px;
  color: var(--ink-60);
  margin-bottom: 28px;
  line-height: 1.6;
  min-height: 90px;
}
.price-card.featured .price-desc {
  color: rgba(246, 241, 233, 0.6);
}
.price-amount {
  font-family: var(--ff-head);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 4px;
}
.price-unit {
  font-size: 13px;
  color: var(--ink-60);
  margin-bottom: 32px;
  min-height: 20px;
}
.price-unit-empty {
  margin-bottom: 32px;
}
.price-card.featured .price-unit {
  color: rgba(246, 241, 233, 0.6);
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
  flex: 1;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-60);
}
.price-card.featured .price-features li {
  color: rgba(246, 241, 233, 0.75);
}
.price-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(184, 145, 74, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  color: var(--gold);
}
.price-card.featured .price-check {
  background: rgba(232, 213, 168, 0.15);
  color: var(--gold-lt);
}
.price-card .btn {
  width: 100%;
  justify-content: center;
  min-height: 48px;
}
.pricing-addons {
  max-width: 980px;
  margin: 44px auto 0;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.pricing-addons h3 {
  font-family: var(--ff-head);
  font-size: 28px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 18px;
}
.addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.addon-card {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card-bg);
  padding: 12px 18px;
  transition: all 0.25s var(--ease);
}
.addon-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(15, 27, 40, 0.06);
  transform: translateY(-2px);
}
.addon-name {
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.35;
}
.addon-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.linen-service {
  max-width: 980px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 28px;
  align-items: center;
  background: var(--ink);
  color: var(--cream);
  border-radius: 8px;
  padding: 34px;
}
.linen-service .tag {
  margin-bottom: 12px;
}
.linen-service h3 {
  font-family: var(--ff-head);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 14px;
}
.linen-service p {
  color: rgba(246, 241, 233, 0.7);
  font-size: 14px;
  line-height: 1.7;
}
.linen-service-options {
  display: grid;
  gap: 10px;
}
.linen-service-options div {
  border: 1px solid rgba(232, 213, 168, 0.18);
  border-radius: 6px;
  padding: 14px 16px;
  background: rgba(246, 241, 233, 0.04);
}
.linen-service-options strong {
  display: block;
  color: var(--gold-lt);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
}
.linen-service-options span {
  display: block;
  color: rgba(246, 241, 233, 0.68);
  font-size: 13px;
  line-height: 1.55;
}
.pricing-disclaimer {
  max-width: 820px;
  text-align: center;
  margin: 28px auto 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-60);
}

@media (max-width: 820px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }
  .price-card.featured {
    transform: none;
  }
  .price-desc {
    min-height: 0;
  }
  .linen-service {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .property-size-options {
    align-items: stretch;
  }
  .property-size-btn {
    width: 100%;
  }
  .price-card {
    padding: 32px 24px;
  }
  .addon-grid {
    grid-template-columns: 1fr;
  }
  .linen-service {
    padding: 28px 22px;
  }
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  transition: all 0.3s var(--ease);
}
.testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(15, 27, 40, 0.07);
  transform: translateY(-2px);
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.star {
  color: var(--gold);
  font-size: 14px;
}
.testimonial-quote {
  font-family: var(--ff-head);
  font-size: 19px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 500;
  color: var(--gold);
  flex-shrink: 0;
}
.author-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.author-info {
  font-size: 12px;
  color: var(--ink-60);
}

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.contact-info {
  padding-top: 8px;
}
.contact-info .h2 {
  margin-bottom: 20px;
}
.contact-info .body-lg {
  margin-bottom: 40px;
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-method-icon {
  width: 44px;
  height: 44px;
  background: var(--ink);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-method-text strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}
.contact-method-text a {
  font-size: 15px;
  color: var(--gold);
  font-weight: 400;
}
.contact-method-text a:hover {
  text-decoration: underline;
}

/* Form */
.form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px 44px;
  box-shadow: 0 4px 40px rgba(15, 27, 40, 0.05);
}
.form-title {
  font-family: var(--ff-head);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 8px;
}
.form-subtitle {
  font-size: 14px;
  color: var(--ink-60);
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  font-size: 15px;
  font-weight: 300;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.form-note {
  font-size: 12px;
  color: var(--ink-60);
  text-align: center;
  margin-top: 12px;
}
.form-error {
  background: rgba(180, 40, 40, 0.08);
  border: 1px solid rgba(180, 40, 40, 0.25);
  color: #b42828;
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
}
.form-ical-hint {
  font-size: 11px;
  color: var(--ink-60);
  line-height: 1.55;
  margin-top: 6px;
}
.form-ical-group input {
  font-size: 13px;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(246, 241, 233, 0.6);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.footer-brand .nav-logo {
  color: var(--cream);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: rgba(246, 241, 233, 0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--gold-lt);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(246, 241, 233, 0.4);
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: rgba(246, 241, 233, 0.8);
}

/* ─── SECTION DIVIDER ────────────────────────────────────── */
.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 40px;
}

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* ─── SUCCESS MESSAGE ────────────────────────────────────── */
.form-success {
  display: none;
  text-align: center;
  padding: 32px 0;
}
.form-success .success-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.form-success h3 {
  font-family: var(--ff-head);
  font-size: 24px;
  margin-bottom: 8px;
}
.form-success p {
  font-size: 14px;
  color: var(--ink-60);
}

/* ─── FLOATING CTA ───────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(184, 145, 74, 0.35);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s var(--ease);
  opacity: 0;
  transform: translateY(12px);
}
.floating-cta.show {
  opacity: 1;
  transform: translateY(0);
}
.floating-cta:hover {
  background: #9e7b3a;
  box-shadow: 0 12px 40px rgba(184, 145, 74, 0.45);
  transform: translateY(-2px);
}

/* ─── ROOM ILLUSTRATION SVG ──────────────────────────────── */
.room-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── BOOKING ─────────────────────────────────────────────── */
.booking-hero {
  padding-top: calc(68px + 64px);
  padding-bottom: 40px;
}
.booking-hero .tag {
  margin-bottom: 16px;
}
.booking-hero .h2 {
  max-width: 520px;
  margin-bottom: 14px;
}
.booking-hero .body-lg {
  max-width: 520px;
}

.booking-section {
  padding-block: 56px 100px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Sticky calendar column on desktop */
.cal-wrap {
  position: sticky;
  top: 88px;
}

/* Calendar header */
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cal-month-label {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.cal-nav {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: var(--ink-60);
  transition: all 0.2s var(--ease);
  padding: 0;
}
.cal-nav:hover:not([disabled]) {
  border-color: var(--ink);
  color: var(--ink);
}
.cal-nav[disabled] {
  opacity: 0.25;
  cursor: default;
}

/* 7-column grid */
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.cal-day-header {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-60);
  text-align: center;
  padding: 6px 0 10px;
}
.cal-day {
  aspect-ratio: 1;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 300;
  cursor: default;
  transition:
    background 0.15s var(--ease),
    color 0.15s var(--ease);
  user-select: none;
}
.cal-empty {
  background: none;
}
.cal-past {
  color: var(--ink-20);
}
.cal-blocked {
  color: rgba(15, 27, 40, 0.25);
  background: rgba(15, 27, 40, 0.03);
  text-decoration: line-through;
  text-decoration-color: rgba(15, 27, 40, 0.2);
}
.cal-available {
  color: #0b4f3a;
  cursor: pointer;
  background: rgba(55, 165, 110, 0.12);
  border: 1px solid rgba(55, 165, 110, 0.22);
}
.cal-available:hover,
.cal-available:focus-visible {
  background: rgba(55, 165, 110, 0.2);
  color: #083b2b;
  outline: none;
}
.cal-selected {
  background: var(--gold) !important;
  color: #fff !important;
  font-weight: 500;
}

.cal-legend-wrap {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.cal-legend-title {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-60);
}

/* Legend */
.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cal-legend-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-height: 52px;
  min-width: min(240px, 100%);
  flex: 1 1 240px;
  padding: 10px 12px;
  background: rgba(15, 27, 40, 0.03);
  border: 1px solid rgba(15, 27, 40, 0.08);
  border-radius: var(--radius);
}
.cal-legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 2px;
}
.cal-legend-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cal-legend-copy strong {
  font-size: 12px;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.cal-legend-copy small {
  display: block;
  font-size: 11px;
  line-height: 1.35;
  color: var(--ink-60);
}
.cal-legend-available {
  background: rgba(55, 165, 110, 0.9);
}
.cal-legend-blocked {
  background: rgba(176, 59, 59, 0.88);
}
.cal-legend-selected {
  background: var(--gold);
}

/* Selected-date display tag */
.booking-date-tag {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(184, 145, 74, 0.08);
  border: 1px solid rgba(184, 145, 74, 0.2);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.booking-date-tag .tag {
  margin-bottom: 0;
}
.booking-date-tag-value {
  font-family: var(--ff-head);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
}

/* Booking form card */
.booking-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 44px 40px;
  box-shadow: 0 4px 40px rgba(15, 27, 40, 0.05);
}
@media (max-width: 480px) {
  .booking-form-card {
    padding: 28px 20px;
  }
}

/* Error banner */
.booking-error {
  display: none;
  background: rgba(180, 40, 40, 0.07);
  border: 1px solid rgba(180, 40, 40, 0.18);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 14px;
  color: #b42828;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* Submit button loading state */
.btn.loading {
  opacity: 0.65;
  cursor: not-allowed;
  pointer-events: none;
}

/* Booking success card */
.booking-success {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 44px 40px;
  text-align: center;
  box-shadow: 0 4px 40px rgba(15, 27, 40, 0.05);
}
@media (max-width: 480px) {
  .booking-success {
    padding: 28px 20px;
  }
}
.booking-success-icon {
  width: 56px;
  height: 56px;
  background: rgba(184, 145, 74, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin: 0 auto 20px;
}
.booking-success h3 {
  font-family: var(--ff-head);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 10px;
}
.booking-success > p {
  font-size: 14px;
  color: var(--ink-60);
  margin-bottom: 24px;
}
.booking-success-detail {
  background: rgba(184, 145, 74, 0.06);
  border: 1px solid rgba(184, 145, 74, 0.14);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 0 0 28px;
  text-align: left;
}
.booking-success-detail p {
  font-size: 14px;
  color: var(--ink);
  margin: 0 0 6px;
}
.booking-success-detail p:last-child {
  margin-bottom: 0;
}
.booking-success-detail strong {
  color: var(--gold);
}
.booking-cal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.booking-cal-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-60);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 18px;
  transition: all 0.2s var(--ease);
}
.booking-cal-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.booking-back-link {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-60);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.booking-back-link:hover {
  color: var(--ink);
}

/* Mode tabs */
.booking-mode-tabs {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
}
.mode-tab {
  flex: 1;
  padding: 11px 12px;
  background: none;
  border: none;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink-60);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.mode-tab + .mode-tab {
  border-left: 1px solid var(--border);
}
.mode-tab.active {
  background: var(--ink);
  color: var(--cream);
}
.mode-tab:not(.active):hover {
  background: rgba(15, 27, 40, 0.04);
  color: var(--ink);
}

/* iCal sync panel */
#ical-sync-panel {
  margin-bottom: 24px;
}
.ical-load-row {
  display: flex;
  gap: 8px;
}
.ical-load-row input {
  flex: 1;
}
.btn-ical-load {
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: var(--radius);
  padding: 0 20px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s var(--ease);
}
.btn-ical-load:hover {
  background: var(--gold);
}

.ical-auto-row {
  margin-top: 12px;
  padding: 12px 16px;
  background: rgba(184, 145, 74, 0.06);
  border: 1px solid rgba(184, 145, 74, 0.18);
  border-radius: var(--radius);
  align-items: flex-start;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.55;
}
.checkbox-label input[type='checkbox'] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Calendar - new states for sync mode */
.cal-checkout {
  color: #0f4960;
  cursor: pointer;
  background: rgba(72, 167, 201, 0.18);
  border: 1px solid rgba(72, 167, 201, 0.45);
  border-radius: var(--radius);
}
.cal-checkout:hover,
.cal-checkout:focus-visible {
  background: rgba(72, 167, 201, 0.28);
  outline: none;
}
.cal-host-stay {
  color: rgba(15, 27, 40, 0.55);
  background:
    linear-gradient(
      135deg,
      rgba(73, 89, 112, 0.12) 25%,
      transparent 25%,
      transparent 50%,
      rgba(73, 89, 112, 0.12) 50%,
      rgba(73, 89, 112, 0.12) 75%,
      transparent 75%,
      transparent
    ),
    rgba(73, 89, 112, 0.08);
  background-size: 10px 10px;
  border: 1px solid rgba(73, 89, 112, 0.18);
  text-decoration: line-through;
  text-decoration-color: rgba(73, 89, 112, 0.35);
}
.cal-conflict {
  color: #8a4e00;
  cursor: pointer;
  background: rgba(255, 164, 0, 0.18);
  border: 1px dashed rgba(255, 164, 0, 0.65);
  border-radius: var(--radius);
}
.cal-conflict:hover {
  background: rgba(255, 164, 0, 0.26);
}

.cal-checkin {
  color: #3b0764;
  background: rgba(147, 51, 234, 0.12);
  border: 1px solid rgba(147, 51, 234, 0.4);
  border-radius: var(--radius);
  cursor: pointer;
}
.cal-checkin:hover,
.cal-checkin:focus-visible {
  background: rgba(147, 51, 234, 0.22);
  outline: none;
}
.cal-turnover {
  color: #0f3a50;
  background: linear-gradient(135deg, rgba(72, 167, 201, 0.28) 50%, rgba(147, 51, 234, 0.18) 50%);
  border-top: 1px solid rgba(72, 167, 201, 0.5);
  border-left: 1px solid rgba(72, 167, 201, 0.5);
  border-bottom: 1px solid rgba(147, 51, 234, 0.45);
  border-right: 1px solid rgba(147, 51, 234, 0.45);
  border-radius: var(--radius);
  cursor: pointer;
}
.cal-turnover:hover {
  filter: brightness(0.94);
}

/* Legend dots for new states */
.cal-legend-host-stay {
  background: rgba(73, 89, 112, 0.75);
  border: 1px solid rgba(73, 89, 112, 0.9);
}
.cal-legend-checkin {
  background: rgba(147, 51, 234, 0.85);
  border: 1px solid rgba(147, 51, 234, 1);
}
.cal-legend-turnover {
  background: linear-gradient(135deg, rgba(72, 167, 201, 0.9) 50%, rgba(147, 51, 234, 0.85) 50%);
  border: 1px solid rgba(100, 100, 200, 0.5);
}
.cal-legend-checkout {
  background: rgba(72, 167, 201, 0.88);
  border: 1px solid rgba(72, 167, 201, 1);
}
.cal-legend-conflict {
  background: rgba(255, 164, 0, 0.88);
  border: 1px dashed rgba(255, 164, 0, 1);
}

/* Success card - pending / multi-date states */
.success-section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-60);
  margin: 0 0 8px !important;
}
.booking-success-pending {
  background: rgba(255, 160, 0, 0.05);
  border-color: rgba(255, 160, 0, 0.25);
}
.pending-note {
  font-size: 12px;
  color: #7a4f00;
  margin-top: 8px !important;
  line-height: 1.5;
}

/* Contact form - preferred dates chip picker */
.form-dates-group {
  margin-top: 4px;
}
.date-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.date-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(184, 145, 74, 0.1);
  border: 1px solid rgba(184, 145, 74, 0.25);
  border-radius: 20px;
  padding: 5px 8px 5px 12px;
  font-size: 13px;
  color: var(--ink);
}
.date-chip button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  color: var(--ink-40, rgba(15, 27, 40, 0.4));
  padding: 0 2px;
  display: flex;
  align-items: center;
}
.date-chip button:hover {
  color: var(--ink);
}
.date-add-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.date-add-row input[type='date'] {
  flex: 1;
}
.date-add-btn {
  background: var(--ink);
  color: var(--cream);
  border: none;
  border-radius: var(--radius);
  padding: 0 18px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s var(--ease);
}
.date-add-btn:hover {
  background: var(--gold);
}
