/* =========================================================================
   Studio Ortopedie Dr. Pashk Gjoni — stylesheet
   Bright clinical elegance: airy white + soft blue, serif display headings,
   framed photography, layered depth. Single file, CSS variables.
   ========================================================================= */

:root {
  --ink:           #10263a;   /* headings, near-navy */
  --text:          #2c4257;   /* body slate */
  --muted:         #5d7286;
  --primary:       #0e6ba8;   /* calm medical blue */
  --primary-dark:  #0a4f7d;
  --primary-deep:  #083d61;
  --accent:        #13a394;   /* teal highlight */
  --accent-dark:   #0e857a;
  --bg:            #ffffff;
  --bg-soft:       #f4f8fc;   /* alternating clinical sections */
  --bg-tint:       #e9f2f9;   /* light blue wash */
  --border:        #e1ebf3;
  --white:         #ffffff;
  --shadow-sm:     0 2px 12px rgba(10, 79, 125, 0.07);
  --shadow-md:     0 14px 34px rgba(10, 79, 125, 0.12);
  --shadow-lg:     0 18px 44px rgba(8, 61, 97, 0.16);
  --radius:        18px;
  --radius-sm:     12px;
  --maxw:          1180px;
  --header-h:      80px;
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display:  'Fraunces', Georgia, 'Times New Roman', serif;
  --ease-out:      cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { line-height: 1.16; color: var(--ink); }
h1, h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
}
h3, h4 { font-weight: 700; }

h1 em, h2 em,
h1 .accent, h2 .accent {
  font-style: italic;
  font-weight: 500;
  color: var(--primary);
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

section { position: relative; }

::selection { background: rgba(14, 107, 168, 0.18); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 30px; border-radius: 999px;
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.01em;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(14, 107, 168, 0.30);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(14, 107, 168, 0.38); }
.btn-outline {
  background: rgba(255,255,255,0.7); color: var(--primary-dark); border-color: rgba(14,107,168,0.35);
}
.btn-outline:hover { border-color: var(--primary); background: var(--white); color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-accent { background: var(--accent); color: var(--white); box-shadow: 0 10px 24px rgba(19, 163, 148, 0.30); }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--primary-dark); box-shadow: 0 10px 26px rgba(0,0,0,0.18); }
.btn-light:hover { background: #eef5fb; transform: translateY(-2px); }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.header.scrolled,
.header.solid {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.nav { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; }

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand .brand-logo {
  height: 50px; width: auto;
  background: var(--white); border-radius: 12px; padding: 5px 12px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a.navlink {
  font-size: 0.93rem; font-weight: 500; color: var(--ink); position: relative; padding: 4px 0;
  transition: color 0.18s ease;
}
.nav-links a.navlink::after {
  content: ''; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0;
  border-radius: 2px; background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.25s var(--ease-out);
}
.nav-links a.navlink:hover { color: var(--primary); }
.nav-links a.navlink:hover::after,
.nav-links a.navlink.active::after { width: 100%; }
.nav-links a.navlink.active { color: var(--primary); font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-actions .btn { padding: 12px 24px; font-size: 0.9rem; }

/* Language toggle */
.lang-toggle { display: inline-flex; border: 1px solid var(--border); border-radius: 999px; overflow: hidden; background: var(--white); box-shadow: var(--shadow-sm); }
.lang-toggle button {
  border: none; background: transparent; cursor: pointer; font-family: inherit;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 8px 13px; color: var(--muted); transition: background 0.18s, color 0.18s;
}
.lang-toggle button.active { background: var(--primary); color: var(--white); }

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }
.hamburger span + span { margin-top: 5px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: #ffffff;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  gap: 6px; padding: 40px 24px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a { font-size: 1.25rem; font-weight: 600; color: var(--ink); padding: 14px 0; width: 100%; text-align: center; border-bottom: 1px solid var(--border); }
.mobile-menu a.active { color: var(--primary); }
.mobile-menu .btn { margin-top: 22px; width: 100%; max-width: 320px; }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 64px) 0 130px;
  background:
    radial-gradient(ellipse 60% 55% at 88% 8%, rgba(14,107,168,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 45% 45% at 8% 85%, rgba(19,163,148,0.11) 0%, transparent 60%),
    linear-gradient(168deg, #eef6fc 0%, #fafcfe 52%, #f2f8fc 100%);
  overflow: hidden;
}
.hero::before { /* faint clinical cross-grid */
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(14,107,168,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,107,168,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 85% at 50% 0%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 85% at 50% 0%, #000 0%, transparent 75%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 64px; align-items: center; }

.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--primary-dark); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.17em; text-transform: uppercase;
  background: rgba(255,255,255,0.75); border: 1px solid rgba(14,107,168,0.18);
  padding: 8px 18px; border-radius: 999px; margin-bottom: 26px;
  box-shadow: var(--shadow-sm);
}
.hero .eyebrow::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px rgba(19,163,148,0.18);
}
.hero h1 { font-size: clamp(2.5rem, 5.2vw, 3.9rem); margin-bottom: 22px; }
.hero p.lead { color: var(--muted); font-size: 1.1rem; max-width: 540px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-trust { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 540px; }
.hero-trust .item { display: flex; flex-direction: column; padding: 0 20px; border-left: 1px solid rgba(14,107,168,0.16); }
.hero-trust .item:first-child { padding-left: 0; border-left: none; }
.hero-trust .item b {
  font-family: var(--font-display); font-size: 1.9rem; font-weight: 600;
  color: var(--primary-dark); line-height: 1.15;
}
.hero-trust .item span { font-size: 0.8rem; color: var(--muted); line-height: 1.45; }

/* Hero photo composition */
.hero-visual { position: relative; z-index: 1; padding: 0 30px 14px 0; }
.hero-visual .photo-main {
  position: relative; border-radius: 22px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
  transform: rotate(0.6deg);
}
.hero-visual .photo-main img { width: 100%; aspect-ratio: 5/3.4; object-fit: cover; }
.hero-visual::before { /* offset accent frame behind */
  content: ''; position: absolute; top: 26px; right: 4px; bottom: 6px; left: 26px;
  border-radius: 26px; z-index: -1;
  background: linear-gradient(140deg, rgba(14,107,168,0.16), rgba(19,163,148,0.20));
}
.hero-visual .badge {
  position: absolute; top: 20px; right: 6px;
  background: var(--white);
  border-radius: 14px; padding: 13px 18px;
  box-shadow: var(--shadow-md); border: 1px solid rgba(255,255,255,0.7);
  display: flex; align-items: center; gap: 12px; font-size: 0.88rem; font-weight: 700; color: var(--ink);
}
.hero-visual .badge small { display: block; color: var(--muted); font-weight: 500; font-size: 0.75rem; }
.hero-visual .badge .dot {
  width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center; color: var(--white);
}
.hero-visual .badge .dot svg { width: 21px; height: 21px; }

/* ---------- Trust strip (overlapping hero bottom) ---------- */
.trust-strip { position: relative; z-index: 5; margin-top: -62px; margin-bottom: 8px; }
.trust-strip .strip {
  background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 26px 10px;
}
.trust-strip .t-item {
  display: flex; align-items: center; gap: 15px; padding: 6px 26px;
  border-left: 1px solid var(--border);
}
.trust-strip .t-item:first-child { border-left: none; }
.trust-strip .t-item .ic {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  background: var(--bg-tint); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.trust-strip .t-item .ic svg { width: 24px; height: 24px; }
.trust-strip .t-item b { display: block; color: var(--ink); font-size: 0.95rem; line-height: 1.3; }
.trust-strip .t-item span { font-size: 0.8rem; color: var(--muted); line-height: 1.4; display: block; }

/* ---------- Section scaffolding ---------- */
/* content-visibility lets the browser skip layout/paint for sections far
   offscreen; the intrinsic size keeps the scrollbar stable. */
.section, .band, .footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 640px;
}
.section { padding: clamp(66px, 8.5vw, 108px) 0; }
.section.soft { background: linear-gradient(180deg, var(--bg-soft) 0%, #fbfdfe 100%); }
.section-head { max-width: 700px; margin: 0 auto 58px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--accent-dark); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 16px;
}
.kicker::before { content: ''; width: 28px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--accent), var(--primary)); }
.section-head h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); margin-bottom: 18px; }
.section-head p { color: var(--muted); font-size: 1.04rem; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* ---------- Cards (icon-only) ---------- */
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow-sm);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s ease, border-color 0.28s ease;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0; transition: opacity 0.28s ease;
}
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: rgba(14,107,168,0.28); }
.card:hover::before { opacity: 1; }
.card .icon {
  width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  background: var(--bg-tint); color: var(--primary); flex-shrink: 0;
  transition: background 0.28s ease, color 0.28s ease;
}
.card .icon svg { width: 27px; height: 27px; }
.card:hover .icon { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); }
.card.accent .icon { background: rgba(19,163,148,0.13); color: var(--accent-dark); }
.card.accent:hover .icon { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: var(--white); }
.card h3 { font-size: 1.16rem; }
.card p { color: var(--muted); font-size: 0.94rem; }

/* ---------- Photo service cards ---------- */
.pcard {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, border-color 0.3s ease;
}
.pcard:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(14,107,168,0.3); }
.pcard .pcard-media { position: relative; overflow: hidden; }
.pcard .pcard-media img {
  width: 100%; aspect-ratio: 16/10.5; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.pcard:hover .pcard-media img { transform: scale(1.06); }
.pcard .pcard-media::after { /* soft bottom fade for the chip */
  content: ''; position: absolute; inset: auto 0 0 0; height: 44%;
  background: linear-gradient(180deg, transparent, rgba(8,61,97,0.28));
  pointer-events: none;
}
.pcard .pcard-icon {
  position: absolute; top: 0; left: 24px; transform: translateY(-50%); z-index: 2;
  width: 58px; height: 58px; border-radius: 16px;
  background: var(--white);
  color: var(--primary); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 26px rgba(8,61,97,0.35), 0 0 0 1px var(--border);
}
.pcard .pcard-icon svg { width: 28px; height: 28px; stroke-width: 2; }
.pcard:hover .pcard-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
}
.pcard .pcard-body { position: relative; padding: 46px 26px 28px; display: flex; flex-direction: column; gap: 10px; }
.pcard h3 { font-size: 1.16rem; }
.pcard p { color: var(--muted); font-size: 0.94rem; }

/* ---------- Framed photos (bands & pages) ---------- */
.photo-frame { position: relative; z-index: 1; }
.photo-frame img {
  width: 100%; aspect-ratio: 4/3.4; border-radius: 20px; object-fit: cover;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 1;
}
.photo-frame::before {
  content: ''; position: absolute; top: -16px; right: -16px; width: 62%; height: 62%;
  border-radius: 24px; z-index: 0;
  background: linear-gradient(135deg, rgba(19,163,148,0.22), rgba(14,107,168,0.16));
}
.photo-frame::after {
  content: ''; position: absolute; bottom: -20px; left: -14px; width: 150px; height: 120px; z-index: 0;
  background-image: radial-gradient(rgba(14,107,168,0.3) 1.6px, transparent 1.6px);
  background-size: 18px 18px;
}
.photo-frame.flip::before { right: auto; left: -16px; }
.photo-frame.flip::after { left: auto; right: -14px; }
.photo-frame .frame-caption {
  position: absolute; z-index: 2; bottom: 18px; left: 18px;
  background: rgba(255,255,255,0.95);
  border-radius: 12px; padding: 10px 16px;
  font-size: 0.8rem; font-weight: 700; color: var(--primary-dark);
  letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

/* Experience/claim badge overlaid on framed photos */
.exp-badge {
  position: absolute; z-index: 3; bottom: -18px; right: -10px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white); border-radius: 18px; padding: 18px 24px;
  box-shadow: var(--shadow-md); text-align: center;
  border: 4px solid var(--white);
}
.exp-badge b { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; display: block; line-height: 1.1; }
.exp-badge span { font-size: 0.76rem; opacity: 0.9; letter-spacing: 0.06em; }

/* ---------- Feature bands ---------- */
.band { padding: clamp(66px, 8.5vw, 108px) 0; }
.band-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.band.reverse .band-grid { direction: rtl; }
.band.reverse .band-grid > * { direction: ltr; }
.band h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 20px; }
.band p { color: var(--muted); margin-bottom: 16px; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 15px; margin: 24px 0 30px; }
.check-list li { display: flex; align-items: flex-start; gap: 13px; font-size: 0.98rem; }
.check-list li .tick {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 999px;
  background: linear-gradient(135deg, rgba(19,163,148,0.16), rgba(14,107,168,0.12));
  color: var(--accent-dark); display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.check-list li .tick svg { width: 13px; height: 13px; }
.check-list li b { color: var(--ink); }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative; border-radius: 26px; overflow: hidden;
  padding: clamp(52px, 7vw, 84px) clamp(28px, 5vw, 72px);
  text-align: center; color: var(--white);
  background: var(--primary-deep);
  box-shadow: var(--shadow-lg);
}
.cta-banner .cta-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0.55;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(8,61,97,0.88) 0%, rgba(10,79,125,0.70) 50%, rgba(19,163,148,0.45) 120%);
}
.cta-banner::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 82% 15%, rgba(255,255,255,0.14) 0%, transparent 40%);
}
.cta-banner > *:not(.cta-bg) { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.8rem, 3.8vw, 2.7rem); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.88); max-width: 580px; margin: 0 auto 32px; font-size: 1.03rem; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 64px) 0 72px;
  background:
    radial-gradient(ellipse 55% 70% at 92% 0%, rgba(14,107,168,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 4% 100%, rgba(19,163,148,0.09) 0%, transparent 55%),
    linear-gradient(165deg, #eef6fc 0%, #fbfdfe 70%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(14,107,168,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,107,168,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, #000 0%, transparent 80%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .breadcrumb { color: var(--muted); font-size: 0.85rem; margin-bottom: 14px; font-weight: 500; }
.page-hero .breadcrumb a:hover { color: var(--primary); }
.page-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.3rem); margin-bottom: 16px; }
.page-hero p { color: var(--muted); font-size: 1.07rem; max-width: 620px; }

.page-hero .hero-split { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
.page-hero .hero-side { position: relative; }
.page-hero .hero-side img {
  width: 100%; max-width: 420px; margin-left: auto;
  border-radius: 18px; border: 5px solid var(--white);
  box-shadow: var(--shadow-lg); object-fit: cover; aspect-ratio: 5/3.6;
}

/* ---------- Gallery strip ---------- */
.gallery-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-strip figure {
  position: relative; border-radius: 16px; overflow: hidden;
  border: 5px solid var(--white); box-shadow: var(--shadow-md);
}
.gallery-strip img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.gallery-strip figure:hover img { transform: scale(1.06); }
.gallery-strip figcaption {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(255,255,255,0.95);
  padding: 7px 14px; border-radius: 10px;
  font-size: 0.78rem; font-weight: 700; color: var(--primary-dark);
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; align-items: stretch; }
.info-list { display: flex; flex-direction: column; gap: 10px; }
.info-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 18px; box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s ease;
}
.info-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.info-item > div:last-child { min-width: 0; flex: 1; }
.info-item .icon {
  width: 48px; height: 48px; border-radius: 13px; flex-shrink: 0;
  background: var(--bg-tint); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.info-item .icon svg { width: 22px; height: 22px; }
.info-item .label { font-size: 0.71rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.info-item .value { font-size: 0.97rem; color: var(--ink); font-weight: 500; overflow-wrap: anywhere; }
.info-item .value a:hover { color: var(--primary); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 6px; }
.hours-table td { padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 0.93rem; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:last-child { text-align: right; color: var(--muted); font-weight: 600; }
.hours-table tr.closed td:last-child { color: #c0392b; }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-md); }
.map-embed iframe { width: 100%; height: 100%; min-height: 440px; border: 0; display: block; }

/* ---------- Footer ---------- */
.footer {
  position: relative; color: #c3d3de; padding: 72px 0 28px;
  background:
    radial-gradient(ellipse 50% 60% at 90% 0%, rgba(19,163,148,0.10) 0%, transparent 55%),
    linear-gradient(170deg, #0d2b3e 0%, #081e2d 100%);
}
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent)); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 44px; margin-bottom: 48px; }
.footer .footer-logo {
  display: inline-block; background: var(--white); border-radius: 12px; padding: 8px 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.footer .footer-logo img { height: 46px; width: auto; }
.footer p.desc { color: #92a9b8; font-size: 0.93rem; margin-top: 18px; max-width: 300px; }
.footer h4 { color: var(--white); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 20px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer ul a, .footer ul li { color: #92a9b8; font-size: 0.92rem; transition: color 0.18s ease; }
.footer ul a:hover { color: var(--white); }
.footer .socials { display: flex; gap: 12px; margin-top: 20px; }
.footer .socials a {
  width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; color: #c3d3de;
  transition: background 0.18s, color 0.18s, transform 0.18s;
}
.footer .socials a:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.09); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.84rem; color: #7b93a3; }
.footer-bottom a { color: var(--accent); font-weight: 600; }
.footer-bottom a:hover { color: #43cfc0; }

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 999px; background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease;
  animation: wa-bounce 3.6s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes wa-bounce { 0%, 88%, 100% { transform: translateY(0); } 92% { transform: translateY(-7px); } 96% { transform: translateY(-3px); } }

/* ---------- Scroll reveal ----------
   Kept deliberately cheap: small distance, short duration. Layer
   promotion (will-change) is handled by main.js: it is applied ~600px
   before an element scrolls into view and removed after the transition,
   so we never pay rasterization cost mid-animation nor hold dozens of
   GPU layers alive. */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.07s; }
.reveal.d2 { transition-delay: 0.14s; }
.reveal.d3 { transition-delay: 0.21s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .wa-float { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }
  .trust-strip .strip { grid-template-columns: repeat(2, 1fr); row-gap: 10px; }
  .trust-strip .t-item:nth-child(3) { border-left: none; }
  .band-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .band.reverse .band-grid { direction: ltr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .page-hero .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .page-hero .hero-side img { margin: 0 auto; }
  .band .photo-frame { max-width: 540px; margin: 0 auto; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-actions .btn-primary { display: none; }
  .hamburger { display: block; }
  .brand .brand-logo { height: 42px; padding: 4px 9px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .trust-strip { margin-top: -46px; }
  .trust-strip .strip { grid-template-columns: 1fr; padding: 18px 8px; }
  .trust-strip .t-item { border-left: none; padding: 12px 18px; }
  .trust-strip .t-item + .t-item { border-top: 1px solid var(--border); }
  .hero { padding-bottom: 104px; }
  .hero-trust .item { padding: 0 18px; }
  .hero-trust .item b { font-size: 1.6rem; }
  .hero-visual { padding: 0 12px 10px 6px; }
  .info-item { padding: 14px; gap: 12px; }
  .info-item .icon { width: 40px; height: 40px; border-radius: 11px; }
  .info-item .icon svg { width: 19px; height: 19px; }
  .info-item .value { font-size: 0.9rem; }
  .map-embed iframe { min-height: 340px; }
  .gallery-strip { grid-template-columns: 1fr; }
  .collage .exp-badge { right: 6px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-card { padding: 28px 22px; }
}

@media (max-width: 400px) {
  .container, .nav { padding: 0 18px; }
  .card { padding: 26px; }
  .hero h1 { font-size: 2.15rem; }
}
