/* ================================
   Holsbeek Optiek & Audiciën
   Complete styles.css
================================ */

:root {
  /*
    Holsbeek kleurpalet v1
    Gebaseerd op de huidige visuele stijl:
    - zwart/antraciet
    - warm wit
    - terracotta / roze-oranje
    - beige / taupe
    - zachte goud-hout accenten
  */

  --color-ink: #181412;
  --color-ink-soft: #312925;
  --color-muted: #766b65;

--color-brand: #b17461;
--color-brand-dark: #a36654;
  --color-brand-deep: #181412;

  --color-blush: #f8ebe5;
  --color-cream: #fbf7f1;
  --color-warm-white: #fffdf9;
  --color-rose: #e8c6bc;
  --color-peach: #d7a08b;
  --color-taupe: #d7c9bd;
  --color-gold: #a57b55;

  --color-white: #ffffff;
  --color-line: rgba(90, 51, 45, 0.15);

  --shadow-soft: 0 24px 70px rgba(24, 20, 18, 0.13);
  --shadow-card: 0 16px 40px rgba(24, 20, 18, 0.08);

  --radius-large: 32px;
  --radius-medium: 22px;
  --radius-small: 999px;

  --container: 1160px;
}

/* ================================
   Reset & base
================================ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.6;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: var(--color-rose);
  color: var(--color-ink);
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

/* ================================
   Accessibility
================================ */

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--color-brand-deep);
  color: var(--color-white);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

/* ================================
   Topbar
================================ */

.topbar {
  background: var(--color-brand-deep);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 9px;
}

.topbar__contact,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar a {
  transition: color 0.2s ease;
}

.topbar a:hover {
  color: #f2c9bb;
}

.topbar__socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.04);
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.social-icon svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.social-icon:hover {
  color: var(--color-brand-deep);
  background: #f2c9bb;
  border-color: #f2c9bb;
  transform: translateY(-1px);
}

/* ================================
   Header & navigation
================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--color-line);
}

.nav,
.navbar {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Nieuw logo */

.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.site-logo-image {
  display: block;
  width: 260px;
  max-width: 100%;
  height: auto;
}

/* Oude tekst-brand fallback, handig voor footer of tijdelijke header */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 44px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-brand), var(--color-gold));
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.brand__text {
  display: grid;
  line-height: 1.1;
}

.brand__text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.brand__text small {
  color: var(--color-muted);
  font-size: 0.82rem;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.nav__links a {
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--color-brand);
}

.nav__links a.nav__link--active,
.nav__links a[aria-current="page"] {
  position: relative;
  color: var(--color-brand-deep);
  font-weight: 600;
}

.nav__links a.nav__link--active::after,
.nav__links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  border-radius: 999px;
  background: var(--color-brand);
}

/* ================================
   Buttons & links
================================ */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  background: var(--color-brand);
  color: var(--color-white);
  font-weight: 750;
  box-shadow: 0 14px 30px rgba(168, 100, 85, 0.24);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--color-brand-dark);
  box-shadow: 0 18px 38px rgba(168, 100, 85, 0.3);
}

.button--small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.92rem;
}

.button--ghost {
  color: var(--color-brand-deep);
  background: var(--color-warm-white);
  border-color: var(--color-line);
  box-shadow: none;
}

.button--ghost:hover {
  color: var(--color-white);
  background: var(--color-brand-dark);
}

/* Aliassen voor de hero-knoppen */

.button-primary {
  background: var(--color-brand);
  color: var(--color-white);
}

.button-secondary {
  color: var(--color-brand-deep);
  background: var(--color-warm-white);
  border-color: var(--color-line);
  box-shadow: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-brand-dark);
  font-weight: 750;
}

.text-link::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

/* ================================
   Typography
================================ */

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-brand);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 7vw, 6.7rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.6vw, 4.4rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}

/* ================================
   Hero carousel
================================ */

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--color-white);
  isolation: isolate;
}

.hero-carousel {
  background-color: var(--color-brand-deep);
}

.hero-slider,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slider {
  z-index: -3;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  animation: heroDissolve 18s infinite;
}

.hero-slide-1 {
  background-image: url("assets/holsbeek-optiek-audicien-impressie-1.jpeg");
  animation-delay: 0s;
}

.hero-slide-2 {
  background-image: url("assets/holsbeek-optiek-audicien-impressie-2.jpeg");
  animation-delay: 6s;
}

.hero-slide-3 {
  background-image: url("assets/holsbeek-optiek-audicien-impressie-3.jpeg");
  animation-delay: 12s;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(24, 20, 18, 0.88) 0%,
      rgba(90, 51, 45, 0.74) 42%,
      rgba(168, 100, 85, 0.34) 72%,
      rgba(168, 100, 85, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(24, 20, 18, 0.18) 0%,
      rgba(24, 20, 18, 0.64) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-top: 120px;
  padding-bottom: 120px;
}

.hero .eyebrow {
  margin-bottom: 22px;
  color: #f2c9bb;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 26px;
  color: var(--color-white);
  text-wrap: balance;
}

.hero-intro {
  max-width: 640px;
  margin-bottom: 36px;
  font-size: 1.2rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero .button-primary {
  background: var(--color-warm-white);
  color: var(--color-brand-deep);
  box-shadow: 0 16px 36px rgba(24, 20, 18, 0.28);
}

.hero .button-primary:hover {
  background: var(--color-blush);
  color: var(--color-brand-deep);
}

.hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.hero .button-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--color-white);
}

/*
  18 seconden totaal:
  - afbeelding 1: 0s - 6s
  - afbeelding 2: 6s - 12s
  - afbeelding 3: 12s - 18s
*/

@keyframes heroDissolve {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }

  6% {
    opacity: 1;
  }

  30% {
    opacity: 1;
  }

  39% {
    opacity: 0;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

/* Fallback voor oude hero-classes, mocht er nog oude HTML in je bestand staan */

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 64px;
}

.hero__lead {
  max-width: 650px;
  color: var(--color-muted);
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin: 34px 0;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 46px 0 0;
}

.hero__proof div {
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.52);
}

.hero__proof dt {
  margin-bottom: 4px;
  color: var(--color-brand-dark);
  font-weight: 850;
}

.hero__proof dd {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.94rem;
}

/* ================================
   Services strip
================================ */

.services-strip {
  position: relative;
  z-index: 3;
  margin-top: -36px;
}

.services-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--color-line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
}

.service-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 16px;
  border-radius: 22px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.service-pill:hover {
  background: var(--color-blush);
  transform: translateY(-2px);
}

.service-pill__icon {
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  width: 46px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: var(--color-brand-deep);
  background: var(--color-rose);
  font-weight: 850;
  font-size: 1.2rem;
}

.service-pill strong,
.service-pill small {
  display: block;
}

.service-pill strong {
  margin-bottom: 2px;
}

.service-pill small {
  color: var(--color-muted);
}

/* ================================
   Sections
================================ */

.section {
  padding: 92px 0;
}

.section--intro {
  padding-bottom: 60px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 66px;
  align-items: start;
}

.rich-text {
  color: var(--color-muted);
  font-size: 1.08rem;
}

.rich-text p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--color-muted);
}

/* ================================
   Cards
================================ */

.cards-section {
  padding-top: 34px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-large);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.feature-card__number {
  margin-bottom: 36px;
  color: var(--color-gold);
  font-family: Georgia, serif;
  font-size: 2.6rem;
  line-height: 1;
}

.feature-card p {
  color: var(--color-muted);
}

.feature-card a {
  margin-top: auto;
  color: var(--color-brand-dark);
  font-weight: 800;
}

/* ================================
   Showcase
================================ */

.showcase {
  background: linear-gradient(180deg, transparent 0%, var(--color-blush) 100%);
}

.showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.showcase__panel {
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-card);
}

.showcase__panel--image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background-image: url("assets/holsbeek-optiek-audicien-impressie-4.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.showcase__panel--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(24, 20, 18, 0.04) 0%,
      rgba(24, 20, 18, 0.18) 100%
    );
  pointer-events: none;
}

.showcase__panel--content {
  padding: clamp(32px, 6vw, 72px);
  background: var(--color-white);
}

.showcase__panel--content p {
  color: var(--color-muted);
  font-size: 1.06rem;
}

/* ================================
   Checklist
================================ */

.checklist {
  display: grid;
  gap: 12px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 30px;
  color: var(--color-muted);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-brand);
  font-weight: 900;
}

/* ================================
   Brand logo strip
================================ */

.brand-strip {
  padding: 34px 0 92px;
  background:
    linear-gradient(
      180deg,
      #e6d6cb 0%,
      #d8c5b8 100%
    );
}

.brand-strip__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.brand-strip__heading {
  max-width: 760px;
}

.brand-strip__heading h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
}

.brand-strip__heading p:not(.eyebrow) {
  max-width: 640px;
  color: var(--color-muted);
}

.brand-scroll-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-scroll-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  color: var(--color-brand-deep);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.brand-scroll-button svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.brand-scroll-button:hover {
  transform: translateY(-2px);
  color: var(--color-white);
  background: var(--color-brand);
  border-color: var(--color-brand);
}

.brand-scroll-button:focus-visible {
  outline: 3px solid rgba(177, 116, 97, 0.28);
  outline-offset: 4px;
}

.brand-scroll-button.is-disabled,
.brand-scroll-button:disabled {
  opacity: 0.38;
  cursor: default;
  pointer-events: none;
}

.brand-logo-scroll {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(190px, 1fr);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-behavior: smooth;
  padding: 4px;

  /* Scrollbar verbergen */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.brand-logo-scroll::-webkit-scrollbar {
  display: none;
}

.brand-logo-card {
  scroll-snap-align: start;
  height: 150px;
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 28px 56px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-medium);
  background: rgba(255, 253, 249, 0.78);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.brand-logo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(177, 116, 97, 0.48);
  background: rgba(255, 253, 249, 0.94);
  box-shadow: var(--shadow-soft);
}

.brand-logo-frame {
  width: 190px;
  height: 96px;
  display: grid;
  place-items: center;
}

.brand-logo-frame img {
  display: block;
  width: auto;
  max-width: 170px;
  max-height: 96px;
  object-fit: contain;
  object-position: center;
  opacity: 0.92;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.brand-logo-card:hover .brand-logo-frame img {
  opacity: 1;
  transform: scale(1.03);
}


@media (max-width: 980px) {
  .brand-strip {
    padding-bottom: 76px;
  }

  .brand-strip__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-logo-scroll {
    grid-auto-columns: minmax(170px, 42vw);
  }

}

@media (max-width: 680px) {
  .brand-strip {
    padding: 20px 0 68px;
  }

  .brand-scroll-controls {
    width: 100%;
    justify-content: flex-start;
  }

  .brand-scroll-button {
    width: 44px;
    height: 44px;
  }

  .brand-logo-scroll {
    grid-auto-columns: minmax(150px, 68vw);
    gap: 12px;
  }

  .brand-logo-card {
    height: 128px;
    min-height: 128px;
    padding: 24px 36px;
  }
 
  .brand-logo-card img {
    max-width: 145px;
    max-height: 82px;
  }

  .brand-logo-frame {
    width: 160px;
    height: 82px;
  }

  .brand-logo-frame img {
    max-width: 145px;
    max-height: 82px;
  }
}

/* ================================
   Testimonials
================================ */

.testimonials {
  background: var(--color-blush);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card {
  margin: 0;
  padding: 30px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-medium);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.testimonial-card blockquote {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.35;
}

.testimonial-card figcaption {
  color: var(--color-muted);
  font-size: 0.94rem;
}

/* ================================
   Appointment CTA
================================ */

.appointment {
  padding: 72px 0;
  background: var(--color-brand-deep);
  color: var(--color-white);
}

.appointment .eyebrow,
.appointment .text-link {
  color: #f2c9bb;
}

.appointment h2 {
  margin-bottom: 12px;
}

.appointment p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.appointment__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.appointment__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.appointment .button {
  background: var(--color-warm-white);
  color: var(--color-brand-deep);
}

.appointment .button:hover {
  background: var(--color-blush);
}

/* ================================
   Footer
================================ */

.footer {
  padding: 58px 0;
  color: rgba(255, 255, 255, 0.76);
  background: #181412;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, 0.5fr));
  gap: 44px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  text-decoration: none;
}

.footer-logo-image {
  display: block;
  width: 280px;
  max-width: 100%;
  height: auto;
}

.footer h3 {
  margin-bottom: 14px;
  color: var(--color-white);
  font-size: 1rem;
}

.footer p,
.footer address {
  margin: 0;
  font-style: normal;
}

.footer a {
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #f2c9bb;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.04);
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.footer-social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social-icon:hover {
  color: var(--color-brand-deep);
  background: #f2c9bb;
  border-color: #f2c9bb;
  transform: translateY(-2px);
}

/* ================================
   Footer bottom bar
================================ */

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  margin-left: 48px;
  margin-right: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.footer-bottom p {
  margin: 0;
  margin-left: 10%;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
  margin-right: 10%;
}

.footer-bottom a:hover {
  color: #f2c9bb;
}

/* ================================
   Contact page
================================ */

.contact-page-intro {
  min-height: 52vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      180deg,
      var(--color-warm-white) 0%,
      var(--color-cream) 100%
    );
}

.contact-page-intro h1 {
  max-width: 680px;
  font-size: clamp(2.8rem, 5.6vw, 5.6rem);
}

.contact-options-section {
  padding-top: 34px;
  background: var(--color-cream);
}

.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-option-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 360px;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-large);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.contact-option-card--highlight {
  color: var(--color-white);
  background:
    linear-gradient(
      135deg,
      var(--color-brand-deep) 0%,
      var(--color-brand-dark) 100%
    );
}

.contact-option-card--highlight .eyebrow {
  color: #f2c9bb;
}

.contact-option-card--highlight p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-option-card__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 30px;
  border-radius: 50%;
  color: var(--color-brand-deep);
  background: var(--color-blush);
}

.contact-option-card__icon svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.contact-option-card h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}

.contact-option-card p {
  color: var(--color-muted);
}

.contact-option-card .button,
.contact-phone-link {
  margin-top: auto;
}

.contact-whatsapp-button {
  background: var(--color-warm-white);
  color: var(--color-brand-deep);
}

.contact-whatsapp-button:hover {
  background: var(--color-blush);
  color: var(--color-brand-deep);
}

.contact-phone-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-brand-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.contact-phone-link:hover {
  color: var(--color-brand);
  transform: translateY(-2px);
}

.contact-form-section {
  background:
    linear-gradient(
      180deg,
      var(--color-cream) 0%,
      var(--color-blush) 100%
    );
}

.contact-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.contact-form-grid > div > p {
  max-width: 560px;
  color: var(--color-muted);
  font-size: 1.06rem;
}

.contact-details-card {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-medium);
  background: rgba(255, 253, 249, 0.78);
  box-shadow: var(--shadow-card);
}

.contact-details-card h3 {
  margin-bottom: 14px;
}

.contact-details-card address {
  color: var(--color-muted);
  font-style: normal;
}

.contact-details-card a {
  color: var(--color-brand-dark);
  font-weight: 750;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-large);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--color-ink-soft);
  font-weight: 750;
  font-size: 0.94rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(90, 51, 45, 0.18);
  border-radius: 18px;
  background: var(--color-warm-white);
  color: var(--color-ink);
  padding: 14px 16px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 150px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-brand);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(177, 116, 97, 0.14);
}

.form-field--checkbox {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px;
}

.form-field--checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--color-brand);
}

.form-field--checkbox label {
  color: var(--color-muted);
  font-weight: 500;
  line-height: 1.5;
}

.form-field--honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 650;
}

.form-status--success {
  color: #234a31;
  background: #e7f3ea;
  border: 1px solid rgba(35, 74, 49, 0.18);
}

.form-status--error {
  color: #6b2525;
  background: #f8e6e3;
  border: 1px solid rgba(107, 37, 37, 0.18);
}

@media (max-width: 980px) {
  .contact-options-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-option-card {
    min-height: 300px;
  }
}

@media (max-width: 680px) {
  .contact-page-intro {
    min-height: auto;
  }

  .contact-options-section {
    padding-top: 20px;
  }

  .contact-option-card {
    min-height: auto;
  }

  .contact-form {
    padding: 24px;
  }

  .contact-form .button {
    width: 100%;
  }
}

/* ================================
   Reduced motion
================================ */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-slide {
    animation: none;
    opacity: 0;
    transform: none;
  }

  .hero-slide-1 {
    opacity: 1;
  }
}

/* ================================
   Back to top button
================================ */

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-brand);
  box-shadow: 0 16px 36px rgba(24, 20, 18, 0.22);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.back-to-top:hover {
  transform: translateY(-3px);
  background: var(--color-brand-dark);
  box-shadow: 0 20px 44px rgba(24, 20, 18, 0.28);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(177, 116, 97, 0.35);
  outline-offset: 4px;
}

@media (max-width: 680px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
}

/* ================================
   Responsive
================================ */

@media (max-width: 980px) {
  .nav,
  .navbar {
    flex-wrap: wrap;
    padding-block: 16px;
  }

  .site-logo-image {
    width: 220px;
  }

  .nav__links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(24, 20, 18, 0.91) 0%,
        rgba(90, 51, 45, 0.78) 100%
      ),
      linear-gradient(
        180deg,
        rgba(24, 20, 18, 0.2) 0%,
        rgba(24, 20, 18, 0.68) 100%
      );
  }

  .hero-content {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .hero-intro {
    font-size: 1.08rem;
  }

  .showcase__panel--image {
    min-height: 560px;
    background-position: center;
  }

  .hero__grid,
  .split,
  .showcase__grid {
    grid-template-columns: 1fr;
  }

  .services-strip__grid,
  .cards-grid,
  .testimonial-grid,
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .appointment__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .appointment__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .topbar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .topbar__contact,
  .topbar__right {
    flex-wrap: wrap;
    gap: 8px 12px;
  }
  .nav,
  .navbar {
    gap: 18px;
    min-height: auto;
  }

  .site-logo-image {
    width: 185px;
  }

  .nav .button,
  .navbar .button {
    width: 100%;
  }

  .hero {
    min-height: 640px;
  }

  .hero-content {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.4rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .hero__grid {
    gap: 38px;
  }

  .hero__proof,
  .services-strip__grid,
  .cards-grid,
  .testimonial-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .feature-card {
    min-height: 260px;
  }

  .showcase__panel--image {
    min-height: 460px;
    background-position: center;
  }

  .footer-logo-image {
    width: 230px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

}

@media (max-width: 420px) {
  .topbar {
    font-size: 0.82rem;
  }

  .nav__links {
    gap: 18px;
    font-size: 0.9rem;
  }

  .button {
    min-height: 48px;
    padding-inline: 20px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-intro {
    font-size: 1rem;
  }

  .service-pill {
    min-height: 78px;
  }

  .testimonial-card blockquote {
    font-size: 1.22rem;
  }
}