/* ============================================================
   Αγάπη Θυρή Law Office — Main Stylesheet
   ============================================================ */

/* ── Custom Properties ───────────────────────────────────── */
:root {
  --c-bg:       #F7F4F0;
  --c-text:     #1C1A18;
  --c-muted:    #6B6560;
  --c-accent:   #2D6E4E;
  --c-accent-dk:#1E5038;
  --c-surface:  #EDEBE7;
  --c-border:   #D9D4CC;
  --c-dark:     #b5543f;
  --c-white:    #FFFFFF;

  --f-heading: 'Literata', Georgia, serif;
  --f-body:    'Inter', system-ui, -apple-system, sans-serif;

  --section-v:    clamp(72px, 9vw, 128px);
  --section-v-sm: clamp(48px, 6vw, 80px);
  --container:    1160px;

  --t:      0.26s ease;
  --t-slow: 0.5s  ease;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-accent); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--c-accent-dk); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 3px; }

/* ── Layout ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.section         { padding-block: var(--section-v); }
.section--sm     { padding-block: var(--section-v-sm); }
.section--dark   { background: var(--c-dark); color: var(--c-bg); }
.section--surface{ background: var(--c-surface); }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--f-heading);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.8rem, 6vw,   5.5rem); }
h2 { font-size: clamp(2rem,   3.5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2vw,   1.9rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.4rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--c-accent);
}
p { max-width: 68ch; }
.lead {
  font-size: clamp(1rem, 1.4vw, 1.175rem);
  color: var(--c-muted);
  max-width: 54ch;
  line-height: 1.75;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--f-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1.5px solid transparent;
  transition: background var(--t), color var(--t), border-color var(--t);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary   { background: var(--c-accent-dk); color: var(--c-white); border-color: var(--c-accent-dk); }
.btn--primary:hover { background: var(--c-accent); border-color: var(--c-accent); color: var(--c-white); }
.btn--outline   { background: transparent; color: var(--c-white); border-color: rgba(255,255,255,0.4); }
.btn--outline:hover { border-color: var(--c-white); color: var(--c-white); }
.btn--outline-dark { background: transparent; color: var(--c-text); border-color: var(--c-border); }
.btn--outline-dark:hover { border-color: var(--c-text); }
.btn--sm        { padding: 0.6rem 1.25rem; font-size: 0.8125rem; }
.btn-group      { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* ── Navbar ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-block: 1.5rem;
  transition: background var(--t), box-shadow var(--t), padding var(--t);
}
.nav--scrolled {
  background: var(--c-bg);
  box-shadow: 0 1px 0 var(--c-border);
  padding-block: 1rem;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
  /* logo assumed light/white — invert to dark when nav scrolls over light bg */
  filter: brightness(0) invert(1);
  transition: filter var(--t), opacity var(--t);
}
.nav--scrolled .nav__logo-img {
  filter: none;
}
.nav__links { display: flex; align-items: center; gap: 0.2rem; }

.nav__link {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(247,244,240,0.82);
  padding: 0.5rem 0.85rem;
  transition: color var(--t);
}
.nav__link:hover { color: var(--c-white); }
.nav--scrolled .nav__link { color: var(--c-muted); }
.nav--scrolled .nav__link:hover { color: var(--c-text); }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(247,244,240,0.82);
  padding: 0.5rem 0.85rem;
  background: none;
  border: none;
  transition: color var(--t);
}
.nav__dropdown-toggle:hover { color: var(--c-white); }
.nav--scrolled .nav__dropdown-toggle { color: var(--c-muted); }
.nav--scrolled .nav__dropdown-toggle:hover { color: var(--c-text); }
.nav__dropdown-toggle svg { width: 11px; height: 11px; transition: transform var(--t); }
.nav__dropdown.open .nav__dropdown-toggle svg { transform: rotate(180deg); }
.nav__dropdown-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  min-width: 230px;
  padding: 0.4rem;
  box-shadow: 0 8px 32px rgba(28,26,24,0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--t), transform var(--t);
}
.nav__dropdown.open .nav__dropdown-menu,
.nav__dropdown-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav__dropdown-item {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  color: var(--c-text);
  transition: background var(--t), color var(--t);
}
.nav__dropdown-item:hover { background: var(--c-surface); color: var(--c-accent); }

/* Nav right */
.nav__right { display: flex; align-items: center; gap: 1rem; }
.nav__lang   { display: flex; align-items: center; gap: 0.2rem; }
.nav__lang-btn {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.45rem;
  color: rgba(247,244,240,0.55);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--t);
  text-decoration: none;
}
.nav__lang-btn--active,
.nav__lang-btn:hover { color: var(--c-white); }
.nav--scrolled .nav__lang-btn           { color: var(--c-muted); }
.nav--scrolled .nav__lang-btn--active,
.nav--scrolled .nav__lang-btn:hover     { color: var(--c-text); }
.nav__lang-sep { color: rgba(247,244,240,0.25); font-size: 0.7rem; }
.nav--scrolled .nav__lang-sep { color: var(--c-border); }

.nav__phone-btn {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.5rem 1.1rem;
  border: 1.5px solid rgba(255,255,255,0.28);
  color: var(--c-white);
  background: transparent;
  transition: background var(--t), border-color var(--t), color var(--t);
  text-decoration: none;
  display: inline-block;
}
.nav__phone-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); color: var(--c-white); }
.nav--scrolled .nav__phone-btn { border-color: var(--c-border); color: var(--c-text); }
.nav--scrolled .nav__phone-btn:hover { background: var(--c-text); border-color: var(--c-text); color: var(--c-white); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--c-white);
  transition: transform var(--t), opacity var(--t);
}
.nav--scrolled .nav__hamburger span { background: var(--c-text); }
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--c-bg);
  z-index: 99;
  padding: 5.5rem 2rem 2.5rem;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  font-family: var(--f-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--c-text);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--c-border);
  display: block;
}
.nav__mobile-link:hover { color: var(--c-accent); }
.nav__mobile-sub {
  padding: 0.5rem 0 0.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.nav__mobile-sub-link {
  font-size: 0.9375rem;
  color: var(--c-muted);
  padding: 0.35rem 0;
  display: block;
}
.nav__mobile-sub-link:hover { color: var(--c-accent); }
.nav__mobile-bottom {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: var(--c-dark);
  display: flex;
  align-items: flex-end;
  padding-top: 100px;
  padding-bottom: clamp(4rem, 8vw, 8rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 75% 35%, rgba(184,150,90,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 85%, rgba(184,150,90,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.012 0.008' numOctaves='6' seed='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 600px 600px;
  opacity: 0.2;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero__content { position: relative; max-width: 760px; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-white);
  margin-bottom: 1.5rem;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--c-white);
}
.hero__heading {
  font-family: var(--f-heading);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--c-bg);
  margin-bottom: 1.75rem;
}
.hero__heading em { font-style: italic; color: var(--c-accent); }
.hero__sub {
  font-size: clamp(0.95rem, 1.4vw, 1.125rem);
  color: rgba(247,244,240,0.6);
  max-width: 50ch;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

/* ── Services Section ────────────────────────────────────── */
.services__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: clamp(3rem, 5vw, 5rem);
  flex-wrap: wrap;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--c-border);
  gap: 1px;
  border: 1px solid var(--c-border);
}
.service-card {
  background: var(--c-bg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: background var(--t);
  position: relative;
}
.service-card:hover { background: var(--c-surface); }
.service-card__num {
  font-family: var(--f-heading);
  font-size: 1rem;
  color: var(--c-accent);
  font-style: italic;
  margin-bottom: 1.25rem;
}
.service-card__name {
  font-family: var(--f-heading);
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.service-card__desc {
  font-size: 0.875rem;
  color: var(--c-muted);
  line-height: 1.65;
  flex: 1;
}
.service-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--c-accent);
  margin-top: 1.25rem;
  letter-spacing: 0.03em;
  transition: gap var(--t);
}
.service-card:hover .service-card__more { gap: 0.7rem; }

/* ── About ───────────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.about__img-wrap { position: relative; }
.about__img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about__img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-muted);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
.about__img-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 48%;
  aspect-ratio: 1;
  border: 1px solid var(--c-accent);
  z-index: -1;
  pointer-events: none;
}
.about__content h2 { margin-bottom: 0.5rem; }
.about__role {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1.5rem;
}
.about__bio {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-muted);
  max-width: 56ch;
}
.about__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-border);
}
.about__stat-num {
  font-family: var(--f-heading);
  font-size: 2.75rem;
  font-weight: 300;
  color: var(--c-accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.about__stat-lbl {
  font-size: 0.8125rem;
  color: var(--c-muted);
  letter-spacing: 0.03em;
}

/* ── How We Work ─────────────────────────────────────────── */
.how__header { margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
}
.how__item { position: relative; padding-top: 1.75rem; }
.how__item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2rem; height: 1.5px;
  background: var(--c-accent);
}
.how__title {
  font-family: var(--f-heading);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.7rem;
  line-height: 1.3;
}
.how__text {
  font-size: 0.9375rem;
  color: var(--c-muted);
  line-height: 1.75;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq__header { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.faq__list   { border-top: 1px solid var(--c-border); }
.faq__item   { border-bottom: 1px solid var(--c-border); }
.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.4rem 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--f-heading);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 400;
  color: var(--c-text);
  transition: color var(--t);
}
.faq__question:hover { color: var(--c-accent); }
.faq__icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--c-muted);
  transition: transform var(--t), background var(--t), color var(--t), border-color var(--t);
  line-height: 1;
}
.faq__item.open .faq__icon {
  transform: rotate(45deg);
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-white);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s ease;
}
.faq__item.open .faq__answer { max-height: 500px; }
.faq__answer-inner {
  padding-bottom: 1.5rem;
  font-size: 0.9375rem;
  color: var(--c-muted);
  line-height: 1.8;
  max-width: 70ch;
}

/* ── Contact ─────────────────────────────────────────────── */
.contact__header { margin-bottom: clamp(3rem, 5vw, 4.5rem); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.contact__form-wrap { display: flex; flex-direction: column; gap: 1.2rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form__group { display: flex; flex-direction: column; gap: 0.4rem; }
.form__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  font-family: var(--f-body);
  font-size: 0.9375rem;
  color: var(--c-text);
  transition: border-color var(--t), background var(--t);
  -webkit-appearance: none;
  appearance: none;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  background: var(--c-white);
}
.form__select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%236B6560' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 12px; padding-right: 2.5rem; }
.form__textarea { resize: vertical; min-height: 130px; }
.form__honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form__status {
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  display: none;
  line-height: 1.5;
}
.form__status--success { background: #F0FFF4; color: #276749; border-left: 3px solid #2F855A; }
.form__status--error   { background: #FFF5F5; color: #C53030; border-left: 3px solid #E53E3E; }
.form__input--error { border-color: #E53E3E; background: #FFF5F5; }
.form__field-error  { font-size: 0.75rem; color: #C53030; margin-top: 0.15rem; }

.contact__info { display: flex; flex-direction: column; gap: 2rem; }
.contact__info-item { display: flex; flex-direction: column; gap: 0.35rem; }
.contact__info-lbl {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.contact__info-val { font-size: 0.9375rem; color: var(--c-text); line-height: 1.6; }
.contact__info-val a { color: var(--c-text); }
.contact__info-val a:hover { color: var(--c-accent); }
.contact__map {
  margin-top: 1.5rem;
  border: 1px solid var(--c-border);
  overflow: hidden;
}
.contact__map iframe { width: 100%; height: 240px; display: block; border: none; }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: var(--c-dark); color: var(--c-bg); padding-block: clamp(3rem, 5vw, 5rem); }
.footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.footer__name {
  display: block;
  height: 40px;
  width: auto;
  margin-bottom: 0.6rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer__tagline { font-size: 0.875rem; color: rgba(247,244,240,0.7); }
.footer__nav { display: flex; flex-wrap: wrap; gap: 0.1rem 0.25rem; }
.footer__nav-link {
  font-size: 0.875rem;
  color: rgba(247,244,240,0.7);
  padding: 0.25rem 0.6rem;
  transition: color var(--t);
}
.footer__nav-link:hover { color: var(--c-bg); }
.footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(247,244,240,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer__copy,
.footer__bar { font-size: 0.8125rem; color: rgba(247,244,240,0.7); }

/* ── Floating CTA ────────────────────────────────────────── */
.float-cta {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 201;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
}
.float-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  color: var(--c-white);
  box-shadow: 0 4px 18px rgba(0,0,0,0.2);
  transition: transform var(--t), box-shadow var(--t);
}
.float-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
  color: var(--c-white);
}
.float-cta__btn--whatsapp { background: #25D366; }
.float-cta__btn--phone    { background: var(--c-accent); }

/* ── Service / Page Hero ─────────────────────────────────── */
.page-hero {
  background: var(--c-dark);
  padding-top: clamp(130px, 14vw, 180px);
  padding-bottom: clamp(3.5rem, 6vw, 6rem);
}
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: rgba(247,244,240,0.7);
  margin-bottom: 1.5rem;
}
.page-hero__breadcrumb a {
  color: rgba(247,244,240,0.7);
  transition: color var(--t);
}
.page-hero__breadcrumb a:hover { color: rgba(247,244,240,0.75); }
.page-hero__sep { margin-inline: 0.2rem; }
.page-hero__heading {
  font-family: var(--f-heading);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--c-bg);
  line-height: 1.1;
  max-width: 18ch;
}
.page-hero__sub {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: rgba(247,244,240,0.7);
  max-width: 52ch;
  margin-top: 1.25rem;
  line-height: 1.75;
}

/* Service body content */
.service-body { max-width: 760px; }
.service-body p { font-size: 1.0625rem; line-height: 1.85; color: var(--c-muted); max-width: none; margin-bottom: 1.25rem; }
.service-body h3 { font-family: var(--f-heading); font-size: 1.75rem; font-weight: 400; margin-bottom: 1.25rem; color: var(--c-text); }
.service-body ul { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.5rem; }
.service-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--c-muted);
}
.service-body ul li::before {
  content: '';
  flex-shrink: 0;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--c-accent);
  margin-top: 0.6rem;
}

/* Service CTA strip */
.service-cta {
  background: var(--c-dark);
  padding-block: clamp(4rem, 7vw, 7rem);
  text-align: center;
}
.service-cta__heading {
  font-family: var(--f-heading);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--c-bg);
  margin-bottom: 1rem;
}
.service-cta__sub {
  font-size: 1rem;
  color: rgba(247,244,240,0.7);
  max-width: 44ch;
  margin-inline: auto;
  margin-bottom: 2.25rem;
  line-height: 1.75;
}

/* Privacy / simple text page */
.text-page { max-width: 760px; }
.text-page h3 { font-family: var(--f-heading); font-size: 1.5rem; margin-top: 2.5rem; margin-bottom: 0.75rem; }
.text-page p  { font-size: 0.9375rem; line-height: 1.85; color: var(--c-muted); margin-bottom: 1rem; max-width: none; }

/* ── Scroll Reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid  { grid-template-columns: repeat(2, 1fr); }
  .about__grid     { grid-template-columns: 1fr; gap: 3rem; }
  .about__img-wrap { max-width: 480px; }
  .how__grid       { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .contact__grid   { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__right      { display: none; }
  .nav__hamburger  { display: flex; }
  .services__grid  { grid-template-columns: 1fr; }
  .how__grid       { grid-template-columns: 1fr; }
  .footer__grid    { grid-template-columns: 1fr; }
  .about__stats    { gap: 1.75rem; flex-wrap: wrap; }
  .form__row       { grid-template-columns: 1fr; }
  .about__img-accent { display: none; }
  .float-cta       { bottom: 1.25rem; right: 1.25rem; }
  .float-cta__btn  { width: 46px; height: 46px; }
}

@media (max-width: 480px) {
  .btn-group           { flex-direction: column; align-items: flex-start; }
  .footer__bottom      { flex-direction: column; text-align: center; }
  .services__header    { flex-direction: column; align-items: flex-start; }
}

/* ── Cookie Notice ───────────────────────────────────────── */
.cookie-notice {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--c-text);
  padding: 1rem 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.cookie-notice.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-notice__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-notice__text {
  flex: 1;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: rgba(247,244,240,0.8);
}
.cookie-notice__text a {
  color: rgba(247,244,240,0.8);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color var(--t);
}
.cookie-notice__text a:hover { color: var(--c-white); }
.cookie-notice__btn {
  flex-shrink: 0;
  padding: 0.45rem 1.4rem;
  font-size: 0.8125rem;
  font-family: var(--f-body);
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 3px;
  cursor: pointer;
  transition: border-color var(--t), background var(--t);
  white-space: nowrap;
}
.cookie-notice__btn:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}

/* ── Footer credit ───────────────────────────────────────── */
.footer__credit { font-size: 0.75rem; color: rgba(247,244,240,0.45); }
.footer__credit a {
  color: rgba(247,244,240,0.55);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color var(--t);
}
.footer__credit a:hover { color: rgba(247,244,240,0.85); }
