/* === Tokens === */
:root {
  --color-primary: #1F1F1F;
  --color-secondary: #EFE8D6;
  --color-accent: #D4B675;
  --color-neutral-dark: #0A0A0A;
  --color-neutral-light: #F8F8F8;
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --radius: 10px;
  --maxw: 1180px;
  --maxw-narrow: 720px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, p, ul, figure, blockquote { margin: 0; padding: 0; }
ul { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

/* === Base === */
body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-primary);
  background: var(--color-neutral-light);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-neutral-dark);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; margin-bottom: .5rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .8rem;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.section-sub {
  font-size: 1.05rem;
  color: #555;
  max-width: 60ch;
  margin-bottom: 2rem;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: .9rem 1.7rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .02em;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
}
.btn-primary:hover { background: var(--color-accent); color: var(--color-neutral-dark); }
.btn-accent {
  background: var(--color-accent);
  color: var(--color-neutral-dark);
}
.btn-accent:hover { background: var(--color-neutral-light); }

/* === Header === */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem;
  background: var(--color-neutral-light);
  border-bottom: 1px solid rgba(10,10,10,0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}
.logo img {
  height: 72px;
  width: auto;
  display: block;
}
.nav-toggle {
  background: transparent;
  border: 1px solid rgba(10,10,10,0.15);
  border-radius: 8px;
  padding: .4rem .7rem;
  font-size: 1.2rem;
  cursor: pointer;
}
.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-neutral-light);
  border-bottom: 1px solid rgba(10,10,10,0.08);
  flex-direction: column;
  padding: 1rem;
  gap: .5rem;
}
.site-nav.is-open { display: flex; }
.site-nav a {
  text-decoration: none;
  padding: .6rem .25rem;
  font-weight: 600;
  color: var(--color-primary);
  border-bottom: 1px solid rgba(10,10,10,0.05);
}
.site-nav a[aria-current="page"] { color: var(--color-accent); }

@media (min-width: 768px) {
  .site-header { padding: 1.5rem 2.5rem; }
  .logo img { height: 96px; }
  .nav-toggle { display: none; }
  .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    padding: 0;
    border: 0;
    background: transparent;
    gap: 2rem;
  }
  .site-nav a { border: 0; padding: .25rem 0; }
  .site-nav a:hover { color: var(--color-accent); }
}

/* === Main wrapper === */
main { display: block; }
section { padding: 3.5rem 1.25rem; }
@media (min-width: 768px) { section { padding: 5.5rem 2.5rem; } }

/* === Hero (stacked) === */
.hero {
  max-width: var(--maxw-narrow);
  margin-inline: auto;
  text-align: left;
}
.hero h1 { margin-bottom: 2rem; }
.hero-figure {
  margin: 2.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -40px rgba(0,0,0,0.4);
}
.hero-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.hero-sub {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 2rem;
  max-width: 50ch;
}
.hero-cta { margin-top: 1.5rem; }

/* === Intro === */
.intro {
  max-width: var(--maxw-narrow);
  margin-inline: auto;
  background: var(--color-neutral-light);
}
.intro-figure {
  margin: 2rem 0 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.intro-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.intro p { font-size: 1.05rem; }

/* === Highlights / Services grid === */
.highlights, .services {
  background: var(--color-secondary);
}
.highlights > h2, .services > h2 { max-width: var(--maxw); margin-inline: auto; }
.highlights > .section-sub, .services > .section-sub { max-width: var(--maxw); margin-inline: auto; }
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: var(--maxw);
  margin-inline: auto;
}
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; } }
.card {
  background: var(--color-neutral-light);
  border: 1px solid rgba(10,10,10,0.06);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.card-link:hover .card {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -25px rgba(0,0,0,0.3);
}
.card-icon {
  display: inline-block;
  font-size: 1.6rem;
  margin-bottom: .75rem;
  color: var(--color-accent);
}
.card h3 { color: var(--color-neutral-dark); }
.card p { font-size: .98rem; color: #444; }

.services .intro-figure { max-width: var(--maxw-narrow); margin-inline: auto; }

/* === Testimonial === */
.testimonial {
  background: var(--color-neutral-dark);
  color: var(--color-secondary);
}
.testimonial figure {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.testimonial-portrait {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 2px solid var(--color-accent);
}
.testimonial blockquote p {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
}
.testimonial cite {
  font-style: normal;
  font-size: .95rem;
  color: var(--color-accent);
  letter-spacing: .04em;
}

/* === CTA band === */
.cta-band {
  background: var(--color-primary);
  color: var(--color-neutral-light);
  text-align: center;
}
.cta-band h2 { color: var(--color-neutral-light); margin-bottom: 1rem; }
.cta-band p { max-width: 56ch; margin-inline: auto; margin-bottom: 1.75rem; color: #d9d4c2; }
.cta-band .btn-accent { background: var(--color-accent); }

/* === FAQ === */
.faq {
  max-width: var(--maxw-narrow);
  margin-inline: auto;
  background: var(--color-neutral-light);
}
.faq details {
  border-top: 1px solid rgba(10,10,10,0.1);
  padding: 1.25rem 0;
}
.faq details:last-of-type { border-bottom: 1px solid rgba(10,10,10,0.1); }
.faq summary {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--color-neutral-dark);
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--color-accent);
  font-size: 1.4rem;
  font-weight: 300;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: .75rem; color: #444; }

/* === Contact block === */
.contact-block {
  background: var(--color-secondary);
}
.contact-block > h2, .contact-block > .section-sub { max-width: var(--maxw); margin-inline: auto; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: var(--maxw);
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.contact-grid address {
  font-style: normal;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.contact-grid address a { color: var(--color-primary); text-decoration: underline; text-decoration-color: var(--color-accent); }
.hours {
  width: 100%;
  border-collapse: collapse;
  margin-top: .5rem;
}
.hours th, .hours td {
  text-align: left;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(10,10,10,0.1);
  font-weight: 400;
}
.hours th { font-weight: 600; }
.hours td { text-align: right; color: #444; }

.contact-form {
  max-width: var(--maxw-narrow);
  margin-inline: auto;
  background: var(--color-neutral-light);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(10,10,10,0.06);
}
.contact-form h3 { margin-bottom: 1.5rem; }
.form-row { margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: .4rem; }
.form-row label { font-weight: 600; font-size: .95rem; }
.form-row input, .form-row textarea {
  font: inherit;
  padding: .75rem .9rem;
  border: 1px solid rgba(10,10,10,0.15);
  border-radius: 8px;
  background: var(--color-neutral-light);
  width: 100%;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(212,182,117,0.25);
}

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: var(--color-secondary);
  padding: 4rem 1.25rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: var(--maxw);
  margin-inline: auto;
}
@media (min-width: 768px) {
  .site-footer { padding: 5rem 2.5rem 2rem; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1.3fr; gap: 3rem; }
}
.site-footer h3 {
  color: var(--color-accent);
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.site-footer ul li { margin-bottom: .5rem; }
.site-footer a { color: var(--color-secondary); text-decoration: none; }
.site-footer a:hover { color: var(--color-accent); }
.site-footer address { font-style: normal; line-height: 1.8; margin-bottom: 1rem; }
.legal-links { margin-top: 1rem; font-size: .9rem; }
.legal-links a { opacity: .8; }
.logo-footer img { height: 64px; margin-bottom: 1rem; }
.copyright {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: var(--maxw);
  margin-inline: auto;
  font-size: .85rem;
  color: rgba(239,232,214,0.6);
  text-align: center;
}

/* === Cookie banner === */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: flex-start;
  z-index: 100;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.5);
  border: 1px solid rgba(212,182,117,0.25);
}
.cookie-banner p { font-size: .92rem; margin: 0; max-width: 60ch; }
.cookie-banner button {
  background: var(--color-accent);
  color: var(--color-neutral-dark);
  border: 0;
  padding: .6rem 1.25rem;
  border-radius: 8px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.cookie-banner button:hover { background: var(--color-secondary); }
body.cookies-accepted .cookie-banner { display: none; }
@media (min-width: 640px) {
  .cookie-banner {
    left: auto;
    right: 1.5rem;
    bottom: 1.5rem;
    max-width: 420px;
    flex-direction: column;
  }
}
