/* ==================================================================
   Self-hosted webfonts — latin subset, variable woff2.
   Google served variable fonts, so a single file covers every weight:
   Inter 400–600 and Plus Jakarta Sans 500–800.
   ================================================================== */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-var.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ==================================================================
   Goldman Medical Centre — premium, minimal redesign
   ================================================================== */

/* ----------------------------- Tokens ----------------------------- */
:root {
  --red: #e1142a;
  --red-dark: #b40f20;
  --red-soft: #fdecee;
  --ink: #14161d;
  --ink-2: #3c4250;
  --muted: #6c7484;
  --bg: #ffffff;
  --soft: #f5f7fb;
  --line: #e7ecf3;
  --white: #ffffff;

  --radius: 22px;
  --radius-sm: 14px;
  --shadow-sm: 0 4px 18px rgba(20, 22, 29, .06);
  --shadow: 0 18px 50px rgba(20, 22, 29, .10);
  --shadow-lg: 0 30px 80px rgba(20, 22, 29, .16);

  --head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ----------------------------- Reset ------------------------------ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--ink-2);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  overflow-x: hidden;
}
/* `height: auto` is essential: the width/height attributes on <img> (which
   reserve space and prevent layout shift) are presentational hints, so a rule
   that sets only `width` would otherwise leave the attribute height in place
   and squash the image. Rules that set height explicitly still win. */
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

/* <picture> is a layout-neutral wrapper — keeps every `... img` rule working */
picture { display: contents; }

/* Inline SVG icons (replaces the Font Awesome webfont) */
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ic-svg {
  width: 1em; height: 1em;
  fill: currentColor;
  display: inline-block;
  vertical-align: -.125em;
  flex-shrink: 0;
}
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--head); color: var(--ink); line-height: 1.12; font-weight: 800; }
::selection { background: var(--red); color: #fff; }

.container { width: min(1200px, 92%); margin-inline: auto; }

/* --------------------------- Typography --------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--head);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow.is-center { display: block; text-align: center; }
.section-title {
  font-size: clamp(1.9rem, 1.2rem + 2.4vw, 3rem);
  letter-spacing: -.02em;
}
.section-title.light { color: #fff; }
.section-intro {
  margin-top: 14px;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
}
.head-wrap.center { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.head-wrap.center .section-intro { margin-inline: auto; }
.text-red { color: var(--red); }

/* ----------------------------- Buttons ---------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--head);
  font-weight: 700;
  font-size: .98rem;
  line-height: 1;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn .ic-svg { font-size: .85em; }
.btn-lg { padding: 17px 30px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-red { background: var(--red); color: #fff; box-shadow: 0 12px 26px rgba(225, 20, 42, .28); }
.btn-red:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(225, 20, 42, .36); }

.btn-outline { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }

.btn-glass {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn-glass:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }

/* loading state */
.btn.is-loading .btn-label { opacity: .5; }
.spinner {
  width: 17px; height: 17px;
  border: 2.5px solid rgba(255, 255, 255, .4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin-left: 4px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.spinner-dark { border-color: rgba(20, 22, 29, .15); border-top-color: var(--red); }

/* Placeholder that holds space while the booking widget loads (avoids CLS) */
.bookem-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; min-height: 420px; text-align: center;
  color: var(--muted); font-size: .93rem;
}
.bookem-placeholder .spinner { width: 26px; height: 26px; margin: 0; }
.bookem-placeholder a { color: var(--red); font-weight: 600; }

/* ----------------------------- Loader ----------------------------- */
.loader {
  position: fixed; inset: 0; z-index: 2000;
  display: grid; place-items: center;
  background: #fff;
  transition: opacity .4s var(--ease), visibility .4s;
}
.loader.fade-out { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-inner img { width: 168px; margin: 0 auto 22px; }
.loader-bar { width: 180px; height: 4px; border-radius: 4px; background: var(--line); overflow: hidden; }
.loader-bar span {
  display: block; height: 100%; width: 40%;
  background: var(--red); border-radius: 4px;
  animation: load 1s var(--ease) infinite;
}
@keyframes load { 0% { transform: translateX(-100%); } 100% { transform: translateX(350%); } }

/* ----------------------------- Header ----------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; }
.brand img { width: 178px; transition: opacity .3s; }
.brand .brand-dark { display: none; }

.site-header.scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(20, 22, 29, .07);
  padding: 11px 0;
}
.site-header.scrolled .brand .brand-light { display: none; }
.site-header.scrolled .brand .brand-dark { display: block; }

.main-nav { display: flex; gap: 34px; margin-left: auto; }
.main-nav a {
  font-family: var(--head); font-weight: 600; font-size: .96rem;
  color: #fff; position: relative; padding: 4px 0;
  transition: color .25s;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--red); transition: width .3s var(--ease);
}
.main-nav a:hover::after { width: 100%; }
.site-header.scrolled .main-nav a { color: var(--ink); }

.header-cta { display: flex; align-items: center; gap: 18px; }
.header-phone {
  font-family: var(--head); font-weight: 700; font-size: .95rem; color: #fff;
  display: inline-flex; align-items: center; gap: 8px;
}
.header-phone .ic-svg { color: var(--red); }
.site-header.scrolled .header-phone { color: var(--ink); }

/* hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2.5px; border-radius: 3px; background: #fff; transition: transform .3s, opacity .3s; }
.site-header.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* --------------------------- Mobile nav --------------------------- */
.nav-backdrop {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(20, 22, 29, .5); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s;
}
.nav-backdrop.open { opacity: 1; visibility: visible; }
.mobile-nav-clip {
  position: fixed; top: 0; right: 0; z-index: 1200;
  height: 100%; width: min(360px, 86%);
  transform: translateX(100%); transition: transform .4s var(--ease);
}
.mobile-nav-clip.open { transform: translateX(0); }
.mobile-nav { height: 100%; background: #fff; padding: 22px 26px; overflow-y: auto; box-shadow: -20px 0 60px rgba(0, 0, 0, .18); }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.mobile-nav-head img { width: 150px; }
.mobile-close { background: var(--soft); border: 0; width: 40px; height: 40px; border-radius: 50%; font-size: 1.1rem; color: var(--ink); cursor: pointer; }
.m-link {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--head); font-weight: 700; color: var(--ink);
  padding: 15px 4px; border-bottom: 1px solid var(--line);
  transition: color .2s, padding .2s;
}
.m-link .ic-svg { color: var(--red); font-size: .85rem; }
.m-link:hover { color: var(--red); padding-left: 10px; }
.mobile-nav .btn-block { margin: 22px 0; }
.mobile-contact { display: grid; gap: 12px; }
.mobile-contact a { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .92rem; }
.mobile-contact .ic-svg { color: var(--red); width: 18px; }

/* ------------------------------ Hero ------------------------------ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  color: #fff;
  padding: 140px 0 90px;
  isolation: isolate;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(16, 17, 22, .94) 0%, rgba(16, 17, 22, .78) 42%, rgba(16, 17, 22, .42) 100%),
    url('../images/hero-sick-900.jpg') center / cover no-repeat;
  background-image:
    linear-gradient(105deg, rgba(16, 17, 22, .94) 0%, rgba(16, 17, 22, .78) 42%, rgba(16, 17, 22, .42) 100%),
    image-set(url('../images/hero-sick-900.webp') type('image/webp'),
              url('../images/hero-sick-900.jpg')  type('image/jpeg'));
}
@media (min-width: 901px) {
  .hero-overlay {
    background-image:
      linear-gradient(105deg, rgba(16, 17, 22, .94) 0%, rgba(16, 17, 22, .78) 42%, rgba(16, 17, 22, .42) 100%),
      url('../images/hero-sick-1600.jpg');
    background-image:
      linear-gradient(105deg, rgba(16, 17, 22, .94) 0%, rgba(16, 17, 22, .78) 42%, rgba(16, 17, 22, .42) 100%),
      image-set(url('../images/hero-sick-1600.webp') type('image/webp'),
                url('../images/hero-sick-1600.jpg')  type('image/jpeg'));
  }
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(60% 60% at 85% 20%, rgba(225, 20, 42, .35), transparent 70%);
}
.hero-inner { max-width: 940px; text-align: left; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(6px);
  padding: 8px 8px 8px 16px;
  border-radius: 100px;
  font-size: .85rem; font-weight: 500;
  margin-bottom: 26px;
}
.hero-pill .tag { background: var(--red); color: #fff; font-family: var(--head); font-weight: 700; font-size: .72rem; letter-spacing: .5px; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 1.4rem + 4.4vw, 4.4rem);
  letter-spacing: -.025em;
  margin-bottom: 20px;
}
.hero-lead { font-size: clamp(1.05rem, 1rem + .5vw, 1.3rem); color: rgba(255, 255, 255, .85); max-width: 580px; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }

.hero-facts { display: flex; flex-wrap: wrap; gap: 14px 38px; }
.fact { display: flex; align-items: center; gap: 13px; }
.fact .ic-svg { font-size: 1.25rem; color: var(--red); width: 30px; text-align: center; }
.fact b { display: block; font-family: var(--head); color: #fff; font-size: .98rem; }
.fact span { font-size: .82rem; color: rgba(255, 255, 255, .65); }

.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, .3); color: #fff;
  animation: bob 2s var(--ease) infinite;
}
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---------------------------- Sections ---------------------------- */
.section { padding: clamp(64px, 8vw, 112px) 0; }
.section--soft { background: var(--soft); }

/* shared red check */
.ck {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--red-soft); color: var(--red);
  display: grid; place-items: center; font-size: .7rem; margin-top: 1px;
}

/* ----------------------------- About ------------------------------ */
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.about-photo { position: relative; }
.about-photo img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4 / 4.3; object-fit: cover; object-position: top center; }
.about-photo::before {
  content: ''; position: absolute; inset: -18px -18px auto auto; width: 62%; height: 62%; z-index: -1;
  background: var(--red-soft); border-radius: var(--radius);
}
.about-badge {
  position: absolute; left: -22px; bottom: 26px;
  display: flex; align-items: center; gap: 13px;
  background: #fff; border-radius: 16px; padding: 14px 20px 14px 14px;
  box-shadow: var(--shadow);
}
.about-badge .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--red); color: #fff; display: grid; place-items: center; font-size: 1.2rem; }
.about-badge b { display: block; font-family: var(--head); color: var(--ink); font-size: 1.02rem; }
.about-badge span { font-size: .82rem; color: var(--muted); }
.about-copy .section-intro { max-width: 520px; margin-bottom: 24px; }
.about-copy em { color: var(--red); font-style: normal; }
.about-points { display: grid; gap: 13px; margin-bottom: 32px; }
.about-points li { display: flex; align-items: center; gap: 12px; font-family: var(--head); font-weight: 600; color: var(--ink); }

/* --------------------------- Services ----------------------------- */
.services { background: var(--soft); position: relative; }
.svc-cat { margin-bottom: 42px; }
.svc-cat:last-of-type { margin-bottom: 0; }
.svc-cat-head { display: flex; align-items: center; gap: 18px; margin-bottom: 24px; }
.svc-cat-head .badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--ink); color: #fff;
  font-family: var(--head); font-weight: 700; font-size: .92rem;
  padding: 10px 20px; border-radius: 100px; letter-spacing: .3px;
}
.svc-cat-head .badge .ic-svg { color: var(--red); }
.svc-cat-head .line { flex: 1; height: 1px; background: var(--line); }

.svc-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.svc-tile {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.svc-tile:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.svc-thumb { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.svc-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc-tile:hover .svc-thumb img { transform: scale(1.07); }
.svc-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(20, 22, 29, .55)); }
.svc-thumb .ic {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  width: 48px; height: 48px; border-radius: 13px;
  background: #fff; color: var(--red);
  display: grid; place-items: center; font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: background .25s, color .25s, transform .3s var(--ease);
}
.svc-tile:hover .svc-thumb .ic { background: var(--red); color: #fff; transform: scale(1.08); }
.svc-tx { padding: 18px 20px 22px; }
.svc-tx h4 { font-size: 1.14rem; margin-bottom: 4px; }
.svc-tx p { font-size: .88rem; color: var(--muted); margin: 0; }
.tile-flag {
  display: inline-block; vertical-align: middle;
  margin-left: 7px; padding: 3px 9px;
  background: var(--red-soft); color: var(--red);
  font-family: var(--body); font-size: .64rem; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  border-radius: 100px;
}
.svc-foot { text-align: center; margin-top: 50px; }
.svc-foot p { font-family: var(--head); font-weight: 600; color: var(--ink); font-size: 1.15rem; margin-bottom: 18px; }

/* ---------------------------- Booking ----------------------------- */
.booking {
  position: relative;
  z-index: 2; /* keep Bookem widget's fixed button above later sections */
  padding: clamp(64px, 8vw, 112px) 0;
  background: linear-gradient(155deg, #16161c 0%, #1f1622 55%, #2a0d13 100%);
  color: #fff;
  isolation: isolate;
}
.booking::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(50% 60% at 12% 18%, rgba(225, 20, 42, .25), transparent 70%);
}
.booking-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.booking-intro .eyebrow { color: #ff7585; }
.booking-sub { color: rgba(255, 255, 255, .75); margin: 14px 0 30px; max-width: 440px; }
.booking-points { display: grid; gap: 20px; }
.booking-points li { display: flex; gap: 16px; align-items: flex-start; }
.booking-points .ic {
  flex: none; width: 46px; height: 46px; border-radius: 13px;
  background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .14);
  display: grid; place-items: center; color: var(--red); font-size: 1.1rem;
}
.booking-points b { font-family: var(--head); color: #fff; display: block; font-size: 1.02rem; }
.booking-points p { color: rgba(255, 255, 255, .62); font-size: .92rem; margin: 0; }
.link-light { color: #fff; font-weight: 700; border-bottom: 1px solid var(--red); }
.link-light:hover { color: var(--red); }

/* ---------------------------- Form card --------------------------- */
.form-card {
  position: relative;
  background: #fff; color: var(--ink-2);
  border-radius: var(--radius); padding: clamp(26px, 3vw, 40px);
  box-shadow: var(--shadow-lg);
}
.form-card h3 { font-size: 1.55rem; }
.fc-sub { color: var(--muted); font-size: .9rem; margin: 6px 0 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--head); font-weight: 600; font-size: .85rem; color: var(--ink); margin-bottom: 7px; }
.req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--body); font-size: .98rem; color: var(--ink);
  background: var(--soft); border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); padding: 13px 15px;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #9aa1ae; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); background: #fff;
  box-shadow: 0 0 0 4px rgba(225, 20, 42, .1);
}
.form-card .btn-block { margin-top: 8px; }
.form-note { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--muted); margin-top: 16px; }
.form-note .ic-svg { color: var(--red); }

/* honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* success result */
.form-result { display: none; text-align: center; padding: 14px 4px; }
.form-result.show { display: block; animation: pop .5s var(--ease); }
@keyframes pop { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
.rs-ic { width: 70px; height: 70px; border-radius: 50%; background: var(--red-soft); color: var(--red); display: grid; place-items: center; font-size: 1.7rem; margin: 6px auto 18px; }
.form-result h4 { font-size: 1.4rem; margin-bottom: 8px; }
.form-result p { color: var(--muted); }
.ref { display: inline-block; background: var(--soft); border: 1px dashed var(--line); border-radius: 10px; padding: 8px 16px; font-family: var(--head); font-weight: 700; color: var(--ink); margin: 16px 0 20px; letter-spacing: .5px; }

/* ---------------------------- Contact ----------------------------- */
.contact { position: relative; z-index: 1; } /* sits below the Bookem widget's fixed button */
.contact-shell { display: grid; grid-template-columns: 1fr 1.05fr; gap: 30px; align-items: start; }
.contact-side { display: grid; gap: 20px; }
.contact-rows {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.crow {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px; border-bottom: 1px solid var(--line);
  transition: background .2s;
}
.crow:last-child { border-bottom: 0; }
.crow:hover { background: var(--soft); }
.crow .ic { flex: none; width: 48px; height: 48px; border-radius: 13px; background: var(--red-soft); color: var(--red); display: grid; place-items: center; font-size: 1.2rem; transition: background .25s, color .25s; }
.crow:hover .ic { background: var(--red); color: #fff; }
.crow b { display: block; font-family: var(--head); color: var(--ink); font-size: 1.02rem; }
.crow span { display: block; font-size: .9rem; color: var(--muted); }
.crow .go { margin-left: auto; color: var(--line); font-size: .85rem; transition: color .2s, transform .2s var(--ease); }
.crow:hover .go { color: var(--red); transform: translateX(4px); }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); min-height: 260px; border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 260px; border: 0; display: block; }

/* ----------------------------- Footer ----------------------------- */
.site-footer { background: #111319; color: rgba(255, 255, 255, .66); padding-top: 64px; text-align: center; }
.footer-center { display: flex; flex-direction: column; align-items: center; padding-bottom: 50px; }
.footer-center img { width: 210px; margin-bottom: 22px; }
.footer-center p { max-width: 520px; font-size: .98rem; line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding: 22px 0; }
.footer-bottom .container { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; text-align: center; }
.footer-bottom p { font-size: .85rem; margin: 0; }
.footer-bottom a { color: #fff; font-weight: 600; }
.footer-bottom a:hover { color: var(--red); }

/* ----------------------------- Floats ----------------------------- */
.floats { position: fixed; right: 22px; bottom: 24px; z-index: 900; display: grid; gap: 12px; }
.float-btn {
  width: 52px; height: 52px; border-radius: 50%; border: 0; cursor: pointer;
  display: grid; place-items: center; font-size: 1.3rem; color: #fff;
  box-shadow: var(--shadow); transition: transform .25s var(--ease);
}
.float-btn:hover { transform: translateY(-3px) scale(1.05); }
.float-wa { background: #25d366; }
.float-top { background: var(--ink); opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .3s, visibility .3s, transform .3s; }
.float-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ----------------------------- Toasts ----------------------------- */
.toast-wrap { position: fixed; bottom: 24px; left: 24px; z-index: 1500; display: grid; gap: 10px; }
.toast {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border-left: 4px solid var(--red); border-radius: 12px;
  padding: 14px 18px; box-shadow: var(--shadow); font-size: .92rem; color: var(--ink);
  transform: translateX(-120%); opacity: 0; transition: transform .4s var(--ease), opacity .4s;
  max-width: 340px;
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast.ok { border-left-color: #15a55a; }
.toast.ok .ic-svg { color: #15a55a; }
.toast.err { border-left-color: var(--red); }
.toast.err .ic-svg { color: var(--red); }
.toast .ic-svg { font-size: 1.2rem; }

/* --------------------------- Reveal anim -------------------------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in-view { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
[data-reveal][data-delay="5"] { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-scroll, .loader-bar span { animation: none; }
}

/* --------------------------- Responsive --------------------------- */
@media (max-width: 980px) {
  .main-nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .svc-row { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .booking-grid, .contact-shell { grid-template-columns: 1fr; gap: 36px; }
  .about-photo { max-width: 460px; }
  .about-badge { left: 0; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  /* Header: drop the Book button (still in the mobile menu), enlarge logo */
  .header-cta .btn-red { display: none; }
  .brand img { width: 202px; }
  .hero { min-height: auto; padding: 130px 0 80px; }
  .hero-pill { display: none; }
  .hero h1 { font-size: clamp(2.1rem, 1.4rem + 5vw, 3rem); }
  .hero-actions .btn { flex: 1 1 auto; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  /* Services: full-width cards, tighter description */
  .svc-row { grid-template-columns: 1fr; gap: 16px; }
  .svc-tx { padding: 16px 16px 20px; }
  .svc-tx p { line-height: 1.35; }
  .floats { right: 16px; bottom: 16px; }
  .toast-wrap { left: 16px; right: 16px; }
  .toast { max-width: none; }
}
