:root {
  --sage: #8fa382;
  --sage-dark: #6d8060;
  --rose: #e7c3c3;
  --rose-dark: #cf9a9c;
  --cream: #faf5ee;
  --tan: #f0e6d8;
  --text: #493f37;
  --text-light: #7d7267;
  --radius: 10px;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Jost', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, .logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

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

a { color: inherit; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--sage-dark);
  border-bottom: 3px solid var(--rose);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  font-size: 22px;
  color: #fff;
  text-decoration: none;
}
.logo span { color: var(--rose); font-weight: 500; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #e9e2d8;
  font-size: 15px;
  font-weight: 400;
  font-family: 'Jost', sans-serif;
}

.nav-links a:hover { color: #fff; }

.btn-nav {
  background: var(--rose-dark);
  padding: 9px 18px;
  border-radius: var(--radius);
  color: #fff !important;
  font-weight: 500 !important;
}
.btn-nav:hover { background: var(--rose); color: var(--text) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
}

/* Hero */
.hero {
  background-color: var(--sage-dark);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 140px 0 110px;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  color: var(--rose);
  margin: 0 0 16px;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
}
.eyebrow-dark { color: var(--sage-dark); }

.hero h1 {
  font-size: clamp(34px, 5.4vw, 58px);
  margin: 0 0 20px;
  line-height: 1.15;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  max-width: 600px;
  margin: 0 auto 34px;
  font-size: 17px;
  color: #f2ece2;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  font-family: 'Jost', sans-serif;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn-primary {
  background: var(--rose-dark);
  color: #fff;
}
.btn-primary:hover { background: var(--rose); color: var(--text); }

.btn-outline {
  border: 1px solid rgba(255,255,255,0.55);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.14); }

/* Badges */
.badges {
  background: var(--tan);
  padding: 26px 0;
}
.badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.badge {
  border-left: 1px solid rgba(73,63,55,0.15);
}
.badge:first-child {
  border-left: none;
}
.badge-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--sage-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .badge:nth-child(odd) { border-left: none; }
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Services */
.menu { padding: 90px 0 40px; background: var(--cream); text-align: center; }
.menu h2 { font-size: 34px; margin: 0 0 44px; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  text-align: left;
}

.menu-card {
  background: #fff;
  border-top: 3px solid var(--rose);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.menu-card h3 {
  font-size: 21px;
  margin: 0 0 10px;
  font-weight: 600;
}

.menu-card p {
  margin: 0;
  color: var(--text-light);
  font-size: 15px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}

.menu-note {
  margin: 40px auto 50px;
  font-size: 15px;
  color: var(--text-light);
  font-family: 'Jost', sans-serif;
}
.menu-note a { color: var(--sage-dark); font-weight: 500; text-decoration: underline; }

/* Gallery */
.gallery { padding: 30px 0 90px; background: var(--cream); }
.gallery h2 { font-size: 34px; text-align: center; margin-bottom: 40px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
}

.gallery-grid figure.span-2 {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-grid figure:hover img { transform: scale(1.04); }

.gallery-note {
  text-align: center;
  margin: 26px 0 0;
  font-size: 13px;
  color: var(--text-light);
  font-family: 'Jost', sans-serif;
}

@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid figure.span-2 { grid-column: span 1; aspect-ratio: 4 / 3; }
}

/* About */
.about {
  padding: 90px 0;
  background: var(--sage-dark);
  color: #fff;
}

.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.about h2 { font-size: 34px; margin-bottom: 18px; }
.about p { color: #f2ece2; font-size: 16px; font-family: 'Jost', sans-serif; font-weight: 300; margin-bottom: 20px; }

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 800px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-image { order: -1; aspect-ratio: 4 / 3; }
}

/* Hours & Location */
.hours { padding: 90px 0; background: #fff; }
.hours-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.hours h2 { font-size: 30px; margin: 0 0 24px; }

.hours-table table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid var(--tan);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 15px;
}
.hours-table th { font-weight: 500; color: var(--sage-dark); }
.hours-table td { color: var(--text-light); text-align: right; }

.hours-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--text-light);
  font-family: 'Jost', sans-serif;
}

.hours-location address {
  font-style: normal;
  font-size: 16px;
  margin-bottom: 14px;
  font-family: 'Jost', sans-serif;
}
.hours-location p {
  margin: 0 0 10px;
  font-family: 'Jost', sans-serif;
}
.hours-location a { color: var(--rose-dark); font-weight: 500; text-decoration: none; }
.hours-location a:hover { text-decoration: underline; }

.hours-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.hours-location .btn-primary { background: var(--sage-dark); color: #fff; }
.hours-location .btn-primary:hover { background: var(--sage); }
.hours-location .btn-outline { border: 1px solid var(--rose-dark); color: var(--rose-dark); }
.hours-location .btn-outline:hover { background: var(--tan); }

@media (max-width: 760px) {
  .hours-inner { grid-template-columns: 1fr; }
}

/* Footer */
.site-footer {
  background: var(--sage-dark);
  color: #ded4c4;
  padding: 26px 0;
  font-size: 14px;
  font-family: 'Jost', sans-serif;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-inner a {
  text-decoration: none;
  color: var(--rose);
}

/* Responsive nav */
@media (max-width: 760px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--sage-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 28px;
    gap: 18px;
    display: none;
    border-bottom: 3px solid var(--rose);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
}
