/* ---------- Tokens ---------- */
:root {
  --bg: #faf6f0;
  --bg-soft: #f1eadf;
  --ink: #1f1a14;
  --ink-soft: #4b4239;
  --muted: #7a6e60;
  --rule: #e6dccc;
  --accent: #8a4b1f;     /* copper */
  --accent-ink: #5a2f10;
  --forest: #2d3b2a;
  --cream: #fffaf2;
  --shadow: 0 8px 24px rgba(40, 28, 12, 0.12);
  --radius: 14px;
  --maxw: 1180px;
  --serif: "Cormorant Garamond", "Iowan Old Style", "Apple Garamond", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--accent-ink); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 .4em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--ink-soft); }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 .6em;
}
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: var(--cream);
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--accent-ink); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,255,255,.6);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-sm { padding: 9px 16px; font-size: .9rem; }
.btn-lg { padding: 16px 30px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--ink);
  font-weight: 600;
}
.brand:hover { text-decoration: none; }
.brand-mark { font-size: 1.2rem; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: .01em;
}
.site-nav {
  margin-left: auto;
  display: flex;
  gap: 22px;
}
.site-nav a {
  color: var(--ink-soft);
  font-size: .95rem;
  font-weight: 500;
}
.site-nav a:hover { color: var(--accent-ink); text-decoration: none; }
.site-header > .btn { margin-left: 12px; }

@media (max-width: 720px) {
  .site-nav { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(86vh, 780px);
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
}
.hero-img, .hero-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.05) 35%, rgba(20,12,4,.78) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px 24px 56px;
  width: 100%;
}
.hero .eyebrow { color: #f5d6a8; }
.hero h1 { color: var(--cream); max-width: 18ch; }
.hero .lede {
  font-size: 1.15rem;
  max-width: 56ch;
  color: rgba(255, 250, 242, 0.92);
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 22px 0 28px;
}
.hero-facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  color: rgba(255, 250, 242, 0.92);
  font-size: .98rem;
}
.hero-facts strong {
  color: var(--cream);
  font-weight: 700;
  margin-right: 4px;
}

/* ---------- Generic sections ---------- */
section { padding: 80px 0; }
section.about, section.location { background: var(--bg); }
section.amenities { background: var(--bg-soft); }
section.gallery { background: var(--bg); }
section.book {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
}
section.book h2, section.book .eyebrow { color: var(--cream); }
section.book .eyebrow { color: #f5d6a8; }
section.book p { color: rgba(255,250,242,.86); }
section.book .fine { font-size: .92rem; margin-top: 18px; }
section.book .fine a { color: #f5d6a8; }
section.book .trust { font-size: .85rem; color: rgba(255,250,242,.68); margin-top: 8px; }

/* ---------- Two-col ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
}
.about-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-photo figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: .88rem;
  text-align: center;
}

/* ---------- Amenities ---------- */
.amenity-grid {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.amenity-grid li {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: start;
}
.amenity-grid .ico {
  grid-row: 1 / span 2;
  font-size: 1.6rem;
  line-height: 1;
}
.amenity-grid strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}
.amenity-grid span:not(.ico) {
  font-size: .9rem;
  color: var(--muted);
}
@media (max-width: 980px) { .amenity-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .amenity-grid { grid-template-columns: 1fr; } }

/* ---------- Gallery ---------- */
.gallery-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-grid figure:hover img { transform: scale(1.04); }
/* The first two figures span 2 rows for a hero-strip effect */
.gallery-grid .g-tall { grid-row: span 2; }
@media (max-width: 980px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-grid .g-tall { grid-row: span 1; }
}

/* ---------- Location ---------- */
.location-list {
  margin: 18px 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
  color: var(--ink-soft);
}
@media (max-width: 520px) { .location-list { grid-template-columns: 1fr; } }
.link { font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--rule);
  padding: 32px 0;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.site-footer .brand-name { font-size: 1.1rem; margin: 0 0 4px; }
.site-footer p { margin: 0; }
@media (max-width: 720px) {
  .foot-grid { grid-template-columns: 1fr; text-align: left; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .gallery-grid img { transition: none; }
  .btn { transition: none; }
}
