/* ============================================================
   Edit Trunko Photography — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300..900&display=swap');

/* ── Variables ───────────────────────────────────────────── */
:root {
  --cream:       #F9F7F0;
  --warm-gray:   #D1D1C7;
  --olive:       #6C6F53;
  --gold:        #9E8C42;
  --plum:        #5A354C;
  --dark-plum:   #473346;
  --text:        #2d272b;
  --text-muted:  #7A7A70;
  --white:       #ffffff;

  --ff-serif:    'Cormorant Garamond', Georgia, serif;
  --ff-sans:     'Inter', system-ui, sans-serif;

  --max-w:       1280px;
  --gap:         clamp(1.5rem, 4vw, 3rem);

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --transition:  0.6s var(--ease-out);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

.eyebrow {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: clamp(0.62rem, 0.75vw, 0.7rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Layout helpers ──────────────────────────────────────── */
.container {
  width: min(var(--max-w), 100%);
  margin-inline: auto;
  padding-inline: var(--gap);
}
.section {
  padding-block: clamp(4rem, 10vw, 9rem);
}
.section--tight { padding-block: clamp(2.5rem, 6vw, 5rem); }

/* ── Scroll fade-in ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.8rem var(--gap) 0.95rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
  background: rgba(108, 111, 83, 0.50);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
}
.nav.scrolled {
  background: rgba(108, 111, 83, 0.80);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-block: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav__logo {
  text-align: left;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.18rem;
  text-decoration: none;
  transition: opacity 0.3s;
}
.nav__logo:hover { opacity: 0.85; }
.nav__logo-name {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 2.6vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
  line-height: 1;
}
.nav__logo-sub {
  font-family: var(--ff-sans);
  font-size: clamp(0.82rem, 1.2vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  color: #F9F7F0;
  white-space: nowrap;
  line-height: 1;
}
.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 3vw, 4rem);
  flex-wrap: nowrap;
}
.nav__links a {
  font-size: clamp(0.78rem, 0.88vw, 1rem);
  font-weight: 450;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(249,247,240,0.88);
  opacity: 1;
  border-bottom: 1px solid transparent;
  padding-bottom: 5px;
  transition: color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.nav__links a:hover { color: #473346; }
.nav__links .nav__book {
  border-bottom: 1px solid transparent;
  padding-bottom: 5px;
  color: rgba(249,247,240,0.88);
  transition: color 0.25s, border-color 0.25s;
}
.nav__links .nav__book:hover {
  color: #5A354C;
}
.nav__lang {
  font-size: clamp(0.85rem, 0.95vw, 1.25rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(249,247,240,0.45);
  cursor: pointer;
  user-select: none;
}
.nav__lang span.active { color: var(--cream); font-weight: 500; }
.nav__lang:hover { color: #473346; }
.nav__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-evenly;
  justify-self: end;
  align-self: stretch;
}
.nav__right a {
  font-size: clamp(0.85rem, 0.95vw, 1.05rem);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.04em;
  color: rgba(249,247,240,0.88);
  transition: color 0.25s;
  white-space: nowrap;
}
.nav__right a:hover { color: #5A354C; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  justify-content: flex-end;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  height: 1px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__hamburger span:nth-child(1) { width: 24px; }
.nav__hamburger span:nth-child(2) { width: 18px; }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
}

/* Backdrop */
.nav__mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.nav__mobile.open .nav__mobile-backdrop { opacity: 1; }

/* Sliding panel */
.nav__mobile-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 85vw);
  background: var(--dark-plum);
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}
.nav__mobile.open .nav__mobile-panel { transform: translateX(0); }

/* Panel header */
.nav__mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 1.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.nav__mobile-brand { display: flex; flex-direction: column; gap: 0.15rem; }
.nav__mobile-brand-name {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1;
}
.nav__mobile-brand-sub {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: rgba(249,247,240,0.5);
  line-height: 1;
}

/* Close button — animated X */
.nav__mobile-close {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 0.4rem;
  flex-shrink: 0;
}
.nav__mobile-close span {
  display: block;
  width: 22px;
  height: 1px;
  background: rgba(249,247,240,0.75);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav__mobile-close span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__mobile-close span:nth-child(2) { transform: rotate(-45deg) translate(5px, -5px); }

/* Nav links */
.nav__mobile-links {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 1.8rem;
  flex: 1;
  gap: 0.2rem;
}
.nav__mobile-links a {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 400;
  color: rgba(249,247,240,0.75);
  letter-spacing: 0.03em;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, padding-left 0.2s;
  opacity: 0;
  transform: translateX(18px);
  transition: color 0.2s, padding-left 0.2s, opacity 0.35s ease, transform 0.35s ease;
}
.nav__mobile-links a:last-child { border-bottom: none; }
.nav__mobile-links a:hover {
  color: var(--cream);
  padding-left: 0.5rem;
}
.nav__mobile.open .nav__mobile-links a {
  opacity: 1;
  transform: translateX(0);
}
.nav__mobile.open .nav__mobile-links a:nth-child(1) { transition-delay: 0.12s; }
.nav__mobile.open .nav__mobile-links a:nth-child(2) { transition-delay: 0.18s; }
.nav__mobile.open .nav__mobile-links a:nth-child(3) { transition-delay: 0.24s; }
.nav__mobile.open .nav__mobile-links a:nth-child(4) { transition-delay: 0.30s; }
.nav__mobile.open .nav__mobile-links a:nth-child(5) { transition-delay: 0.36s; }

/* Panel footer */
.nav__mobile-footer {
  padding: 1.8rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}
.nav__mobile-book {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(249,247,240,0.4);
  padding: 0.85rem 1.4rem;
  text-align: center;
  transition: background 0.25s, border-color 0.25s;
}
.nav__mobile-book:hover {
  background: rgba(249,247,240,0.1);
  border-color: var(--cream);
}
.nav__mobile-email {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(249,247,240,0.4);
  text-align: center;
  transition: color 0.2s;
}
.nav__mobile-email:hover { color: rgba(249,247,240,0.7); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__slides {
  position: absolute;
  inset: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}
.hero__slide.active { opacity: 1; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.05) 55%, transparent 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.08) 40%, rgba(0,0,0,0.30) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: min(740px, 62%);
  padding: 0 0 0 clamp(1.5rem, 4vw, 4rem);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__slogan {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  line-height: 1.35;
  letter-spacing: 0.02em;
  font-style: italic;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFade 1.1s 0.5s var(--ease-out) forwards;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-start;
  margin-top: 0.2rem;
  opacity: 0;
  animation: heroFade 1.1s 0.85s var(--ease-out) forwards;
}

/* ── Hero sidebar controls ───────────────────────────────── */
.hero__controls {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  right: auto;
  bottom: 2.8rem;
  top: auto;
  z-index: 3;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  background: rgba(108, 111, 83, 0.30);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 2rem;
  padding: 0.6rem 1rem;
}

/* ── Hero mini service cards (overlaid on hero) ──────────── */
.hero__services {
  position: absolute;
  bottom: clamp(1.8rem, 4vw, 3rem);
  left: clamp(1.5rem, 4vw, 4rem);
  display: flex;
  gap: clamp(0.6rem, 1.5vw, 1rem);
  z-index: 3;
  opacity: 0;
  animation: heroFade 1.1s 1.1s var(--ease-out) forwards;
}
.hero__svc-card {
  display: block;
  width: clamp(100px, 10vw, 155px);
  aspect-ratio: 2/3;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.22);
  transition: transform 0.35s var(--ease-out);
}
.hero__svc-card:hover { transform: translateY(-4px); }
.hero__svc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.hero__svc-card:hover img { transform: scale(1.06); }
.hero__svc-card span {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.55rem 0.5rem;
  background: linear-gradient(to top, rgba(71,51,70,0.88) 0%, transparent 100%);
  color: var(--cream);
  font-family: var(--ff-sans);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
}
.hero__ctrl {
  background: none;
  border: none;
  color: rgba(249,247,240,0.88);
  cursor: pointer;
  font-size: 1.1rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.hero__ctrl:hover { color: var(--cream); }
.hero__ctrl-counter {
  font-family: var(--ff-serif);
  font-size: clamp(0.72rem, 0.88vw, 0.82rem);
  color: rgba(249,247,240,0.88);
  letter-spacing: 0.08em;
  padding: 0 0.4rem;
  white-space: nowrap;
}
.hero__ctrl-divider {
  width: 1px;
  height: 1.2rem;
  background: rgba(249,247,240,0.28);
  margin: 0 0.3rem;
}
@keyframes heroFade {
  to { opacity: 1; transform: none; }
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--ff-sans);
  font-size: clamp(0.75rem, 0.80vw, 0.75rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--white);
  color: var(--text);
}
.btn--primary:hover {
  background: var(--cream);
}
.btn--outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.service-card .btn--outline-light:hover {
  background: #5A354C;
  border-color: #5A354C;
  color: var(--white);
}
.btn--outline-dark {
  background: transparent;
  border-color: var(--text);
  color: var(--text);
}
.btn--outline-dark:hover {
  background: var(--text);
  color: var(--cream);
}
.intro-strip__text .btn--outline-dark:hover,
.pricing-card .btn--outline-dark:hover {
  background: #5A354C;
  border-color: #5A354C;
  color: var(--white);
}
.pricing-card .btn--book-02:hover {
  background: #6C6F53;
  border-color: #6C6F53;
  color: var(--white);
}
.cta-banner .btn--primary:hover {
  background: #9E8C42;
  border-color: #9E8C42;
  color: var(--white);
}
.pricing-card--featured .btn--primary:hover {
  background: #9E8C42 !important;
  border-color: #9E8C42 !important;
  color: var(--white);
}
.btn--olive {
  background: var(--olive);
  color: var(--white);
  border-color: var(--olive);
}
.btn--olive:hover {
  background: #585b43;
}

/* ── Page header (inner pages) ───────────────────────────── */
.page-header {
  padding-top: clamp(7.1rem, 12.8vw, 10.7rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  text-align: center;
}
.page-header .eyebrow { margin-bottom: 0.9rem; }
.page-header h1 { font-size: clamp(2.2rem, 5vw, 4rem); }

.page-header--text-clip {
  background: #F9F7F0;
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}
.text-clip-desc {
  max-width: 540px;
  margin: 0.5rem auto 0;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--text-muted);
  line-height: 1.75;
  text-align: center;
}
.text-clip-packages-link {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: clamp(0.75rem, 0.9vw, 0.85rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2d272b;
  border: 1px solid #2d272b;
  padding: 0.55rem 1.4rem;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.text-clip-packages-link:hover {
  background: #5A354C;
  color: var(--white);
  border-color: #5A354C;
  opacity: 1;
}
.text-clip-heading {
  display: block;
  width: 100%;
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: clamp(1.8rem, 3.5vw, 3rem);
  color: #5A354C;
}

.page-hero-image {
  width: 100%;
  height: clamp(300px, 45vw, 580px);
  object-fit: cover;
  object-position: center top;
}

/* ── Section titles ──────────────────────────────────────── */
.section-title {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.section-title .eyebrow { margin-bottom: 0.8rem; }
.section-title p {
  max-width: 540px;
  margin: 1rem auto 0;
  color: var(--text-muted);
  font-size: clamp(0.82rem, 0.95vw, 0.9rem);
}

/* ── Home: Intro name heading ────────────────────────────── */
.intro__name {
  line-height: 1.1;
  margin-bottom: 1.8rem;
}
.intro__name strong {
  display: block;
  font-weight: 600;
  font-family: var(--ff-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--plum);
  letter-spacing: 0.01em;
}
.intro__name-sub {
  display: block;
  font-family: var(--ff-serif);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  color: var(--text);
  letter-spacing: 0.03em;
  margin-top: 0.5rem;
}

/* ── Home: Intro strip ───────────────────────────────────── */
.intro-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.intro-strip__text p {
  color: var(--text);
  margin-top: 1.4rem;
  max-width: 480px;
  font-size: clamp(0.85rem, 1vw, 1.1rem);
  font-weight: 400;
  line-height: 1.8;
  opacity: 0.92;
}
.intro-strip__text .btn { margin-top: 2rem; }
.intro-strip__image {
  position: relative;
}
.intro-strip__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
}
.intro-strip__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(249, 247, 240, 0.09);
  pointer-events: none;
}

/* ── Section labels (bold uppercase headings) ────────────── */
.section-label {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  text-align: center;
  margin-bottom: clamp(1.8rem, 3.5vw, 3rem);
}
.services-section .section-label {
  color: var(--cream);
  opacity: 1;
}

/* ── Home: Services split ────────────────────────────────── */
.services-section {
  background: rgba(108, 111, 83, 0.60);
  padding-block: clamp(2rem, 5vw, 3.5rem);
}
.services-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.service-card:hover img { transform: scale(1.04); }
.service-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.22);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: clamp(1.5rem, 4vw, 3rem);
}
.service-card__overlay h3 {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  color: var(--white);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.service-card__text-box {
  background: rgba(20, 20, 20, 0.35);
  padding: clamp(1.2rem, 2.5vw, 2rem);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.service-card__overlay p {
  color: var(--white);
  font-weight: 450;
  font-size: clamp(0.82rem, 0.95vw, 1.05rem);
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 1.4rem;
}

/* ── Client logos ────────────────────────────────────────── */
.logos-strip {
  background: var(--cream);
  padding-block: clamp(2rem, 4vw, 3.5rem);
}
.logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  justify-items: center;
  align-items: center;
  gap: clamp(1.8rem, 3.5vw, 3rem) clamp(2.5rem, 5vw, 4.5rem);
  margin: 0 auto;
}
.logos-grid img {
  height: 102px;
  width: auto;
  max-width: 220px;
  opacity: 0.52;
  filter: grayscale(1);
  transition: opacity 0.3s, filter 0.3s;
  object-fit: contain;
  display: block;
}
.logos-grid img:hover { opacity: 1; filter: grayscale(0); }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: var(--dark-plum);
  color: var(--white);
  text-align: center;
}
.cta-banner h2 {
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  max-width: 680px;
  margin: 0 auto 0.8rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.2rem;
  font-size: clamp(0.8rem, 0.93vw, 0.88rem);
}

/* ── Gallery ─────────────────────────────────────────────── */
.gallery-columns {
  columns: 4;
  column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

/* ── 3-column pinned masonry gallery ─────────────────────── */
.gallery-square-grid {
  display: flex;
  gap: 6px;
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
}
.gallery-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gallery-col .gallery-item {
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 0;
}
.gallery-col .gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
.gallery-col .gallery-item:hover img { transform: scale(1.03); }

/* Full-width flush masonry (portraits page) */
.gallery-columns--flush {
  columns: 3;
  column-gap: 8px;
  width: 100%;
}
.gallery-columns--flush .gallery-item {
  margin-bottom: 8px;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.7s var(--ease-out), filter 0.4s;
}
.gallery-item:hover img {
  transform: scale(1.03);
}
.gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.45), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item__caption { opacity: 1; }

/* ── Lightbox ────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.94);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 92vw;
  max-height: 92svh;
  object-fit: contain;
  animation: lbOpen 0.35s var(--ease-out);
}
@keyframes lbOpen {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  color: rgba(255,255,255,0.7);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.lightbox__close:hover { color: var(--white); }
.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem;
  transition: color 0.2s;
  user-select: none;
}
.lightbox__prev:hover,
.lightbox__next:hover { color: var(--white); }
.lightbox__prev { left: 0.5rem; }
.lightbox__next { right: 0.5rem; }
.lightbox__counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.45);
  font-size: clamp(0.65rem, 0.8vw, 0.75rem);
  letter-spacing: 0.1em;
}

/* ── Pricing ─────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  border: 1px solid var(--warm-gray);
  padding: clamp(1.8rem, 3vw, 2.8rem);
  position: relative;
  transition: box-shadow 0.3s;
}
.pricing-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
}
.pricing-card--featured {
  border-color: var(--plum);
  background: var(--dark-plum);
  color: var(--white);
}
.pricing-card--featured .pricing-card__price,
.pricing-card--featured .pricing-card__name,
.pricing-card--featured .pricing-card__tag {
  color: var(--white);
}
.pricing-card--featured .pricing-card__desc,
.pricing-card--featured .pricing-card__features li {
  color: rgba(255,255,255,0.90);
}
.pricing-card--featured .pricing-card__features li::before {
  color: rgba(255,255,255,0.80);
}
.pricing-card__badge {
  position: absolute;
  top: -1px;
  right: 1.8rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
}
.pricing-card__tag {
  font-size: clamp(0.62rem, 0.72vw, 0.68rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.pricing-card__name {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  margin-bottom: 0.5rem;
}
.pricing-card__price {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.pricing-card__price span {
  font-size: clamp(0.78rem, 0.9vw, 0.85rem);
  font-weight: 300;
  font-family: var(--ff-sans);
  opacity: 0.7;
}
.pricing-card__desc {
  font-size: clamp(0.75rem, 0.88vw, 0.82rem);
  color: var(--text-muted);
  margin-bottom: 1.6rem;
  line-height: 1.6;
}
.pricing-card__features {
  margin-bottom: 2rem;
}
.pricing-card__features li {
  font-size: clamp(0.75rem, 0.88vw, 0.82rem);
  font-weight: 500;
  color: rgba(45, 39, 43, 0.80);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(209,209,199,0.4);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.pricing-card--featured .pricing-card__features li {
  border-bottom-color: rgba(255,255,255,0.1);
}
.pricing-card__features li::before {
  content: '—';
  color: currentColor;
  flex-shrink: 0;
  margin-top: 0.05em;
}
.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: clamp(0.72rem, 0.85vw, 0.8rem);
  color: var(--text-muted);
}

/* ── Pricing comparison table ────────────────────────────── */
.pricing-compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.pricing-compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.pricing-compare th,
.pricing-compare td {
  padding: 1rem 1.4rem;
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid rgba(209,209,199,0.5);
  vertical-align: middle;
  color: var(--text);
}
.pricing-compare th:first-child,
.pricing-compare td:first-child {
  text-align: left;
  width: 25%;
  padding-left: 0;
}
.pricing-compare thead th {
  vertical-align: top;
  padding-bottom: 1.8rem;
  border-bottom: 2px solid var(--warm-gray);
}
.pricing-compare__tag {
  font-size: clamp(0.6rem, 0.7vw, 0.65rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.pricing-compare__name {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.pricing-compare__price {
  font-family: var(--ff-serif);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  margin-bottom: 0.5rem;
}
.pricing-compare__price span {
  font-size: 0.78rem;
  font-family: var(--ff-sans);
  font-weight: 300;
  color: var(--text-muted);
}
.pricing-compare__desc {
  font-size: clamp(0.72rem, 0.82vw, 0.78rem);
  color: var(--text-muted);
  line-height: 1.5;
}
/* Featured column header (Közepes csomag — inline bg overrides, keep text light) */
.pricing-compare th:nth-child(3) { color: #F9F7F0; }
.pricing-compare th:nth-child(3) .pricing-compare__name { color: #F9F7F0; }
.pricing-compare th:nth-child(3) .pricing-compare__desc { color: rgba(249,247,240,0.75); }
/* Per-column background (tbody only, excludes colspan rows) */
.pricing-compare tbody td:nth-child(2) { background: rgba(237, 236, 228, 0.80); }
.pricing-compare tbody td:nth-child(3) { background: rgba(71, 51, 70, 0.80); color: #F9F7F0; }
.pricing-compare tbody td:nth-child(4) { background: rgba(222, 215, 187, 0.80); }
/* + / − indicators */
.pc__check { color: var(--olive); font-weight: 700; font-size: 1.1rem; background: rgba(108,111,83,0.12); }
.pc__cross  { color: var(--text-muted); font-size: 1.1rem; }
.pricing-compare td:nth-child(3).pc__check { color: rgba(249,247,240,0.9); background: rgba(249,247,240,0.08); }
.pricing-compare td:nth-child(3).pc__cross { color: rgba(249,247,240,0.25); background: var(--dark-plum); }
/* Merged full-width feature rows */
.pricing-compare td[colspan="4"] {
  text-align: center;
}

/* "Minden csomag tartalmazza" section header */
.pricing-compare__section-header td {
  background: rgba(108, 111, 83, 0.12);
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: clamp(0.68rem, 0.8vw, 0.75rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
  text-align: center;
  border-bottom: 2px solid rgba(108, 111, 83, 0.2);
}
/* Centre-align labels in differentiating rows and Ár row */
.pricing-compare__diff td:first-child,
.pricing-compare__total-row td:first-child {
  text-align: center;
}

/* Package-specific differentiating rows */
.pricing-compare__diff { border-top: 1px solid rgba(209,209,199,0.6); }

/* Total / price row — explicit column backgrounds (tbody prefix matches specificity of general rule) */
.pricing-compare tbody .pricing-compare__total-row td:nth-child(2) { background: rgba(237, 236, 228, 0.95); }
.pricing-compare tbody .pricing-compare__total-row td:nth-child(3) { background: rgba(71, 51, 70, 0.95); }
.pricing-compare tbody .pricing-compare__total-row td:nth-child(4) { background: rgba(222, 215, 187, 0.95); }

/* Total / price row */
.pricing-compare__total-row td {
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: 500;
  border-top: 2px solid var(--warm-gray);
  color: var(--text);
}
.pricing-compare__total-row td:not(:first-child) {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 1.7vw, 1.5rem);
  font-weight: 600;
}
/* Footer */
.pricing-compare tfoot td {
  border-bottom: none;
  padding-top: 1.5rem;
}

/* ── Minden csomag tartalmazza block ─────────────────────── */
.minden-csomag {
  margin-top: 0;
  background: rgba(108, 111, 83, 0.08);
  border-top: 4px solid var(--warm-gray);
}
.minden-csomag__row-title {
  background: rgba(108, 111, 83, 0.70);
  padding: clamp(0.8rem, 1.5vw, 1.2rem) clamp(1.5rem, 3vw, 3rem);
  border-bottom: 1px solid rgba(108, 111, 83, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.minden-csomag__row-title strong {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 600;
  color: #F9F7F0;
}
.minden-csomag__row-list {
  padding: clamp(1rem, 2vw, 1.8rem) clamp(1.5rem, 3vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
.minden-csomag__row-cta {
  text-align: center;
  padding: 0 clamp(1.5rem, 3vw, 3rem) clamp(1rem, 2vw, 1.5rem);
}
.minden-csomag__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.minden-csomag__list li {
  font-size: clamp(0.92rem, 1.1vw, 1.1rem);
  font-weight: 400;
  color: #2d272b;
  opacity: 1;
  position: relative;
  padding-left: 1rem;
}
.minden-csomag__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--olive);
  opacity: 0.8;
}

/* ── About page ──────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}
.about-portrait {
  position: sticky;
  top: 6rem;
}
.about-portrait img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}
.about-text .eyebrow { margin-bottom: 1rem; }
.about-text h2 { margin-bottom: 1.8rem; }
.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
}
.about-text blockquote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  color: var(--plum);
  border-left: 2px solid var(--warm-gray);
  padding-left: 1.8rem;
  margin: 2.5rem 0;
  line-height: 1.5;
}

/* ── Contact page ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
}
.contact-info .eyebrow { margin-bottom: 1rem; }
.contact-info h2 { margin-bottom: 1.2rem; }
.contact-info p { color: var(--text-muted); font-size: clamp(0.82rem, 0.95vw, 0.9rem); margin-bottom: 1rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: clamp(0.78rem, 0.9vw, 0.85rem);
  color: var(--text-muted);
}
.contact-detail a:hover { color: var(--text); }

.contact-form label {
  display: block;
  font-size: clamp(0.62rem, 0.75vw, 0.7rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2d272b;
  margin-bottom: 0.4rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--warm-gray);
  padding: 0.6rem 0.75rem;
  font-family: var(--ff-sans);
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  color: #2d272b;
  outline: none;
  transition: border-color 0.25s;
  margin-bottom: 1.8rem;
  border-radius: 0;
  appearance: none;
}
.contact-form select {
  cursor: pointer;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #2d272b;
}
.contact-form textarea { resize: vertical; min-height: 100px; margin-bottom: 0.6rem; }
.form-feedback { margin: 0.8rem 0 0; font-size: 0.88rem; min-height: 1.2em; text-align: center; }
.form-feedback--success { color: #3a6b4a; }
.form-feedback--error   { color: #8b2a2a; }
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.newsletter-box {
  background: rgba(209,209,199,0.5);
  padding: clamp(2rem, 4vw, 3.5rem);
  margin-top: 4rem;
}
.newsletter-box .eyebrow { margin-bottom: 0.8rem; }
.newsletter-box h3 { margin-bottom: 0.8rem; }
.newsletter-box p { color: var(--text-muted); font-size: clamp(0.8rem, 0.93vw, 0.88rem); margin-bottom: 1.5rem; }
.newsletter-form {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #2d272b;
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.6rem 0;
  font-family: var(--ff-sans);
  font-size: clamp(0.8rem, 0.93vw, 0.88rem);
  outline: none;
  color: var(--text);
  margin-bottom: 0;
  border-bottom: none !important;
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-subscribe-btn {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: clamp(0.75rem, 0.9vw, 0.85rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #9E8C42;
  color: var(--white);
  border: 1px solid #9E8C42;
  padding: 0.55rem 1.8rem;
  transition: background 0.25s, border-color 0.25s;
  cursor: pointer;
}
.newsletter-subscribe-btn:hover {
  background: #6C6F53;
  border-color: #6C6F53;
}

.calendar-placeholder {
  background: var(--warm-gray);
  border: 1px dashed var(--text-muted);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: clamp(0.78rem, 0.9vw, 0.85rem);
  margin-top: 2rem;
}
.calendar-placeholder strong {
  display: block;
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 1.35vw, 1.3rem);
  color: var(--text);
  margin-bottom: 0.5rem;
}

/* ── Blog page ───────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.blog-card__image {
  aspect-ratio: 3/2;
  overflow: hidden;
  margin-bottom: 1.2rem;
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.blog-card:hover .blog-card__image img { transform: scale(1.04); }
.blog-card__meta {
  font-size: clamp(0.62rem, 0.75vw, 0.7rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.blog-card h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  margin-bottom: 0.6rem;
}
.blog-card p {
  font-size: clamp(0.78rem, 0.9vw, 0.85rem);
  color: var(--text-muted);
  line-height: 1.65;
}
.blog-card .read-more {
  display: inline-block;
  margin-top: 1rem;
  font-size: clamp(0.62rem, 0.75vw, 0.72rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--warm-gray);
  padding-bottom: 0.1rem;
  transition: border-color 0.2s;
}
.blog-card .read-more:hover { border-color: var(--text); }

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.55);
  padding: clamp(3rem, 6vw, 5rem) var(--gap) 2rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .footer-logo {
  font-family: var(--ff-serif);
  font-size: clamp(1rem, 1.3vw, 1.4rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.8rem;
}
.footer-brand p { font-size: clamp(0.8rem, 0.92vw, 1rem); line-height: 1.7; }
.footer-nav h5 {
  font-family: var(--ff-sans);
  font-size: clamp(0.68rem, 0.78vw, 0.85rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
.footer-nav a {
  display: block;
  font-size: clamp(0.82rem, 0.95vw, 1rem);
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-nav a:hover { color: rgba(255,255,255,0.9); }
.footer-contact a {
  display: block;
  font-size: clamp(0.82rem, 0.95vw, 1rem);
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-contact a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(0.72rem, 0.82vw, 0.85rem);
  gap: 1rem;
  flex-wrap: wrap;
}


/* ── FAQ Accordion ───────────────────────────────────────── */
.faq-section {
  background: #b8b8ad;
  padding-block: clamp(3rem, 7vw, 6rem);
}
.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(249, 247, 240, 0.75);
  padding: clamp(1.8rem, 4vw, 3rem);
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.faq-item:first-of-type {
  border-top: 1px solid rgba(0,0,0,0.1);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  font-family: var(--ff-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 500;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.25s;
}
.faq-question:hover { color: var(--plum); }
.faq-icon {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--olive);
  transition: transform 0.35s var(--ease-out);
  font-style: normal;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s var(--ease-out), padding 0.35s ease;
  padding-bottom: 0;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 1.6rem;
}
.faq-answer p {
  color: var(--text);
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  font-weight: 350;
  line-height: 1.82;
  margin-bottom: 0.7rem;
  opacity: 0.90;
}
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a {
  color: var(--olive);
  border-bottom: 1px solid rgba(108,111,83,0.4);
  transition: border-color 0.2s;
}
.faq-answer a:hover { border-color: var(--olive); }
.faq-answer ul {
  list-style: none;
  margin-top: 0.5rem;
}
.faq-answer ul li {
  color: var(--text);
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  font-weight: 350;
  line-height: 1.75;
  padding: 0.3rem 0 0.3rem 1.5rem;
  position: relative;
  opacity: 0.90;
}
.faq-answer ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--olive);
  opacity: 0.8;
}

/* ── Dividers ────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--warm-gray);
  opacity: 0.5;
}

/* ── Responsive ──────────────────────────────────────────── */

/* ── 1024px ── */
@media (max-width: 1024px) {
  .gallery-columns { columns: 3; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid .pricing-card:last-child { grid-column: 1 / -1; max-width: 480px; margin-inline: auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner .footer-contact { grid-column: 1 / -1; }
  .about-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .about-portrait { position: static; }
  .gallery-columns--flush { columns: 2; }
  .logos-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── 768px ── */
@media (max-width: 768px) {
  .pricing-desc-spacer { display: none; }

  /* Eyebrow — floor too small on mobile, lift it */
  .eyebrow { font-size: 0.72rem; }

  /* Nav */
  .nav__links, .nav__right { display: none; }
  .nav__hamburger { display: flex; position: absolute; right: var(--gap); }
  .nav { display: flex; justify-content: center; padding-block: 1rem; }

  /* Hero — shift first two slides only so subjects appear more centred on narrow screens */
  .hero__slide:nth-child(1),
  .hero__slide:nth-child(2) { background-position: 80% center; }
  .hero__slide:nth-child(3) { background-position: 42% center; }

  /* Hero */
  .hero { align-items: flex-end; }
  .hero__content {
    max-width: 90%;
    padding-left: clamp(1.2rem, 5vw, 2.5rem);
    padding-bottom: clamp(5rem, 14vw, 8rem);
  }
  .hero__services { display: none; }

  /* Intro */
  .intro-strip { grid-template-columns: 1fr; }
  .intro-strip__image { order: -1; }
  .intro-strip__image img { aspect-ratio: auto; }
  .intro-strip__text .btn { display: block; text-align: center; margin-inline: auto; }

  /* Services */
  .service-card { aspect-ratio: 4/3; }

  /* Logos — 2×4 grid on tablet */
  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }
  .logos-grid img { height: 72px; max-width: 160px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid .pricing-card:last-child { grid-column: auto; max-width: none; }

  /* Gallery */
  .gallery-columns { columns: 2; }
  .gallery-columns--flush { columns: 2; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait img { aspect-ratio: 4/3; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Inputs — ensure 44px+ touch target */
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 0.75rem;
    min-height: 44px;
  }

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

  /* Section label — tighten letter-spacing to prevent overflow */
  .section-label { letter-spacing: 0.1em; }

  /* FAQ */
  .faq-grid { padding: clamp(1.2rem, 4vw, 2rem); }
}

/* ── 480px ── */
@media (max-width: 480px) {
  /* Hero */
  .hero__cta { flex-direction: column; align-items: flex-start; }
  .hero__slogan { font-size: clamp(1.6rem, 7vw, 2rem); }

  /* Services — stack vertically, crop images from left */
  .services-split { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 4/5; }
  .service-card:nth-child(1) img,
  .service-card:nth-child(2) img { object-position: left center; }
  .service-card__overlay p { display: none; } /* hide body text, keep title + CTA */

  /* Logos — tighter on small phones */
  .logos-grid img { height: 56px; max-width: 130px; }

  /* Gallery */
  .gallery-columns { columns: 1; }
  .gallery-columns--flush { columns: 1; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }

  /* Lightbox — bigger touch targets for prev/next */
  .lightbox__prev,
  .lightbox__next {
    font-size: 2.4rem;
    padding: 1.2rem 0.8rem;
  }
  .lightbox__img {
    max-width: 98vw;
    max-height: 80svh;
  }

  /* Buttons — full-width on very small screens */
  .cta-banner .btn { width: 100%; justify-content: center; }

  /* Pricing comparison table — allow horizontal scroll */
  .pricing-compare-wrap { font-size: 0.82rem; }

  /* Text clip heading */
  .text-clip-heading { letter-spacing: 0.08em; }

  /* FAQ */
  .faq-question { font-size: clamp(1rem, 4.5vw, 1.3rem); gap: 0.8rem; }
  .faq-question .faq-icon { width: 1.3rem; height: 1.3rem; font-size: 1.2rem; }

}
