/* =========================================================
   Dott. Mauro Devecchi — Design tokens
   ========================================================= */
:root {
  --c-bg:        #F9F7F7;
  --c-bg-alt:    #F2F5FA;
  --c-surface:   #FFFFFF;
  --c-soft:      #DBE2EF;
  --c-accent:    #3F72AF;
  --c-ink:       #112D4E;
  --c-ink-2:     #2A4875;
  --c-muted:     #5F7496;
  --c-line:      rgba(17, 45, 78, 0.14);
  --c-line-soft: rgba(17, 45, 78, 0.06);

  --ff-serif: "Cormorant Garamond", "Times New Roman", serif;
  --ff-sans:  "Manrope", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --radius-sm: 6px;
  --radius:    14px;
  --radius-lg: 22px;

  --container: 1180px;
  --gutter: clamp(20px, 4vw, 40px);

  --shadow-sm: 0 2px 14px rgba(17, 45, 78, 0.06);
  --shadow:    0 14px 40px rgba(17, 45, 78, 0.10);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur:  .7s;
}

/* =========================================================
   Reset & base
   ========================================================= */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin: 0 0 0.4em;
  line-height: 1.1;
  color: var(--c-ink);
}

strong {
	font-weight: 500;
}

p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute; left: -9999px; top: 10px;
  background: var(--c-ink); color: #fff;
  padding: 10px 16px; border-radius: var(--radius-sm);
  text-decoration: none;
}
.skip-link:focus { left: 10px; z-index: 9999; }

/* =========================================================
   Typography tokens
   ========================================================= */
.display {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: .25em 0 .4em;
}
.display-line { display: block; }
.display-line.italic { font-style: italic; color: var(--c-ink-2); }

.h-display {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 500;
  margin: 0 0 .4em;
}

.h-sub {
  font-size: clamp(1.4rem, 2vw, 1.45rem);
  font-weight: 600;
  margin: 0 0 .6em;
}

.eyebrow {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ink-2);
  margin: 0 0 1.2em;
}

.muted { color: var(--c-muted); }
.small { font-size: 0.85rem; }

.section-intro {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 300;
  max-width: 60ch;
  color: var(--c-ink-2);
}

.link-underline {
  text-decoration: none;
  border-bottom: 1px solid var(--c-accent);
  padding-bottom: 2px;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.link-underline:hover { border-color: var(--c-ink); color: var(--c-ink); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--c-ink);
  color: #fff;
}
.btn-primary:hover {
  background: #353B63;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  background: transparent;
  color: var(--c-ink);
  border: 1px solid var(--c-ink);
}
.btn-ghost:hover {
  background: var(--c-ink);
  color: #fff;
}

.btn-block { width: 100%; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-soft);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--c-line-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-block: 18px;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
  margin-right: auto;
}
.brand-name {
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--c-ink);
}
.brand-tag {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-top: 3px;
}

.main-nav ul {
  display: flex;
  gap: 26px;
  line-height: 1.3;
}
.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--c-ink-2);
  position: relative;
  padding: 6px 0;
  transition: color .3s var(--ease);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--c-ink);
  transition: right .4s var(--ease);
}
.main-nav a:hover { color: var(--c-ink); }
.main-nav a:hover::after { right: 0; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--c-muted);
}
.lang-btn {
  padding: 4px 2px;
  font-weight: 500;
  color: var(--c-muted);
  transition: color .3s var(--ease);
  letter-spacing: inherit;
}
.lang-btn[aria-pressed="true"] { color: var(--c-ink); }
.lang-btn:hover { color: var(--c-ink); }
.lang-sep { color: var(--c-line); }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--c-ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  padding: 8px 0 24px;
  border-top: 1px solid var(--c-line-soft);
}
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav a {
  display: block;
  padding: 14px var(--gutter);
  text-decoration: none;
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-line-soft);
  font-size: 1.05rem;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(48px, 9vw, 110px) 0 clamp(48px, 8vw, 90px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% -10%;
  height: 60%;
  background: radial-gradient(ellipse at center, var(--c-soft) 0%, transparent 70%);
  opacity: .6;
  z-index: 0;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy .eyebrow { margin-bottom: 1.6em; }

.hero-lead {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 2.2vw, 2rem);
  line-height: 1.2;
  color: var(--c-ink-2);
  max-width: 32ch;
  margin-bottom: 2em;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-portrait {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 440px;
  margin-inline: auto;
}
.hero-portrait img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.portrait-bg {
  position: absolute;
  inset: 24px -24px -24px 24px;
  background: linear-gradient(135deg, var(--c-soft), var(--c-accent));
  border-radius: var(--radius-lg);
  z-index: 1;
}

/* =========================================================
   Lead
   ========================================================= */
.lead {
  padding: clamp(40px, 6vw, 80px) 0;
  border-top: 1px solid var(--c-line-soft);
  border-bottom: 1px solid var(--c-line-soft);
  background: var(--c-bg-alt);
}
.lead-text {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.45;
  max-width: 52ch;
  margin: 0 auto 2.2em;
  text-align: center;
  color: var(--c-ink);
}
.lead-text a { text-decoration: none; border-bottom: 1px dashed; }
.lead-text strong { font-weight: 500; color: var(--c-ink); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.stat {
  text-align: center;
  padding: 20px 10px;
  border-left: 1px solid var(--c-line);
}
.stat:first-child { border-left: 0; }
.stat-num {
  display: block;
  font-family: var(--ff-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--c-ink);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* =========================================================
   Deco section
   ========================================================= */
.deco {
	position: relative;
	height: 450px;
	background-position: 50% 0;
	background-repeat: no-repeat;
	background-image: url(../img/hero-sec-1.jpg);
	background-size: cover;
}
/* background-attachment: fixed only on pointer-fine devices (desktop with mouse).
   Mobile browsers (iOS Safari in particular) have well-known issues with fixed
   attachment that cause the background to disappear or scale incorrectly. */
@media (hover: hover) and (pointer: fine) {
	.deco { background-attachment: fixed; }
}

/* =========================================================
   Generic section
   ========================================================= */
.section {
  padding: clamp(70px, 10vw, 140px) 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(40px, 6vw, 80px);
}

/* ornate list */
.ornate-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ornate-list li {
  position: relative;
  padding-left: 26px;
  color: var(--c-ink);
  line-height: 1.2;
}
.ornate-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7em;
  width: 14px; height: 1px;
  background: var(--c-accent);
}

/* =========================================================
   Fertility
   ========================================================= */
.fertility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  margin-bottom: clamp(40px, 6vw, 70px);
}
.fcol .muted { margin-bottom: 1em; }

.evidence {
  background: var(--c-surface);
  border-left: 2px solid var(--c-accent);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 44px);
  margin: 0;
  box-shadow: var(--shadow-sm);
}
.evidence p {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1.5;
  margin: 0;
  color: var(--c-ink);
  font-weight: 300;
}
.evidence em {
  font-style: italic;
  color: var(--c-ink-2);
}
.evidence-source {
  margin-top: 1.2em;
  padding-top: 1em;
  border-top: 1px solid var(--c-line-soft);
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--c-muted);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.evidence-source a {
  color: var(--c-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--c-accent);
  padding-bottom: 1px;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.evidence-source a:hover {
  color: var(--c-accent);
  border-color: var(--c-ink);
}

/* =========================================================
   Paths
   ========================================================= */
.paths {
  background: var(--c-bg-alt);
}
.paths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 34px);
}
.path-card {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.5vw, 44px);
  border: 1px solid var(--c-line-soft);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  position: relative;
}
.path-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.path-card .h-sub {
/*   font-size: clamp(1.5rem, 2.6vw, 1.85rem); */
  font-size: clamp(1.5rem, 2.6vw, 1.85rem);
  font-weight: 600;
}
.path-num {
  display: block;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--c-accent);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.path-meta {
  font-size: 0.85rem;
  color: var(--c-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.2em;
}
.path-desc {
  color: var(--c-ink-2);
  margin-bottom: 1.4em;
}
.path-goals-label {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--c-ink);
  margin: 1em 0 .6em;
}

/* =========================================================
   About
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.about-portrait {
  position: sticky;
  top: 110px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--c-soft);
}
.about-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2.5s var(--ease);
}
.about-portrait img.is-active {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .about-portrait img { transition: none; }
}
.about-block {
  margin-bottom: clamp(30px, 4vw, 50px);
}
.about-block p {
  color: var(--c-ink-2);
}
.chetch-logo {
  margin: 1.5em 0;
}
.chetch-logo img {
  max-width: 180px;
  opacity: 0.85;
}

/* =========================================================
   Participations
   ========================================================= */
.participations {
  background: var(--c-bg-alt);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 22px);
}
.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--c-soft);
}
.gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter .5s var(--ease);
  filter: saturate(0.9);
}
.gallery figure:hover img {
  transform: scale(1.06);
  filter: saturate(1);
}
.gallery figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(66,72,116,0.88), rgba(66,72,116,0));
  color: #fff;
  font-size: 0.82rem;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.gallery figure:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   Where
   ========================================================= */
.where-card {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 32px);
  width: 100%;
  max-width: none;
  border: 1px solid var(--c-line-soft);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 1.4fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
}
.where-photo {
  overflow: hidden;
  border-radius: var(--radius);
  align-self: stretch;
}
.where-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.where-location { min-width: 0; }
.where-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(8px, 2vw, 20px);
}
.where-logo img {
  height: clamp(48px, 5vw, 70px);
  width: auto;
  opacity: 0.9;
}
@media (max-width: 860px) {
  .where-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .where-photo img { aspect-ratio: 16 / 9; }
  .where-logo { justify-content: flex-start; padding: 0; }
}
.where-card .city {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--c-accent);
  letter-spacing: 0.04em;
  margin-bottom: .5em;
}
.where-card .h-sub {
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin-bottom: .4em;
}
.where-card .muted { margin-bottom: 1.4em; }

/* =========================================================
   Reviews slider
   ========================================================= */
.reviews {
  background: var(--c-bg-alt);
}
.reviews-slider {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(40px, 5vw, 60px);
}
.slider-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.slider-track {
  display: flex;
  transition: transform .7s var(--ease);
  will-change: transform;
}
.slider-track li {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: clamp(30px, 4vw, 52px) clamp(24px, 4vw, 48px);
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  text-align: center;
}
.review-stars {
  display: inline-flex;
  gap: 4px;
  color: var(--c-accent);
  font-size: 1rem;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
.review-quote {
  font-family: var(--ff-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.55;
  color: var(--c-ink);
  max-width: 58ch;
  margin: 0 auto 28px;
  position: relative;
}
.review-quote::before,
.review-quote::after {
  content: "\201C";
  font-family: var(--ff-serif);
  color: var(--c-accent);
  font-size: 2em;
  line-height: 1;
  opacity: 0.6;
}
.review-quote::before { margin-right: 0.1em; }
.review-quote::after { content: "\201D"; margin-left: 0.1em; }
.review-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--c-muted);
  font-size: 0.88rem;
}
.review-name {
  color: var(--c-ink);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.review-date {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-surface);
  color: var(--c-ink);
  border: 1px solid var(--c-line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  z-index: 2;
}
.slider-nav.prev { left: 0; }
.slider-nav.next { right: 0; }
.slider-nav:hover {
  background: var(--c-ink);
  color: #fff;
  border-color: var(--c-ink);
  box-shadow: var(--shadow-sm);
}
.slider-nav:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.slider-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--c-line);
  border: 0;
  padding: 0;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.slider-dot[aria-selected="true"] {
  background: var(--c-ink);
  transform: scale(1.25);
}
.slider-dot:hover {
  background: var(--c-accent);
}

.reviews-source {
  text-align: center;
  margin-top: 28px;
}

@media (max-width: 640px) {
  .reviews-slider { padding: 0; }
  .slider-nav.prev { left: -16px; }
  .slider-nav.next { right: -16px; }
  .slider-nav { background: rgba(255, 255, 255, 0.92); }
}

/* =========================================================
   Booking
   ========================================================= */
.booking {
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-soft) 100%);
}
.booking-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.booking-widget {
  padding: 0 0 clamp(10px, 2vw, 20px);
  min-height: 460px;
  display: flex;
  justify-content: center;
}
.booking-widget iframe {
  max-width: 380px;
  width: 100%;
  min-height: 680px !important;
  max-height: 770px !important;
}
@media (min-width: 981px) {
  .booking-widget { justify-content: flex-start; }
}
.booking-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 10px 4px;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--c-ink);
  color: #fff;
  padding: clamp(50px, 6vw, 80px) 0 30px;
  margin-top: 0;
}
.site-footer .brand-name { color: #fff; }
.site-footer .brand-tag { color: var(--c-soft); }
.site-footer .muted { color: rgba(255,255,255,0.55); }

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
}
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  transition: color .3s var(--ease);
}
.footer-nav a:hover { color: #fff; }

.footer-social ul {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  transition: background .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
  text-decoration: none;
}
.footer-social a:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.4);
}

.footer-meta {
  grid-column: 1 / -1;
  padding-top: 24px;
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-meta > p { margin: 0; }

.footer-lang { display: inline-flex; }
.footer-lang-btn {
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  border-radius: 0;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.footer-lang-btn:hover {
  color: #fff;
  border-bottom-color: #fff;
}

/* On desktop: hide the header lang switcher (moved to footer).
   On mobile (<= 780px, burger menu): keep header switcher, hide footer-lang. */
@media (min-width: 781px) {
  .site-header .lang-switch { display: none; }
}
@media (max-width: 780px) {
  .footer-lang { display: none; }
}

/* =========================================================
   Reveal animations
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay { transition-delay: .15s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-portrait { max-width: 360px; order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { position: relative; top: auto; width: 100%; max-width: 420px; margin-inline: auto; }
  .booking-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-actions .btn { display: none; }
  .mobile-nav.is-open { display: block; }
  .fertility-grid { grid-template-columns: 1fr; gap: 40px; }
  .paths-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 0; }
  .stat { border-left: 0; border-top: 1px solid var(--c-line); padding: 22px 0; }
  .stat:first-child { border-top: 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery figcaption { opacity: 1; transform: none; font-size: 0.75rem; padding: 10px 12px; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  body { font-size: 16px; }
}
