:root {
  --brand: #5b9184;
  --brand-dark: #436f65;
  --cream: #f4f1ea;
  --text: #1f2a28;
  --muted: #64706d;
  --accent: #b83c31;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(31, 42, 40, 0.12);
  --radius: 18px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.section { padding: 64px 0; }
.section-tight { padding: 32px 0; }
.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  font-weight: 700;
}
h1, h2, h3 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.1;
  margin: 0 0 14px;
}
h1 { font-size: clamp(2.2rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 16px; }
.lead { font-size: 1.08rem; color: #2f3c39; }
.small { color: var(--muted); font-size: 0.95rem; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(244, 241, 234, 0.92);
  border-bottom: 1px solid rgba(67, 111, 101, 0.12);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 72px;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  flex-shrink: 0;
}
.brand__name { font-weight: 800; font-size: 1.1rem; }
.brand__tag { color: var(--muted); font-size: 0.9rem; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 600;
}
.nav__links a:hover { color: var(--brand-dark); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 800;
  transition: 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn--secondary {
  background: transparent;
  border-color: rgba(67, 111, 101, 0.28);
}
.btn--ghost {
  background: rgba(255,255,255,0.7);
  border-color: rgba(67, 111, 101, 0.18);
}

.hero {
  padding: 40px 0 56px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}
.hero__card {
  background: linear-gradient(180deg, rgba(91,145,132,0.08), rgba(91,145,132,0.02));
  border: 1px solid rgba(67, 111, 101, 0.14);
  border-radius: 28px;
  padding: 28px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.stat {
  background: var(--white);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.stat strong { display: block; font-size: 1.05rem; }
.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 4.2;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.notice {
  background: var(--brand-dark);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 16px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-weight: 700;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card__body { padding: 18px; }
.card__media {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}
.price { color: var(--accent); font-weight: 800; }
.badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(91,145,132,0.12);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.92rem;
}

.panel {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.list {
  margin: 0;
  padding-left: 18px;
}
.list li { margin: 0 0 10px; }
.hours {
  display: grid;
  gap: 10px;
}
.hours__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(67,111,101,0.16);
}
.review {
  padding: 18px;
  border-radius: 18px;
  background: rgba(91,145,132,0.08);
}
.review strong { display: block; margin-bottom: 8px; }
.map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 18px;
}
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.88);
  padding: 24px 0 36px;
}
.footer__grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.mobile-cta {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
}
.mobile-cta .btn {
  width: 100%;
  padding: 16px 20px;
}
.hero-logo {
  width: 150px;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 18px;
}
.gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.gallery .tall { grid-row: span 2; min-height: 440px; }

@media (max-width: 900px) {
  .hero__grid,
  .grid-2,
  .cards,
  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery .tall { min-height: 280px; }
  .hero__stats { grid-template-columns: 1fr; }
  .nav__links { display: none; }
}

@media (max-width: 720px) {
  .section { padding: 48px 0; }
  .hero { padding-top: 24px; }
  .hero__card, .panel { padding: 22px; }
  .brand img { width: 60px; height: auto; }
  .mobile-cta { display: block; }
  .footer { padding-bottom: 94px; }
}
