/* ============================================================
   DENTAL PANTOVČAK — Main Stylesheet
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  --teal:        #2a5f7a;
  --teal-dark:   #1a3c4d;
  --teal-light:  #3a7a9c;
  --teal-faint:  #eaf3f7;
  --gold:        #c9a07a;
  --gold-light:  #dbb89a;
  --gold-faint:  #faf5ef;
  --white:       #ffffff;
  --off-white:   #f8f6f2;
  --slate:       #1e2d3d;
  --slate-mid:   #4a6070;
  --slate-light: #7a9aaa;
  --border:      #e6e2da;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:    6px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
  --t:          0.28s;
  --t-slow:     0.55s;

  --shadow-xs:  0 1px 4px rgba(30,45,61,0.06);
  --shadow-sm:  0 3px 12px rgba(30,45,61,0.09);
  --shadow-md:  0 8px 32px rgba(30,45,61,0.13);
  --shadow-lg:  0 20px 60px rgba(30,45,61,0.18);

  --header-h:    92px;
  --w:           1200px;
  --pad:         clamp(1.25rem, 5vw, 2.5rem);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overscroll-behavior-y: none;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.72;
  color: var(--slate);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior-y: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.015em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
svg { display: block; }

/* ---- Layout ---- */
.container {
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

/* ---- Eyebrow label ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  display: block;
  width: 1.75rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
}

/* ---- Section headers ---- */
.section__header {
  text-align: center;
  margin-bottom: clamp(2.75rem, 5.5vw, 4.5rem);
}

.section__title {
  font-size: clamp(1.9rem, 3.8vw, 2.85rem);
  color: var(--slate);
  margin-bottom: 1.1rem;
}

.section__sub {
  font-size: 1.02rem;
  color: var(--slate-mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2.1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: background var(--t) var(--ease),
              border-color var(--t) var(--ease),
              transform var(--t) var(--ease),
              box-shadow var(--t) var(--ease),
              color var(--t) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.btn--teal {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}
.btn--teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(42,95,122,0.28);
}

.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.btn--gold:hover {
  background: #b8876a;
  border-color: #b8876a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,160,122,0.35);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.42);
  color: var(--white);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.75);
}

.btn--outline {
  background: transparent;
  border-color: var(--teal);
  color: var(--teal);
}
.btn--outline:hover {
  background: var(--teal);
  color: var(--white);
}

.btn--full { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--t) var(--ease),
              box-shadow var(--t) var(--ease),
              border-color var(--t) var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}

.site-header .container {
  width: 100%;
  max-width: none;
  padding-inline: clamp(1rem, 3.2vw, 3rem);
}

.header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: clamp(1rem, 2.2vw, 2.8rem);
  width: 100%;
}

/* Logo */
.header__logo {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 1;
  text-decoration: none;
}

.header__logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  transition: color var(--t) var(--ease);
}
.site-header.scrolled .header__logo-name { color: var(--teal); }

.header__logo-sub {
  font-size: 0.67rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.62);
  transition: color var(--t) var(--ease);
}
.site-header.scrolled .header__logo-sub { color: var(--slate-light); }

/* Desktop nav */
.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  justify-self: stretch;
  width: 100%;
  padding-left: clamp(1.1rem, 2.4vw, 2.4rem);
  min-width: 0;
}

.nav__list {
  list-style: none;
  display: flex;
  gap: clamp(0.8rem, 1.2vw, 1.45rem);
}

.nav__link {
  font-size: 0.855rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.82);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--t) var(--ease);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--t) var(--ease);
}

.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

.site-header.scrolled .nav__link { color: var(--slate-mid); }
.site-header.scrolled .nav__link:hover { color: var(--teal); }

/* Header actions */
.header__actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: clamp(0.6rem, 1vw, 1rem);
  flex-shrink: 0;
}

/* ---- Language dropdown (desktop) ---- */
.lang-dropdown {
  position: relative;
}

.lang-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.42rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.88);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--t) var(--ease),
              border-color var(--t) var(--ease),
              color var(--t) var(--ease);
}

.lang-dropdown__trigger:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.52);
}

.site-header.scrolled .lang-dropdown__trigger {
  border-color: var(--border);
  color: var(--slate-mid);
}
.site-header.scrolled .lang-dropdown__trigger:hover {
  background: var(--teal-faint);
  border-color: var(--teal);
  color: var(--teal);
}

.lang-dropdown__flag { font-size: 1rem; line-height: 1; }

.lang-dropdown__chevron {
  width: 12px;
  height: 12px;
  opacity: 0.65;
  flex-shrink: 0;
  transition: transform var(--t) var(--ease);
}
.lang-dropdown.open .lang-dropdown__chevron { transform: rotate(180deg); }

.lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  min-width: 150px;
  overflow: hidden;
  z-index: 200;
  opacity: 0;
  transform: translateY(-6px) scale(0.97);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
}
.lang-dropdown.open .lang-dropdown__menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.lang-dropdown__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.72rem 1.05rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--slate-mid);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
}
.lang-dropdown__item span:first-child { font-size: 1.05rem; }
.lang-dropdown__item:hover { background: var(--teal-faint); color: var(--teal); }
.lang-dropdown__item.active { color: var(--teal); font-weight: 500; background: var(--teal-faint); }

/* ---- Header social icons ---- */
.header__socials {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.header__social-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.68);
  transition: color var(--t) var(--ease),
              border-color var(--t) var(--ease),
              background var(--t) var(--ease);
}
.header__social-icon svg { width: 15px; height: 15px; }

.header__social-icon:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.1);
}

.site-header.scrolled .header__social-icon {
  color: var(--slate-light);
  border-color: var(--border);
}
.site-header.scrolled .header__social-icon:hover {
  color: var(--teal);
  border-color: var(--teal);
  background: var(--teal-faint);
}

/* ---- Header CTA ---- */
.header__cta {
  padding: 0.58rem clamp(1rem, 1.4vw, 1.45rem);
  font-size: 0.82rem;
}

@media (max-width: 1260px) {
  .header__nav {
    padding-left: clamp(0.6rem, 1.6vw, 1.2rem);
  }

  .header__logo-name {
    font-size: 1.2rem;
  }

  .nav__link {
    font-size: 0.82rem;
  }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger__line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
}
.site-header.scrolled .hamburger__line { background: var(--slate); }

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

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1.5rem var(--pad) 2rem;
  box-shadow: var(--shadow-md);
  z-index: 99;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
}

.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-nav__list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.mobile-nav__item a {
  display: block;
  padding: 0.9rem 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--slate);
  border-bottom: 1px solid var(--border);
  transition: color var(--t);
}
.mobile-nav__item a:hover { color: var(--teal); }

.mobile-nav__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding-top: 0.5rem;
}

/* Mobile language flags */
.mobile-lang-flags {
  display: flex;
  gap: 0.6rem;
}

.mobile-lang-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex: 1;
  padding: 0.55rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: none;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-mid);
  cursor: pointer;
  transition: border-color var(--t) var(--ease),
              color var(--t) var(--ease),
              background var(--t) var(--ease);
}
.mobile-lang-flag .flag { font-size: 1.1rem; line-height: 1; }
.mobile-lang-flag:hover { border-color: var(--teal); color: var(--teal); }
.mobile-lang-flag.active {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-faint);
}

/* Mobile social links */
.mobile-nav__socials {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  padding-top: 0.25rem;
  border-top: 1px solid var(--border);
}

.mobile-nav__social {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.855rem;
  font-weight: 500;
  color: var(--slate-light);
  transition: color var(--t) var(--ease);
}
.mobile-nav__social:hover { color: var(--teal); }
.mobile-nav__social svg { width: 17px; height: 17px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--slate);
  color: rgba(255,255,255,0.7);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Brand col */
.footer__brand {}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 240px;
  margin-bottom: 1.5rem;
}

.footer__socials {
  display: flex;
  gap: 0.6rem;
}

.footer__social {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  transition: border-color var(--t), color var(--t);
}
.footer__social:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer__social svg { width: 15px; height: 15px; }

/* Footer cols */
.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer__nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--t);
}
.footer__nav a:hover { color: var(--white); }

/* Contact info */
.footer__contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}

.footer__contact-icon svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer__contact-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}
.footer__contact-text a:hover { color: var(--white); }

/* Hours */
.footer__hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.45rem;
}
.footer__hours-row span:last-child { color: rgba(255,255,255,0.85); }

/* Bottom bar */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.775rem;
  color: rgba(255,255,255,0.28);
}
.footer__bottom a { transition: color var(--t); }
.footer__bottom a:hover { color: rgba(255,255,255,0.55); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero__layout {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  max-width: 1360px;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-top: clamp(1.25rem, 4vw, 3rem);
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 70% at 75% 20%, rgba(42,95,122,0.7) 0%, transparent 65%),
    radial-gradient(ellipse 50% 55% at 15% 85%, rgba(26,60,77,0.8) 0%, transparent 60%),
    linear-gradient(140deg, #0d1f2d 0%, #142533 40%, #0a1520 100%);
}

/* Noise grain */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.038;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__orb--1 {
  width: clamp(300px, 45vw, 680px);
  height: clamp(300px, 45vw, 680px);
  top: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(42,95,122,0.18) 0%, transparent 70%);
}

.hero__orb--2 {
  width: clamp(200px, 30vw, 420px);
  height: clamp(200px, 30vw, 420px);
  bottom: 5%;
  left: 5%;
  background: radial-gradient(circle, rgba(201,160,122,0.08) 0%, transparent 70%);
}

.hero__content {
  max-width: 640px;
}

.hero__media {
  opacity: 0;
  animation: fadeUp 0.9s 0.75s var(--ease-out) forwards;
}

.hero__image-frame {
  position: relative;
  border-radius: clamp(1rem, 2.3vw, 1.9rem);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 18px 56px rgba(0,0,0,0.35);
  aspect-ratio: 5 / 4;
}

.hero__image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,27,39,0.3), transparent 45%);
  pointer-events: none;
}

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

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.25s var(--ease-out) forwards;
}

.hero__eyebrow-line {
  display: block;
  width: 3rem;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}

.hero__title {
  font-size: clamp(2.45rem, 5.7vw, 4.9rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.45s var(--ease-out) forwards;
}

.hero__title-line { display: block; }
.hero__title-tagline {
  display: block;
  margin-top: 0.65rem;
  font-family: var(--font-body);
  font-size: clamp(0.84rem, 1.1vw, 1.02rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero__subtitle {
  font-size: clamp(0.95rem, 1.7vw, 1.08rem);
  color: rgba(255,255,255,0.62);
  max-width: 500px;
  line-height: 1.85;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.65s var(--ease-out) forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.85s var(--ease-out) forwards;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  right: clamp(1.5rem, 4vw, 3rem);
  bottom: clamp(5rem, 9vw, 7rem);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  opacity: 0;
  animation: fadeIn 1s 1.4s var(--ease-out) forwards;
}

.hero__scroll-track {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.hero__scroll-thumb {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollThumb 2.2s var(--ease) infinite;
}

@keyframes scrollThumb {
  0%   { top: -50%; opacity: 1; }
  80%  { top: 100%; opacity: 1; }
  81%  { top: -50%; opacity: 0; }
  100% { top: -50%; opacity: 0; }
}

.hero__scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
  writing-mode: vertical-rl;
}

/* Wave divider */
.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: clamp(50px, 6vw, 90px);
  z-index: 1;
  pointer-events: none;
}

.hero__wave svg {
  width: 100%;
  height: 100%;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  position: relative;
  padding: 2.25rem 2rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--t) var(--ease),
              box-shadow var(--t) var(--ease),
              border-color var(--t) var(--ease);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow) var(--ease);
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,160,122,0.25);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  color: var(--teal);
  margin-bottom: 1.4rem;
  transition: color var(--t) var(--ease);
}
.service-card:hover .service-card__icon { color: var(--gold); }

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card__title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 0.6rem;
}

.service-card__desc {
  font-size: 0.875rem;
  color: var(--slate-mid);
  line-height: 1.78;
  margin-bottom: 1.25rem;
}

.service-card__arrow {
  font-size: 1rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
  display: block;
}
.service-card:hover .service-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--off-white); }

.about__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: clamp(2.5rem, 6vw, 4.75rem);
  align-items: start;
}

.about__content .section__title {
  margin-bottom: 1.25rem;
}

.about__lead {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  color: var(--slate-mid);
  line-height: 1.78;
  margin-bottom: 0.85rem;
}

.about__text {
  font-size: 0.93rem;
  color: var(--slate-mid);
  line-height: 1.87;
  margin-bottom: 1.65rem;
}

.about__actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.about__socials {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.about__social {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(42,95,122,0.25);
  color: var(--teal);
  background: rgba(42,95,122,0.06);
  transition: color var(--t) var(--ease),
              border-color var(--t) var(--ease),
              background var(--t) var(--ease),
              transform var(--t) var(--ease);
}

.about__social svg {
  width: 16px;
  height: 16px;
}

.about__social:hover {
  color: var(--white);
  border-color: var(--teal);
  background: var(--teal);
  transform: translateY(-1px);
}

.about__highlights {
  width: min(100%, 460px);
  justify-self: end;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.35rem, 3vw, 2rem);
  box-shadow: var(--shadow-xs);
}

.about__highlights .eyebrow {
  margin-bottom: 1rem;
}

.about__highlights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.about__highlights-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.89rem;
  color: var(--slate-mid);
  line-height: 1.62;
}

.about__highlights-list li::before {
  content: '';
  position: absolute;
  top: 0.67rem;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why { background: var(--white); }

.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.why-item {
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}

.why-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal-faint) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-slow) var(--ease);
}

.why-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(42,95,122,0.2);
}
.why-item:hover::before { opacity: 1; }

.why-item__num {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 4.8rem);
  font-weight: 300;
  line-height: 1;
  color: var(--teal);
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
  position: relative;
}

.why-item__num sup {
  font-size: 0.45em;
  color: var(--gold);
  top: -0.4em;
}

.why-item__icon {
  width: 48px;
  height: 48px;
  color: var(--teal);
  margin-bottom: 1rem;
  position: relative;
}
.why-item__icon svg { width: 100%; height: 100%; }

.why-item__title {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 0.5rem;
  position: relative;
}

.why-item__desc {
  font-size: 0.875rem;
  color: var(--slate-mid);
  line-height: 1.78;
  position: relative;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--off-white); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  border: 1px solid var(--border);
  transition: box-shadow var(--t) var(--ease), transform var(--t) var(--ease);
}

.testimonial:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.testimonial::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.18;
  position: absolute;
  top: 0.75rem;
  left: 1.5rem;
  pointer-events: none;
}

.testimonial__stars {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.testimonial__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.72;
  color: var(--slate);
  margin-bottom: 1.5rem;
}

.testimonial__author {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate-light);
  letter-spacing: 0.04em;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--white); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact__detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.contact__detail-icon svg { width: 18px; height: 18px; }

.contact__detail-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.contact__detail-value {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.55;
}

.contact__detail-link {
  transition: color var(--t) var(--ease);
}
.contact__detail-link:hover { color: var(--teal); }

/* Embedded map */
.contact__map {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 260px;
  margin-top: 0.5rem;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  border: 0;
}

/* Form wrapper */
.contact__form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 2.75rem);
  border: 1px solid var(--border);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  background: var(--off-white);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery__item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  padding: 0;
  background: var(--white);
  cursor: pointer;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.gallery__item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.gallery__item:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   GALLERY LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 240;
  background: rgba(13,31,45,0.86);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t) var(--ease);
}

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

.lightbox__image {
  width: auto;
  max-width: min(1200px, calc(100vw - 7rem));
  max-height: 86svh;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  background: rgba(7,19,29,0.42);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease);
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(7,19,29,0.68);
  border-color: rgba(255,255,255,0.62);
}

.lightbox__close {
  top: clamp(0.75rem, 1.8vw, 1.2rem);
  right: clamp(0.75rem, 1.8vw, 1.2rem);
}

.lightbox__close svg,
.lightbox__nav svg {
  width: 19px;
  height: 19px;
}

.lightbox__nav--prev {
  left: clamp(0.5rem, 2vw, 1.4rem);
}

.lightbox__nav--next {
  right: clamp(0.5rem, 2vw, 1.4rem);
}

/* ============================================================
   FORM
   ============================================================ */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  position: relative;
}

.form__group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-mid);
}

.form__group input,
.form__group textarea,
.form__group select {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--slate);
  outline: none;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,95,122,0.1);
}

.form__group.error input,
.form__group.error textarea {
  border-color: #d95555;
  box-shadow: 0 0 0 3px rgba(217,85,85,0.1);
}

.form__error {
  font-size: 0.75rem;
  color: #d95555;
  display: none;
}
.form__group.error .form__error { display: block; }

.form__group textarea {
  resize: vertical;
  min-height: 100px;
}

.form__select-wrap {
  position: relative;
}
.form__select-wrap select { width: 100%; padding-right: 2.5rem; cursor: pointer; }
.form__select-arrow {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--slate-light);
  pointer-events: none;
}

.form__success {
  font-size: 0.88rem;
  color: #2d8a6b;
  text-align: center;
  padding: 0.75rem 1rem;
  background: rgba(45,138,107,0.09);
  border-radius: var(--radius);
  display: none;
}

/* ============================================================
   BOOKING MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(13,31,45,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t) var(--ease);
}

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

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 2.75rem);
  width: 100%;
  max-width: 540px;
  max-height: 90svh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px) scale(0.98);
  transition: transform var(--t) var(--ease);
  box-shadow: var(--shadow-lg);
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--slate-light);
  background: none;
  border: none;
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
}
.modal__close:hover { background: var(--off-white); color: var(--slate); }
.modal__close svg { width: 17px; height: 17px; }

.modal__head {
  margin-bottom: 1.75rem;
}
.modal__head .eyebrow { margin-bottom: 0.45rem; }

.modal__title {
  font-size: 1.85rem;
  margin-bottom: 0.4rem;
}

.modal__sub {
  font-size: 0.875rem;
  color: var(--slate-mid);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.services__grid .reveal:nth-child(2) { transition-delay: 0.09s; }
.services__grid .reveal:nth-child(3) { transition-delay: 0.18s; }
.services__grid .reveal:nth-child(4) { transition-delay: 0.27s; }
.services__grid .reveal:nth-child(5) { transition-delay: 0.36s; }
.services__grid .reveal:nth-child(6) { transition-delay: 0.45s; }
.services__grid .reveal:nth-child(7) { transition-delay: 0.54s; }
.services__grid .reveal:nth-child(8) { transition-delay: 0.63s; }
.services__grid .reveal:nth-child(9) { transition-delay: 0.72s; }

.why__grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.why__grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.why__grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.testimonials__grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.testimonials__grid .reveal:nth-child(3) { transition-delay: 0.24s; }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
    max-width: var(--w);
    gap: clamp(1.5rem, 3.6vw, 2.5rem);
  }

  .hero__title-tagline {
    letter-spacing: 0.15em;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials__grid .testimonial:last-child {
    grid-column: 1 / -1;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-header .container {
    padding-left: max(0.75rem, env(safe-area-inset-left));
    padding-right: max(0.75rem, env(safe-area-inset-right));
  }

  .header__inner {
    display: flex;
    justify-content: space-between;
    gap: 0;
  }

  .header__logo {
    margin-right: 0.5rem;
  }

  .header__logo-name {
    font-size: clamp(1.12rem, 6vw, 1.3rem);
  }

  .header__logo-sub {
    font-size: 0.62rem;
    letter-spacing: 0.045em;
  }

  /* Hide desktop nav, show hamburger */
  .header__nav,
  .lang-dropdown,
  .header__socials,
  .header__cta {
    display: none;
  }

  .hamburger {
    display: flex;
    margin-left: 0.5rem;
    padding: 6px 0 6px 6px;
  }

  .mobile-nav {
    display: block;
  }

  /* Hero */
  .hero {
    min-height: auto;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 0.8rem;
    padding-bottom: clamp(3.5rem, 8vw, 5rem);
  }

  .hero__content {
    max-width: none;
  }

  .hero__media {
    max-width: min(540px, 100%);
    width: 100%;
  }

  .hero__image-frame {
    aspect-ratio: 16 / 11;
  }

  .hero__scroll {
    display: none;
  }

  /* Services */
  .services__grid {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .lightbox__image {
    max-width: calc(100vw - 1.4rem);
    max-height: 80svh;
  }

  .lightbox__nav,
  .lightbox__close {
    width: 38px;
    height: 38px;
  }

  /* About */
  .about__layout {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .about__actions {
    align-items: stretch;
  }

  .about__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .about__highlights {
    width: 100%;
    justify-self: stretch;
  }

  /* Why */
  .why__grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__grid .testimonial:last-child {
    grid-column: auto;
  }

  /* Form */
  .form__row {
    grid-template-columns: 1fr;
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 1.5rem 0;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .header__logo-name {
    font-size: 1.15rem;
  }

  .header__logo-sub {
    font-size: 0.6rem;
    letter-spacing: 0.04em;
  }
}
