/* Eliott Anne Spa & Wellness Suites — static clone
   Palette + type extracted from the live Squarespace theme:
   greige #dfdbd7 (page), white, steel-slate #455763 (text/headings/dark band), cool grey #d3dadc.
   Headings: Marcellus · Body: PT Serif · Buttons/Nav: Cabin.
   Primary button: solid slate, no uppercase, rounded-top / square-bottom shape. */

:root {
  --greige: #dfdbd7;
  --white: #ffffff;
  --slate: #455763;
  --slate-hover: #38474f;
  --cool: #d3dadc;
  --line: #cbc6bf;
  --muted: #6f7d86;
  --max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "PT Serif", Georgia, serif;
  color: var(--slate);
  background: var(--greige);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .display {
  font-family: "Marcellus", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.18;
  color: var(--slate);
}

a { color: var(--slate); }
img { max-width: 100%; display: block; }

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

/* ---------- Header / Nav (transparent, overlaid on the hero) ---------- */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1360px;
  margin: 0 auto;
  padding: 22px 44px;
}
.nav__logo img { height: 160px; width: auto; }
.nav__links { display: flex; gap: 46px; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav__links a {
  font-family: "Marcellus", serif;
  text-decoration: none;
  color: var(--slate);
  letter-spacing: 0.02em;
  font-size: 19px;
}
.nav__links a:hover { opacity: 0.6; }
.nav__links a.active { border-bottom: 1px solid var(--slate); padding-bottom: 3px; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; font-size: 26px; color: var(--slate); }

/* ---------- Generic hero (Spa Suites / Find Us — centered slate text) ---------- */
.hero {
  position: relative;
  min-height: 64vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--slate);
  padding: 230px 28px 96px;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.hero::before {            /* greige wash so the image sits faded beneath the text */
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(223, 219, 215, 0.62);
}
.hero__inner { position: relative; z-index: 2; max-width: 760px; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); margin: 0 0 20px; color: var(--slate); }
.hero p { font-size: 1.2rem; margin: 0 auto 30px; max-width: 600px; color: var(--slate); }

/* ---------- Homepage hero (faded full-bleed bg + text-left / team-photo-right) ---------- */
.hero-home {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  min-height: 94vh;
  padding: 212px 0 80px;
}
.hero-home::before {       /* greige overlay @ 0.78 — matches the live site */
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(223, 219, 215, 0.78);
}
.hero-home__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  width: 100%;
}
.hero-home__text h1 { font-size: clamp(2.6rem, 5vw, 4rem); margin: 0 0 26px; }
.hero-home__text p { font-size: 1.2rem; max-width: 520px; margin: 0 0 36px; }
.hero-home__photo img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 22px 55px rgba(69, 87, 99, 0.20);
}

/* ---------- Find Us hero (faded full-bleed bg holding title + info grid) ---------- */
.hero-page {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 236px 0 120px;
}
.hero-page::before {       /* greige overlay — same treatment as the homepage hero */
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(223, 219, 215, 0.66);
}
.hero-page > .wrap { position: relative; }
.hero-page__title { text-align: center; font-size: clamp(2.6rem, 6vw, 4.4rem); margin: 0 0 84px; }

/* ---------- Buttons (Cabin · slate fill · rounded-top shape) ---------- */
.btn {
  display: inline-block;
  font-family: "Cabin", sans-serif;
  text-decoration: none;
  letter-spacing: 0.01em;
  font-size: 1rem;
  line-height: 1.2;
  padding: 15px 40px;
  background: var(--slate);
  color: #fff;
  border: 1px solid var(--slate);
  border-radius: 40px;
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}
.btn:hover { background: var(--slate-hover); border-color: var(--slate-hover); color: #fff; }
.btn--outline { background: transparent; color: var(--slate); border-radius: 40px; padding: 15px 40px; }
.btn--outline:hover { background: var(--slate); color: #fff; }
/* light-on-dark variant for the slate band */
.btn--invert { background: #fff; color: var(--slate); border-color: #fff; }
.btn--invert:hover { background: transparent; color: #fff; }
.btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Sections ---------- */
section { padding: 92px 0; }
.section--white { background: var(--white); }
.section--greige { background: var(--greige); }
.eyebrow {
  font-family: "Cabin", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12.5px;
  color: var(--muted);
  margin: 0 0 14px;
}
.lede { font-size: 1.3rem; line-height: 1.6; max-width: 720px; }
.center { text-align: center; }
.center .lede, .center .btn-row { margin-left: auto; margin-right: auto; }

/* Image gallery row (homepage section 2 — "dark" theme, cool-grey bg, staggered) */
.gallery { background: var(--cool); padding: 96px 0; }
.gallery__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; align-items: start; }
.gallery__row img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(69, 87, 99, 0.16);
  display: block;
  object-fit: cover;
}
/* side cards: matched landscape · center card: moderate portrait, raised */
.gallery__row img:nth-child(1),
.gallery__row img:nth-child(3) { aspect-ratio: 4 / 3; margin-top: 54px; }
.gallery__row img:nth-child(2) { aspect-ratio: 3 / 4; margin-top: 0; }

/* Slate contact band (homepage "Find Us" / "black" theme) */
.band-slate { background: var(--slate); color: #fff; text-align: center; }
.band-slate h2, .band-slate h3 { color: #fff; }
.band-slate p { margin: 4px 0; color: #e6ebee; }
.band-slate a { color: #fff; }

/* ---------- Suite intro cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 42px 30px;
  text-align: center;
}
.card h3 { font-size: 1.6rem; margin: 0 0 12px; }
.card p { color: var(--muted); min-height: 78px; }

/* ---------- Tenant blocks ---------- */
.tenant { border-top: 1px solid var(--line); padding: 84px 0; }
.tenant__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.tenant__logo { max-width: 230px; margin-bottom: 24px; }
.tenant h2 { font-size: 2.2rem; margin: 0 0 18px; }
.tenant__tag { font-size: 1.15rem; color: var(--slate); font-style: italic; margin-bottom: 24px; }
.tenant__bio-name { font-family: "Marcellus", serif; font-size: 1.3rem; margin: 28px 0 4px; }
.tenant__bio-role { color: var(--muted); font-size: 0.95rem; margin: 0 0 16px; }
.portrait { width: 100%; border-radius: 2px; }

/* Services list */
.svc-title {
  font-family: "Cabin", sans-serif;
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 13px;
  color: var(--muted); margin: 22px 0 8px;
}
.svc-list { columns: 2; column-gap: 32px; list-style: none; padding: 0; margin: 0 0 8px; }
.svc-list li { padding: 3px 0; color: var(--slate); font-size: 0.98rem; break-inside: avoid; }

/* ---------- Find Us page ---------- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.info-grid h3 {
  font-family: "Cabin", sans-serif;
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 14px; color: var(--muted); margin: 0 0 10px;
}
.info-grid p { margin: 4px 0; }

/* ---------- Footer (slate "black" theme) ---------- */
.site-footer { background: var(--slate); color: #eef2f5; padding: 70px 0 42px; }
.site-footer a { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer h4 { font-family: "Marcellus", serif; font-size: 1.35rem; margin: 0 0 14px; font-weight: 400; color: #fff; }
.site-footer p { margin: 4px 0; color: #dce3e8; font-size: 0.97rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.18); margin-top: 46px; padding-top: 24px; font-size: 0.84rem; color: #aebac3; text-align: center; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  body { font-size: 17px; }
  .nav { padding: 16px 20px; }
  .nav__logo img { height: 92px; }
  .hero-home { min-height: auto; padding: 150px 0 60px; }
  .hero-home__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-home__text p { max-width: none; }
  .hero-home__photo { order: -1; }
  .nav__toggle { display: block; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--greige);
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
  }
  .nav__links.open { display: flex; }
  .nav__links li { text-align: center; }
  .nav__links a { display: block; padding: 14px; }
  .cards, .tenant__grid, .info-grid, .footer-grid { grid-template-columns: 1fr; }
  .tenant__grid { gap: 32px; }
  .card p { min-height: 0; }
  section { padding: 60px 0; }
  .gallery { padding: 56px 0; }
  .gallery__row { grid-template-columns: 1fr; gap: 28px; }
  .gallery__row > :nth-child(1),
  .gallery__row > :nth-child(3) { margin-top: 0; }
}
