:root {
  --color-primary: #2C4A6E;
  --color-secondary: #F0E8D8;
  --color-accent: #B86B33;
  --color-neutral-dark: #162033;
  --color-neutral-light: #FBF8F0;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --maxw: 1180px;
}

/* === Reset === */
*, *::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%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; color: var(--color-neutral-dark); margin: 0 0 1rem; }
h1 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.25rem); margin-bottom: 1.25rem; }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1rem; }
ul { padding: 0; margin: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

/* === Shell / Sidebar Layout === */
.shell { display: flex; flex-direction: column; min-height: 100vh; }
.sidebar {
  background: var(--color-primary);
  color: var(--color-neutral-light);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 50;
}
.logo { display: inline-block; line-height: 0; }
.logo img { height: 72px; width: auto; }
.sidebar-nav { display: none; flex-basis: 100%; }
.sidebar-nav.open { display: block; }
.sidebar-nav ul { display: flex; flex-direction: column; gap: 0.5rem; padding: 1rem 0; }
.sidebar-nav a {
  color: var(--color-neutral-light);
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.4rem 0;
  display: block;
  border-bottom: 1px solid rgba(251, 248, 240, 0.15);
}
.sidebar-nav a[aria-current="page"] { color: var(--color-secondary); }
.nav-toggle {
  background: transparent;
  color: var(--color-neutral-light);
  border: 1px solid rgba(251, 248, 240, 0.4);
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
}
.sidebar-foot { display: none; font-size: 0.8rem; opacity: 0.7; margin: 0; }

.content { flex: 1; padding: 0; }

/* === Hero === */
.hero {
  padding: 3rem 1.25rem 2.5rem;
  max-width: var(--maxw);
  margin: 0 auto;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero h1 { max-width: 22ch; }
.hero-sub { font-size: 1.15rem; max-width: 56ch; color: var(--color-neutral-dark); opacity: 0.85; }
.hero-cta { margin: 1.5rem 0 2.5rem; }
.hero-figure { margin: 0; }
.hero-figure img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 8px; }

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 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: var(--color-neutral-dark); }
.btn-accent { background: var(--color-accent); color: var(--color-neutral-light); }
.btn-accent:hover { background: #9c5826; }

/* === Prose sections === */
.prose { padding: 3rem 1.25rem; max-width: var(--maxw); margin: 0 auto; }
.prose-grid { display: grid; gap: 2rem; }
.prose-grid p { font-size: 1.05rem; max-width: 62ch; }
.prose-grid figure { margin: 0; }
.prose-grid figure img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; }

/* === Highlights === */
.highlights { padding: 3.5rem 1.25rem; max-width: var(--maxw); margin: 0 auto; }
.cards { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.card {
  background: var(--color-neutral-light);
  border: 1px solid rgba(22, 32, 51, 0.1);
  padding: 2rem 1.75rem;
  border-radius: 8px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 10px 25px -15px rgba(22, 32, 51, 0.25); }
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 50%;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.card h3 { color: var(--color-primary); }
.card p { font-size: 0.97rem; margin: 0; }

/* === Testimonial === */
.testimonial {
  background: var(--color-secondary);
  padding: 4rem 1.5rem;
  text-align: center;
}
.testimonial blockquote { max-width: 780px; margin: 0 auto; }
.testimonial p {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--color-neutral-dark);
  margin-bottom: 1.5rem;
}
.testimonial cite {
  font-style: normal;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 600;
}

/* === CTA band === */
.cta-band {
  background: var(--color-primary);
  color: var(--color-neutral-light);
  padding: 4rem 1.5rem;
  text-align: center;
}
.cta-band h2 { color: var(--color-neutral-light); max-width: 28ch; margin-left: auto; margin-right: auto; }
.cta-band p { max-width: 56ch; margin-left: auto; margin-right: auto; opacity: 0.9; }
.cta-band .btn { margin-top: 1rem; }

/* === Contact form === */
.contact-block { padding: 3.5rem 1.25rem; max-width: var(--maxw); margin: 0 auto; }
.contact-grid { display: grid; gap: 2.5rem; }
.contact-form .field { margin-bottom: 1.1rem; }
.contact-form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--color-neutral-dark);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(22, 32, 51, 0.2);
  border-radius: 4px;
  font: inherit;
  background: var(--color-neutral-light);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
  border-color: var(--color-accent);
}
.hours-block { background: var(--color-secondary); padding: 1.75rem; border-radius: 8px; }
.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(22, 32, 51, 0.1); }
.hours th { font-weight: 600; color: var(--color-primary); }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding: 3rem 1.5rem 1.5rem;
  margin-top: 3rem;
}
.footer-grid { display: grid; gap: 2rem; max-width: var(--maxw); margin: 0 auto; }
.site-footer .brand { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 0.5rem; }
.site-footer a { color: var(--color-secondary); }
.site-footer nav ul { display: flex; flex-direction: column; gap: 0.4rem; }
.site-footer address { font-style: normal; font-size: 0.92rem; line-height: 1.6; }
.legal-links { margin-top: 0.75rem; font-size: 0.85rem; }
.vat { font-size: 0.8rem; opacity: 0.7; margin-top: 0.5rem; }
.copy { max-width: var(--maxw); margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(251, 248, 240, 0.15); font-size: 0.82rem; opacity: 0.7; text-align: center; }

/* === 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: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.4);
  z-index: 100;
  font-size: 0.9rem;
}
  background: var(--color-accent);
  color: var(--color-neutral-light);
  border: none;
  padding: 0.55rem 1.1rem;
  border-radius: 4px;
  font-weight: 600;
}

/* === Responsive >= 768 === */
@media (min-width: 768px) {
  .logo img { height: 96px; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .prose-grid { grid-template-columns: 3fr 2fr; align-items: center; }
  .prose-grid-reverse > p { order: 2; }
  .prose-grid-reverse > figure { order: 1; }
  .contact-grid { grid-template-columns: 1.6fr 1fr; align-items: start; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1.2fr; }
  .hero { padding: 4rem 2rem 3rem; }
  .prose, .highlights, .contact-block { padding: 4rem 2rem; }
}

/* === Responsive >= 900: sidebar nav === */
@media (min-width: 900px) {
  .shell { flex-direction: row; }
  .sidebar {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 240px;
    flex-shrink: 0;
    height: 100vh;
    position: sticky;
    top: 0;
    padding: 2rem 1.75rem;
  }
  .sidebar-nav { display: block; flex-basis: auto; width: 100%; margin-top: 2.5rem; }
  .sidebar-nav ul { padding: 0; }
  .sidebar-nav a { border-bottom: none; padding: 0.5rem 0; font-size: 1rem; }
  .sidebar-nav a:hover { color: var(--color-secondary); text-decoration: none; }
  .nav-toggle { display: none; }
  .sidebar-foot { display: block; margin-top: auto; }
  .content { flex: 1; min-width: 0; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .highlights .cards.cards-five,
  .highlights .cards { }
}

@media (min-width: 1100px) {
  .highlights .cards { grid-template-columns: repeat(3, 1fr); }
}



:root{--brand-shift:19;--site-accent:hsl(137 44% 38%);--site-warm:hsl(235 36% 92%);}
.logo{min-width:0;max-width:calc(100% - 64px);overflow:hidden;text-decoration:none;display:inline-flex;align-items:center;gap:.5rem;}
.logo img{max-width:min(252px,100%);height:auto;object-fit:contain;}
.site-header,.legal-header{overflow-x:clip;}
.nav-list,.primary-nav ul{min-width:0;}
.contact-form input,.contact-form textarea,button,a{overflow-wrap:anywhere;}
@media (max-width: 720px){
  body{overflow-x:hidden;}
  .logo img{max-width:min(218px,70vw);}
  .hero,.hero-card,.site-header,.site-footer,main,section{max-width:100%;}
}
