/* ================================================================
   ORTEA® – Centrum Medycyny Kręgosłupa
   CSS Stylesheet – Professional Medical Design
   ================================================================ */

/* ── Variables ─────────────────────────────────────────────────── */
:root {
  --navy:        #28567c;
  --navy-dark:   #173a58;
  --navy-mid:    #4f7fa6;
  --gold:        #2b89b9;
  --gold-dark:   #1f6a92;
  --gold-light:  #dff3fb;
  --white:       #ffffff;
  --off-white:   #fbfdff;
  --light-gray:  #f2f8fc;
  --gray:        #dce8f1;
  --text:        #274B6B;
  --text-light:  #5c7690;
  --text-muted:  #8ea4b7;
  --success:     #22c55e;
  --font-head:   'Poppins', sans-serif;
  --font-body:   'Open Sans', sans-serif;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow:      0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.14);
  --pg-loading-bar-animation-duration: 650ms;
  /* Slightly under half-width keeps the moving highlight readable on small screens. */
  --pg-loading-bar-fill-width: 42%;
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  all 0.3s ease;
  --max-width:   1200px;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utility ───────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.bg-light  { background: var(--light-gray); }
.bg-navy   { background: var(--navy); color: var(--white); }
.bg-off    { background: var(--off-white); }

.section { padding: 96px 0; }

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  max-width: 640px;
  margin: 0 auto;
}

.bg-navy .section__title { color: var(--white); }
.bg-navy .section__subtitle { color: rgba(255,255,255,0.72); }

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold-light);
  color: var(--navy-dark);
  border: 1px solid transparent;
}
.btn--gold:hover { background: var(--white); border-color: rgba(255,255,255,0.42); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(90,168,194,0.24); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover { background: var(--navy-dark); transform: translateY(-2px); }

.btn--full { width: 100%; justify-content: center; }
.btn--lg { padding: 16px 40px; font-size: 15px; }

/* ── Cookie Banner ─────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 9999;
  background: rgba(13,28,51,0.96);
  color: var(--white);
  padding: 18px 22px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 18px 46px rgba(0,0,0,0.28);
  backdrop-filter: blur(16px);
  display: none; /* shown via JS */
}

.cookie-banner__inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner__copy {
  flex: 1;
  min-width: 280px;
}

.cookie-banner__title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.cookie-banner__text {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
}

.cookie-banner__text a {
  color: var(--gold-light);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-manage {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(13,28,51,0.96);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 16px 34px rgba(0,0,0,0.24);
}

/* ── Header ────────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  padding: 20px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: var(--navy-dark);
  padding: 12px 0;
  box-shadow: var(--shadow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 96px;
  min-height: 96px;
  padding: 14px;
  border-radius: 24px;
  background: linear-gradient(180deg, #085f2e 0%, #0e7a3e 100%);
  box-shadow: 0 18px 34px rgba(5,16,30,0.3);
  overflow: hidden;
  border: 1px solid rgba(120,200,120,0.18);
}.header__logo-img {
  width: 100%;
  max-width: 66px;
  max-height: 66px;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: none;
  transition: transform 0.3s ease, filter 0.3s ease;
  border-radius: 12px;
  transform: none;
}
.header:hover .header__logo-img { transform: scale(1.03); }
.header.scrolled .header__logo {
  width: 82px;
  min-height: 82px;
  padding: 12px;
}

.nav { display: flex; align-items: center; gap: 8px; }

.header__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__socials--nav {
  display: none;
}

.header__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  transition: var(--transition);
}

.header__social-link svg {
  width: 18px;
  height: 18px;
}

.header__social-link:hover {
  transform: translateY(-2px);
  color: var(--navy-dark);
  background: var(--gold-light);
  border-color: transparent;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* Hide lang-btn & book btn inside nav on desktop (they live in header__actions) */
@media (min-width: 769px) {
  .nav .lang-switch--nav,
  .nav > .lang-btn,
  .nav > .btn { display: none; }
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.1); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lang-btn {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.72);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.lang-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.08); }
.lang-btn--active {
  color: var(--navy-dark);
  background: var(--gold-light);
  border-color: transparent;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1010;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #dcecf5;
  background:
    linear-gradient(90deg, rgba(36,83,119,0.82) 0%, rgba(55,107,146,0.72) 44%, rgba(84,143,180,0.58) 100%),
    url('/images/hero-medical-background.jpg') center 35% / cover no-repeat;
  overflow: hidden;
}

/* Photo overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(3,12,24,0.34) 0%, rgba(3,12,24,0.18) 28%, rgba(5,16,30,0.34) 100%),
    linear-gradient(90deg, rgba(25,62,94,0.56) 0%, rgba(25,62,94,0.24) 36%, rgba(25,62,94,0.04) 100%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
}

/* ── Hero orbs ─────────────────────────────────────────────────── */
.hero__orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.12;
  animation: floatOrb var(--float-dur, 10s) ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}

.hero__orb--1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: -80px; right: 8%;
  --float-dur: 11s;
  opacity: 0.14;
}
.hero__orb--2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, #4a9eff 0%, transparent 70%);
  bottom: 5%; left: -60px;
  --float-dur: 14s;
  --float-delay: -4s;
  opacity: 0.09;
}
.hero__orb--3 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
  top: 45%; left: 45%;
  --float-dur: 8s;
  --float-delay: -6s;
  opacity: 0.08;
}
.hero__orb--4 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, #1e3a5f 0%, transparent 70%);
  bottom: -180px; right: 25%;
  --float-dur: 18s;
  --float-delay: -9s;
  opacity: 0.18;
}

@keyframes floatOrb {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-32px) scale(1.06); }
}

/* ── Hero decorative spine ─────────────────────────────────────── */
.hero__deco {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(100px, 14vw, 200px);
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  animation: floatOrb 14s ease-in-out infinite;
  animation-delay: -3s;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: left;
  padding: 180px 0 140px;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ── Hero entrance animation ────────────────────────────────────── */
.hero-anim {
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--hd, 0s);
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(38px, 6vw, 74px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  max-width: 640px;
  margin-bottom: 0;
  text-shadow: 0 14px 30px rgba(0,0,0,0.34);
}

.hero__title span { color: var(--gold); }

.hero__role {
  margin-top: 16px;
  color: rgba(255,255,255,0.92);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.hero__subtitle {
  max-width: 640px;
  margin: 20px 0 0;
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  text-shadow: 0 10px 22px rgba(0,0,0,0.28);
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__brand-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.hero__brand-person,
.hero__brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
}

.hero__portrait {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.42);
}

.hero__brand-person-copy,
.hero__brand-mark {
  color: var(--white);
}

.hero__brand-person-copy strong,
.hero__brand-mark span {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
}

.hero__brand-person-copy span {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  color: rgba(255,255,255,0.76);
}

.hero__brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 14px;
}

.hero__highlight {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  backdrop-filter: blur(6px);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

/* ── About ─────────────────────────────────────────────────────── */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image { position: relative; }

.about__photo {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about__image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.4;
}

.about__text { display: flex; flex-direction: column; gap: 0; }

.about__text .section__label { text-align: left; }
.about__text .section__title { text-align: left; }

.about__text p {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 16px;
}

.about__why {
  margin-top: 28px;
  padding: 28px;
  background: var(--light-gray);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}

.about__why h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.why-list { display: flex; flex-direction: column; gap: 10px; }
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text);
}
.why-list .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.why-list .check svg {
  width: 18px;
  height: 18px;
}

.about-teaser__card {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-teaser__text {
  max-width: 620px;
  margin: 0 auto 24px;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.75;
}

.about-details__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-detail-card,
.about-extended__panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}

.about-detail-card__title {
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 14px;
}

.about-detail-card__text,
.about-extended__intro {
  color: var(--text-light);
  line-height: 1.75;
}

.about-extended__cta {
  margin-top: 22px;
}

.about-extended {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
}

.about-extended__panel--accent {
  background: linear-gradient(180deg, #f7f9fc 0%, #eef4fa 100%);
  border: 1px solid rgba(26,43,74,0.08);
}

.home-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.home-story__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}

.home-story__card--accent {
  background: linear-gradient(180deg, #f9fcfe 0%, #eef7fb 100%);
  border: 1px solid rgba(74,118,159,0.12);
}

.home-story__text {
  color: var(--text);
  font-weight: 500;
  margin-bottom: 18px;
  line-height: 1.8;
}

.home-story__card .section__title,
.home-story__card--accent .section__title {
  color: var(--navy-dark);
}

.home-story__list { margin-bottom: 24px; }

/* ── Services ──────────────────────────────────────────────────── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}
/* Every card spans 2 of 6 columns = same width as 3-across layout */
.service-card { grid-column: span 2; }
/* When 5 cards: push cards 4 & 5 to center row (offset by 1 col each side) */
.service-card:nth-child(3n + 4) { grid-column: 2 / 4; }
.service-card:nth-child(3n + 5) { grid-column: 4 / 6; }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid transparent;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-card__title {
  font-family: var(--font-head);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.65;
  max-width: 32ch;
  margin: 0 auto;
  flex: 1;
}

.service-card__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(8,20,38,0.96) 0%, rgba(23,53,86,0.96) 100%);
  color: var(--gold-light);
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-card__actions,
.service-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.service-card__actions {
  justify-content: center;
}

.services__grid--home {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.services__grid--home .service-card,
.services__grid--home .service-card:nth-child(3n + 4),
.services__grid--home .service-card:nth-child(3n + 5) { grid-column: auto; }

.service-detail__stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.service-detail {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}

.service-detail__header { margin-bottom: 24px; }

.section__subtitle--left {
  margin-left: 0;
  text-align: left;
}

.service-detail__section + .service-detail__section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gray);
}

.service-detail__section-title {
  font-family: var(--font-head);
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 12px;
}

.service-detail__text,
.service-detail__summary {
  color: var(--text-light);
  line-height: 1.8;
}

.service-detail__summary {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gray);
  font-weight: 600;
}

.service-detail__list { margin-top: 14px; }

/* ── Conditions ─────────────────────────────────────────────────── */
.conditions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.condition-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray);
  transition: var(--transition);
}
.condition-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-3px); }

.condition-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.condition-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  transition: var(--transition);
}

.condition-card:hover .condition-card__icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.condition-card:hover .condition-card__icon svg {
  color: var(--navy-dark);
}

.condition-card__name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.disc-info {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.disc-info h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}
.disc-info p {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
}

/* ── Locations ─────────────────────────────────────────────────── */
.locations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.location-card {
  background: #fff;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(43,137,185,0.12);
  overflow: hidden;
}
.location-card:hover { border-color: rgba(43,137,185,0.28); transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.location-card__map {
  height: 220px;
  flex-shrink: 0;
  overflow: hidden;
}

.location-card__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.location-card__content {
  padding: 22px 24px;
  text-align: left;
  border-top: 1px solid rgba(43,137,185,0.1);
}

.location-card__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 20px;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.location-card__icon--map {
  background: #fff4f3;
  border: 1px solid rgba(234,67,53,0.12);
}

.location-card__icon svg {
  width: 36px;
  height: 36px;
  color: var(--gold);
  transition: var(--transition);
}

.location-card:hover .location-card__icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
}
.location-card:hover .location-card__icon--map {
  background: #ffe4df;
  border-color: rgba(234,67,53,0.2);
}

.location-card:hover .location-card__icon svg {
  color: var(--navy-dark);
}
.location-card:hover .location-card__icon--map svg { transform: scale(1.06); }

.location-card__name {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy-dark);
  margin-bottom: 14px;
}

.location-card__address {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 2px;
}

.location-card__city {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
}

.location-card__detail {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(79,127,166,0.16);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--gold-dark);
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.profile-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(74,118,159,0.08);
}

.profile-card--pending {
  background: linear-gradient(180deg, #fbfdff 0%, #f2f8fc 100%);
}

.profile-card__name {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}

.profile-card__handle {
  color: var(--text);
  font-weight: 600;
  margin-bottom: 10px;
}

.profile-card__status {
  color: var(--text-light);
  font-size: 14px;
}

/* ── Contact ────────────────────────────────────────────────────── */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__info .section__label,
.contact__info .section__title { text-align: left; }

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__item-icon {
  width: 48px;
  height: 48px;
  background: var(--light-gray);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__item-icon svg {
  width: 22px;
  height: 22px;
  color: var(--navy);
}

.contact__item-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact__item-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact__item-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}

.contact__item-value a { transition: var(--transition); }
.contact__item-value a:hover { color: var(--gold-dark); }

.contact__item-note {
  font-size: 14px;
  color: var(--text-light);
}

.contact__service-chip {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(46,95,134,0.08);
  color: var(--navy-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact__item--accent {
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f9fcfe 0%, #eef7fb 100%);
  border: 1px solid rgba(74,118,159,0.14);
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

/* Form */
.form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form__group { margin-bottom: 20px; }

.form__label {
  display: block;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form__label span { color: var(--gold-dark); }

.form__input,
.form__textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}
.form__input:focus,
.form__textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(90,168,194,0.16);
}

.form__textarea { resize: vertical; min-height: 130px; }

.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}
.form__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold-dark);
}
.form__checkbox label {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}
.form__checkbox a { color: var(--gold-dark); text-decoration: underline; }

.form__note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
}

.form__success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 15px;
  font-family: var(--font-head);
  font-weight: 500;
  text-align: center;
  margin-bottom: 16px;
}

.form__error {
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 15px;
  font-family: var(--font-head);
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
}

.maps-grid {
  display: grid;
  gap: 24px;
}

.map-card {
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  border: 1px solid rgba(43,137,185,0.12);
  overflow: hidden;
  transition: var(--transition);
}
.map-card:hover { border-color: rgba(43,137,185,0.28); transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.map-card__content {
  padding: 22px 24px;
  border-top: 1px solid rgba(43,137,185,0.1);
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.map-card__title {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.map-card__address {
  margin-bottom: 2px;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.7;
}

.map-card__city {
  color: var(--navy);
  font-weight: 700;
  line-height: 1.7;
}

.map-card__note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(79,127,166,0.16);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--gold-dark);
}

.map-card__embed {
  height: 340px;
  flex-shrink: 0;
  overflow: hidden;
}

.map-card__embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ── Footer ────────────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.72);
  padding: 80px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer__brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  padding: 18px;
  margin-bottom: 18px;
  border-radius: 26px;
  background: linear-gradient(180deg, #085f2e 0%, #0e7a3e 100%);
  box-shadow: 0 18px 36px rgba(0,0,0,0.24);
  border: 1px solid rgba(120,200,120,0.18);
}

.footer__brand-logo {
  height: 100%;
  width: 100%;
  object-fit: contain;
  filter: none;
}

.footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.72);
}
.footer__contact-item a { transition: var(--transition); }
.footer__contact-item a:hover { color: var(--gold-light); }

.footer__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer__contact-icon svg {
  width: 18px;
  height: 18px;
}

.footer__col-heading {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__nav-list { display: flex; flex-direction: column; gap: 10px; }
.footer__nav-link {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer__nav-link:hover { color: var(--white); padding-left: 6px; }

.footer__profile-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer__profile-name {
  color: rgba(255,255,255,0.88);
  font-size: 14px;
}

.footer__profile-status {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__booking {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}

.footer__booking-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.footer__booking-text {
  max-width: 620px;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
}

.footer__booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__link {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer__link:hover { color: var(--gold-light); }

/* ── Page Transition Overlay ────────────────────────────────────── */
.pg-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: linear-gradient(180deg, #070d1a 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: all;
}
.pg-overlay.is-hidden  { opacity: 0; pointer-events: none; }
.pg-overlay.is-visible { opacity: 1; pointer-events: all; }
.pg-overlay__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.pg-overlay__logo-wrap {
  padding: 12px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 20px 44px rgba(0,0,0,0.22);
}
.pg-overlay__logo {
  display: block;
  height: 88px;
  width: auto;
  object-fit: contain;
  border-radius: 14px;
  filter: none;
  animation: pgLogoPulse 1.2s ease-in-out infinite;
}
.pg-overlay__bar {
  width: min(280px, 64vw);
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.pg-overlay__bar-fill {
  display: block;
  width: var(--pg-loading-bar-fill-width);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(201,168,76,0) 0%, var(--gold-light) 24%, var(--gold) 55%, rgba(255,255,255,0.15) 100%);
  animation: pgLoad var(--pg-loading-bar-animation-duration) ease-in-out infinite;
}
@keyframes pgLogoPulse { 0%,100%{opacity:0.55} 50%{opacity:1} }
/* The bar fill is 42% wide, so the highlight starts well before the track and ends well past it to clear both edges cleanly. */
@keyframes pgLoad {
  /* -125% fully hides the leading edge before entry; 320% clears the trailing edge after exit on small screens. */
  0% { transform: translateX(-125%); }
  100% { transform: translateX(320%); }
}
@media (prefers-reduced-motion: reduce) {
  .pg-overlay { transition: none; }
  .pg-overlay__logo,
  .pg-overlay__bar-fill { animation: none; }
}

/* ── Page Hero (subpages) ───────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 140px 0 80px;
  text-align: center;
  color: var(--white);
  background:
    radial-gradient(ellipse 900px 500px at 55% 20%, rgba(201,168,76,0.07) 0%, transparent 60%),
    linear-gradient(140deg, #07101e 0%, #0d1c33 45%, var(--navy) 100%);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__brand-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}
.page-hero__label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0;
  animation: heroFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}
.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0;
  opacity: 0;
  animation: heroFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.28s forwards;
}
.page-hero__brand-logo {
  width: clamp(76px, 8vw, 104px);
  height: auto;
  max-height: 72px;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.16);
  background: rgba(255,255,255,0.96);
  padding: 8px 10px;
}
.page-hero__sub {
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 500;
  color: rgba(255,255,255,0.74);
  max-width: 560px;
  margin: 0 auto;
  opacity: 0;
  animation: heroFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}
.page-hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
}
.page-hero--light .page-hero__wave { background: linear-gradient(to bottom, transparent, var(--light-gray)); }
.page-hero--soft .page-hero__wave { background: linear-gradient(to bottom, transparent, var(--off-white)); }

/* ── Active nav link ────────────────────────────────────────────── */
.nav__link--active {
  color: var(--gold) !important;
  background: rgba(201,168,76,0.1) !important;
}

/* ── About CTA ──────────────────────────────────────────────────── */
.about__cta { margin-top: 28px; }

/* ── Section More (CTA row below grid) ─────────────────────────── */
.section__more {
  text-align: center;
  margin-top: 48px;
}

/* ── Button: outline-navy ───────────────────────────────────────── */
.btn--outline-navy {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--sm {
  padding: 11px 20px;
  font-size: 13px;
}

/* ── Page CTA (navy strip) ──────────────────────────────────────── */
.page-cta__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.page-cta__title {
  font-family: var(--font-head);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.page-cta__sub {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.74);
  max-width: 520px;
  margin-bottom: 8px;
}

.page-cta__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-bottom: 8px;
}

.page-cta__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 1px;
  transition: color 0.2s ease;
}

.page-cta__contact-item:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

/* ── Scroll Reveal – scale variant ─────────────────────────────── */
[data-reveal="scale"] {
  opacity: 0;
  transform: scale(0.94) translateY(22px);
  transition:
    opacity  0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal="scale"].revealed {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ── Policy Pages ──────────────────────────────────────────────── */
.policy-hero {
  background: var(--navy-dark);
  padding: 140px 0 80px;
  text-align: center;
  color: var(--white);
}

.policy-hero__title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.policy-hero__updated {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
}

.policy-content__intro {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 48px;
  line-height: 1.8;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section__heading {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray);
}

.policy-section__text {
  font-size: 15.5px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── Scroll Reveal ─────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal="left"]  { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }

[data-reveal].revealed,
[data-reveal="left"].revealed,
[data-reveal="right"].revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Reset 6-col grid to 2-col; override nth-child column pinning */
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service-card,
  .service-card:nth-child(3n + 4),
  .service-card:nth-child(3n + 5) { grid-column: span 1; }
  .home-story__grid,
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__photo { height: 420px; }
  .profiles-grid,
  .about-details__grid,
  .about-extended { grid-template-columns: 1fr; }
  .map-card { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > *:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .hamburger { display: flex; }

  .nav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(300px, 80vw);
    background: var(--navy-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 24px 40px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,0.3);
    z-index: 1005;
  }
  .nav.open { transform: translateX(0); }

  .nav__list { flex-direction: column; align-items: flex-start; width: 100%; gap: 4px; }
  .nav__link { font-size: 16px; padding: 12px 16px; width: 100%; border-radius: 8px; }
  .nav .lang-switch--nav {
    display: flex;
    width: 100%;
    margin-top: 20px;
  }

  .nav .lang-btn { margin-top: 0; }
  .nav .header__socials--nav { display: flex; margin-top: 18px; }
  .nav .btn { margin-top: 12px; width: 100%; justify-content: center; }

  .header__actions { display: none; }
  .header__logo { width: 78px; min-height: 78px; padding: 12px; }
  .header__logo-img { max-width: 54px; max-height: 54px; }
  .header.scrolled .header__logo { width: 72px; min-height: 72px; }

  .locations__grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .services__grid { grid-template-columns: 1fr; }
  .service-card,
  .service-card:nth-child(3n + 4),
  .service-card:nth-child(3n + 5) { grid-column: span 1; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__booking { flex-direction: column; align-items: flex-start; }
  .footer__booking-actions { justify-content: flex-start; }
  .disc-info { padding: 32px 24px; }
  .page-hero__brand-lockup { flex-direction: column; gap: 14px; }
}

@media (max-width: 480px) {
  .hero__content { padding: 156px 24px 116px; }
  .hero__actions,
  .hero__highlights,
  .hero__brand-strip { flex-direction: column; align-items: flex-start; }
  .about-teaser__card,
  .map-card,
  .service-detail,
  .home-story__card,
  .profile-card { padding: 20px; }
  .form { padding: 28px 20px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 16px; }
  .cookie-banner__inner { flex-direction: column; align-items: stretch; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { width: 100%; justify-content: center; }
  .cookie-manage { left: 12px; right: 12px; bottom: 12px; }
}
