/* ============================================================
   PAQ ANYWAY — Main Stylesheet  v2
   Light theme. Mobile-first. Typography-driven.
   ============================================================ */

/* --- Design Tokens --- */
:root {
  --bg:          #f7f6f3;
  --bg-white:    #ffffff;
  --bg-alt:      #eeece8;
  --text:        #1a1917;
  --text-2:      #4a4844;
  --text-muted:  #8a8780;
  --text-faint:  #b8b4ae;
  --accent:      #e42124;
  --accent-hover:#c41a1d;
  --accent-light: rgba(228,33,36,0.08);
  --border:      #e2ddd7;
  --border-dark: #ccc8c2;
  --nav-height:  70px;
  --max-width:   1140px;
  --radius:      4px;
  --radius-lg:   8px;
  --transition:  0.22s ease;
}

/* --- Skip navigation --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 9999;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* --- Focus styles --- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1rem; font-family: 'Montserrat', sans-serif; font-weight: 600; letter-spacing: 0; }

.label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}

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

@media (min-width: 768px) { .container { padding: 0 2rem; } }
@media (min-width: 1200px) { .container { padding: 0 2.5rem; } }

section { padding: 5rem 0; }
@media (min-width: 768px) { section { padding: 7rem 0; } }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

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

@media (min-width: 768px) { .nav__inner { padding: 0 2rem; } }

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 101;
  flex-shrink: 0;
}

.nav__logo img {
  height: 32px;
  width: 32px;
  object-fit: contain;
}

.nav__logo-text {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text);
  white-space: nowrap;
}

/* Desktop links */
.nav__links {
  display: none;
  gap: 0.25rem;
  align-items: center;
}

@media (min-width: 768px) { .nav__links { display: flex; } }

.nav__links > a,
.nav__dropdown-toggle {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-2);
  transition: color var(--transition);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  white-space: nowrap;
}

.nav__links > a:hover,
.nav__links > a.active,
.nav__dropdown-toggle:hover {
  color: var(--text);
  background: var(--bg);
}

/* Services Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.nav__dropdown-toggle svg {
  width: 10px;
  height: 10px;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.nav__dropdown.open .nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.5rem 0;
  min-width: 220px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  z-index: 200;
}

/* Bridge the gap so mouse movement doesn't break hover */
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -0.75rem;
  left: 0;
  right: 0;
  height: 0.75rem;
}

.nav__dropdown.open .nav__dropdown-menu { display: block; }

@media (min-width: 900px) {
  .nav__dropdown:hover .nav__dropdown-menu,
  .nav__dropdown:focus-within .nav__dropdown-menu { display: block; }
}

.nav__dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.01em;
  transition: all var(--transition);
  border-radius: 0;
}

.nav__dropdown-menu a:hover {
  background: var(--bg);
  color: var(--accent);
  padding-left: 1.5rem;
}

/* CTA button */
.nav__cta {
  display: none;
}

@media (min-width: 768px) {
  .nav__cta {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.2rem;
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: background var(--transition), transform var(--transition);
    flex-shrink: 0;
  }
  .nav__cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
  }
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 101;
  width: 28px;
}

@media (min-width: 768px) { .nav__hamburger { display: none; } }

.nav__hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: var(--bg-white);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav__mobile.open { opacity: 1; pointer-events: all; }

.nav__mobile > a,
.nav__mobile-sub-label {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
  padding: 0.4rem 0;
}

.nav__mobile > a:hover { color: var(--accent); }

.nav__mobile-sub-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 1.5rem;
  margin-bottom: 0.25rem;
  text-decoration: none;
  cursor: pointer;
}
.nav__mobile-sub-label:hover { color: var(--accent); }

.nav__mobile-subs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  margin-bottom: 0.5rem;
}

.nav__mobile-subs a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 0.2rem 0;
  transition: color var(--transition);
}

.nav__mobile-subs a:hover { color: var(--accent); }

.nav__mobile .mobile-cta {
  margin-top: 1.5rem;
  padding: 0.8rem 2.5rem;
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  font-style: normal;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 1.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(228,33,36,0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-dark);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn-outline-accent {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline-accent:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   HERO — Homepage
   ============================================================ */
.hero {
  min-height: 100svh;
  padding-top: var(--nav-height);
  background: var(--bg-white);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* Diagonal background slice */
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background-color: var(--bg);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

@media (min-width: 900px) {
  .hero::after {
    background-image: radial-gradient(circle, var(--border-dark) 1.2px, transparent 1.2px);
    background-size: 28px 28px;
  }
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    min-height: calc(100svh - var(--nav-height));
    padding: 0;
  }
}

.hero__text { max-width: 600px; }
.hero__text h1 { margin-bottom: 1.5rem; line-height: 1.1; }
.hero__text .hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--text-2);
  max-width: 46ch;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

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

/* Hero visual — decorative circle with logo */
.hero__visual {
  display: none;
  justify-content: center;
  align-items: center;
}

@media (min-width: 900px) { .hero__visual { display: flex; } }

.hero__ring {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 20px 56px rgba(26,25,23,0.22);
}

/* Red accent ring */
.hero__ring::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0.7;
}

/* Outer light ring */
.hero__ring::after {
  content: '';
  position: absolute;
  inset: -36px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  opacity: 0.6;
}

.hero__ring img {
  width: 52%;
  opacity: 1;
}

/* ============================================================
   CREDENTIALS BAR
   ============================================================ */
.creds {
  background: var(--text);
  padding: 3.5rem 0;
}

.creds__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1.5rem;
  text-align: center;
}

@media (min-width: 640px) { .creds__grid { grid-template-columns: repeat(4, 1fr); } }

.creds__item { display: flex; flex-direction: column; gap: 0.35rem; }

.creds__number {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.creds__label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
  max-width: 16ch;
  margin: 0 auto;
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header { margin-bottom: 3rem; }
.section-header h2 { max-width: 26ch; margin-bottom: 0.75rem; }
.section-header p { color: var(--text-2); max-width: 52ch; font-size: 0.97rem; line-height: 1.8; }

/* ============================================================
   SERVICES OVERVIEW (homepage grid)
   ============================================================ */
.services-overview { background: var(--bg-white); }

.services-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: 1fr 1fr 1fr; } }

.service-card {
  background: var(--bg-white);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background var(--transition);
}

.service-card:hover { background: var(--bg); }

.service-card__label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.service-card h3 { font-size: 1.05rem; line-height: 1.3; }

.service-card p {
  color: var(--text-2);
  font-size: 0.88rem;
  line-height: 1.65;
  flex: 1;
}

.service-card__price {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.service-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.5rem;
  transition: gap var(--transition);
}

.service-card:hover .service-card__arrow { gap: 0.7rem; }

/* ============================================================
   ABOUT PREVIEW / MEET LAURENCE (homepage)
   ============================================================ */
.about-preview { background: var(--bg); overflow: hidden; }

.about-preview__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-preview__inner {
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
  }
}

.about-preview__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

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

.about-preview__text h2 { margin-bottom: 0.5rem; }

.about-preview__credentials {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem !important;
}

.about-preview__book-line {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem !important;
  font-style: italic;
}

.about-preview__text p {
  color: var(--text-2);
  margin-bottom: 1.25rem;
  line-height: 1.85;
  font-size: 0.97rem;
}

.about-preview__text .btn { margin-top: 0.75rem; }

/* ============================================================
   NEWSLETTERS
   ============================================================ */
.newsletters { background: var(--bg-white); }

.newsletters__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 0;
}

@media (min-width: 640px) { .newsletters__grid { grid-template-columns: 1fr 1fr; } }

.newsletter-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.newsletter-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.newsletter-card__logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  object-position: left center;
}

.newsletter-card p {
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.75;
  flex: 1;
}

.newsletter-card .btn { align-self: flex-start; margin-top: 0.25rem; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--text);
  text-align: center;
}

.cta-section h2 {
  color: #f5f5f0;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.5);
  max-width: 46ch;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  line-height: 1.8;
}

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

.cta-section .btn-ghost {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.2);
}

.cta-section .btn-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0 2rem;
}

.footer__inner {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.footer__brand { display: flex; flex-direction: column; gap: 0.75rem; }

.footer__logo { display: flex; align-items: center; gap: 0.6rem; }

.footer__logo img {
  height: 28px;
  width: 28px;
  object-fit: contain;
  opacity: 0.55;
}

.footer__logo-text {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
}

.footer__tagline {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 30ch;
}

.footer__nav h5, .footer__contact h5 {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.footer__nav ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer__nav a, .footer__contact a, .footer__contact p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
  display: block;
  margin-bottom: 0.4rem;
}

.footer__nav a:hover, .footer__contact a:hover { color: #fff; }

.footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
}

.footer__copyright { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 4rem;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 { max-width: 22ch; margin-bottom: 1.25rem; }
.page-hero p { color: var(--text-2); font-size: 1.05rem; max-width: 50ch; line-height: 1.8; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-nav {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--nav-height);
  z-index: 50;
  overflow-x: auto;
  scrollbar-width: none;
}

.services-nav::-webkit-scrollbar { display: none; }

.services-nav__inner {
  display: flex;
  gap: 0;
  min-width: max-content;
  padding: 0 1.25rem;
}

@media (min-width: 768px) { .services-nav__inner { padding: 0 2rem; } }

.services-nav a {
  display: block;
  padding: 1.1rem 1.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.services-nav a:hover { color: var(--text); }
.services-nav a.active { color: var(--accent); border-bottom-color: var(--accent); }

/* Service Detail Sections */
.service-section { padding: 5rem 0; border-bottom: 1px solid var(--border); scroll-margin-top: calc(var(--nav-height) + 60px); }
.service-section:nth-child(even) { background: var(--bg); }
.service-section:last-of-type { border-bottom: none; }

.service-section__inner {
  display: grid;
  gap: 3rem;
}

@media (min-width: 900px) {
  .service-section__inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
}

.service-section__header h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); margin-bottom: 1rem; }

.service-section__header p {
  color: var(--text-2);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.service-section__price {
  display: inline-block;
  padding: 0.55rem 1.2rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 600;
}

.service-section__includes h3 {
  margin-bottom: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.4;
}

.service-section__includes ul { display: flex; flex-direction: column; gap: 0.6rem; }

.service-section__includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.55;
}

.service-section__includes li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.5em;
  flex-shrink: 0;
}

/* --- Service Who / FAQ --- */
.service-who-faq {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.service-who {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 1.5rem;
}

.service-who strong {
  font-weight: 600;
  color: var(--text);
}

.service-faq {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

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

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 0;
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  gap: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  background: none;
  border: none;
  text-align: left;
}

.faq-icon {
  font-size: 1.1rem;
  line-height: 1;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition);
  font-style: normal;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-2);
  padding-bottom: 1rem;
  display: none;
}

.faq-answer.open {
  display: block;
}

/* --- General FAQ section --- */
.general-faq-section {
  padding: 5rem 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
}

.general-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 2rem;
  max-width: 720px;
}

.general-faq-q {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
  font-family: 'Montserrat', sans-serif;
}

.general-faq-a {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-2);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-founder {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

.about-founder__inner {
  display: grid;
  gap: 3.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .about-founder__inner {
    grid-template-columns: 300px 1fr;
    gap: 5rem;
  }
}

.about-founder__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}

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

.about-founder__text h2 { margin-bottom: 0.5rem; }

.about-founder__text .role {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
  display: block;
}

.about-founder__text p {
  color: var(--text-2);
  font-size: 0.97rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.about-credentials .tag {
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border-dark);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--text-2);
  background: var(--bg-white);
}

/* Speaking section */
.speaking-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.speaking-section__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .speaking-section__inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.speaking-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.speaking-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.speaking-image:hover img { transform: scale(1.03); }

/* Book section */
.book-section {
  background: var(--bg-white);
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.book-cover img {
  background: #fff;
}

.book-section__inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .book-section__inner {
    grid-template-columns: auto 1fr;
    gap: 4rem;
  }
}

.book-cover {
  width: 180px;
  flex-shrink: 0;
}

.book-cover img { width: 100%; height: auto; display: block; }

.book-section__text h2 { margin-bottom: 1.25rem; font-size: clamp(1.6rem, 3vw, 2.25rem); }
.book-section__text p {
  color: var(--text-2);
  font-size: 0.97rem;
  line-height: 1.9;
  margin-bottom: 1rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 5rem;
  min-height: 100svh;
}

.contact-section__inner {
  display: grid;
  gap: 4rem;
}

@media (min-width: 900px) {
  .contact-section__inner {
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    align-items: start;
  }
}

.contact-info h1 { font-size: clamp(2rem, 5vw, 3.25rem); margin-bottom: 1.25rem; }
.contact-info > p { color: var(--text-2); font-size: 0.97rem; line-height: 1.8; margin-bottom: 2.5rem; }

.contact-details { display: flex; flex-direction: column; gap: 1rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  transition: border-color var(--transition);
}

.contact-detail:hover { border-color: var(--accent); }

.contact-detail__icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
  background: var(--bg);
}

.contact-detail__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-detail__value {
  font-size: 0.9rem;
  color: var(--text-2);
  transition: color var(--transition);
}

.contact-detail:hover .contact-detail__value { color: var(--accent); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.45rem; }

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-2);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(228,33,36,0.12);
}

.form-group textarea { min-height: 140px; }

.form-row { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-submit { margin-top: 0.5rem; }

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.6;
}

.contact-logo-mark {
  display: none;
  margin-top: 5.5rem !important;
  justify-content: center;
}
.contact-logo-mark .hero__ring {
  width: 270px !important;
  height: 270px !important;
}
@media (min-width: 900px) {
  .contact-logo-mark { display: flex; }
}

/* Form success */
.form-success {
  display: none;
  padding: 2rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  text-align: center;
  background: var(--accent-light);
}

.form-success.show { display: block; }
.form-success h3 { font-size: 1.25rem; margin-bottom: 0.75rem; color: var(--accent); }
.form-success p { color: var(--text-2); font-size: 0.92rem; }

.form-field-error { display: block; font-size: 0.78rem; color: var(--accent); margin-top: 0.25rem; }
.form-error-global { font-size: 0.85rem; color: var(--accent); margin-bottom: 1rem; }

/* ============================================================
   404 PAGE
   ============================================================ */
.not-found {
  min-height: calc(100svh - var(--nav-height));
  padding-top: calc(var(--nav-height) + 6rem);
  padding-bottom: 6rem;
  background: var(--bg-white);
  display: flex;
  align-items: center;
}

.not-found__inner { max-width: 540px; }
.not-found__inner h1 { margin-bottom: 1.25rem; }
.not-found__inner > p {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.8;
}

/* ============================================================
   LEGAL CONTENT (privacy, cookie, terms pages)
   ============================================================ */
.legal-content {
  padding: 4rem 0 6rem;
  background: var(--bg);
}
.legal-content__inner {
  max-width: 720px;
}
.legal-content__inner h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 2rem;
  margin-bottom: 0.4rem;
}
.legal-content__inner p {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}
.legal-content__inner p:first-child {
  margin-top: 0;
}

/* ============================================================
   UTILITIES + ANIMATIONS
   ============================================================ */
.divider { height: 1px; background: var(--border); margin: 2rem 0; }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.08s; }
.fade-up:nth-child(3) { transition-delay: 0.16s; }
.fade-up:nth-child(4) { transition-delay: 0.24s; }
.fade-up:nth-child(5) { transition-delay: 0.32s; }
.fade-up:nth-child(6) { transition-delay: 0.40s; }
