/* === Reset & base === */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-neutral-dark);
  background: var(--color-neutral-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--color-accent); text-decoration: none; }
a:hover, a:focus-visible { text-decoration: underline; }
ul { list-style: none; padding: 0; }
h1, h2, h3 { font-family: var(--font-heading); line-height: 1.2; color: var(--color-primary); font-weight: 600; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* === Tokens === */
:root {
  --color-primary: #1A1F2E;
  --color-secondary: #F5E8DD;
  --color-accent: #E07A5F;
  --color-neutral-dark: #0F1320;
  --color-neutral-light: #FAF0E8;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container: 1180px;
  --radius: 10px;
}

/* === Header === */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.25rem;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}
.logo img { height: 72px; width: auto; display: block; }
.primary-nav { display: flex; align-items: center; }
.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  background: transparent; border: 0; padding: 0.5rem; cursor: pointer;
}
.nav-toggle__bar { display: block; width: 26px; height: 2px; background: var(--color-primary); }
.nav-list {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  flex-direction: column;
  background: var(--color-neutral-light);
  padding: 1rem 1.25rem 1.5rem;
  border-top: 1px solid rgba(26,31,46,0.08);
  z-index: 10;
}
.nav-list.is-open { display: flex; }
.nav-list a {
  display: block;
  padding: 0.6rem 0;
  color: var(--color-primary);
  font-weight: 500;
}

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

/* === Buttons === */
.button {
  display: inline-block;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button--primary {
  background: var(--color-accent);
  color: var(--color-neutral-light);
  box-shadow: 0 10px 28px -14px rgba(224,122,95,0.7);
}
.button--primary:hover { transform: translateY(-1px); text-decoration: none; }
.button--accent {
  background: var(--color-neutral-light);
  color: var(--color-primary);
}
.button--accent:hover { transform: translateY(-1px); text-decoration: none; }

/* === Hero (stacked) === */
.hero {
  padding: 2rem 1.25rem 3rem;
}
.hero__inner {
  max-width: 720px;
  margin: 0 auto;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.hero__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.hero__media {
  margin: 0 0 2.5rem;
}
.hero__media img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
}
.hero__sub {
  font-size: 1.15rem;
  color: var(--color-primary);
  opacity: 0.85;
  max-width: 60ch;
  margin-bottom: 2rem;
}
.hero__cta { margin-top: 0.5rem; }

@media (min-width: 768px) {
  .hero { padding: 3rem 2rem 5rem; }
  .hero__media { margin: 0 0 3rem; }
}

/* === Intro paragraph === */
.intro {
  padding: 4rem 1.25rem;
  background: var(--color-neutral-light);
}
.intro--alt {
  background: var(--color-secondary);
}
.intro__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.intro h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  margin-bottom: 1.25rem;
}
.intro p {
  font-size: 1.05rem;
  max-width: 60ch;
  margin: 0 auto;
  color: var(--color-neutral-dark);
}

/* === Section heads === */
.section-head {
  max-width: var(--container);
  margin: 0 auto 2.5rem;
  text-align: center;
  padding: 0 1.25rem;
}
.section-head h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.5rem);
  margin-bottom: 0.85rem;
}
.section-sub {
  max-width: 60ch;
  margin: 0 auto;
  color: var(--color-primary);
  opacity: 0.75;
}

/* === Highlights / cards === */
.highlights {
  padding: 4.5rem 1.25rem;
}
.card-grid {
  display: grid;
  gap: 1.25rem;
  max-width: var(--container);
  margin: 0 auto;
  grid-template-columns: 1fr;
}
.card {
  background: var(--color-neutral-light);
  border: 1px solid rgba(26,31,46,0.08);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -28px rgba(26,31,46,0.45); }
.card__icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--color-secondary);
  color: var(--color-accent);
  border-radius: 50%;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--color-primary);
}
.card p {
  color: var(--color-neutral-dark);
  opacity: 0.85;
  font-size: 0.98rem;
}

@media (min-width: 640px) {
  .card-grid--3, .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* === Testimonial === */
.testimonial {
  padding: 5rem 1.25rem;
  background: var(--color-primary);
  color: var(--color-neutral-light);
}
.testimonial__quote {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.testimonial__quote::before {
  content: "“";
  display: block;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}
.testimonial p {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-neutral-light);
  margin-bottom: 1.5rem;
}
.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--color-secondary);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

/* === CTA band === */
.cta-band {
  background: var(--color-accent);
  color: var(--color-neutral-light);
  padding: 4rem 1.25rem;
}
.cta-band__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.cta-band h2 {
  color: var(--color-neutral-light);
  font-size: clamp(1.75rem, 3.4vw, 2.4rem);
  margin-bottom: 0.85rem;
}
.cta-band p { margin-bottom: 1.75rem; font-size: 1.05rem; }

/* === Contact === */
.contact {
  padding: 5rem 1.25rem;
}
.contact__grid {
  display: grid;
  gap: 2.5rem;
  max-width: var(--container);
  margin: 0 auto;
}
.contact__text p { margin-bottom: 1.5rem; }
.contact__details {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.5rem 1.25rem;
  margin-bottom: 2rem;
}
.contact__details dt {
  font-weight: 600;
  color: var(--color-primary);
}
.contact__details dd { margin: 0; }
.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.hours caption {
  text-align: left;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}
.hours th, .hours td {
  text-align: left;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(26,31,46,0.08);
  font-weight: 400;
}
.hours th { color: var(--color-primary); font-weight: 500; }
.contact__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
}

@media (min-width: 900px) {
  .contact__grid { grid-template-columns: 1.1fr 1fr; align-items: start; }
}

/* === Footer === */
.site-footer {
  background: var(--color-primary);
  color: var(--color-neutral-light);
  padding: 4rem 1.25rem 2rem;
}
.site-footer__inner {
  display: grid;
  gap: 2.5rem;
  max-width: var(--container);
  margin: 0 auto 2.5rem;
  grid-template-columns: 1fr;
}
.site-footer__heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-accent);
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.site-footer .logo--footer img { height: 60px; }
.site-footer .tagline { margin-top: 1rem; opacity: 0.8; max-width: 30ch; }
.site-footer ul li { margin-bottom: 0.5rem; }
.site-footer a { color: var(--color-neutral-light); }
.site-footer a:hover { color: var(--color-accent); }
.site-footer address { font-style: normal; margin-bottom: 1.25rem; line-height: 1.7; opacity: 0.85; }
.legal-links { margin-top: 1rem; }
.legal-links li { margin-bottom: 0.4rem; }
.vat { margin-top: 1rem; font-size: 0.85rem; opacity: 0.65; }
.copyright {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
  border-top: 1px solid rgba(250,240,232,0.1);
  padding-top: 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}

@media (min-width: 768px) {
  .site-footer__inner { grid-template-columns: 1.4fr 1fr 1.3fr; gap: 3rem; }
}

/* === 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;
  flex-direction: column;
  gap: 0.85rem;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5);
  z-index: 50;
  font-size: 0.92rem;
}
.cookie-banner p { line-height: 1.5; }
.cookie-banner button {
  align-self: flex-start;
  background: var(--color-accent);
  color: var(--color-neutral-light);
  border: 0;
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
}
.cookie-banner button:hover { filter: brightness(1.05); }
body.cookies-accepted .cookie-banner { display: none; }

@media (min-width: 640px) {
  .cookie-banner {
    flex-direction: row;
    align-items: center;
    left: auto; right: 1rem;
    max-width: 520px;
  }
  .cookie-banner button { align-self: auto; flex-shrink: 0; }
}
