:root {
  --bg: #ece9e2;
  --paper: #f6f3ed;
  --paper-strong: #ffffff;
  --ink: #24211f;
  --muted: #5f5751;
  --line: #d2cbc1;
  --accent: #2e2b29;
  --accent-soft: #7a6f66;
  --button: #1d1d1d;
  --button-text: #ffffff;
  --radius: 18px;
  --shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(236, 233, 226, 0.95);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
}

.brand-name,
.brand-sub,
.site-nav a,
.section-label,
.kicker,
.rate-type,
.photo-caption {
  font-family: "Bree Serif", Georgia, serif;
}

.brand-name,
.brand-sub {
  display: block;
  line-height: 1.15;
}

.brand-name { font-size: 1rem; font-family: "Stardos Stencil", Georgia, serif; font-weight: 400; }
.brand-sub { font-size: 0.9rem; color: var(--muted); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  font-size: 0.95rem;
}

.nav-button {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: var(--button);
  color: var(--button-text);
}

.hero,
.section {
  padding: 5rem 0;
}

.hero {
  background-attachment: fixed;
  position: relative;
  filter: brightness(1.15);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-copy {
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 650px;
  backdrop-filter: blur(10px);
  order: 2;
}

.hero .hero-grid {
  display: flex;
  justify-content: flex-end;
}

.section-band {
  background: rgba(255,255,255,0.42);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.52), rgba(255,255,255,0.2));
}

.columns {
  display: grid;
  gap: 1.75rem;
}

.hero-grid,
.two-col-details,
.two-col-location,
.rates-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rate-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

h1,
h2,
h3 {
  margin: 0 0 0.8rem;
  color: var(--accent);
}

h1 {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(2.8rem, 8vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  font-weight: 700;
}

/* Alternative: Stardos Stencil Bold for a more curvy aesthetic */
h1.stencil {
  font-family: "Stardos Stencil", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

h2 {
  font-family: "Bree Serif", Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
}

h3 {
  font-family: "Bree Serif", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.15;
}

p { margin: 0 0 1rem; }

.kicker,
.section-label,
.rate-type {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-soft);
  font-size: 0.88rem;
}

.section-label {
  font-family: "Stardos Stencil", Georgia, serif;
  font-weight: 400;
  font-size: 0.95rem;
}

.hero-subtitle {
  max-width: 14ch;
}

.lead,
.lead-small {
  color: #3a3430;
}

.lead {
  max-width: 58ch;
  font-size: 1.08rem;
}

.card {
  background: var(--paper-strong);
  border: 1px solid rgba(46, 43, 41, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1rem;
  align-self: center;
}

.details-section .hero-card {
  align-self: start;
  display: flex;
  flex-direction: column;
}

.hero-image {
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.details-section .hero-image {
  aspect-ratio: 3 / 4;
  height: auto;
  margin-bottom: 1rem;
  object-fit: cover;
  object-position: center;
}

.photo-caption {
  margin: 0.85rem 0 0;
  font-size: 0.86rem;
  color: var(--muted);
  text-align: right;
}

.feature-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-item,
.contact-card,
.rate-card {
  background: var(--paper-strong);
  border: 1px solid rgba(46, 43, 41, 0.1);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: var(--shadow);
}

.rate-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
}

.rate-price {
  margin: 0;
  font-family: "Bree Serif", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.rate-price span {
  display: block;
  margin-top: 0.5rem;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.4;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}

.primary {
  background: var(--button);
  color: var(--button-text);
}

.secondary {
  background: transparent;
  border-color: rgba(46, 43, 41, 0.22);
}

.button-block { width: 100%; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.contact-card { align-self: start; }
.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.28);
}

.site-footer p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .two-col-details,
  .two-col-location,
  .rates-grid,
  .rate-cards,
  .feature-stack {
    grid-template-columns: 1fr;
  }

  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
  }
}

@media (max-width: 640px) {
  .hero,
  .section {
    padding: 3.8rem 0;
  }

  .container {
    width: min(calc(100% - 1.2rem), var(--max));
  }

  .hero-card,
  .feature-item,
  .contact-card,
  .rate-card {
    padding: 1.05rem;
  }

  .site-nav a {
    font-size: 0.88rem;
  }
}
