:root {
  --color-primary: #A04A2E;
  --color-secondary: #F0E0C0;
  --color-accent: #3D5A47;
  --color-neutral-dark: #2A1F18;
  --color-neutral-light: #FBF5E8;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --max: 1180px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-neutral-dark);
  background: var(--color-neutral-light);
  line-height: 1.6;
  font-size: 16px;
}
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); color: var(--color-neutral-dark); line-height: 1.15; margin: 0 0 1rem; font-weight: 600; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* === Header === */
.site-header {
  background: var(--color-neutral-light);
  border-bottom: 1px solid rgba(42,31,24,0.08);
  position: sticky; top: 0; z-index: 50;
}
.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle {
  background: transparent; border: 0; color: var(--color-neutral-dark);
  padding: 0.4rem; cursor: pointer;
}
.site-nav {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--color-neutral-light);
  padding: 1rem 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(42,31,24,0.08);
}
.site-nav.is-open { display: flex; }
.site-nav a {
  color: var(--color-neutral-dark);
  font-weight: 500;
  padding: 0.4rem 0;
}
.site-nav a[aria-current="page"] { color: var(--color-primary); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav {
    display: flex; flex-direction: row; gap: 2rem;
    position: static; padding: 0; border: 0; background: transparent;
  }
  .logo img { height: 96px; }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  letter-spacing: 0.01em;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--color-primary); color: var(--color-neutral-light); }
.btn--primary:hover { background: #8a3e26; }
.btn--accent { background: var(--color-neutral-light); color: var(--color-neutral-dark); }
.btn--accent:hover { background: var(--color-secondary); }

/* === Hero fullscreen === */
.hero--fullscreen {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 4rem 1.25rem;
  text-align: center;
}
.hero--short { min-height: 60vh; }
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(42,31,24,0.55), rgba(42,31,24,0.7));
  z-index: 1;
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 820px;
  color: var(--color-neutral-light);
}
.hero__content h1 { color: var(--color-neutral-light); margin-bottom: 1.25rem; }
.hero__sub {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--color-secondary);
  max-width: 55ch;
  margin: 0 auto 2rem;
  line-height: 1.55;
}

/* === Sections === */
.section {
  padding: 4.5rem 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
}
.section--narrow { max-width: 760px; }
.section--tinted {
  background: var(--color-secondary);
  max-width: none;
  padding-inline: 1.25rem;
}
.section--tinted > .section__head,
.section--tinted > .grid,
.section--tinted > h2,
.section--tinted > p,
.section--tinted > .contact-layout {
  max-width: var(--max);
  margin-left: auto; margin-right: auto;
}
.section--tinted.section--narrow > * { max-width: 760px; }
.section__head { text-align: center; margin-bottom: 3rem; max-width: 720px; margin-left: auto; margin-right: auto; }
.section__lede { font-size: 1.15rem; color: rgba(42,31,24,0.75); margin-bottom: 1.5rem; }
.section--quote { max-width: 820px; text-align: center; padding-block: 5rem; }
.section--thanks { padding-top: 6rem; text-align: center; }

@media (min-width: 768px) {
  .section { padding: 6rem 2rem; }
  .section--tinted { padding-inline: 2rem; }
}

/* === Grid & 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: 1fr 1fr; }
  .grid--3 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--color-neutral-light);
  border: 1px solid rgba(42,31,24,0.08);
  padding: 2rem;
  border-radius: 4px;
  height: 100%;
}
.card__icon { color: var(--color-primary); margin-bottom: 1rem; }
.card h3 { margin-bottom: 0.6rem; }
.card p { color: rgba(42,31,24,0.85); margin: 0; }
.card-link {
  color: inherit; text-decoration: none;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -18px rgba(42,31,24,0.35);
  text-decoration: none;
}
.card--article h3 {
  font-size: 1.4rem;
  color: var(--color-primary);
}

/* === Quote === */
.quote {
  margin: 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.5;
  color: var(--color-neutral-dark);
}
.quote cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.95rem;
  color: var(--color-accent);
  font-weight: 600;
}

/* === CTA band === */
.cta-band {
  background: var(--color-primary);
  color: var(--color-neutral-light);
  padding: 4.5rem 1.25rem;
  text-align: center;
}
.cta-band__inner { max-width: 720px; margin: 0 auto; }
.cta-band h2 { color: var(--color-neutral-light); }
.cta-band p { color: rgba(251,245,232,0.85); margin-bottom: 2rem; font-size: 1.1rem; }

/* === Split === */
.split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 800px) {
  .split { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
}
.split__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
}

/* === Article layout === */
.article {
  max-width: 65ch;
  margin: 4rem auto;
  padding: 0 1.25rem;
}
.article__header { margin-bottom: 2rem; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 1rem;
}
.article__header h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.25rem; }
.article__sub { font-size: 1.2rem; color: rgba(42,31,24,0.75); }
.article__hero {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 4px;
  margin: 2rem 0;
}
.article h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.article p { font-size: 1.125rem; line-height: 1.75; }
.article__footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(42,31,24,0.12); }
.back-link { font-weight: 600; color: var(--color-primary); }

/* === Contact === */
.contact-layout {
  display: grid; gap: 3rem;
}
@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 1fr 1.2fr; }
}
.contact-info address { font-style: normal; line-height: 1.7; margin-bottom: 1.5rem; }
.contact-info h3 { margin-top: 1.5rem; }
.hours { border-collapse: collapse; width: 100%; }
.hours th, .hours td {
  text-align: left; padding: 0.5rem 0;
  border-bottom: 1px solid rgba(42,31,24,0.1);
  font-weight: 400;
}
.hours th { font-weight: 600; color: var(--color-neutral-dark); width: 45%; }

.contact-form {
  background: var(--color-neutral-light);
  padding: 2rem;
  border-radius: 4px;
  border: 1px solid rgba(42,31,24,0.1);
}
.contact-form label {
  display: block; margin-bottom: 1rem;
}
.contact-form label > span {
  display: block; margin-bottom: 0.3rem;
  font-weight: 600; font-size: 0.9rem;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid rgba(42,31,24,0.2);
  border-radius: 2px;
  background: #fff;
  color: var(--color-neutral-dark);
}
.contact-form textarea { resize: vertical; }
.form-consent {
  display: flex; gap: 0.6rem; align-items: flex-start;
  font-size: 0.9rem;
  margin: 1.25rem 0 !important;
}
.form-consent input { margin-top: 0.25rem; }
.form-consent span { line-height: 1.5; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: var(--color-secondary);
  padding: 4rem 1.25rem 2rem;
  margin-top: 4rem;
}
.site-footer__grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .site-footer__grid { grid-template-columns: 1.3fr 1fr 1.2fr; }
}
.site-footer h3 {
  font-family: var(--font-heading);
  color: var(--color-neutral-light);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.site-footer a { color: var(--color-secondary); }
.site-footer a:hover { color: var(--color-neutral-light); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.site-footer__tagline { font-family: var(--font-heading); font-style: italic; font-size: 1.05rem; margin-top: 1rem; }
.site-footer__legal { margin-top: 1.25rem; font-size: 0.9rem; }
.site-footer__copy {
  max-width: var(--max); margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(240,224,192,0.15);
  font-size: 0.85rem;
  color: rgba(240,224,192,0.7);
}
.logo--footer img { height: 60px; }

/* === 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: 4px;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.4);
  max-width: 720px;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.95rem; line-height: 1.5; }
.cookie-banner__actions {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
}
.cookie-banner button {
  border: 1px solid rgba(251,245,232,0.3);
  background: transparent;
  color: var(--color-neutral-light);
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 2px;
}
.cookie-banner button[data-cookie-accept] {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.cookie-banner button:hover { background: rgba(251,245,232,0.1); }
.cookie-banner button[data-cookie-accept]:hover { background: #8a3e26; }
.cookie-banner__prefs {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(251,245,232,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[data-cookie-save] {
  align-self: flex-start;
  margin-top: 0.5rem;
  background: var(--color-accent);
  border-color: var(--color-accent);
}
