@font-face {
  font-family: "Styrene B";
  src: url("../fonts/StyreneB-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Styrene B";
  src: url("../fonts/StyreneB-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Styrene A";
  src: url("../fonts/StyreneA-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-beige: #d9c9a3;
  --color-beige-dark: #c3b083;
  --color-green: #3c5c47;
  --color-green-dark: #2a4232;
  --color-cream: #f3ecd9;
  --color-ink: #1f2a22;
  --color-white: #ffffff;
  --radius: 10px;
  --shadow: 0 4px 14px rgba(0,0,0,0.12);
  --font-body: "Styrene B", "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Styrene A", "Styrene B", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  margin: 0 0 0.5em;
  color: var(--color-green-dark);
}

h1 { font-size: 2.6rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }

a { color: var(--color-green-dark); }

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  background: var(--color-green-dark);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: var(--shadow);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--color-white);
  white-space: nowrap;
}
.logo em { font-style: normal; font-weight: 700; color: var(--color-white); }

.nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.nav a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.95rem;
}
.nav a:hover { color: var(--color-beige); }

.header-cta {
  white-space: nowrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
}
.btn-primary {
  background: var(--color-beige);
  color: var(--color-green-dark);
}
.btn-primary:hover { background: var(--color-beige-dark); }

.btn-primary-outline {
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
}
.btn-primary-outline:hover { background: rgba(255,255,255,0.15); }

.btn-ghost {
  background: transparent;
  border: 2px solid var(--color-beige);
  color: var(--color-beige);
  padding: 8px 16px;
}
.btn-ghost:hover { background: var(--color-beige); color: var(--color-green-dark); }

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 60px 0 48px;
  background: linear-gradient(to top, rgba(20,30,22,0.88) 10%, rgba(20,30,22,0.35) 60%, rgba(20,30,22,0) 100%);
  color: var(--color-white);
}
.hero h1 { color: var(--color-white); margin-bottom: 0.1em; }
.hero-sub {
  font-size: 1.2rem;
  color: var(--color-beige);
  margin-bottom: 0.6em;
}
.hero-desc {
  max-width: 520px;
  margin-bottom: 1.5em;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Sections */
.section {
  padding: 64px 0;
}
.section-alt {
  background: var(--color-white);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.offer-card {
  background: var(--color-cream);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.offer-card h3 { color: var(--color-green); }

.location-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

address { font-style: normal; margin-bottom: 1.2em; }

.hours {
  border-collapse: collapse;
  margin-bottom: 1.5em;
}
.hours th, .hours td {
  text-align: left;
  padding: 4px 16px 4px 0;
  font-weight: normal;
}
.hours th { color: var(--color-green); font-weight: bold; }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-list li {
  margin-bottom: 0.7em;
  font-size: 1.05rem;
}
.contact-list a { text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

/* Footer */
.site-footer {
  background: var(--color-green-dark);
  color: var(--color-white);
  padding: 24px 0;
  font-size: 0.85rem;
  text-align: center;
}
.site-footer p { margin: 0; }

@media (max-width: 720px) {
  h1 { font-size: 2rem; }
  .location-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero { min-height: 90vh; }
}
