/* =====================================================
   BEAUTY EL MARE — KIT CSS
   Kit components: .hero, .card, .card-grid, .cta-band,
   .footer-kit, .mobile-menu__overlay (fullscreen)
   ===================================================== */

/* --- CSS Custom Properties --- */
:root {
  --color-primary:    #4a6b5d;
  --color-primary-dk: #3a5649;
  --color-secondary:  #c8b89a;
  --color-bg:         #f5f2ee;
  --color-bg-alt:     #eee9e2;
  --color-accent:     #7a9e8e;
  --color-text:       #2c2c2c;
  --color-text-light: #6b6b6b;
  --color-white:      #ffffff;
  --color-footer-bg:  #2c3e35;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lato', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-sm:  0 2px 8px rgba(44,44,44,.08);
  --shadow-md:  0 4px 20px rgba(44,44,44,.12);
  --shadow-lg:  0 8px 40px rgba(44,44,44,.16);

  --transition: 0.25s ease;

  --container-max: 1200px;
  --container-px:  clamp(1.25rem, 5vw, 3rem);

  --header-h: 72px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul { list-style: none; }

address { font-style: normal; }

/* --- Utility --- */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3rem);     font-weight: 500; }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.8rem); font-weight: 500; }

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--color-primary);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ======================
   BUTTONS
   ====================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn--primary:hover {
  background: var(--color-primary-dk);
  border-color: var(--color-primary-dk);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,.6);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--color-white);
}

.btn--nav {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  padding: .5rem 1.25rem;
  font-size: .875rem;
}
.btn--nav:hover {
  background: var(--color-primary-dk);
  border-color: var(--color-primary-dk);
}

.btn--lg { padding: .9rem 2.25rem; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ======================
   HEADER
   ====================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  background: var(--color-bg);
  border-bottom: 1px solid rgba(74,107,93,.12);
  box-shadow: 0 2px 12px rgba(44,44,44,.06);
  transition: box-shadow var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  color: var(--color-text);
}

.logo-mark {
  color: var(--color-primary);
  font-size: 1.25rem;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .01em;
}

.logo-text em {
  font-style: italic;
  color: var(--color-primary);
}

.logo--light .logo-text,
.logo--light .logo-mark { color: var(--color-white); }
.logo--light .logo-text em { color: var(--color-secondary); }

/* Desktop Nav */
.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.desktop-nav a {
  font-size: .9375rem;
  font-weight: 400;
  color: var(--color-text);
  transition: color var(--transition);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.desktop-nav .btn--nav {
  border-bottom: none;
  color: var(--color-white);
}

.site-header.is-scrolled {
  box-shadow: 0 2px 20px rgba(44,44,44,.12);
}

/* ======================
   MOBILE MENU — KIT FULLSCREEN OVERLAY
   (REQUIRED: covers 100svh, hero NOT visible)
   ====================== */
.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  color: var(--color-text);
  z-index: 910;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 26px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* When open */
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* FULLSCREEN OVERLAY — always 100svh */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;      /* full viewport — hero NOT visible underneath */
  background: var(--color-bg);
  z-index: 1000;
  overflow-y: auto;
  display: flex;
  flex-direction: column;

  /* Hidden state */
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform .3s ease, opacity .3s ease;
}

.mobile-menu__overlay[aria-hidden="false"] {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

/* Prevent body scroll when open */
body.menu-open { overflow: hidden; }

.mobile-menu__panel {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem var(--container-px) 2rem;
}

.mobile-menu__close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  padding: .5rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
}

.mobile-menu__logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 2.5rem;
}

.mobile-menu__logo .logo-mark {
  color: var(--color-primary);
  font-size: 1.25rem;
}

.mobile-menu__logo .logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
}

.mobile-menu__logo .logo-text em {
  font-style: italic;
  color: var(--color-primary);
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.mobile-menu__item {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-text);
  padding: .75rem 0;
  border-bottom: 1px solid rgba(74,107,93,.1);
  transition: color var(--transition), padding-left var(--transition);
}

.mobile-menu__item:hover {
  color: var(--color-primary);
  padding-left: .5rem;
}

.mobile-menu__cta {
  margin-top: 2rem;
  text-align: center;
  justify-content: center;
}

.mobile-menu__footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(74,107,93,.1);
  font-size: .875rem;
  color: var(--color-text-light);
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.mobile-menu__footer a {
  color: var(--color-primary);
}

/* ======================
   HERO (kit .hero)
   ====================== */
.hero {
  position: relative;
  min-height: 90svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #2c3e35;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 62, 53, 0.70) 0%,
    rgba(74, 107, 93, 0.40) 60%,
    rgba(44, 44, 44, 0.30) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding-block: 6rem 5rem;
}

.hero__kicker {
  font-size: .875rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-secondary);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.08;
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--color-secondary);
}

.hero__sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,.85);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}


/* Hero CTA override — solid white background for visibility on dark/green overlay */
.hero__actions .btn--primary {
  background: #c8b89a !important;  /* warm beige — stands out on dark green overlay */
  color: #2c3e35 !important;
  border-color: #c8b89a !important;
  font-weight: 900;
  letter-spacing: .06em;
}

.hero__actions .btn--primary:hover {
  background: #e0d4bc !important;
  border-color: #e0d4bc !important;
  transform: translateY(-2px);
}

.hero__actions .btn--ghost {
  border-color: rgba(255,255,255,.9) !important;
  color: #ffffff !important;
  font-weight: 700;
}

.hero__actions .btn--ghost:hover {
  background: rgba(255,255,255,.2) !important;
  border-color: var(--color-white) !important;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.4);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50%       { opacity: 1;  transform: scaleY(1.3); }
}

/* ======================
   PAGE HERO (inner pages)
   ====================== */
.page-hero {
  background: var(--color-primary);
  padding: calc(var(--header-h) + 3rem) 0 3.5rem;
  text-align: center;
}

.page-hero h1 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.page-hero h1 em {
  color: var(--color-secondary);
}

.page-hero .section__label {
  color: rgba(255,255,255,.65);
}

.page-hero__sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,.8);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 0;
}

/* ======================
   SECTIONS
   ====================== */
.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section__intro {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section__label {
  display: block;
  font-size: .8125rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: .75rem;
}

.section__sub {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  margin-top: .75rem;
  margin-bottom: 0;
}

.section__cta-row {
  text-align: center;
  margin-top: 3rem;
}

/* ======================
   USP STRIP
   ====================== */
.usp-strip {
  background: var(--color-primary);
  padding-block: 1.25rem;
}

.usp-strip__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 3rem;
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  letter-spacing: .04em;
}

.usp-strip__icon {
  color: var(--color-secondary);
  margin-right: .4rem;
}

/* ======================
   CARD / CARD-GRID (kit .card, .card-grid)
   ====================== */
.card-grid {
  display: grid;
  gap: 1.75rem;
}

.card-grid--3 {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
}

/* Service cards */
.card--service {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.card--service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card__img {
  aspect-ratio: 1;
  overflow: hidden;
  flex-shrink: 0;
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.card--service:hover .card__img img {
  transform: scale(1.04);
}

.card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__title {
  font-size: 1.4rem;
  margin-bottom: .35rem;
}

.card__benefit {
  font-size: .875rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: .04em;
  margin-bottom: .75rem;
}

.card__text {
  font-size: .9375rem;
  color: var(--color-text-light);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.card .btn--outline {
  align-self: flex-start;
  padding: .5rem 1.25rem;
  font-size: .875rem;
}

/* Review cards */
.card--review {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-left: 3px solid var(--color-primary);
}

.card__stars {
  font-size: 1.25rem;
  color: #d4a017;
  letter-spacing: .1em;
}

.card__quote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-text);
  flex: 1;
}

.card__reviewer {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
}

.card__reviewer strong {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-text);
}

.card__reviewer span {
  color: var(--color-text-light);
  font-size: .8125rem;
}

.reviewer__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ======================
   OVER MIJ SECTION
   ====================== */
.over-mij-section {
  background: var(--color-bg-alt);
}

.over-mij__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.over-mij__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
}

.over-mij__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.over-mij__tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  padding: .5rem 1.25rem;
  border-radius: var(--radius-sm);
}

.over-mij__content h2 { margin-bottom: 1.25rem; }

.over-mij__content p {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.over-mij__stats {
  display: flex;
  gap: 2rem;
  margin-block: 2rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(74,107,93,.15);
  border-bottom: 1px solid rgba(74,107,93,.15);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
}

.stat__label {
  font-size: .8125rem;
  color: var(--color-text-light);
  margin-top: .25rem;
}

/* ======================
   CTA BAND (kit .cta-band)
   ====================== */
.cta-band {
  background: var(--color-primary);
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.cta-band__inner {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
}

.cta-band__label {
  color: rgba(255,255,255,.65);
  margin-bottom: .75rem;
}

.cta-band__title {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-band__title em { color: var(--color-secondary); }

.cta-band__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 2rem;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ======================
   REVIEWS SECTION
   ====================== */
.reviews-section {
  background: var(--color-bg-alt);
}

/* ======================
   CONTACT PREVIEW
   ====================== */
.contact-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-preview__info h2 { margin-bottom: 1.5rem; }

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-list li {
  display: flex;
  gap: .875rem;
  align-items: flex-start;
  font-size: .9375rem;
  color: var(--color-text-light);
  line-height: 1.55;
}

.contact-list a {
  color: var(--color-primary);
  transition: color var(--transition);
}
.contact-list a:hover { color: var(--color-primary-dk); }

.contact-list__icon { font-size: 1.1rem; margin-top: .1rem; flex-shrink: 0; }

.contact-preview__map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* ======================
   FOOTER KIT (kit .footer-kit)
   ====================== */
.footer-kit {
  background: var(--color-footer-bg);
  color: rgba(255,255,255,.75);
  padding-top: clamp(3rem, 6vw, 5rem);
}

.footer-kit__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-kit__brand p {
  margin-top: 1rem;
  font-size: .9rem;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
  max-width: 280px;
  margin-bottom: 0;
}

.footer-kit__nav h3,
.footer-kit__contact h3 {
  font-family: var(--font-body);
  font-size: .8125rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.footer-kit__nav ul {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-kit__nav a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}

.footer-kit__nav a:hover {
  color: var(--color-white);
}

.footer-kit__contact address {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-kit__contact a {
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-kit__contact a:hover { color: var(--color-white); }

.footer-kit__hours {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  margin-top: 1.25rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.footer-kit__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 1.5rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: .5rem;
}

.footer-kit__credits a {
  color: var(--color-secondary);
  opacity: .8;
  transition: opacity var(--transition);
}
.footer-kit__credits a:hover { opacity: 1; }

/* ======================
   MOBILE RESPONSIVE
   ====================== */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .desktop-nav { display: none; }
  .mobile-menu__trigger { display: flex; }

  /* Hero */
  .hero { min-height: 85svh; }
  .hero__content { padding-block: 5rem 3rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* Over mij */
  .over-mij__grid { grid-template-columns: 1fr; }
  .over-mij__img-wrap { aspect-ratio: 4/3; max-height: 380px; }

  /* Contact preview */
  .contact-preview__grid { grid-template-columns: 1fr; }
  .contact-preview__map iframe { height: 280px; }

  /* Footer */
  .footer-kit__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-kit__brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .footer-kit__grid { grid-template-columns: 1fr; }
  .footer-kit__bottom { flex-direction: column; text-align: center; }

  .over-mij__stats { gap: 1.25rem; }
  .stat__num { font-size: 1.6rem; }
}

/* Scroll reveal: disabled — cards always visible */
