/* =========================================================
   Lashes by Saqua — soft warm luxury
   Display: Marcellus · Script: Allura · Body: Mulish
   ========================================================= */

:root {
  /* --- warm neutral surfaces --- */
  --cream:       oklch(0.973 0.013 78);
  --cream-deep:  oklch(0.955 0.018 66);
  --blush:       oklch(0.945 0.022 38);
  --blush-deep:  oklch(0.915 0.030 34);

  /* --- ink (text), tinted warm --- */
  --ink:        oklch(0.375 0.018 52);
  --ink-soft:   oklch(0.505 0.016 52);
  --ink-deep:   oklch(0.285 0.020 48);

  /* --- gold accent --- */
  --gold:       oklch(0.745 0.090 80);
  --gold-deep:  oklch(0.560 0.085 72);
  --gold-soft:  oklch(0.880 0.045 82);

  --line:       oklch(0.885 0.014 66);

  --shadow-soft: 0 2px 8px oklch(0.55 0.04 60 / 0.06),
                 0 18px 40px oklch(0.55 0.05 55 / 0.10);

  /* --- spacing scale (4pt) --- */
  --space-2xs: 0.25rem;
  --space-xs:  0.5rem;
  --space-sm:  0.75rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --space-4xl: clamp(4rem, 11vw, 9rem);

  --measure: 60ch;
  --radius:  14px;
  --radius-lg: 22px;

  --font-display: 'Marcellus', 'Times New Roman', serif;
  --font-script:  'Allura', cursive;
  --font-body:    'Mulish', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.72;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

::selection { background: var(--gold-soft); color: var(--ink-deep); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink-deep);
  color: var(--cream);
  padding: var(--space-sm) var(--space-md);
  border-radius: 0 0 var(--radius) 0;
  z-index: 200;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- shared typography ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink-deep);
  line-height: 1.08;
  letter-spacing: 0.01em;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(2.1rem, 1.4rem + 3.4vw, 3.6rem);
  letter-spacing: -0.005em;
  line-height: 1.12;
}
h2 { font-size: clamp(1.85rem, 1.3rem + 2.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.5rem); }

p { max-width: var(--measure); }

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

/* ---------- buttons ---------- */
.btn {
  --btn-pad-y: 0.85em;
  --btn-pad-x: 1.7em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out),
              background-color 0.3s ease,
              color 0.3s ease;
  will-change: transform;
}
.btn-lg { font-size: 1rem; --btn-pad-y: 1.02em; --btn-pad-x: 2.1em; }

.btn-gold {
  background: linear-gradient(135deg, oklch(0.80 0.075 84), var(--gold));
  color: oklch(0.27 0.03 60);
  box-shadow: 0 8px 22px oklch(0.62 0.09 72 / 0.30);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px oklch(0.62 0.09 72 / 0.40);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-deep);
  border-color: var(--gold-deep);
}
.btn-ghost:hover {
  transform: translateY(-2px);
  background: var(--blush);
  border-color: var(--gold);
}

/* ---------- brand wordmark ---------- */
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4em;
  line-height: 1;
}
.brand-mark {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-deep);
}
.brand-script {
  font-family: var(--font-script);
  font-size: 1.9rem;
  color: var(--gold-deep);
  line-height: 0.6;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(0.973 0.013 78 / 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease, background-color 0.4s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  background: oklch(0.973 0.013 78 / 0.92);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--space-md) clamp(1.1rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}
.site-nav {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2.2rem);
  margin-left: auto;
  margin-right: var(--space-lg);
}
.site-nav a {
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  position: relative;
  padding: 0.2em 0;
  transition: color 0.3s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.site-nav a:hover { color: var(--ink-deep); }
.site-nav a:hover::after { transform: scaleX(1); }

/* ---------- layout rhythm ---------- */
section {
  padding-inline: clamp(1.1rem, 4vw, 2.5rem);
}
.over, .prijzen, .galerij, .contact {
  max-width: 1180px;
  margin-inline: auto;
}

/* ---------- HERO ---------- */
.hero {
  max-width: 1320px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(2.5rem, 6vw, 5.5rem) var(--space-4xl);
  padding-inline: clamp(1.1rem, 4vw, 2.5rem);
}
.hero-text, .hero-image,
.over-text, .over-image { min-width: 0; }
.hero-text { max-width: 33rem; }
.eyebrow { overflow-wrap: break-word; }

.hero-wordmark {
  position: relative;
  margin: var(--space-xs) 0 var(--space-lg);
  line-height: 1;
}
.wordmark-lashes {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 1.6rem + 4vw, 4.4rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-deep);
}
.wordmark-wave {
  position: absolute;
  top: -0.55em;
  right: 0.4em;
  width: clamp(120px, 26vw, 200px);
  height: auto;
  stroke: var(--gold);
  stroke-width: 1.4;
  stroke-linecap: round;
  opacity: 0.92;
}
.wordmark-script {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 1.4rem + 4vw, 4rem);
  color: var(--gold-deep);
  line-height: 0.7;
  margin-top: 0.1em;
  margin-left: 1.2em;
}

.hero h1 {
  margin-bottom: var(--space-md);
  max-width: 14ch;
}
.hero-sub {
  color: var(--ink-soft);
  font-size: 1.08rem;
  margin-bottom: var(--space-xl);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
}

.hero-image {
  position: relative;
  justify-self: end;
}
.hero-image img {
  width: min(100%, 440px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 240px 240px var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.hero-image::before {
  content: "";
  position: absolute;
  inset: -10px -10px 14px;
  border: 1px solid var(--gold);
  border-radius: 248px 248px 28px 28px;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
  transform: translate(10px, 10px);
}

/* ---------- OVER FARAH ---------- */
.over {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-block: var(--space-4xl);
}
.over-image { position: relative; }
.over-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.over-badge {
  position: absolute;
  bottom: -14px;
  right: -10px;
  background: var(--cream);
  color: var(--gold-deep);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  padding: 0.55em 1.1em;
  border-radius: 100px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}
.over-text p { margin-top: var(--space-md); color: var(--ink-soft); }
.over-text p:first-of-type { margin-top: var(--space-lg); }
.over-signoff {
  margin-top: var(--space-lg) !important;
  color: var(--ink) !important;
  font-style: italic;
}
.over-name {
  font-family: var(--font-script);
  font-size: 2.4rem;
  color: var(--gold-deep);
  margin-top: var(--space-xs) !important;
  line-height: 1;
}

/* ---------- PRIJZEN ---------- */
.prijzen {
  padding-block: var(--space-4xl);
  background:
    radial-gradient(120% 80% at 50% 0%, var(--blush) 0%, transparent 60%);
  border-radius: var(--radius-lg);
}
.prijzen-head { text-align: center; max-width: 40rem; margin-inline: auto; }
.prijzen-head .eyebrow { margin-inline: auto; }
.prijzen-intro {
  margin: var(--space-md) auto 0;
  color: var(--ink-soft);
}
.prijzen-groepen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 880px;
  margin: var(--space-3xl) auto 0;
}
.prijs-groep h3 {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  letter-spacing: 0.04em;
  color: var(--ink-deep);
  margin-bottom: var(--space-lg);
}
.prijs-groep h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) , transparent);
}
.groep-sub { margin-top: var(--space-2xl); }

.prijs-lijst { list-style: none; padding: 0; }
.prijs-lijst li {
  display: flex;
  align-items: baseline;
  gap: var(--space-xs);
  padding: 0.62em 0;
  font-size: 1.02rem;
}
.prijs-lijst li + li { border-top: 1px solid var(--line); }
.dienst { color: var(--ink); }
.dienst em {
  font-style: normal;
  color: var(--gold-deep);
  font-size: 0.92em;
  letter-spacing: 0.02em;
}
.leader {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-0.2em);
  min-width: 1.5rem;
}
.prijs {
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--ink-deep);
  white-space: nowrap;
}

.binnenkort {
  text-align: center;
  margin-top: var(--space-3xl);
}
.binnenkort-label {
  margin: 0 auto var(--space-xs);
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.binnenkort-items {
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.1rem + 1vw, 1.9rem);
  color: var(--ink-deep);
}
.prijzen-cta { text-align: center; margin-top: var(--space-2xl); }

/* ---------- GALERIJ ---------- */
.galerij { padding-block: var(--space-4xl); }
.galerij-head { text-align: center; margin-bottom: var(--space-2xl); }
.galerij-head .eyebrow { margin-inline: auto; }

.galerij-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: clamp(0.8rem, 1.8vw, 1.4rem);
}
.g-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  background: var(--blush);
}
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.g-item:hover img { transform: scale(1.05); }
.g-tall { grid-row: span 2; }
.g-tall img { object-position: center 64%; }
.g-wide { grid-column: span 2; }
.g-wide img { object-position: 28% center; }

.galerij-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
  text-align: center;
}
.galerij-cta p { color: var(--ink-soft); }

/* ---------- CONTACT ---------- */
.contact {
  padding-block: var(--space-4xl);
}
.contact-inner {
  background:
    radial-gradient(130% 100% at 50% 0%, var(--blush-deep) 0%, var(--blush) 45%, transparent 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 6vw, 4.5rem) clamp(1.4rem, 5vw, 4rem);
  text-align: center;
}
.contact-inner .eyebrow { margin-inline: auto; }
.contact-lead {
  margin: var(--space-md) auto var(--space-xl);
  color: var(--ink-soft);
  font-size: 1.06rem;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
}
.praktisch {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--gold-soft);
}
.praktisch dt {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: var(--space-2xs);
}
.praktisch dd { color: var(--ink); font-size: 0.98rem; }

/* ---------- FOOTER ---------- */
.site-footer {
  margin-top: var(--space-4xl);
  border-top: 1px solid var(--line);
  background: var(--cream-deep);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--space-2xl) clamp(1.1rem, 4vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}
.brand-footer .brand-mark { font-size: 1.2rem; }
.brand-footer .brand-script { font-size: 1.6rem; }
.footer-social { display: flex; gap: var(--space-lg); }
.footer-social a {
  color: var(--ink-soft);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}
.footer-social a:hover { color: var(--gold-deep); }
.footer-fine {
  width: 100%;
  color: var(--ink-soft);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  opacity: 0.85;
}

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .g-item img, .btn { transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .site-nav { display: none; }
  .hero {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    padding-top: var(--space-xl);
  }
  .hero-text { max-width: none; order: 1; }
  .hero-image { order: 2; justify-self: center; }
  .hero h1 { max-width: 18ch; }
  .over { grid-template-columns: 1fr; }
  .over-image { order: 2; max-width: 420px; }
  .over-text { order: 1; }
}

@media (max-width: 620px) {
  .galerij-grid { grid-template-columns: repeat(2, 1fr); }
  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 1; }
  .header-cta { padding: 0.7em 1.3em; }
}

/* Phones: stack CTAs full-width for comfortable tap targets */
@media (max-width: 480px) {
  .hero-actions,
  .contact-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn,
  .contact-actions .btn { width: 100%; }
  .eyebrow { letter-spacing: 0.2em; }
  .wordmark-wave { display: none; }
}
