@font-face {
  font-family: "Oxygen";
  src: url("../assets/fonts/oxygen-400.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Oxygen";
  src: url("../assets/fonts/oxygen-700.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Oswald";
  src: url("../assets/fonts/oswald-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 700;
}

:root {
  --forest: #294d36;
  --forest-dark: #1b3525;
  --leaf: #6e8a58;
  --cream: #f8f5ed;
  --paper: #fffdf8;
  --sand: #e8dfcf;
  --clay: #a85f40;
  --ink: #263028;
  --muted: #657066;
  --line: #ddd6c9;
  --shadow: 0 14px 36px rgba(36, 56, 41, 0.1);
  --radius: 18px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Oxygen", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: var(--forest);
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--clay);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  background: var(--forest-dark);
  color: #fff;
  left: 1rem;
  padding: 0.7rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  background: rgba(255, 253, 248, 0.97);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max-width);
  min-height: 98px;
  padding: 0.8rem 1.5rem;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  gap: 0.9rem;
  min-width: 0;
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand-logo {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  height: 74px;
  object-fit: contain;
  padding: 0.25rem;
  width: 74px;
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-name {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.015em;
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  margin-top: 0.38rem;
  text-transform: uppercase;
}

.main-nav ul {
  align-items: center;
  display: flex;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  border-radius: 999px;
  color: var(--ink);
  display: block;
  font-size: 0.91rem;
  font-weight: 700;
  padding: 0.55rem 0.78rem;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: #e4ecdf;
  color: var(--forest-dark);
}

main {
  overflow: hidden;
}

.shell {
  margin: 0 auto;
  max-width: var(--max-width);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.hero {
  padding: 5rem 0;
}

.hero-home {
  align-items: center;
  background: var(--forest-dark);
  display: grid;
  isolation: isolate;
  min-height: clamp(490px, 56vw, 650px);
  overflow: hidden;
  position: relative;
}

.hero-home::after {
  background:
    linear-gradient(90deg, rgba(18, 42, 27, 0.9) 0%, rgba(18, 42, 27, 0.72) 38%, rgba(18, 42, 27, 0.28) 72%, rgba(18, 42, 27, 0.14) 100%),
    linear-gradient(0deg, rgba(15, 32, 21, 0.28), transparent 45%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.hero-backdrop {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center 50%;
  position: absolute;
  width: 100%;
  z-index: -2;
}

.hero-home-inner {
  width: 100%;
}

.hero-home .hero-copy {
  max-width: 650px;
}

.hero-home .eyebrow {
  color: #f1c5a5;
}

.hero-home h1 {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.hero-home .hero-copy > p {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.24);
}

.hero-home .button {
  background: #f2e7d3;
  border-color: #f2e7d3;
  color: var(--forest-dark);
}

.hero-home .button:hover {
  background: #fff;
  border-color: #fff;
  color: var(--forest-dark);
}

.hero-home .button-secondary {
  background: rgba(18, 42, 27, 0.32);
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
}

.hero-home .button-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  color: #fff;
}

.eyebrow {
  color: var(--clay);
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--forest-dark);
  font-family: "Oswald", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  letter-spacing: -0.025em;
  margin-bottom: 1.1rem;
  max-width: 13ch;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
}

.hero-copy > p {
  color: #4d584f;
  font-size: 1.06rem;
  margin: 0;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.65rem;
}

.button {
  align-items: center;
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 10px;
  color: #fff;
  display: inline-flex;
  font-size: 0.91rem;
  font-weight: 700;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 1rem;
  text-decoration: none;
}

.button:hover {
  background: var(--forest-dark);
  border-color: var(--forest-dark);
  color: #fff;
}

.button-secondary {
  background: transparent;
  border-color: #a9b4aa;
  color: var(--forest-dark);
}

.button-secondary:hover {
  background: #e5ecdf;
  border-color: var(--forest);
  color: var(--forest-dark);
}

.section {
  padding: 4.5rem 0;
}

.section-compact {
  padding: 3rem 0;
}

.section-paper {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 2rem;
  max-width: 700px;
}

.section-heading p {
  color: var(--muted);
  margin: 0;
}

.content-split {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-split.reverse .content-media {
  order: 2;
}

.content-media {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: min(420px, 48vw);
  min-height: 310px;
  object-fit: cover;
  width: 100%;
}

.content-copy p:first-of-type {
  margin-top: 0;
}

.plain-list {
  display: grid;
  gap: 0.55rem;
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
}

.plain-list li {
  padding-left: 1.45rem;
  position: relative;
}

.plain-list li::before {
  background: var(--leaf);
  border-radius: 50%;
  content: "";
  height: 0.48rem;
  left: 0.1rem;
  position: absolute;
  top: 0.58rem;
  width: 0.48rem;
}

.product-columns {
  column-count: 2;
  column-gap: 2rem;
  margin: 1.3rem 0 0;
  padding-left: 1.2rem;
}

.product-columns li {
  break-inside: avoid;
  margin-bottom: 0.38rem;
}

.note {
  background: #edf2e9;
  border-left: 4px solid var(--leaf);
  border-radius: 0 12px 12px 0;
  margin-top: 1.4rem;
  padding: 1rem 1.15rem;
}

.note p {
  margin: 0;
}

.about-panel {
  align-items: center;
  background: var(--forest-dark);
  border-radius: var(--radius);
  color: #f3f0e7;
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.7fr 1.3fr;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.about-panel img {
  aspect-ratio: 4 / 3;
  border-radius: 13px;
  object-fit: cover;
  width: 100%;
}

.about-panel h2 {
  color: #fff;
}

.about-panel p {
  margin-bottom: 0;
}

.page-hero {
  padding: 3.5rem 0 2.75rem;
}

.page-hero h1 {
  max-width: 16ch;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
  max-width: 62ch;
}

.schedule-grid,
.location-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.schedule-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 1.5rem;
}

.card p:last-child,
.card address:last-child {
  margin-bottom: 0;
}

.schedule-card {
  min-height: 210px;
}

.schedule-card .place-label {
  color: var(--clay);
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}

.hours-list {
  display: grid;
  gap: 0.45rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.hours-list li {
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
}

.hours-list strong {
  color: var(--forest-dark);
}

.feature-band {
  align-items: center;
  background: #e5ecdf;
  border: 1px solid #cbd8c4;
  border-radius: var(--radius);
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  margin-top: 1.25rem;
  padding: 1.5rem;
}

.feature-band h2,
.feature-band p {
  margin: 0;
}

.feature-band p {
  color: #4f5c51;
  margin-top: 0.35rem;
}

.location-card {
  overflow: hidden;
  padding: 0;
}

.location-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.location-card-content {
  padding: 1.5rem;
}

address {
  font-style: normal;
}

.contact-card a {
  overflow-wrap: anywhere;
}

.contact-label {
  color: var(--clay);
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.contact-value {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.contact-form-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-top: 1.25rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.contact-form-panel .section-heading {
  margin-bottom: 1.5rem;
}

.contact-form {
  display: grid;
  gap: 1.1rem;
}

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

.contact-form label:not(.form-consent):not(.honeypot) {
  display: grid;
  gap: 0.42rem;
}

.contact-form label > span:first-child {
  color: var(--forest-dark);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  background: #fff;
  border: 1px solid #bfc7bd;
  border-radius: 9px;
  color: var(--ink);
  font: inherit;
  padding: 0.72rem 0.8rem;
  width: 100%;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  border-color: var(--forest);
  outline: 3px solid rgba(41, 77, 54, 0.18);
}

.form-consent {
  align-items: flex-start;
  display: flex;
  gap: 0.7rem;
}

.form-consent input {
  flex: 0 0 auto;
  height: 1.1rem;
  margin-top: 0.22rem;
  width: 1.1rem;
}

.form-consent span {
  font-size: 0.9rem;
}

.honeypot {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.form-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.form-actions span,
.form-noscript {
  color: var(--muted);
  font-size: 0.82rem;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  border-radius: 10px;
  margin-bottom: 1.25rem;
  padding: 0.9rem 1rem;
}

.form-status.is-success {
  background: #e6f1e2;
  border: 1px solid #b7d3af;
  color: #204628;
}

.form-status.is-error {
  background: #f8e9e4;
  border: 1px solid #e1b9ab;
  color: #78351f;
}

.legal-content {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  max-width: 850px;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.legal-content h2 {
  font-size: 1.55rem;
  margin-bottom: 0.65rem;
  margin-top: 2rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content ul {
  margin-bottom: 1rem;
  margin-top: 0;
}

.site-footer {
  background: var(--forest-dark);
  color: #e9ece7;
  margin-top: 4.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.4fr 1fr 1fr;
  padding-bottom: 2.25rem;
  padding-top: 2.5rem;
}

.footer-title {
  color: #fff;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.footer-grid p,
.footer-grid address {
  font-size: 0.9rem;
  margin: 0;
}

.footer-grid a {
  color: #eef2ec;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #cdd5ce;
  font-size: 0.82rem;
  padding-bottom: 1rem;
  padding-top: 1rem;
}

@media (max-width: 920px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
    padding-bottom: 0.9rem;
  }

  .main-nav {
    overflow-x: auto;
    width: 100%;
  }

  .main-nav ul {
    min-width: max-content;
  }

  .main-nav a {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }

  .content-split {
    grid-template-columns: 1fr;
  }

  .content-split.reverse .content-media {
    order: initial;
  }

  .hero-home {
    min-height: 540px;
  }

  .hero-home::after {
    background:
      linear-gradient(90deg, rgba(18, 42, 27, 0.88) 0%, rgba(18, 42, 27, 0.68) 66%, rgba(18, 42, 27, 0.35) 100%),
      linear-gradient(0deg, rgba(15, 32, 21, 0.3), transparent 50%);
  }

  .content-media {
    height: 380px;
  }

  .schedule-grid,
  .contact-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .schedule-card {
    min-height: 0;
  }

  .about-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .header-inner,
  .shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .brand-logo {
    height: 62px;
    width: 62px;
  }

  .brand-tagline {
    display: none;
  }

  .hero {
    padding: 4rem 0;
  }

  .hero-home {
    min-height: 520px;
  }

  .hero-home::after {
    background: rgba(18, 42, 27, 0.7);
  }

  .hero-backdrop {
    object-position: 62% center;
  }

  h1 {
    font-size: 2.55rem;
  }

  .section {
    padding: 3.25rem 0;
  }

  .content-media {
    height: 280px;
    min-height: 0;
  }

  .product-columns {
    column-count: 1;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .feature-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
