/* ═══════════════════════════════════════════════
   V7 — Refined
   Base: V6, with:
   - Body font-size 1rem (matching V2)
   - Nature banner strip above footer on every page
   - "About Me" nav label
   - Price €75
   ═══════════════════════════════════════════════ */

:root {
  --bg:           #FFFFFF;
  --bg-soft:      #F3F3F9;
  --bg-accent:    #EAEBF5;
  --text:         #303540;
  --text-light:   #6A6E82;
  --heading:      #1E2030;
  --accent:       #7E84B0;
  --accent-hover: #636AA0;
  --border:       #D4D6E8;
  --shadow-sm:    0 2px 12px rgba(126,132,176,0.10);
  --shadow-md:    0 8px 32px rgba(126,132,176,0.14);
  --nav-font:     'Nunito Sans', sans-serif;
  --head-font:    'Cardo', serif;
  --hero-font:    'Cormorant Garamond', serif;
  --body-font:    'Crimson Pro', serif;
  --max-text:     720px;
  --max-wide:     1080px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; border-radius: 0; }
a { color: inherit; text-decoration: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--head-font);
  color: var(--heading);
  line-height: 1.2;
  font-weight: 400;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); margin-bottom: 0.75rem; }
p  { margin-bottom: 1.25em; }
p:last-child { margin-bottom: 0; }

/* ── Utility ── */
.container { max-width: var(--max-wide); margin: 0 auto; padding: 0 1.5rem; }
.text-container { max-width: var(--max-text); margin: 0 auto; }
.section { padding: 88px 0; }
.section-soft { background: var(--bg-soft); }
.section-accent { background: var(--bg-accent); }
.divider {
  width: 40px; height: 3px;
  background: linear-gradient(90deg, var(--accent), #A0A5CC);
  margin: 1rem 0 2rem;
}
.divider-center { margin-left: auto; margin-right: auto; }

/* ── Fade-in ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--nav-font);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 0.875rem 2rem;
  border: 1.5px solid var(--accent);
  color: var(--accent); background: transparent;
  cursor: pointer; transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.btn:hover, .btn:focus-visible {
  background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); outline: none;
}
.btn-filled { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-filled:hover, .btn-filled:focus-visible {
  background: var(--accent-hover); border-color: var(--accent-hover);
  color: #fff; box-shadow: var(--shadow-md);
}

/* ─────────────────────────────────────────────
   HEADER
───────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s, box-shadow 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 0;
}
.wordmark {
  font-family: var(--head-font); font-size: 1.35rem; font-style: italic;
  color: var(--heading); text-decoration: none; flex-shrink: 0;
}
.main-nav ul {
  display: flex; gap: 2rem; list-style: none; align-items: center;
}
.main-nav a {
  font-family: var(--nav-font); font-size: 0.82rem; font-weight: 400; letter-spacing: 0.01em;
  color: var(--text); transition: color 0.2s; text-decoration: none;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--accent); }
.lang-switcher {
  display: flex; gap: 0.75rem; font-family: var(--nav-font); font-size: 0.75rem;
  letter-spacing: 0.05em; text-transform: uppercase; align-items: center;
}
.lang-switcher a { color: var(--text-light); transition: color 0.2s; text-decoration: none; }
.lang-switcher a:hover { color: var(--accent); }
.lang-switcher .lang-active { color: var(--accent); font-weight: 700; }

/* Desktop: nav visible, hamburger hidden */
@media (min-width: 769px) {
  .main-nav { display: flex; align-items: center; gap: 2rem; }
  .hamburger { display: none !important; }
  .main-nav .lang-switcher { border-left: 1px solid var(--border); padding-left: 1.5rem; }
}

/* Hamburger — mobile only */
.hamburger {
  background: none; border: none; cursor: pointer; padding: 0.5rem;
  display: none; /* hidden by default; shown only via media query below */
  flex-direction: column; gap: 5px; z-index: 1000;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--text); transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 768px) {
  .hamburger { display: flex; }

  /* Hide nav by default on mobile */
  .main-nav { display: none; }

  /* When the menu opens, neutralise the header's stacking context so that
     position:fixed on the nav child resolves to the viewport (not the header).
     iOS Safari treats position:sticky + z-index AND backdrop-filter as
     containing blocks for fixed descendants — removing all three fixes it. */
  .site-header.nav-open {
    position: relative;
    z-index: auto;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* Hamburger must sit above the nav overlay */
  .site-header.nav-open .hamburger {
    position: relative;
    z-index: 10000;
  }

  /* Full-screen overlay on the nav itself */
  .main-nav.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: #FFFFFF;
    z-index: 9999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 5rem 2rem 3rem;
    gap: 0;
  }

  .main-nav ul { flex-direction: column; text-align: center; gap: 1.75rem; width: 100%; list-style: none; }
  .main-nav a { font-size: 1.1rem; }
  .main-nav .lang-switcher { margin-top: 2.5rem; border-left: none; padding-left: 0; padding-bottom: 1rem; }
}

/* ─────────────────────────────────────────────
   HERO
   Photo framing: V1 style — border, no radius, no pseudo bg
───────────────────────────────────────────── */
.hero { padding: 80px 0; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-text { max-width: 520px; }
.hero-eyebrow {
  font-family: var(--nav-font); font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem; font-weight: 600;
}
/* V2 font (Cormorant Garamond italic) for hero headline */
.hero h1 {
  font-family: var(--hero-font);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4rem);
  margin-bottom: 1.25rem;
}
.hero-tagline {
  font-size: 1.05rem; color: var(--text-light); margin-bottom: 2rem; line-height: 1.75;
}
/* V1 photo framing — thin border, no radius, no decorative background */
.hero-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 20%;
  border: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-image { order: -1; }
  .hero-image img { aspect-ratio: 3/2; }
}

/* ─────────────────────────────────────────────
   INTRO SECTION
   V4 style — left-aligned, generous space, no box
───────────────────────────────────────────── */
.section.intro { padding: 112px 0; }
.intro { text-align: left; }
.intro-lead {
  font-size: 1.15rem;
  max-width: 640px;
  color: var(--text);
  line-height: 1.9;
}

/* ─────────────────────────────────────────────
   CARDS
───────────────────────────────────────────── */
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem;
}
.card {
  background: var(--bg); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); padding: 2.25rem 2rem;
  text-decoration: none; display: block;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-eyebrow {
  font-family: var(--nav-font); font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; font-weight: 700;
}
.card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.card p { font-size: 0.9rem; color: var(--text-light); margin: 0; line-height: 1.68; }
.card-arrow {
  display: block; margin-top: 1.5rem;
  font-family: var(--nav-font); font-size: 0.75rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent); font-weight: 600;
}
@media (max-width: 768px) { .cards-grid { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────────
   TESTIMONIALS CAROUSEL
───────────────────────────────────────────── */
.testimonials { text-align: center; }
.carousel-track {
  position: relative; min-height: 200px; margin: 2.5rem auto 0; max-width: 700px;
}
.carousel-slide { display: none; opacity: 0; transition: opacity 0.5s ease; }
.carousel-slide.active { display: block; opacity: 1; }
.carousel-quote {
  font-size: 1.15rem; font-style: italic; line-height: 1.85; color: var(--text);
  padding: 2rem 2.5rem; background: var(--bg-soft);
  box-shadow: var(--shadow-sm); text-align: left;
}
.carousel-attr {
  display: block; margin-top: 1.25rem;
  font-family: var(--nav-font); font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); font-weight: 600;
}
.carousel-controls {
  display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 1.75rem;
}
.carousel-btn {
  background: var(--bg-soft); border: none; color: var(--text-light);
  width: 38px; height: 38px; cursor: pointer; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.carousel-btn:hover { background: var(--accent); color: #fff; box-shadow: var(--shadow-md); }
.carousel-dots { display: flex; gap: 0.5rem; }
.carousel-dot {
  width: 8px; height: 8px; background: var(--border); border: none;
  cursor: pointer; transition: background 0.2s; padding: 0;
}
.carousel-dot.active { background: var(--accent); }

/* ─────────────────────────────────────────────
   CTA STRIP
───────────────────────────────────────────── */
.cta-strip { text-align: center; padding: 80px 0; background: var(--bg-accent); }
.cta-strip h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.cta-strip p { color: var(--text-light); margin-bottom: 2rem; }

/* ─────────────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────────────── */
.page-hero { padding: 64px 0 48px; background: var(--bg-soft); }
.page-hero h1 { margin-bottom: 0.5rem; }
.page-hero .lead { font-size: 1.05rem; color: var(--text-light); max-width: 600px; }

/* ─────────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────────── */
.about-photo { margin-bottom: 3rem; }
.about-photo img {
  width: 100%; max-width: 460px; aspect-ratio: 3/4;
  object-fit: cover; object-position: top;
  border-radius: 0;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.bio-section { margin-bottom: 3rem; }
.bio-section h3 {
  font-size: 1.25rem; margin-bottom: 1rem;
  padding-bottom: 0.6rem; border-bottom: 2px solid var(--border);
}
.credentials-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.credentials-list li {
  display: flex; align-items: baseline; gap: 1rem;
  padding: 0.875rem 1.25rem; background: var(--bg-soft);
  box-shadow: var(--shadow-sm); font-size: 0.95rem;
}
.cred-abbr {
  font-family: var(--nav-font); font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); min-width: 64px; flex-shrink: 0; font-weight: 700;
}

/* ─────────────────────────────────────────────
   APPROACH PAGE
───────────────────────────────────────────── */
.approach-block { margin-bottom: 4rem; padding-bottom: 4rem; border-bottom: 1px solid var(--border); }
.approach-block:last-child { border-bottom: none; margin-bottom: 0; }
.approach-block h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
.approach-block .external-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--nav-font); font-size: 0.78rem; letter-spacing: 0.05em;
  color: var(--accent); background: var(--bg-soft); padding: 0.45rem 1rem;
  margin-top: 0.75rem; font-weight: 600;
  box-shadow: var(--shadow-sm); transition: box-shadow 0.2s, background 0.2s;
}
.approach-block .external-link:hover { box-shadow: var(--shadow-md); background: var(--bg-accent); }

/* ─────────────────────────────────────────────
   WORK WITH ME PAGE
───────────────────────────────────────────── */
.practical-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 4rem;
}
.practical-item {
  padding: 2rem; background: var(--bg-soft);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.practical-item h3 {
  font-size: 1.05rem; font-family: var(--nav-font); font-weight: 700;
  margin-bottom: 0.75rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border);
}
.practical-item p, .practical-item li { font-size: 0.95rem; }
.practical-item ul { list-style: none; }
.practical-item li { padding: 0.25rem 0; }
.studio-photo { margin-top: auto; padding-top: 1.5rem; }
.studio-photo img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 0; border: 1px solid var(--border);
}
@media (max-width: 768px) { .practical-grid { grid-template-columns: 1fr; } }
.cal-wrapper {
  background: var(--bg-soft); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); padding: 2rem; margin-bottom: 3rem;
}
.cal-wrapper h2 { margin-bottom: 0.5rem; }
.cal-label { color: var(--text-light); font-size: 0.95rem; margin-bottom: 1.5rem; }
#my-cal-inline { height: 700px; }
.contact-strip {
  display: flex; gap: 2rem; flex-wrap: wrap; align-items: center;
  padding: 1.75rem 2rem; background: var(--bg-accent); border: 1px solid var(--border);
}
.contact-strip a {
  font-family: var(--nav-font); font-size: 0.875rem;
  color: var(--accent); text-decoration: underline; text-underline-offset: 3px; font-weight: 600;
}

/* ─────────────────────────────────────────────
   FAQ PAGE
───────────────────────────────────────────── */
.faq-category { margin-bottom: 3rem; }
.faq-category h2 {
  font-size: 0.75rem; font-family: var(--nav-font); font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; font-family: var(--head-font); font-size: 1.1rem;
  color: var(--heading); cursor: pointer; text-align: left; gap: 1rem;
}
.faq-icon {
  flex-shrink: 0; width: 22px; height: 22px;
  background: var(--bg-soft); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--accent); transition: transform 0.3s, background 0.2s; font-style: normal;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg); background: var(--accent); color: #fff; border-color: var(--accent);
}
.faq-answer { padding: 0 0 1.5rem; }
.faq-answer p { color: var(--text); font-size: 0.975rem; line-height: 1.78; }

/* ─────────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h2 { font-size: 1.6rem; margin-bottom: 1.5rem; }
.contact-info-list { list-style: none; }
.contact-info-list li {
  padding: 0.875rem 0; border-bottom: 1px solid var(--border); font-size: 0.95rem;
}
.contact-info-list li:first-child { border-top: 1px solid var(--border); }
.contact-label {
  display: block; font-family: var(--nav-font); font-size: 0.68rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.2rem; font-weight: 700;
}
.contact-info-list a { text-decoration: underline; text-underline-offset: 3px; }
.contact-cta { margin-top: 2rem; }
.contact-form-wrap h2 { font-size: 1.6rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-family: var(--nav-font); font-size: 0.72rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light);
  margin-bottom: 0.5rem; font-weight: 600;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%; padding: 0.875rem 1.125rem;
  border: 1.5px solid var(--border);
  background: var(--bg-soft); font-family: var(--body-font);
  font-size: 0.975rem; color: var(--text); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  border-radius: 0;
}
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(126,132,176,0.12);
}
.form-group textarea { height: 150px; resize: vertical; }

/* Privacy consent checkbox */
.form-group-check {
  display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.5rem;
}
.form-group-check label {
  font-family: var(--nav-font); font-size: 0.82rem; letter-spacing: 0; text-transform: none;
  color: var(--text); margin-bottom: 0; font-weight: 400; cursor: pointer; line-height: 1.5;
}
.form-group-check input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; cursor: pointer;
  accent-color: var(--accent);
}
.form-status { margin-top: 1rem; font-size: 0.9rem; }
.form-status.success { color: #4A7A55; }
.form-status.error   { color: #A85050; }

/* ─────────────────────────────────────────────
   NATURE BANNER
───────────────────────────────────────────── */
.nature-banner {
  width: 100%;
  overflow: hidden;
}
.nature-banner img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
  box-shadow: none;
  border: none;
}
.photo-credit {
  font-family: var(--nav-font);
  font-size: 10px;
  color: var(--text-light);
  opacity: 0.55;
  text-align: right;
  padding: 4px 10px 0;
  margin: 0;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .nature-banner img { height: 140px; }
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.site-footer {
  background: var(--bg-soft); border-top: 1px solid var(--border);
  padding: 48px 0; font-family: var(--nav-font); font-size: 0.78rem;
}
.footer-inner {
  display: flex; flex-direction: column; gap: 1.25rem; align-items: center; text-align: center;
}
.footer-name { font-family: var(--head-font); font-size: 1.25rem; color: var(--heading); font-style: italic; }
.footer-contact { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer-contact a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
.footer-contact a:hover { color: var(--accent); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--text-light); text-decoration: underline; text-underline-offset: 3px; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { color: var(--text-light); }
