/* ============================================================================
   ProService73 — Design System & Styles
   Aydınlık, ferah taban + Alp aksanı (buz mavisi / derin lacivert)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --c-bg: #f5f9fc;
  --c-bg-alt: #eef5fb;
  --c-surface: #ffffff;
  --c-ink: #0f2438;
  --c-ink-soft: #526172;
  --c-ink-faint: #8296a8;
  --c-primary: #0ea5e9;
  --c-primary-deep: #0369a1;
  --c-accent: #14b8a6;
  --c-line: #e2ebf3;
  --c-star: #f5b301;

  --grad-primary: linear-gradient(135deg, #0ea5e9 0%, #0369a1 100%);
  --grad-accent: linear-gradient(135deg, #22d3ee 0%, #0ea5e9 60%, #0369a1 100%);
  --grad-hero: radial-gradient(1200px 600px at 80% -10%, #d3ecfb 0%, rgba(211,236,251,0) 60%),
               linear-gradient(165deg, #f3f9fd 0%, #e6f2fb 55%, #dbedfa 100%);
  --grad-ink: linear-gradient(135deg, #0f2438 0%, #123350 100%);

  --font-head: "Poppins", system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(15, 36, 56, .06);
  --shadow-md: 0 14px 34px rgba(15, 36, 56, .10);
  --shadow-lg: 0 28px 64px rgba(3, 105, 161, .20);
  --shadow-primary: 0 14px 30px rgba(14, 165, 233, .35);

  --container: 1180px;
  --header-h: 74px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.14; font-weight: 700; color: var(--c-ink); letter-spacing: -.01em; }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
ul { list-style: none; }
::selection { background: var(--c-primary); color: #fff; }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); position: relative; }
.section--alt { background: var(--c-bg-alt); }
.section--ink { background: var(--grad-ink); color: #dbe7f1; }
.section--ink h2, .section--ink h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-primary-deep);
  background: rgba(14, 165, 233, .10);
  padding: .4rem .9rem; border-radius: var(--radius-pill);
}
.section--ink .eyebrow { color: #7fd6ff; background: rgba(127, 214, 255, .12); }

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.75rem, 4vw, 2.6rem); margin: 1rem 0 .7rem; }
.section-head p { color: var(--c-ink-soft); font-size: 1.05rem; }
.section--ink .section-head p { color: #b8ccdd; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: .85rem 1.6rem; border-radius: var(--radius-pill);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn-primary { background: var(--grad-primary); color: #fff; box-shadow: var(--shadow-primary); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(14,165,233,.45); }
.btn-ghost { background: rgba(255,255,255,.7); color: var(--c-ink); border: 1px solid var(--c-line); backdrop-filter: blur(8px); }
.btn-ghost:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: transparent; }
.btn-light { background: #fff; color: var(--c-primary-deep); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-sm { padding: .6rem 1.15rem; font-size: .9rem; }
.btn-block { width: 100%; padding-block: 1.05rem; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; height: var(--header-h); z-index: 100;
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(226,235,243,.7);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,.9); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; letter-spacing: -.02em; color: var(--c-ink); }
.brand span { color: var(--c-primary); }
.brand-mark { width: 38px; height: 38px; flex: none; display: block; }
.brand-mark svg, .brand-mark img { width: 100%; height: 100%; display: block; filter: drop-shadow(0 4px 10px rgba(3,105,161,.28)); transition: transform .4s cubic-bezier(.2,.7,.2,1); }
.brand:hover .brand-mark svg, .brand:hover .brand-mark img { transform: rotate(-8deg) scale(1.06); }
.site-footer .brand { color: #fff; }

.nav { display: flex; align-items: center; gap: clamp(.4rem, 2vw, 1.7rem); }
.nav > a:not(.btn):not(.lang) { font-weight: 500; color: var(--c-ink-soft); font-size: .96rem; position: relative; padding: .3rem 0; transition: color .2s; }
.nav > a:not(.btn):not(.lang)::after { content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; background: var(--grad-primary); border-radius:2px; transition: width .25s ease; }
.nav > a:not(.btn):not(.lang):hover { color: var(--c-ink); }
.nav > a:not(.btn):not(.lang):hover::after { width: 100%; }
.nav .lang {
  font-family: var(--font-head); font-weight: 600; font-size: .82rem; letter-spacing: .06em;
  color: var(--c-primary-deep); border: 1.5px solid var(--c-line); border-radius: var(--radius-pill);
  padding: .34rem .7rem; transition: border-color .2s, background .2s;
}
.nav .lang:hover { border-color: var(--c-primary); background: rgba(14,165,233,.08); }

.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 12px; position: relative; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 10px; width: 22px; height: 2.4px; background: var(--c-ink); border-radius: 2px; transition: transform .3s, opacity .3s, top .3s;
}
.nav-toggle span { top: 20px; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding-top: calc(var(--header-h) + clamp(2.5rem, 7vw, 5rem));
  padding-bottom: clamp(3rem, 8vw, 6rem);
  background: var(--grad-hero); overflow: hidden;
}
.hero::before { /* subtle top glow line */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(700px 300px at 15% 110%, rgba(20,184,166,.12), transparent 70%);
}
.hero-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; position: relative; }
.hero h1 { font-size: clamp(2.1rem, 5.4vw, 3.7rem); margin: 1.1rem 0 1.1rem; }
.hero h1 .hl {
  background: linear-gradient(100deg, #0369a1, #0ea5e9, #22d3ee, #0ea5e9, #0369a1);
  background-size: 220% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: hl-shimmer 6s linear infinite;
}
@keyframes hl-shimmer { to { background-position: 220% center; } }

/* Hero floating sparkles */
.hero-sparks { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.hero-sparks .spark {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, rgba(127,214,255,.6) 60%, transparent 70%);
  opacity: 0; animation: spark-float linear infinite;
}
@keyframes spark-float {
  0% { transform: translateY(20px) scale(.5); opacity: 0; }
  20% { opacity: .9; }
  80% { opacity: .7; }
  100% { transform: translateY(-70px) scale(1); opacity: 0; }
}
.hero .container { position: relative; z-index: 1; }

/* Signature badge gentle pulse */
.hero-photo .sig { animation: sig-pulse 3.2s ease-in-out infinite; }
@keyframes sig-pulse {
  0%,100% { transform: rotate(-8deg) scale(1); box-shadow: var(--shadow-primary); }
  50% { transform: rotate(-8deg) scale(1.08); box-shadow: 0 16px 34px rgba(14,165,233,.5); }
}

/* Count-up numbers */
.stat b.count { font-variant-numeric: tabular-nums; }
.hero-lead { font-size: clamp(1.05rem, 2vw, 1.22rem); color: var(--c-ink-soft); max-width: 34ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2.2rem; }

.badge {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow-sm); backdrop-filter: blur(8px);
  padding: .6rem 1rem; border-radius: var(--radius-pill);
  font-weight: 600; font-size: .9rem; color: var(--c-ink);
}
.badge svg { width: 20px; height: 20px; color: var(--c-primary); flex: none; }

/* hero visual */
.hero-visual { position: relative; }
.hero-visual .glass-card {
  position: absolute; background: rgba(255,255,255,.82); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.9); border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: .9rem 1.1rem; display: flex; align-items: center; gap: .7rem; font-weight: 600; font-size: .88rem;
}
.hero-visual .glass-card svg { width: 34px; height: 34px; flex: none; }
.hero-visual .gc-1 { top: 8%; left: -4%; }
.hero-visual .gc-2 { bottom: 10%; right: -3%; }
.hero-img-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: clamp(1.1rem, 2.5vw, 1.6rem); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.card {
  background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem); box-shadow: var(--shadow-sm);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, border-color .35s;
  position: relative; overflow: hidden;
}
.card::after { content:""; position:absolute; inset:0 0 auto 0; height:4px; background: var(--grad-primary); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::after { transform: scaleX(1); }
.card-ico {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(14,165,233,.14), rgba(20,184,166,.14));
  color: var(--c-primary-deep); margin-bottom: 1.15rem;
}
.card-ico svg { width: 30px; height: 30px; }
.card h3 { font-size: 1.22rem; margin-bottom: .5rem; }
.card p { color: var(--c-ink-soft); font-size: .98rem; }

/* Card with photo header */
.card.has-media { padding: 0; }
.card.has-media::after { display: none; }
.card-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.card.has-media:hover .card-media img { transform: scale(1.07); }
.card-media .card-ico {
  position: absolute; left: 1rem; bottom: 1rem; top: auto; margin: 0; z-index: 2;
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,255,255,.95); box-shadow: 0 6px 18px rgba(15,36,56,.20);
  backdrop-filter: blur(6px);
}
.card-media .card-ico svg { width: 26px; height: 26px; }
.card-body { padding: clamp(1.4rem,3vw,1.8rem); }

/* ---------- About ---------- */
.about-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.about-copy p + p { margin-top: 1rem; color: var(--c-ink-soft); }
.about-stats { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; margin-top: 2rem; }
.stat b { font-family: var(--font-head); font-size: 2rem; background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; }
.stat span { color: var(--c-ink-soft); font-size: .92rem; }
.about-visual { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4/3; background: var(--c-bg-alt); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .cap { position: absolute; inset: auto 0 0 0; padding: .8rem 1rem; color: #fff; font-weight: 600; font-size: .92rem; background: linear-gradient(to top, rgba(15,36,56,.8), transparent); }
.gallery-empty { grid-column: 1/-1; text-align: center; color: var(--c-ink-faint); padding: 3rem 1rem; border: 2px dashed var(--c-line); border-radius: var(--radius-lg); }

/* ---------- Before / After slider ---------- */
.ba {
  --p: 50; position: relative; overflow: hidden; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); aspect-ratio: 4/3; background: var(--c-bg-alt);
  user-select: none; touch-action: pan-y; cursor: ew-resize;
}
.ba img { display: block; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-after { position: absolute; inset: 0; }
.ba-before { position: absolute; inset: 0; clip-path: inset(0 calc((100 - var(--p)) * 1%) 0 0); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: calc(var(--p) * 1%); width: 3px;
  background: #fff; box-shadow: 0 0 0 1px rgba(15,36,56,.12); transform: translateX(-1.5px); pointer-events: none;
}
.ba-grip {
  position: absolute; top: 50%; left: calc(var(--p) * 1%); transform: translate(-50%,-50%);
  width: 42px; height: 42px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-md);
  display: grid; place-items: center; color: var(--c-primary-deep); pointer-events: none; z-index: 3;
}
.ba-grip svg { width: 22px; height: 22px; }
.ba-label {
  position: absolute; top: .7rem; padding: .28rem .7rem; border-radius: var(--radius-pill);
  font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #fff;
  background: rgba(15,36,56,.6); backdrop-filter: blur(4px); pointer-events: none; z-index: 2;
}
.ba-label.before { left: .7rem; }
.ba-label.after { right: .7rem; background: rgba(14,165,233,.9); }
.ba-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: .8rem .9rem; color: #fff;
  font-weight: 600; font-size: .9rem; background: linear-gradient(to top, rgba(15,36,56,.82), transparent);
  pointer-events: none; z-index: 2;
}
.ba:focus-visible { outline: 3px solid rgba(14,165,233,.6); outline-offset: 3px; }

/* ---------- Zones ---------- */
.zones-wrap { display: grid; gap: clamp(2rem,5vw,3rem); grid-template-columns: 1fr; align-items: start; }
.zone-chips { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }
.zone-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  padding: .6rem 1.1rem; border-radius: var(--radius-pill); font-weight: 500; font-size: .95rem; color: #eaf4fb;
  transition: background .2s, transform .2s;
}
.zone-chip svg { width: 16px; height: 16px; color: #7fd6ff; }
.zone-chip:hover { background: rgba(127,214,255,.16); transform: translateY(-2px); }

/* ---------- Testimonials ---------- */
.testi-card { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.stars { display: flex; gap: 3px; margin-bottom: .9rem; }
.stars svg { width: 18px; height: 18px; color: var(--c-star); }
.testi-card blockquote { color: var(--c-ink); font-size: 1rem; margin-bottom: 1.1rem; }
.testi-who { display: flex; align-items: center; gap: .7rem; }
.testi-ava { width: 42px; height: 42px; border-radius: 50%; background: var(--grad-primary); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 600; }
.testi-who b { display: block; font-size: .96rem; }
.testi-who span { color: var(--c-ink-faint); font-size: .84rem; }

/* ---------- Reservation form ---------- */
.reserve-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; grid-template-columns: 1fr; }
.reserve-benefits { margin-top: 1.8rem; display: grid; gap: 1rem; }
.reserve-benefits li { display: flex; gap: .8rem; align-items: flex-start; color: #cfe0ee; }
.reserve-benefits svg { width: 24px; height: 24px; color: #34d399; flex: none; margin-top: 1px; }
.reserve-help { margin-top: 2rem; color: #b8ccdd; font-size: .95rem; }
.reserve-help a { color: #7fd6ff; font-weight: 600; }

.form-card { background: var(--c-surface); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow-lg); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .78rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--c-ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .95rem; border: 1.5px solid var(--c-line); border-radius: var(--radius-sm);
  background: #fbfdff; color: var(--c-ink); transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 4px rgba(14,165,233,.14); }
.field input::placeholder, .field textarea::placeholder { color: var(--c-ink-faint); }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.form-status { grid-column: 1/-1; margin-top: .2rem; font-size: .95rem; font-weight: 500; min-height: 1.2em; }
.form-status.ok { color: #0f9d58; }
.form-status.err { color: #dc2626; }
.form-card .btn-block { margin-top: .4rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: .9rem; }
.faq-item { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.15rem 1.4rem; font-family: var(--font-head); font-weight: 600; font-size: 1.03rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; color: var(--c-primary); transition: transform .3s; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 1.4rem 1.25rem; color: var(--c-ink-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--grad-ink); color: #b8ccdd; padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1.4fr 1fr 1fr; padding-bottom: 2.5rem; }
.footer-brand .brand { color: #fff; font-size: 1.5rem; }
.footer-brand p { margin-top: .9rem; max-width: 34ch; font-size: .95rem; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer-col a, .footer-col p { display: block; color: #b8ccdd; font-size: .95rem; margin-bottom: .55rem; transition: color .2s; }
.footer-col a:hover { color: #7fd6ff; }
.footer-social { display: flex; gap: .7rem; margin-top: 1.2rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #fff; transition: background .2s, transform .2s; }
.footer-social a:hover { background: var(--grad-primary); transform: translateY(-3px); }
.footer-social svg { width: 20px; height: 20px; }
.footer-map { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 2.5rem; box-shadow: var(--shadow-lg); }
.footer-map iframe { width: 100%; height: 260px; border: 0; display: block; filter: grayscale(.25) contrast(1.05); }

/* ---------- Contact page ---------- */
.contact-cards { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.contact-cards .card { text-align: center; }
.contact-cards .card-ico { margin-inline: auto; }
.contact-link { color: var(--c-primary-deep); font-weight: 600; }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.contact-map iframe { width: 100%; height: 380px; border: 0; display: block; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.4rem 0; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; font-size: .86rem; color: #8ba3b7; }
.footer-bottom a { color: #8ba3b7; }
.footer-bottom a:hover { color: #7fd6ff; }

/* ---------- Floating action buttons ---------- */
.fab-stack { position: fixed; right: clamp(14px, 3vw, 26px); bottom: clamp(14px, 3vw, 26px); z-index: 90; display: flex; flex-direction: column; gap: .8rem; }
.fab { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow-md); transition: transform .25s, box-shadow .25s; color: #fff; }
.fab:hover { transform: translateY(-4px) scale(1.05); box-shadow: var(--shadow-lg); }
.fab svg { width: 28px; height: 28px; }
.fab-wa { background: #25d366; }
.fab-tel { background: var(--grad-primary); }
.fab-wa::after { content:""; position:absolute; }

/* ---------- Hero photo frame (distinctive) ---------- */
.hero-photo { position: relative; }
.hero-photo .frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 6px solid #fff; transform: rotate(1.4deg);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.hero-photo .frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; display: block; }
.hero-photo:hover .frame { transform: rotate(0deg); }
.hero-photo .sig {
  position: absolute; top: -18px; right: 14px; width: 64px; height: 64px; z-index: 3;
  background: var(--grad-primary); border-radius: 20px; display: grid; place-items: center;
  box-shadow: var(--shadow-primary); transform: rotate(-8deg);
}
.hero-photo .sig svg { width: 34px; height: 34px; color: #fff; }

/* ---------- "Why us" band ---------- */
.why-grid { display: grid; gap: clamp(1.1rem,2.5vw,1.6rem); grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-ico {
  width: 52px; height: 52px; border-radius: 14px; flex: none; display: grid; place-items: center;
  background: rgba(127,214,255,.14); color: #7fd6ff;
}
.section:not(.section--ink) .why-ico { background: linear-gradient(135deg,rgba(14,165,233,.14),rgba(20,184,166,.14)); color: var(--c-primary-deep); }
.why-ico svg { width: 27px; height: 27px; }
.why-item h3 { font-size: 1.08rem; margin-bottom: .3rem; }
.why-item p { font-size: .95rem; color: var(--c-ink-soft); }
.section--ink .why-item p { color: #b8ccdd; }

/* ---------- "How it works" process ---------- */
.process { display: grid; gap: clamp(1.4rem,3vw,1.2rem); grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); position: relative; }
.step { position: relative; padding-top: .5rem; }
.step-num {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: #fff;
  background: var(--grad-primary); box-shadow: var(--shadow-primary); margin-bottom: 1rem; position: relative; z-index: 2;
}
.step h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.step p { color: var(--c-ink-soft); font-size: .95rem; }
@media (min-width: 780px) {
  .process::before {
    content: ""; position: absolute; top: 27px; left: 10%; right: 10%; height: 2px;
    background: linear-gradient(90deg, rgba(14,165,233,.15), rgba(14,165,233,.5), rgba(14,165,233,.15)); z-index: 0;
  }
}

/* ---------- Responsive ---------- */
@media (min-width: 720px) {
  .reserve-grid { grid-template-columns: 1fr 1.05fr; }
}
@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .zones-wrap { grid-template-columns: 1fr 1.1fr; }
}
@media (max-width: 859px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(255,255,255,.98); backdrop-filter: blur(14px);
    padding: 1rem clamp(1.1rem,4vw,2rem) 1.6rem; border-bottom: 1px solid var(--c-line);
    box-shadow: var(--shadow-md);
    transform: translateY(-140%); transition: transform .35s cubic-bezier(.2,.7,.2,1);
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav > a { padding: .9rem .2rem !important; border-bottom: 1px solid var(--c-line); }
  .nav > a::after { display: none; }
  .nav .lang { align-self: flex-start; margin-top: .8rem; }
  .nav .btn { margin-top: .9rem; }
  .hero-visual { margin-top: 2.4rem; }
  .hero-visual .glass-card { display: none; }
  .hero-photo .frame { transform: none; }
  .hero-photo .sig { top: -14px; right: 10px; width: 52px; height: 52px; }
}
@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .01ms !important; }
}

/* ---------- Clickable service card + "learn more" ---------- */
.card[role="button"] { cursor: pointer; }
.card[role="button"]:focus-visible { outline: 3px solid rgba(14,165,233,.55); outline-offset: 3px; }
.card-more {
  display: inline-flex; align-items: center; gap: .35rem; margin-top: 1.1rem;
  font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--c-primary-deep);
  transition: gap .25s ease;
}
.card-more svg { width: 1.05em; height: 1.05em; transition: transform .25s ease; }
.card[role="button"]:hover .card-more { gap: .65rem; }
.card[role="button"]:hover .card-more svg { transform: translateX(3px); }

/* ---------- Service modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 200; background: rgba(15,36,56,.6);
  backdrop-filter: blur(5px); display: flex; align-items: center; justify-content: center;
  padding: 1.2rem; opacity: 0; transition: opacity .28s ease; overflow-y: auto;
}
.modal-backdrop[hidden] { display: none; }
.modal-backdrop.open { opacity: 1; }
.modal {
  background: #fff; border-radius: var(--radius-lg); max-width: 560px; width: 100%; margin: auto;
  overflow: hidden; box-shadow: var(--shadow-lg);
  transform: translateY(18px) scale(.97); transition: transform .32s cubic-bezier(.2,.7,.2,1);
}
.modal-backdrop.open .modal { transform: none; }
.modal-media { position: relative; aspect-ratio: 16/9; background: var(--c-bg-alt); }
.modal-media img { width: 100%; height: 100%; object-fit: cover; }
.modal-close {
  position: absolute; top: .85rem; right: .85rem; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--c-ink); display: grid; place-items: center;
  box-shadow: var(--shadow-sm); transition: transform .25s, background .2s;
}
.modal-close:hover { transform: rotate(90deg); background: #fff; }
.modal-close svg { width: 20px; height: 20px; }
.modal-body { padding: clamp(1.5rem,3.5vw,2.2rem); }
.modal-body h3 { font-size: clamp(1.35rem,3vw,1.7rem); margin-bottom: .6rem; }
.modal-body > p { color: var(--c-ink-soft); margin-bottom: 1.3rem; }
.modal-includes { display: grid; gap: .65rem; margin-bottom: 1.6rem; }
.modal-includes li { display: flex; gap: .65rem; align-items: flex-start; color: var(--c-ink); font-size: .98rem; }
.modal-includes svg { width: 20px; height: 20px; color: var(--c-accent); flex: none; margin-top: 2px; }
body.modal-open { overflow: hidden; }

/* ---------- Legal pages (mentions légales / privacy) ---------- */
.legal-header {
  height: var(--header-h); display: flex; align-items: center;
  border-bottom: 1px solid var(--c-line); background: #fff; position: sticky; top: 0; z-index: 100;
}
.legal-main { padding-block: clamp(2.5rem, 6vw, 4.5rem); background: var(--c-bg); min-height: 70vh; }
.legal { max-width: 800px; margin-inline: auto; background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 3rem); box-shadow: var(--shadow-sm); }
.legal h1 { font-size: clamp(1.6rem, 4vw, 2.3rem); margin-bottom: .4rem; }
.legal .updated { color: var(--c-ink-faint); font-size: .9rem; margin-bottom: 2rem; }
.legal h2 { font-size: 1.2rem; margin: 2rem 0 .7rem; padding-top: 1.4rem; border-top: 1px solid var(--c-line); }
.legal h2:first-of-type { border-top: none; padding-top: 0; }
.legal p, .legal li { color: var(--c-ink-soft); margin-bottom: .5rem; }
.legal ul { padding-left: 1.1rem; list-style: disc; }
.legal strong { color: var(--c-ink); font-weight: 600; }
.legal a { color: var(--c-primary-deep); text-decoration: underline; }
.legal .back { display: inline-flex; align-items: center; gap: .4rem; margin-top: 2rem; font-weight: 600; color: var(--c-primary-deep); }

/* focus visibility */
:focus-visible { outline: 3px solid rgba(14,165,233,.55); outline-offset: 2px; border-radius: 4px; }
