/* The Aberdeen House — modern / editorial.
   Big imagery, bold sans, dramatic typography, accent on warmth.
   Reference: Sonder · Airbnb · Wilde Aparthotels · Plum Guide. */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&display=swap');

:root {
  --ink: #0a0a0a;
  --ink-soft: #4a4a4a;
  --muted: #8a8a8a;
  --line: #ebe8e3;
  --line-soft: #f5f3ee;
  --bg: #f7f4ee;
  --surface: #ffffff;
  --surface-dark: #181614;
  --accent: #c8553d;        /* warm terracotta — distinctive, not corporate */
  --accent-dark: #a73d28;
  --accent-soft: #f6e6e1;
  --ink-on-accent: #fff;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(10,10,10,.04), 0 14px 40px rgba(10,10,10,.08);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}

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

a { color: var(--ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; text-decoration-color: var(--accent); }
a:hover { color: var(--accent-dark); text-decoration-color: var(--accent-dark); }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.row { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* Header */
header.site {
  background: var(--bg);
  border-bottom: 0;
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px);
  background-color: rgba(247,244,238,.85);
}
header.site .row { padding: 22px 0; }
.brand {
  font-family: "Fraunces", "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -.3px;
}
.brand:hover { text-decoration: none; }
header nav { display: flex; gap: 30px; flex-wrap: wrap; align-items: center; }
header nav a {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  transition: color .15s;
}
header nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px; background: var(--accent); transform: scaleX(0);
  transform-origin: left; transition: transform .25s ease;
}
header nav a:hover { color: var(--accent-dark); text-decoration: none; }
header nav a:hover::after { transform: scaleX(1); }
header nav a.cta {
  background: var(--ink); color: #fff;
  padding: 12px 20px; border-radius: 999px;
  font-weight: 500; font-size: 14px;
}
header nav a.cta::after { display: none; }
header nav a.cta:hover { background: var(--accent); color: #fff; }

/* Hero */
.hero, section.hero {
  background: var(--bg);
  color: var(--ink);
  padding: 100px 0 120px;
  position: relative;
}
.hero-clean, .hero-image, .hero-editorial { background: var(--bg) !important; color: var(--ink) !important; }
.hero-inner { max-width: 920px; }
.hero p.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .4px;
  color: var(--ink-soft);
  margin: 0 0 28px;
  padding: 8px 16px;
  background: var(--surface);
  border-radius: 999px;
  border: 1px solid var(--line);
}
.hero p.eyebrow::before {
  content: ""; display: inline-block; width: 6px; height: 6px;
  background: var(--accent); border-radius: 999px;
}
.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(48px, 7.4vw, 92px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -1.5px;
  margin: 0 0 28px;
  color: var(--ink);
  font-variation-settings: "opsz" 120;
}
.hero h1 em { font-style: italic; color: var(--accent); font-weight: 500; }
.hero h1::first-letter { color: var(--ink); font-weight: 500; }
.hero p {
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 0 40px;
}
.hero-overlay { display: none; }

/* Sections */
section { padding: 96px 0; background: var(--bg); }
section + section { border: 0; }
section.bg-dark { background: var(--surface-dark); color: #f3eee5; }
section.bg-dark h1, section.bg-dark h2, section.bg-dark h3 { color: #fff; }
section.bg-dark p, section.bg-dark ul, section.bg-dark li { color: #d4cdbf; }

section h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(36px, 4.8vw, 60px);
  font-weight: 500;
  margin: 0 0 24px;
  line-height: 1.05;
  letter-spacing: -.8px;
  color: var(--ink);
}
section h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 500;
  margin: 56px 0 20px;
  line-height: 1.1;
  letter-spacing: -.4px;
  color: var(--ink);
}
section h2:first-child,
section > div > h2:first-of-type { margin-top: 0; }
section h3 {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin: 18px 0 8px;
  color: var(--ink);
  letter-spacing: -.2px;
}
section p { margin: 0 0 16px; color: var(--ink-soft); }
section ul { padding-left: 22px; color: var(--ink-soft); }
section ul li { margin-bottom: 8px; }

.lede {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(22px, 2.3vw, 28px);
  color: var(--ink);
  max-width: 760px;
  margin: 0 0 36px;
  line-height: 1.35;
  font-weight: 400;
}

/* Buttons */
.btn, a.btn, button.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s, border-color .2s;
  margin-right: 10px; margin-bottom: 10px;
}
.btn.primary, a.btn.primary {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.btn.primary:hover {
  background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-1px);
}
.btn.ghost, a.btn.ghost {
  background: transparent; color: var(--ink); border-color: var(--ink);
}
.btn.ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.cta {
  background: var(--ink); color: #fff;
  padding: 14px 26px; border-radius: 999px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, color .2s;
}
.cta:hover { background: var(--accent); color: #fff; text-decoration: none; }

/* Grid + cards */
.grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin: 24px 0 32px;
}
.card {
  background: var(--surface);
  border: 0;
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.card h3 { margin-top: 0; }
.card p { margin-bottom: 0; font-size: 15px; }

/* Rates table */
.rates-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 0;
  box-shadow: var(--shadow);
  margin: 18px 0 32px;
}
.rates-table th {
  text-align: left;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .4px;
  text-transform: uppercase;
  padding: 18px 24px;
  background: var(--surface-dark);
  color: #fff;
  border: 0;
}
.rates-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--line-soft);
}
.rates-table tr:last-child td { border-bottom: 0; }
.rates-table .num {
  text-align: right;
  font-family: "Fraunces", Georgia, serif;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
}

/* Map */
.map-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin: 16px 0 36px; }
.map-buttons .cta { font-size: 13px; padding: 10px 18px; }
.map-wrap {
  margin: 32px 0 48px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}
.map-wrap iframe { display: block; width: 100%; height: 520px; border: 0; }

/* Calendar iframe (booking, separate from map) */
.calendar-wrap { margin: 24px 0; }
.calendar-wrap iframe {
  width: 100%; height: 420px; border: 0; border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Footer */
footer.site {
  background: var(--surface-dark);
  color: #b4afa6;
  padding: 64px 0 32px;
  margin-top: 96px;
}
footer.site .row { align-items: flex-start; gap: 48px; }
footer.site div { flex: 1 1 260px; }
footer.site strong {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  letter-spacing: -.2px;
  display: inline-block;
  margin-bottom: 6px;
}
footer.site a { color: #b4afa6; text-decoration: none; }
footer.site a:hover { color: #fff; text-decoration: underline; text-decoration-color: var(--accent); }
footer.site .small { color: #8a8479; font-size: 13px; line-height: 1.6; letter-spacing: .2px; }

.small { font-size: 14px; color: var(--muted); }

/* Floor selector — match the modern cards */
.floor-selector .card,
.floor-selector a.card {
  border-radius: var(--radius) !important;
  border: 1px solid var(--line) !important;
  background: var(--surface) !important;
}
.floor-selector a.card:hover { border-color: var(--accent) !important; }

/* Stats row — big number treatment if used */
.stats { display: grid; gap: 32px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); margin: 32px 0 8px; }
.stats .stat { padding: 8px 0; border-top: 1px solid var(--line); }
.stats .stat .n {
  font-family: "Fraunces", Georgia, serif;
  font-size: 44px; font-weight: 500; line-height: 1; color: var(--ink);
  display: block; margin-bottom: 6px;
}
.stats .stat .l { font-size: 14px; color: var(--ink-soft); }

/* Mobile */
@media (max-width: 700px) {
  body { font-size: 15px; }
  .container { padding: 0 20px; }
  header.site .row { padding: 16px 0; gap: 10px; }
  header nav { gap: 18px; font-size: 14px; }
  .hero { padding: 64px 0 80px; }
  .hero h1 { font-size: clamp(34px, 9vw, 56px); }
  section { padding: 56px 0; }
  .grid { gap: 14px; }
  section h2 { margin-top: 36px; }
  .map-wrap iframe { height: 360px; }
  .stats .stat .n { font-size: 36px; }
}
