/* =====================================================
   DIËTISTENPRAKTIJK WEVER — styles.css
   ===================================================== */

/* ----- Design tokens ----- */
:root {
  /* Core palette (unchanged) */
  --forest:        #1E2D24;
  --forest-mid:    #2E4A38;
  --green:         #4A7A55;
  --green-hover:   #3A6044;
  --green-light:   #8FBF9A;
  --sage-pale:     #E6EDE8;
  --gold:          #C4A55A;
  --gold-light:    #E8D5A0;
  --parchment:     #F6F1E8;
  --parchment-mid: #EDE7DA;
  --white:         #FFFFFF;
  --text:          #1E1C18;
  --text-muted:    #6B6355;
  --border:        #D9D2C4;

  /* Lemon accent additions */
  --lemon-wash:    #FDFBF2;  /* barely-there warm cream tint */
  --gold-bright:   #D4B840;  /* brighter lemon-gold for hover energy */

  /* Sizing */
  --radius-sm:     4px;
  --radius:        8px;
  --radius-lg:     16px;
  --container:     1200px;
  --header-h:      82px;
  --ease:          0.3s ease;
}

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

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

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.75;
  font-size: 1rem;
}

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

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

ul { list-style: none; }
figure { margin: 0; }

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

h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: 1.15rem; font-weight: 600; }

/* ----- Layout ----- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ----- Eyebrow label ----- */
.eyebrow {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ----- Text links ----- */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green);
  position: relative;
  transition: color var(--ease), gap var(--ease);
}

.text-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
  transition: opacity var(--ease);
}

.text-link:hover {
  gap: 0.7rem;
  color: var(--green-hover);
}

.text-link:hover::after {
  opacity: 1;
}

.text-link-white {
  color: var(--white);
}

.text-link-white::after {
  background: var(--white);
  opacity: 0.4;
}

.text-link-white:hover {
  color: rgba(255,255,255,0.85);
}

.text-link-gold {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.text-link-gold::after {
  background: var(--gold);
  opacity: 0.5;
}

.text-link-gold:hover {
  color: var(--gold-bright);
}

/* ----- Standard button ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

.btn:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--forest);
  border-color: var(--white);
}

/* ----- Skip link ----- */
.skip-link {
  position: absolute;
  top: -60px;
  left: 1.5rem;
  z-index: 999;
  background: var(--green);
  color: var(--white);
  padding: 0.6rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  transition: top var(--ease);
}

.skip-link:focus {
  top: 0;
}

/* ----- Grain overlay ----- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(246,241,232,0.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2.5rem;
  position: relative;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo {
  height: 68px;       /* increased from 50px — more prominent, still safe at 2× */
  width: auto;
  transition: opacity var(--ease);
}

.logo-link:hover .logo {
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links li a {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--ease);
  letter-spacing: 0.01em;
}

/* Gold underline — ties nav interaction to the gold/lemon accent */
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 1px;
  left: 0.9rem;
  right: 0.9rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--gold);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  transform: scaleX(1);
}

.nav-links li a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--ease);
}

.hamburger:hover {
  background: var(--parchment-mid);
}

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

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* =====================================================
   HERO — split screen
   ===================================================== */

.hero {
  display: grid;
  grid-template-columns: 44fr 56fr;
  min-height: clamp(400px, 65vh, 660px);
}

.hero-text {
  background: var(--forest);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 4rem 3.5rem 5vw;
  gap: 1.5rem;
  position: relative;
}

/* Gold accent line — hidden for clinical/plain hero */
.hero-text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold) 35%, var(--gold) 65%, transparent);
  opacity: 0;
}

.hero-text h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.2;
}

.hero-text h1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--white);
}

.hero-text > p {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  max-width: 360px;
  line-height: 1.8;
  margin: 0;
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* =====================================================
   HERO TRUST BADGE (GLI keurmerk)
   ===================================================== */

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
}

.trust-badge::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Ccircle cx='7' cy='7' r='6' fill='none' stroke='%23C4A55A' stroke-width='1.5'/%3E%3Cpolyline points='4,7 6.5,9.5 10,5' fill='none' stroke='%23C4A55A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}

.trust-note {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.04em;
}

/* =====================================================
   SECTION: QUOTE
   ===================================================== */

/* --lemon-wash (#FDFBF2) replaces --parchment here —
   barely different but the slight warm tint makes this
   section feel like morning sunlight rather than plain cream */
.section-quote {
  padding: 8rem 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Organic warm circle — very faint radial glow,
   like light refracted through a citrus slice */
.section-quote::before {
  content: '';
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,184,64,0.10) 0%, rgba(212,184,64,0.03) 50%, transparent 70%);
  pointer-events: none;
}

.quote-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.quote-inner blockquote {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  color: var(--forest);
  margin-bottom: 1.25rem;
}

.quote-inner cite {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.quote-inner cite::before {
  content: '— ';
}

.quote-body {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* =====================================================
   SECTION: SERVICES
   ===================================================== */

.section-services {
  padding: 9rem 0;
  background: var(--white);
}

.services-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 7rem;
  align-items: start;
}

.services-image {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}

.services-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}

.services-content .eyebrow {
  margin-bottom: 0.75rem;
}

.services-content h2 {
  margin-bottom: 1rem;
  line-height: 1.2;
}

.services-content h2 em {
  font-style: italic;
  font-weight: 400;
}

/* Gold bar under the services heading —
   a small visual accent that grounds the text */
.services-content h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-top: 1.1rem;
  opacity: 0.65;
}

.services-intro {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.25rem;
  margin-top: 1.25rem;
  max-width: 520px;
}

.services-list {
  margin-bottom: 2.5rem;
}

.service-item {
  display: grid;
  grid-template-columns: 1.75rem 1fr;
  gap: 1.25rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.service-item:first-child {
  border-top: 1px solid var(--border);
}

.service-num {
  font-family: 'Manrope', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  padding-top: 0.2rem;
  flex-shrink: 0;
}

.service-name {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.3rem;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* =====================================================
   SECTION: PHOTO GRID — 2-photo asymmetric
   ===================================================== */

.section-photos {
  padding: 3rem 2.5rem;
  background: var(--white);
}

/* Two photos, different corner treatments and proportions
   so they don't feel like a template row */
.photo-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 0.6rem;
  height: 560px;
  max-width: 1400px;
  margin: 0 auto;
}

.photo-a {
  overflow: hidden;
  margin: 0;
  /* Rounded right edges — organic, like a fruit cross-section */
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.photo-b {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  /* Subtle gold border — one of the few deliberate gold accent touches */
  outline: 1.5px solid rgba(196,165,90,0.28);
  outline-offset: -1px;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s ease;
}

.photo-a:hover img,
.photo-b:hover img {
  transform: scale(1.04);
}

/* =====================================================
   SECTION: ABOUT TEASER
   ===================================================== */

.section-about {
  padding: 9rem 0;
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 7rem;
  align-items: center;
}

.about-text .eyebrow {
  margin-bottom: 0.75rem;
}

.about-text h2 {
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.about-text h2 em {
  font-style: italic;
  font-weight: 400;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-text .text-link {
  margin-top: 0.5rem;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: -12px 12px 12px -12px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: 0.3;
  z-index: 0;
}

/* =====================================================
   SECTION: CONTACT CTA
   ===================================================== */

.section-contact-cta {
  padding: 10rem 0;
  background: var(--forest);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Very faint warm radial glow at the top —
   like sunlight catching the top of a dark surface */
.section-contact-cta::before {
  content: '';
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,165,90,0.09) 0%, transparent 65%);
  pointer-events: none;
}

.section-contact-cta h2 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.section-contact-cta h2 em {
  font-style: normal;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

.section-contact-cta .text-link-gold {
  position: relative;
  z-index: 1;
}

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */

.page-hero {
  padding: 5rem 0 4rem;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.page-hero .eyebrow {
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--white);
  font-weight: 400;
  margin-bottom: 1rem;
  max-width: 700px;
}

.page-hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.75;
}

/* =====================================================
   FOOTER
   ===================================================== */

footer {
  background: #171F19;
  color: rgba(255,255,255,0.6);
  padding: 4.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

footer h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-nav ul li,
.footer-contact ul li {
  margin-bottom: 0.6rem;
  font-size: 0.88rem;
}

.footer-nav ul a,
.footer-contact ul a {
  color: rgba(255,255,255,0.55);
  transition: color var(--ease);
}

.footer-nav ul a:hover,
.footer-contact ul a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  transition: color var(--ease);
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* =====================================================
   ABOUT PAGE — PORTRAIT SECTION
   ===================================================== */

.about-portrait {
  padding: 6.5rem 0;
  background: var(--white);
}

.portrait-inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 6rem;
  align-items: start;
}

.portrait-text .eyebrow {
  margin-bottom: 0.5rem;
}

.portrait-name {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.portrait-role {
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.portrait-placeholder {
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--gold);
  background: var(--parchment);
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.92rem;
  margin: 1.5rem 0 2.25rem;
  line-height: 1.7;
}

.credentials {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.credentials li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
}

.credentials li::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.credentials .cred-highlight {
  color: var(--forest);
  font-weight: 700;
}

.portrait-photo {
  position: relative;
}

.portrait-photo::before {
  content: '';
  position: absolute;
  inset: -10px 10px 10px -10px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: 0.28;
  z-index: 0;
}

.portrait-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  display: block;
}

/* =====================================================
   ABOUT PAGE — GLI SECTION
   ===================================================== */

.gli-section {
  padding: 6rem 0;
  background: var(--parchment);
  border-top: 1px solid var(--border);
}

.gli-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.gli-label {
  padding-top: 0.3rem;
}

.gli-label .eyebrow {
  margin-bottom: 1rem;
}

.gli-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--parchment-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
}

.gli-badge::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Ccircle cx='9' cy='9' r='8' fill='none' stroke='%23C4A55A' stroke-width='1.5'/%3E%3Cpolyline points='5,9 7.5,11.5 13,6' fill='none' stroke='%23C4A55A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}

.gli-content h2 {
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.gli-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 560px;
}

.gli-content p strong {
  color: var(--forest);
  font-weight: 700;
}

.gli-content .text-link {
  margin-top: 0.75rem;
}

/* =====================================================
   RESPONSIVE — Large tablet (≤ 1024px)
   ===================================================== */

@media (max-width: 1024px) {
  .services-inner {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }

  .about-inner {
    gap: 4rem;
  }

  .hero-text {
    padding: 4rem 3.5rem 4rem 5vw;
  }

  .hero-brand-logo img {
    height: 84px;
  }
}

/* =====================================================
   RESPONSIVE — Tablet portrait (≤ 900px)
   ===================================================== */

@media (max-width: 900px) {
  .services-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-image {
    position: static;
  }

  .services-image img {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image {
    order: -1;
  }

  .about-image img {
    height: 380px;
  }

  .about-image::before {
    display: none;
  }

  .portrait-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .portrait-photo {
    order: -1;
    max-width: 480px;
  }

  .portrait-photo::before {
    display: none;
  }

  .gli-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* =====================================================
   RESPONSIVE — Mobile (≤ 768px)
   ===================================================== */

@media (max-width: 768px) {
  :root {
    --header-h: 68px;
  }

  .logo {
    height: 54px;
  }

  /* Mobile navigation */
  .hamburger {
    display: flex;
  }

  nav#nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(246,241,232,0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0 1.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  nav#nav-menu.open {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-links li a {
    display: block;
    padding: 0.85rem 2rem;
    border-radius: 0;
    font-size: 0.95rem;
  }

  .nav-links li a::after {
    display: none;
  }

  /* Hero: image first on mobile, text below */
  .hero {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .hero-image {
    order: -1;
    height: 55vw;
    min-height: 260px;
    max-height: 400px;
    position: relative;
  }

  .hero-text {
    padding: 3rem 1.5rem 3.5rem;
    gap: 1.5rem;
  }

  .hero-text::before {
    display: none;
  }

  .hero-brand-logo img {
    height: 72px;
  }

  .hero-text > p {
    max-width: 100%;
  }

  /* Sections */
  .section-quote {
    padding: 5rem 0;
  }

  .section-services,
  .section-about {
    padding: 5rem 0;
  }

  .section-photos {
    padding: 1.5rem;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 52vw 44vw;
    height: auto;
    gap: 0.4rem;
  }

  .photo-a {
    border-radius: var(--radius);
  }

  .section-contact-cta {
    padding: 6rem 1.5rem;
  }

  .section-contact-cta h2 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .page-hero {
    padding: 3.5rem 0 3rem;
  }

  .about-portrait,
  .gli-section {
    padding: 4rem 0;
  }

  .portrait-photo img {
    aspect-ratio: 4 / 3;
  }
}

/* =====================================================
   RESPONSIVE — Small mobile (≤ 480px)
   ===================================================== */

@media (max-width: 480px) {
  .logo {
    height: 46px;
  }

  .hero-brand-logo img {
    height: 60px;
  }

  .hero-text h1 {
    font-size: 2.25rem;
  }

  .section-contact-cta h2 {
    font-size: 2.2rem;
  }

  .services-content h2,
  .about-text h2 {
    font-size: 1.9rem;
  }

  .portrait-name {
    font-size: 1.75rem;
  }
}
