/* ============================================================
   The London Connexion — warm boutique editorial
   Palette: ivory paper, deep ink, terracotta clay
   Type: Fraunces (display serif) + Archivo (body grotesque)
   ============================================================ */

:root {
  --ivory: #F7F2EA;
  --ivory-deep: #EFE7DA;
  --ink: #1F1B16;
  --ink-soft: #4A4339;
  --clay: #C4593A;
  --clay-dark: #A84830;
  --sand: #E8E0D5;
  --gold: #B98A2F;
  --max: 1180px;
  --radius: 14px;
  --shadow: 0 18px 50px -18px rgba(31, 27, 22, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Archivo", system-ui, -apple-system, sans-serif;
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 540;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

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

a { color: inherit; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 600;
  margin-bottom: 14px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 242, 234, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sand);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.brand {
  font-family: "Fraunces", serif;
  font-size: 21px;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.brand em { font-style: italic; color: var(--clay); }

.nav { display: flex; gap: 30px; align-items: center; }

.nav a {
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.nav a:hover { color: var(--clay); }

.nav .btn { color: #fff; }

.btn {
  display: inline-block;
  background: var(--clay);
  color: #fff;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s;
}

.btn:hover { background: var(--clay-dark); transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.btn--ghost:hover { background: var(--ink); color: var(--ivory); }

/* ---------- Hero ---------- */
.hero { padding: 84px 0 60px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 { font-size: clamp(40px, 5.4vw, 64px); margin-bottom: 22px; }

.hero h1 em { font-style: italic; color: var(--clay); }

.hero p.lede { font-size: 19px; color: var(--ink-soft); max-width: 46ch; margin-bottom: 32px; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 4.6;
}

.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Stats band ---------- */
.stats {
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  background: var(--ivory-deep);
}

.stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  padding-top: 34px;
  padding-bottom: 34px;
  gap: 18px;
}

.stat b { display: block; font-family: "Fraunces", serif; font-size: 30px; font-weight: 560; }

.stat span { font-size: 13.5px; color: var(--ink-soft); letter-spacing: 0.06em; text-transform: uppercase; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }

.section-head { max-width: 640px; margin-bottom: 52px; }

.section-head h2 { font-size: clamp(30px, 3.6vw, 42px); margin-bottom: 14px; }

.section-head p { color: var(--ink-soft); font-size: 17.5px; }

/* ---------- Property cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 8px 30px -14px rgba(31, 27, 22, 0.18);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.card-img { aspect-ratio: 4 / 3; overflow: hidden; }

.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }

.card:hover .card-img img { transform: scale(1.04); }

.card-body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }

.card-body .meta { font-size: 13px; color: var(--clay); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 8px; }

.card-body h3 { font-size: 22px; margin-bottom: 10px; }

.card-body p { font-size: 15px; color: var(--ink-soft); flex: 1; }

.card-foot { margin-top: 18px; display: flex; justify-content: space-between; align-items: center; font-size: 14px; }

.card-foot .rating { font-weight: 600; }

.card-foot .link { color: var(--clay); font-weight: 600; }

/* ---------- Host band ---------- */
.host { background: var(--ink); color: var(--ivory); }

.host .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding-top: 88px; padding-bottom: 88px; }

.host h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 18px; }

.host p { color: rgba(247, 242, 234, 0.78); font-size: 17px; margin-bottom: 16px; }

.host .eyebrow { color: var(--gold); }

.host-points { list-style: none; margin-top: 8px; }

.host-points li { padding: 13px 0; border-bottom: 1px solid rgba(247, 242, 234, 0.14); font-size: 16px; }

.host-points li b { color: var(--gold); margin-right: 10px; font-family: "Fraunces", serif; }

/* ---------- Why direct ---------- */
.direct-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.direct-item { background: #fff; border-radius: var(--radius); padding: 32px 28px; box-shadow: 0 8px 30px -14px rgba(31,27,22,0.14); }

.direct-item h3 { font-size: 20px; margin-bottom: 10px; }

.direct-item p { font-size: 15px; color: var(--ink-soft); }

.direct-item .num { font-family: "Fraunces", serif; font-size: 15px; color: var(--clay); display: block; margin-bottom: 14px; }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.review {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: 0 8px 30px -14px rgba(31,27,22,0.14);
  display: flex;
  flex-direction: column;
}

.review p { font-size: 15px; color: var(--ink-soft); flex: 1; }

.review p::before { content: "“"; font-family: "Fraunces", serif; font-size: 34px; color: var(--clay); display: block; line-height: 1; margin-bottom: 8px; }

.review footer { margin-top: 18px; font-size: 13.5px; font-weight: 600; }

.review footer span { display: block; font-weight: 400; color: var(--ink-soft); }

/* ---------- Property page ---------- */
.prop-hero { padding: 56px 0 0; }

.prop-hero .eyebrow { margin-bottom: 10px; }

.prop-hero h1 { font-size: clamp(32px, 4.4vw, 52px); margin-bottom: 14px; max-width: 18ch; }

.facts { display: flex; gap: 26px; flex-wrap: wrap; font-size: 15px; color: var(--ink-soft); margin-bottom: 36px; }

.facts b { color: var(--ink); }

.gallery {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 14px;
  margin-bottom: 64px;
}

.gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }

.gallery img:first-child { grid-row: span 2; }

.prop-layout { display: grid; grid-template-columns: 1.4fr minmax(420px, 1fr); gap: 44px; align-items: start; }

.prop-content h2 { font-size: 27px; margin: 44px 0 16px; }

.prop-content h2:first-child { margin-top: 0; }

.prop-content p { color: var(--ink-soft); margin-bottom: 16px; }

.amenities { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; list-style: none; }

.amenities li { padding: 9px 0 9px 26px; border-bottom: 1px solid var(--sand); font-size: 15px; position: relative; }

.amenities li::before { content: "✓"; position: absolute; left: 0; color: var(--clay); font-weight: 700; }

.note {
  background: var(--ivory-deep);
  border-left: 3px solid var(--clay);
  padding: 18px 22px;
  border-radius: 0 10px 10px 0;
  font-size: 15px;
  color: var(--ink-soft);
  margin-top: 28px;
}

/* Booking card */
.book-card {
  position: sticky;
  top: 100px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 20px;
}

.book-card h3 { font-size: 21px; margin-bottom: 6px; }

.book-card .sub { font-size: 14px; color: var(--ink-soft); margin-bottom: 18px; }

.book-card .price { font-family: "Fraunces", serif; font-size: 20px; margin-bottom: 4px; min-height: 24px; }

.book-card .price small { font-family: "Archivo", sans-serif; font-size: 13px; color: var(--ink-soft); }

.widget-holder { margin-top: 10px; width: 100%; display: flex; justify-content: center; overflow: hidden; }

.widget-holder #hostaway-calendar-widget { width: 100%; }

.widget-holder iframe { max-width: 100% !important; display: block; margin: -60px auto 0; }

.book-meta { margin-top: 18px; font-size: 13px; color: var(--ink-soft); border-top: 1px solid var(--sand); padding-top: 14px; }

.book-meta div { display: flex; justify-content: space-between; padding: 4px 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(247,242,234,0.75); margin-top: 40px; }

.site-footer .wrap { padding: 56px 28px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }

.site-footer h4 { font-family: "Fraunces", serif; color: var(--ivory); font-size: 19px; margin-bottom: 12px; }

.site-footer a { color: rgba(247,242,234,0.85); text-decoration: none; display: block; padding: 4px 0; font-size: 14.5px; }

.site-footer a:hover { color: var(--gold); }

.site-footer p { font-size: 14.5px; }

.footnote { border-top: 1px solid rgba(247,242,234,0.14); }

.footnote .wrap { display: block; padding: 20px 28px; font-size: 13px; text-align: center; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }

.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-grid, .host .wrap, .prop-layout { grid-template-columns: 1fr; }
  .cards, .direct-grid, .reviews-grid { grid-template-columns: 1fr; }
  .stats .wrap { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .gallery img:first-child { grid-column: span 2; grid-row: span 1; }
  .site-footer .wrap { grid-template-columns: 1fr; }
  .nav { gap: 18px; }
  .nav a:not(.btn) { display: none; }
  .book-card { position: static; }
}
