:root {
  --color-primary: #7A2E1F;
  --color-secondary: #E8D9B2;
  --color-accent: #1F3A2E;
  --color-neutral-dark: #1B1B1B;
  --color-neutral-light: #FAF6EE;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max: 1120px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-neutral-dark);
  background: var(--color-neutral-light);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--color-neutral-dark);
  margin: 0 0 1rem;
  line-height: 1.2;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }

.container { max-width: var(--max); margin-inline: auto; padding-inline: 1.25rem; }

/* === Header === */
.site-header {
  border-bottom: 1px solid rgba(27,27,27,0.08);
  background: var(--color-neutral-light);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  gap: 1rem;
}
.logo { display: inline-block; }
.logo img { height: 72px; width: auto; display: block; }
@media (min-width: 768px) {
  .logo img { height: 96px; }
}
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 36px; height: 28px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--color-neutral-dark);
  border-radius: 2px;
}
.site-nav {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 0 0.25rem;
}
.site-nav.is-open { display: flex; }
.site-nav a {
  color: var(--color-neutral-dark);
  font-weight: 500;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(27,27,27,0.06);
}
.site-nav a[aria-current="page"] { color: var(--color-primary); }
@media (min-width: 900px) {
  .site-header__inner { flex-wrap: nowrap; }
  .nav-toggle { display: none; }
  .site-nav {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    width: auto;
    padding: 0;
  }
  .site-nav a { border: 0; padding: 0; }
}

/* === Hero (centered) === */
.hero {
  text-align: center;
  padding-block: 3.5rem 3rem;
  background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-neutral-light) 100%);
  border-bottom: 1px solid rgba(27,27,27,0.06);
}
@media (min-width: 768px) {
  .hero { padding-block: 6rem 4.5rem; }
}
.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero h1 { max-width: 28ch; margin-inline: auto; }
.hero__sub {
  max-width: 52ch;
  margin: 1.25rem auto 2rem;
  font-size: 1.15rem;
  color: #4a4a4a;
}
.hero__cta { margin-bottom: 3rem; }
.hero__figure {
  margin: 3rem auto 0;
  max-width: 960px;
}
.hero__figure img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 16/9;
  object-fit: cover;
  box-shadow: 0 24px 48px -24px rgba(27,27,27,0.28);
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--color-primary); color: var(--color-neutral-light); }
.btn--primary:hover { background: #5f2417; color: var(--color-neutral-light); }
.btn--accent { background: var(--color-accent); color: var(--color-neutral-light); }
.btn--accent:hover { background: #142720; color: var(--color-neutral-light); }

/* === Sections === */
.section { padding-block: 4rem; }
@media (min-width: 768px) {
  .section { padding-block: 5.5rem; }
}
.section--narrow .container { max-width: 720px; }
.section--muted { background: var(--color-secondary); }
.section--quote { background: var(--color-neutral-light); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section__head h2 { margin-bottom: 0.75rem; }
.section__head p { color: #4a4a4a; }

/* === Grids & cards === */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 700px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.card {
  background: var(--color-neutral-light);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid rgba(27,27,27,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card .icon {
  color: var(--color-primary);
  margin-bottom: 1rem;
  width: 28px; height: 28px;
}
.card h3 { margin-bottom: 0.5rem; }
.card p { color: #3a3a3a; margin-bottom: 0; }
.card-link { color: inherit; display: block; }
.card-link:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -22px rgba(27,27,27,0.25);
}

/* === Quote === */
.quote {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  border: 0;
  padding: 0;
}
.quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  line-height: 1.5;
  color: var(--color-neutral-dark);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.quote cite {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--color-accent);
  letter-spacing: 0.04em;
}

/* === CTA band === */
.cta-band {
  background: var(--color-primary);
  color: var(--color-neutral-light);
  padding-block: 3.5rem;
}
.cta-band__inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 800px) {
  .cta-band__inner { grid-template-columns: 1fr auto; gap: 3rem; }
}
.cta-band h2 { color: var(--color-neutral-light); margin-bottom: 0.5rem; }
.cta-band p { color: rgba(250,246,238,0.9); margin-bottom: 0; }
.cta-band__body { margin-top: 0.75rem !important; font-size: 0.95rem; }
.cta-band__action { margin: 0; }

/* === Article detail === */
.article {
  max-width: 65ch;
  margin-inline: auto;
  padding: 3rem 1.25rem 2rem;
}
.article__head { margin-bottom: 2rem; }
.article__head h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.article__sub {
  font-size: 1.2rem;
  color: #4a4a4a;
}
.article__figure {
  margin: 2rem 0;
}
.article__figure img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
}
.article p {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-block: 1.25rem;
  color: #232323;
}
.article__foot { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(27,27,27,0.1); }
.back-link { font-weight: 500; color: var(--color-primary); }

/* === Contact === */
.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.contact-card {
  background: var(--color-neutral-light);
  padding: 1.75rem;
  border-radius: 10px;
  border: 1px solid rgba(27,27,27,0.08);
  font-style: normal;
}
.contact-card h3 { margin-bottom: 0.75rem; }
.hours { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours th, .hours td {
  text-align: left;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(27,27,27,0.08);
  font-weight: 400;
}
.hours th { color: #4a4a4a; }
.hours tr:last-child th,
.hours tr:last-child td { border-bottom: 0; }

/* === Form === */
.contact-form {
  max-width: 620px;
  margin: 0 auto;
  background: var(--color-neutral-light);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid rgba(27,27,27,0.08);
}
.form-row { margin-bottom: 1.25rem; display: flex; flex-direction: column; }
.form-row label { font-weight: 500; margin-bottom: 0.4rem; font-size: 0.95rem; }
.form-row input,
.form-row textarea {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(27,27,27,0.2);
  border-radius: 6px;
  background: #fff;
  color: var(--color-neutral-dark);
}
.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 1px;
  border-color: var(--color-primary);
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #3a3a3a;
}
.form-consent input { margin-top: 0.25rem; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(250,246,238,0.85);
  padding: 3.5rem 0 2rem;
  margin-top: 2rem;
}
.site-footer h3 {
  color: var(--color-neutral-light);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
.site-footer__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .site-footer__grid { grid-template-columns: 1.2fr 1fr 1.2fr; gap: 3rem; }
}
.logo--footer img { height: 64px; filter: brightness(0) invert(1); opacity: 0.95; }
.site-footer__tagline { margin-top: 1rem; font-size: 0.95rem; opacity: 0.8; max-width: 30ch; }
.site-footer__nav { display: flex; flex-direction: column; }
.site-footer__nav a {
  color: rgba(250,246,238,0.85);
  padding: 0.3rem 0;
  font-size: 0.95rem;
}
.site-footer__nav a:hover { color: var(--color-neutral-light); }
.site-footer__contact address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.site-footer__contact a { color: rgba(250,246,238,0.85); }
.site-footer__legal {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
.site-footer__legal a { color: rgba(250,246,238,0.85); }
.site-footer__copy {
  text-align: center;
  border-top: 1px solid rgba(250,246,238,0.15);
  margin-top: 3rem;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* === Cookie banner === */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: none;
  z-index: 9999;
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding: 1.25rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5);
  max-width: 640px;
}
@media (min-width: 700px) {
  .cookie-banner { left: auto; right: 1.5rem; bottom: 1.5rem; }
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.5; }
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cookie-banner__actions button {
  font: inherit;
  padding: 0.55rem 1rem;
  border-radius: 6px;
  border: 1px solid rgba(250,246,238,0.3);
  background: transparent;
  color: var(--color-neutral-light);
  cursor: pointer;
  font-size: 0.9rem;
}
.cookie-banner__actions [data-cookie-accept] {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.cookie-banner__prefs {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(250,246,238,0.15);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.cookie-banner__prefs label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cookie-banner__prefs button {
  align-self: flex-start;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: 0;
  background: var(--color-accent);
  color: var(--color-neutral-light);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
}
