:root {
  --color-primary: #1A1F2E;
  --color-secondary: #F5E8DD;
  --color-accent: #E07A5F;
  --color-neutral-dark: #0F1320;
  --color-neutral-light: #FAF0E8;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --maxw: 1200px;
}

/* === Base === */
* { box-sizing: border-box; }
html { 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-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: var(--font-heading); color: var(--color-primary); line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); margin: 0 0 1rem; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin: 0 0 1rem; }
h3 { font-size: 1.25rem; margin: 0 0 .5rem; }
p { margin: 0 0 1rem; }

/* === Header === */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  max-width: var(--maxw);
  margin: 0 auto;
  gap: 1rem;
  flex-wrap: wrap;
}
.logo { display: inline-block; line-height: 0; }
.logo img { height: 72px; width: auto; }
@media (min-width: 768px) {
  .logo img { height: 96px; }
}
.primary-nav { display: flex; align-items: center; }
.nav-toggle {
  background: var(--color-primary);
  color: var(--color-neutral-light);
  border: 0;
  padding: .55rem 1rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  gap: .75rem;
  width: 100%;
  margin-top: 1rem;
}
.nav-list.is-open { display: flex; }
.nav-list a {
  color: var(--color-primary);
  font-weight: 500;
  padding: .35rem 0;
}
.nav-list a[aria-current="page"] { color: var(--color-accent); }
@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .nav-list {
    display: flex;
    flex-direction: row;
    width: auto;
    margin-top: 0;
    gap: 2rem;
  }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-body);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: 0 8px 20px -10px rgba(0,0,0,.4); }
.btn-primary { background: var(--color-primary); color: var(--color-neutral-light); }
.btn-accent { background: var(--color-accent); color: #fff; }

/* === Hero (centered) === */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  text-align: center;
}
.hero-centered .hero__title { max-width: 28ch; margin-inline: auto; }
.hero__sub {
  max-width: 56ch;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
  color: #4a4f60;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero__media {
  margin: 3rem auto 0;
  max-width: 1100px;
}
.hero__media img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
}
.hero--compact { padding: 3rem 1.5rem 1.5rem; }
@media (min-width: 768px) {
  .hero { padding: 6rem 1.5rem 4rem; }
}

/* === Sections === */
section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.section-title { text-align: center; margin-bottom: 2rem; }

/* === Intro === */
.intro { max-width: 70ch; margin-inline: auto; text-align: center; }
.intro p { font-size: 1.05rem; }
.intro.split {
  max-width: var(--maxw);
  display: grid;
  gap: 2rem;
  text-align: left;
  align-items: center;
}
.intro.split .intro__media img {
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}
@media (min-width: 768px) {
  .intro.split { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
}

/* === Highlights grid === */
.grid-3 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: #fff;
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(26,31,46,.08);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: var(--color-accent);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.card-link {
  display: block;
  color: inherit;
}
.card-link:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -20px rgba(15,19,32,.4);
}
.card-link h3 { color: var(--color-primary); }

/* === Testimonial === */
.testimonial { text-align: center; max-width: 800px; }
.testimonial blockquote {
  margin: 0;
  padding: 2rem 1rem;
  position: relative;
}
.testimonial p {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-style: italic;
  color: var(--color-primary);
  line-height: 1.4;
}
.testimonial cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: .95rem;
  color: var(--color-accent);
  font-weight: 600;
}

/* === CTA band === */
.cta-band {
  background: var(--color-primary);
  color: var(--color-neutral-light);
  text-align: center;
  border-radius: var(--radius);
  padding: 3rem 1.5rem;
  max-width: var(--maxw);
  margin: 3rem auto;
}
.cta-band h2 { color: var(--color-neutral-light); }
.cta-band p { color: rgba(250,240,232,.8); max-width: 50ch; margin-inline: auto; }

/* === Hours table === */
.hours-table {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-collapse: collapse;
}
.hours-table th, .hours-table td {
  padding: .75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(26,31,46,.1);
}
.hours-table th { font-weight: 600; color: var(--color-primary); }

/* === Article detail === */
.article-detail {
  max-width: 65ch;
  margin: 3rem auto;
  padding: 0 1rem;
}
.article-detail__header { text-align: left; margin-bottom: 1.5rem; }
.article-detail h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.article-detail__sub {
  font-size: 1.2rem;
  color: #4a4f60;
  margin-bottom: 1.5rem;
}
.article-detail__media img {
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 8px;
  margin: 2rem 0;
}
.article-detail p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 1.25rem 0;
}
.article-detail h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
}
.article-detail__footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(26,31,46,.1); }
.back-link { font-weight: 600; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding: 3rem 1.5rem 1.5rem;
  margin-top: 4rem;
}
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1.4fr; gap: 3rem; }
}
.footer-title {
  font-family: var(--font-body);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--color-accent);
  margin: 0 0 .75rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: .4rem; }
.site-footer a { color: var(--color-neutral-light); }
.site-footer a:hover { color: var(--color-accent); }
.site-footer address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.legal-links { margin-top: 1rem; font-size: .9rem; opacity: .8; }
.tagline { color: rgba(250,240,232,.7); font-style: italic; }
.logo--footer img { height: 64px; }
.copyright {
  text-align: center;
  margin: 2rem auto 0;
  font-size: .85rem;
  opacity: .6;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
}

/* === Cookie banner === */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  z-index: 1000;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,.4);
}
.cookie-banner p { margin: 0; flex: 1 1 240px; font-size: .95rem; }
.cookie-banner button {
  background: var(--color-accent);
  color: #fff;
  border: 0;
  padding: .65rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
}
body.cookies-accepted .cookie-banner { display: none; }
@media (min-width: 768px) {
  .cookie-banner { left: auto; right: 1.5rem; bottom: 1.5rem; max-width: 480px; }
}
