: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;
  --radius: 12px;
  --shadow-soft: 0 10px 30px -18px rgba(42, 31, 24, 0.35);
}

/* === Reset & base === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
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%; display: block; height: auto; }
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;
  color: var(--color-neutral-dark);
  line-height: 1.2;
  margin: 0 0 1rem;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
address { font-style: normal; }

/* === Layout === */
.container { width: 100%; max-width: 1160px; margin-inline: auto; padding-inline: 1.25rem; }
.narrow { max-width: 760px; margin-inline: auto; }
.center { text-align: center; }

/* === 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;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 1rem; gap: 1rem;
}
.logo { display: inline-block; line-height: 0; }
.logo img { height: 72px; width: auto; }
.nav-toggle {
  background: none; border: 1px solid rgba(42, 31, 24, 0.15);
  color: var(--color-neutral-dark); padding: 0.5rem;
  border-radius: 8px; cursor: pointer;
}
.primary-nav {
  display: none; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--color-neutral-light);
  border-bottom: 1px solid rgba(42, 31, 24, 0.08);
  padding: 1rem 1.25rem; gap: 0.75rem;
}
.primary-nav.is-open { display: flex; }
.primary-nav a {
  color: var(--color-neutral-dark); font-weight: 500;
  padding: 0.5rem 0;
}
.primary-nav a[aria-current="page"] { color: var(--color-primary); }

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

/* === Hero (split) === */
.hero {
  padding-block: 3rem;
  background: linear-gradient(180deg, var(--color-neutral-light) 0%, rgba(240, 224, 192, 0.35) 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.78rem; color: var(--color-accent); font-weight: 500;
  margin-bottom: 0.75rem;
}
.hero-copy h1 { margin-bottom: 1.25rem; }
.hero-copy .sub {
  font-size: 1.15rem; color: rgba(42, 31, 24, 0.75);
  max-width: 44ch; margin-bottom: 1.75rem;
}
.hero-image img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-soft);
}
.hero-single { padding-block: 4rem 2rem; }
.hero-single h1 { margin-bottom: 1rem; }

@media (min-width: 900px) {
  .hero { padding-block: 5.5rem; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* === Buttons === */
.btn {
  display: inline-block; padding: 0.85rem 1.5rem;
  font-weight: 500; border-radius: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer; border: 1px solid transparent;
  font-family: var(--font-body); font-size: 1rem;
}
.btn-primary {
  background: var(--color-primary); color: var(--color-neutral-light);
}
.btn-primary:hover {
  background: #8a3d24; text-decoration: none;
  transform: translateY(-1px); box-shadow: var(--shadow-soft);
}
.btn-ghost {
  background: transparent; color: var(--color-neutral-light);
  border-color: var(--color-neutral-light);
}
.btn-ghost:hover {
  background: var(--color-neutral-light); color: var(--color-primary);
  text-decoration: none;
}

/* === Sections === */
.section { padding-block: 3.5rem; }
.section-narrow { padding-block: 3.5rem; }
.section-alt { background: var(--color-secondary); }
.section-quote { background: rgba(240, 224, 192, 0.4); padding-block: 3rem; }
.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-sub {
  color: rgba(42, 31, 24, 0.7); font-size: 1.05rem;
  max-width: 55ch; margin-inline: auto; margin-bottom: 1.5rem;
}
.section-title-small { text-align: center; font-size: 1.25rem; margin-bottom: 1.5rem; color: var(--color-accent); }

@media (min-width: 768px) {
  .section, .section-narrow { padding-block: 5rem; }
}

/* === Split (image + copy inside sections) === */
.split { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.split-image img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-soft);
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* === Grids & cards === */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--color-neutral-light);
  border: 1px solid rgba(42, 31, 24, 0.08);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card h3 { margin-bottom: 0.5rem; color: var(--color-primary); }
.card p { color: rgba(42, 31, 24, 0.8); margin-bottom: 0; }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(160, 74, 46, 0.1); color: var(--color-primary);
  margin-bottom: 1rem;
}
.card-link {
  display: block; color: inherit; text-decoration: none;
}
.card-link:hover {
  transform: translateY(-2px); box-shadow: var(--shadow-soft);
  text-decoration: none;
}
.card-link h3 { color: var(--color-neutral-dark); }
.card-link:hover h3 { color: var(--color-primary); }
.read-more {
  display: inline-block; margin-top: 0.75rem;
  color: var(--color-primary); font-weight: 500;
}

/* === Blockquote === */
blockquote {
  margin: 0; padding: 2rem 1rem; text-align: center;
  font-family: var(--font-heading); font-size: 1.25rem;
  color: var(--color-neutral-dark); line-height: 1.5;
}
blockquote p { margin-bottom: 1rem; font-style: italic; }
blockquote cite {
  display: block; font-family: var(--font-body); font-style: normal;
  font-size: 0.95rem; color: var(--color-accent); font-weight: 500;
}

/* === CTA band === */
.cta-band {
  background: var(--color-primary); color: var(--color-neutral-light);
  padding-block: 3rem;
}
.cta-inner {
  display: grid; gap: 1.5rem; align-items: center;
  grid-template-columns: 1fr;
}
.cta-band h2, .cta-band p { color: var(--color-neutral-light); }
.cta-band h2 { margin-bottom: 0.5rem; }
.cta-band p { margin-bottom: 0; opacity: 0.9; }
.contact-line { font-size: 0.95rem; margin-top: 0.75rem; }
@media (min-width: 800px) {
  .cta-inner { grid-template-columns: 1fr auto; gap: 2.5rem; }
}

/* === Contact === */
.contact-grid {
  display: grid; gap: 3rem; grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 4rem; }
}
.hours { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
.hours caption { text-align: left; font-weight: 600; margin-bottom: 0.75rem; font-family: var(--font-heading); font-size: 1.1rem; }
.hours th, .hours td { padding: 0.5rem 0; border-bottom: 1px solid rgba(42, 31, 24, 0.1); text-align: left; font-weight: 400; }
.hours td { text-align: right; color: rgba(42, 31, 24, 0.75); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form label { display: flex; flex-direction: column; gap: 0.4rem; font-weight: 500; font-size: 0.95rem; }
.contact-form input, .contact-form textarea {
  font-family: var(--font-body); font-size: 1rem;
  padding: 0.75rem 0.9rem; border-radius: 8px;
  border: 1px solid rgba(42, 31, 24, 0.18);
  background: var(--color-neutral-light); color: var(--color-neutral-dark);
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid var(--color-primary); outline-offset: 1px;
}
.form-consent {
  flex-direction: row !important; align-items: flex-start;
  gap: 0.6rem; font-weight: 400; font-size: 0.88rem;
  color: rgba(42, 31, 24, 0.8);
}
.form-consent input { margin-top: 0.25rem; }
.contact-form button { align-self: flex-start; margin-top: 0.5rem; }

/* === Article detail === */
.article-detail {
  max-width: 65ch; margin-inline: auto;
  padding: 3rem 1.25rem;
}
.article-detail h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15; margin-bottom: 1.5rem;
}
.article-lede { font-size: 1.2rem; color: rgba(42, 31, 24, 0.75); margin-bottom: 2rem; }
.article-hero-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-radius: 8px; margin-block: 2rem;
}
.article-detail p {
  font-size: 1.1rem; line-height: 1.75; margin-block: 1.25rem;
}
.article-footer { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(42, 31, 24, 0.1); }
.back-link { color: var(--color-primary); font-weight: 500; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding-block: 3rem 1.5rem;
  margin-top: 2rem;
}
.site-footer .logo img { height: 64px; filter: brightness(0) invert(1); }
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; }
}
.site-footer h3 {
  color: var(--color-secondary); font-size: 1rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.site-footer a { color: var(--color-neutral-light); opacity: 0.85; }
.site-footer a:hover { opacity: 1; color: var(--color-secondary); }
.tagline { color: rgba(251, 245, 232, 0.7); font-style: italic; margin-top: 0.5rem; }
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.legal-nav { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.9rem; }
.footer-contact address a { display: inline-block; }
.copyright {
  padding-top: 2rem; margin-top: 2rem;
  border-top: 1px solid rgba(251, 245, 232, 0.15);
  font-size: 0.88rem; color: rgba(251, 245, 232, 0.6);
}

/* === 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);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.4);
  max-width: 640px; margin-inline: auto;
}
.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.5rem;
}
.cookie-banner__actions button {
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
  padding: 0.55rem 1.1rem; border-radius: 6px; cursor: pointer;
  border: 1px solid rgba(251, 245, 232, 0.3);
  background: transparent; color: var(--color-neutral-light);
}
.cookie-banner__actions button[data-cookie-accept] {
  background: var(--color-primary); border-color: var(--color-primary);
}
.cookie-banner__actions button:hover { opacity: 0.9; }
.cookie-banner__prefs {
  margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem;
  padding-top: 1rem; border-top: 1px solid rgba(251, 245, 232, 0.15);
}
.cookie-banner__prefs label {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem;
}
.cookie-banner__prefs button {
  align-self: flex-start; margin-top: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 6px;
  border: 1px solid var(--color-neutral-light);
  background: var(--color-neutral-light); color: var(--color-neutral-dark);
  cursor: pointer; font-weight: 500;
}
