:root {
  --color-primary: #262626;
  --color-secondary: #F5EFE0;
  --color-accent: #C9A961;
  --color-neutral-dark: #0F0F0F;
  --color-neutral-light: #FAFAFA;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-primary);
  background: var(--color-neutral-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-accent); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* === Typography === */
h1, h2, h3, h4 {
  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, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--color-accent);
  font-weight: 500;
  margin: 0 0 1rem;
}

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 250, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(38, 38, 38, 0.08);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.9rem;
}
.logo { display: inline-block; line-height: 0; }
.logo img { height: 72px; width: auto; }
@media (min-width: 768px) {
  .logo img { height: 96px; }
}
.nav-toggle {
  background: none;
  border: 1px solid rgba(38, 38, 38, 0.2);
  border-radius: 6px;
  padding: 0.4rem 0.7rem;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--color-primary);
}
.site-nav { display: none; }
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.site-nav a {
  display: block;
  padding: 0.6rem 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
}
.site-nav a[aria-current="page"] {
  color: var(--color-accent);
  border-bottom: 1px solid var(--color-accent);
}
.site-nav.is-open {
  display: block;
  width: 100%;
  padding-block: 0.5rem 1rem;
}
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav { display: block !important; }
  .site-nav ul { flex-direction: row; gap: 2rem; }
  .site-nav a { padding: 0.3rem 0; }
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.95rem 1.8rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
  letter-spacing: 0.02em;
}
.btn--primary {
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
}
.btn--primary:hover {
  background: var(--color-accent);
  color: var(--color-neutral-dark);
  transform: translateY(-1px);
}
.btn--accent {
  background: var(--color-accent);
  color: var(--color-neutral-dark);
}
.btn--accent:hover {
  background: var(--color-neutral-light);
  color: var(--color-neutral-dark);
  transform: translateY(-1px);
}

/* === Hero centered === */
.hero--centered {
  text-align: center;
  padding-block: 3.5rem 2.5rem;
  background: linear-gradient(180deg, var(--color-secondary) 0%, var(--color-neutral-light) 100%);
}
.hero--centered h1 {
  max-width: 22ch;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}
.hero__sub {
  max-width: 52ch;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: rgba(38, 38, 38, 0.78);
}
.hero__media {
  margin: 3rem 0 0;
}
.hero__media img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -30px rgba(15, 15, 15, 0.35);
}
@media (min-width: 768px) {
  .hero--centered { padding-block: 6rem 4rem; }
}

/* === Sections === */
.section { padding-block: 4rem; }
@media (min-width: 768px) {
  .section { padding-block: 6rem; }
}
.section__title {
  text-align: center;
  max-width: 28ch;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.intro-narrow {
  max-width: 64ch;
  margin-inline: auto;
}
.intro-narrow p { font-size: 1.05rem; }
.intro-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.intro-grid__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
}
@media (min-width: 768px) {
  .intro-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
}

/* === Cards === */
.cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .cards--3 { grid-template-columns: repeat(3, 1fr); }
}
.card {
  background: var(--color-neutral-light);
  border: 1px solid rgba(38, 38, 38, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -25px rgba(15, 15, 15, 0.25);
}
.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-secondary);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}
.card h3 { margin-bottom: 0.6rem; }
.card p { color: rgba(38, 38, 38, 0.78); margin: 0; font-size: 0.97rem; }

/* === Testimonial === */
.section--quote {
  background: var(--color-secondary);
  text-align: center;
}
.testimonial {
  max-width: 60ch;
  margin: 0 auto;
  font-family: var(--font-heading);
}
.testimonial p {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.55;
  font-style: italic;
  color: var(--color-neutral-dark);
  margin-bottom: 1.5rem;
}
.testimonial cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9rem;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* === CTA Band === */
.cta-band {
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  text-align: center;
  padding-block: 4rem;
}
.cta-band h2 {
  color: var(--color-neutral-light);
  max-width: 28ch;
  margin-inline: auto;
}
.cta-band p {
  max-width: 52ch;
  margin: 0 auto 2rem;
  color: rgba(250, 250, 250, 0.82);
}

/* === Gallery === */
.gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.gallery figure { margin: 0; }
.gallery img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
}
@media (min-width: 768px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
}

/* === FAQ === */
.section--faq details {
  border-bottom: 1px solid rgba(38, 38, 38, 0.12);
  padding: 1.25rem 0;
}
.section--faq summary {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--color-neutral-dark);
}
.section--faq summary::after {
  content: "+";
  color: var(--color-accent);
  font-weight: 400;
  font-size: 1.4rem;
}
.section--faq details[open] summary::after { content: "−"; }
.section--faq details p {
  margin-top: 0.85rem;
  color: rgba(38, 38, 38, 0.78);
}

/* === Form === */
.contact-form {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.form-row { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row label {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(38, 38, 38, 0.7);
}
.form-row input,
.form-row textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(38, 38, 38, 0.18);
  border-radius: 8px;
  background: var(--color-neutral-light);
  color: var(--color-primary);
}
.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
}
.contact-form button { justify-self: start; }

/* === Hours table === */
.hours {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.hours th, .hours td {
  text-align: left;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(38, 38, 38, 0.1);
  font-size: 0.97rem;
}
.hours th { font-weight: 500; }
.hours td { color: rgba(38, 38, 38, 0.78); }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(250, 250, 250, 0.82);
  padding-top: 4rem;
  margin-top: 4rem;
}
.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  padding-bottom: 3rem;
}
.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-grid a { color: rgba(250, 250, 250, 0.82); }
.footer-grid a:hover { color: var(--color-accent); }
.footer__tagline {
  font-family: var(--font-heading);
  font-style: italic;
  margin-top: 1rem;
  color: rgba(250, 250, 250, 0.7);
}
.logo--footer img { height: 64px; }
.footer__legal {
  margin-top: 1.5rem !important;
  font-size: 0.85rem;
}
.site-footer address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.7;
}
.footer__copy {
  border-top: 1px solid rgba(250, 250, 250, 0.1);
  padding-block: 1.5rem;
  font-size: 0.85rem;
  color: rgba(250, 250, 250, 0.6);
  text-align: center;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; gap: 4rem; }
}

/* === Cookie banner === */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: var(--color-neutral-dark);
  color: var(--color-neutral-light);
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 100;
  font-size: 0.9rem;
}
.cookie-banner p { margin: 0; }
.cookie-banner button {
  background: var(--color-accent);
  color: var(--color-neutral-dark);
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  align-self: flex-start;
}
.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: row;
    align-items: center;
  }
  .cookie-banner button { align-self: auto; flex-shrink: 0; }
}
