/* ====================================================================
   FLY PARK Bodrum — Stylesheet
   Mobile-first. CSS custom properties. No build step.
   ==================================================================== */

/* ───── Reset / base ───── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: var(--accent-strong); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 1.25rem; }
h1, h2, h3, h4 { line-height: 1.2; color: var(--text-strong); font-weight: 700; }

/* ───── Tokens ───── */
:root {
  --navy: #0F2A47;
  --navy-dark: #08182B;
  --navy-light: #1B3A5C;
  --amber: #F59E0B;
  --amber-strong: #D97706;
  --wa: #25D366;
  --wa-strong: #1DA851;
  --bg: #FFFFFF;
  --surface: #F8FAFC;
  --surface-alt: #EFF4FA;
  --text-strong: #0F172A;
  --text: #334155;
  --muted: #64748B;
  --border: #E2E8F0;
  --accent: var(--amber);
  --accent-strong: var(--amber-strong);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgb(15 42 71 / 0.06);
  --shadow:    0 8px 24px rgb(15 42 71 / 0.10);
  --shadow-lg: 0 20px 50px rgb(15 42 71 / 0.18);

  --container: 1200px;
  --gap: clamp(1rem, 2.5vw, 2rem);

  --t-fast: 150ms cubic-bezier(.4,0,.2,1);
  --t-base: 250ms cubic-bezier(.4,0,.2,1);
}

/* ───── Utility ───── */
.container {
  width: 100%; max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}
.muted { color: var(--muted); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; padding: .75rem 1rem;
  background: var(--navy); color: #fff; z-index: 9999; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ───── Header / Nav ───── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 64px; gap: 1rem;
}
.brand {
  display: inline-flex; align-items: center; gap: .55rem;
  color: var(--navy); font-weight: 800; letter-spacing: .02em; text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-mark { display: inline-flex; }
.brand-text { font-size: 1.25rem; }
.brand-text span { color: var(--amber-strong); }

.primary-nav { display: flex; align-items: center; }
.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: space-between;
  width: 44px; height: 44px; padding: 12px 10px; background: transparent;
  border: 1px solid var(--border); border-radius: var(--radius-sm); cursor: pointer;
}
.nav-toggle-bar {
  display: block; height: 2px; background: var(--navy); border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-fast);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-list {
  position: fixed; inset: 64px 0 0 0;
  background: #fff;
  padding: 1.25rem clamp(1rem, 4vw, 2rem) max(2rem, env(safe-area-inset-bottom));
  display: none; flex-direction: column; gap: .25rem;
  list-style: none;
  border-top: 1px solid var(--border);
  overflow-y: auto;
  z-index: 95;
  -webkit-overflow-scrolling: touch;
}
.nav-list.open { display: flex; }
.nav-list li { list-style: none; }
.nav-list a {
  display: block; padding: .9rem 1rem; border-radius: var(--radius-sm);
  font-weight: 600; color: var(--navy); text-decoration: none; font-size: 1.05rem;
}
.nav-list a:hover, .nav-list a:focus-visible { background: var(--surface); }
.nav-list a[aria-current="page"] { background: var(--surface-alt); color: var(--navy-dark); }
.nav-cta { margin-top: .5rem; }
.nav-cta .btn { width: 100%; justify-content: center; }
.lang-switch {
  display: inline-flex; align-items: center; gap: .35rem;
  border: 1px solid var(--border); padding: .55rem .9rem !important;
  border-radius: 999px; font-size: .9rem !important;
}

/* ───── Buttons ───── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.4rem; min-height: 48px;
  border: 1px solid transparent; border-radius: var(--radius);
  font-weight: 700; cursor: pointer; text-decoration: none;
  transition: transform var(--t-fast), box-shadow var(--t-base), background var(--t-base);
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: .55rem 1rem; min-height: 40px; font-size: .95rem; }
.btn-lg { padding: 1.05rem 1.75rem; min-height: 56px; font-size: 1.05rem; }

.btn-primary { background: var(--amber); color: var(--navy-dark); box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--amber-strong); color: #fff; }

.btn-ghost { background: rgb(255 255 255 / .12); color: #fff; border-color: rgb(255 255 255 / .35); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgb(255 255 255 / .2); }

.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-strong); }

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

/* ───── Sections ───── */
section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.eyebrow {
  display: inline-block; padding: .35rem .75rem; border-radius: 999px;
  background: var(--surface-alt); color: var(--navy);
  font-weight: 700; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-head h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: .75rem; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ───── Hero ───── */
.hero {
  position: relative; padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 8vw, 6rem);
  color: #fff; overflow: hidden;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgb(245 158 11 / .25), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgb(37 211 102 / .18), transparent 65%),
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgb(255 255 255 / .08) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgb(255 255 255 / .06) 0 1px, transparent 1px),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 400' preserveAspectRatio='xMidYMid slice'><defs><linearGradient id='g' x1='0' y1='0' x2='0' y2='1'><stop offset='0' stop-color='%23ffffff' stop-opacity='0.05'/><stop offset='1' stop-color='%23ffffff' stop-opacity='0'/></linearGradient></defs><g fill='url(%23g)' stroke='%23ffffff' stroke-opacity='0.10' stroke-width='1'><path d='M0 320 L800 270 L800 400 L0 400 Z'/><path d='M120 230 L180 200 L210 215 L260 195 L320 220 L380 200 L450 225 L520 205 L600 225 L680 210 L760 220'/></g><g fill='%23F59E0B' fill-opacity='0.18'><circle cx='680' cy='90' r='42'/></g><g stroke='%23ffffff' stroke-opacity='0.18' stroke-width='2' fill='none'><path d='M520 110 L580 80 L640 100 L660 80 L680 90 L660 120 L620 130 Z'/><path d='M580 80 L575 60' /></g></svg>");
  background-size: 24px 24px, 24px 24px, cover;
  background-position: 0 0, 12px 12px, center;
  opacity: .9; z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid; gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: 1fr;
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem .85rem; border-radius: 999px;
  background: rgb(245 158 11 / .15); color: var(--amber);
  font-weight: 700; font-size: .85rem; letter-spacing: .04em;
  border: 1px solid rgb(245 158 11 / .35);
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 5.2vw, 3.4rem);
  letter-spacing: -.01em; margin-bottom: 1rem;
}
.hero h1 span { color: var(--amber); }
.hero p { font-size: clamp(1rem, 1.6vw, 1.15rem); color: rgb(255 255 255 / .85); max-width: 620px; margin-bottom: 1.75rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; }

.hero-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem); padding-top: 2rem;
  border-top: 1px solid rgb(255 255 255 / .15);
}
.hero-stats > div .num { font-size: 1.5rem; font-weight: 800; color: var(--amber); }
.hero-stats > div .lbl { font-size: .85rem; color: rgb(255 255 255 / .75); }

/* ───── Trust strip ───── */
.trust { background: var(--surface); }
.trust-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.trust-card {
  background: #fff; border-radius: var(--radius); padding: 1.5rem;
  border: 1px solid var(--border);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.trust-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.trust-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--surface-alt); color: var(--navy); margin-bottom: .75rem;
}
.trust-card h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.trust-card p { color: var(--muted); font-size: .95rem; }

/* ───── Services cards ───── */
.services-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.service-card {
  display: flex; flex-direction: column;
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--amber); }
.service-card.is-featured { border-color: var(--amber); box-shadow: var(--shadow); }
.service-card-head {
  padding: 1.5rem; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
}
.service-card-head h3 { color: #fff; font-size: 1.25rem; margin-bottom: .25rem; }
.service-card-head p { color: rgb(255 255 255 / .8); font-size: .92rem; }
.service-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-price { display: flex; align-items: baseline; gap: .35rem; margin-bottom: 1rem; }
.service-price .amount { font-size: 2.25rem; font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.service-price .lbl { color: var(--muted); font-size: .9rem; }
.service-features { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: .5rem; }
.service-features li {
  display: flex; align-items: center; gap: .55rem; color: var(--text); font-size: .95rem;
}
.service-features li::before {
  content: ""; flex: 0 0 18px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--amber);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.service-cta { margin-top: auto; }
.service-cta .btn { width: 100%; }

/* ───── Why us ───── */
.why { background: var(--surface); }
.why-grid {
  display: grid; gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: 1fr;
  align-items: start;
}
.why-points { display: grid; gap: 1rem; }
.why-point {
  background: #fff; border: 1px solid var(--border); border-left: 4px solid var(--amber);
  padding: 1.25rem 1.5rem; border-radius: var(--radius);
}
.why-point h3 { font-size: 1.05rem; margin-bottom: .25rem; }
.why-point p { color: var(--muted); font-size: .95rem; }

/* ───── Form / Reserve ───── */
.reserve { background: linear-gradient(180deg, var(--surface) 0%, #fff 100%); }
.reserve-grid {
  display: grid; gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: 1fr; align-items: start;
}
.reserve-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem); box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field-row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.field label { font-size: .9rem; font-weight: 600; color: var(--text-strong); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1px solid var(--border);
  border-radius: var(--radius-sm); background: #fff; min-height: 48px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  font-size: 16px; /* iOS zoom guard */
}
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--amber);
  box-shadow: 0 0 0 4px rgb(245 158 11 / .2);
}
.field.checkbox { display: flex; gap: .65rem; align-items: flex-start; }
.field.checkbox input { width: 20px; height: 20px; min-height: 0; flex: 0 0 20px; margin-top: 2px; }
.field.checkbox label { font-weight: 400; color: var(--muted); font-size: .9rem; }
.field-error { color: #B91C1C; font-size: .85rem; min-height: 1rem; }

.reserve-side h3 { font-size: 1.25rem; margin-bottom: .75rem; }
.reserve-side ul { list-style: none; padding: 0; display: grid; gap: .75rem; }
.reserve-side li { display: flex; gap: .65rem; align-items: flex-start; color: var(--text); }
.reserve-side li svg { flex: 0 0 24px; color: var(--amber); }

/* ───── FAQ ───── */
.faq-list { display: grid; gap: .75rem; }
.faq-item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 1rem 1.25rem; font-weight: 600; color: var(--navy);
  list-style: none; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; flex: 0 0 20px; width: 20px; height: 20px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F2A47' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-size: contain; background-repeat: no-repeat;
  transition: transform var(--t-base);
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item .a { padding: 0 1.25rem 1.25rem; color: var(--text); font-size: .98rem; }

/* ───── Map ───── */
.map { background: var(--surface); }
.map-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); aspect-ratio: 16/9; background: #ddd;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.map-actions {
  display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.25rem;
}

/* ───── Footer ───── */
.site-footer {
  background: var(--navy-dark); color: rgb(255 255 255 / .8);
  padding: clamp(2.5rem, 5vw, 4rem) 0 1.5rem;
}
.site-footer h3, .site-footer .brand { color: #fff; }
.footer-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}
.footer-col .brand-text { color: #fff; }
.footer-title { font-size: 1rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .06em; }
.footer-list { list-style: none; padding: 0; display: grid; gap: .5rem; }
.footer-list a { color: rgb(255 255 255 / .75); }
.footer-list a:hover { color: var(--amber); }
.footer-social { display: flex; gap: .75rem; margin-top: 1rem; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgb(255 255 255 / .08); color: #fff;
}
.footer-social a:hover { background: var(--amber); color: var(--navy-dark); }
.footer-bottom {
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgb(255 255 255 / .12);
  text-align: center; color: rgb(255 255 255 / .55); font-size: .85rem;
}

/* ───── Floating action stack (WA + Phone + Directions) ───── */
.action-stack {
  position: fixed; right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  display: flex; flex-direction: column; gap: .55rem; align-items: center;
  z-index: 9999;
}
.action-stack a {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; color: #fff; text-decoration: none;
  transition: transform var(--t-base), box-shadow var(--t-base);
  position: relative;
}
.action-stack a:hover { transform: scale(1.08); text-decoration: none; }
.action-stack .act-dir { width: 44px; height: 44px; background: var(--amber); color: var(--navy-dark); box-shadow: 0 6px 18px rgb(245 158 11 / .45); }
.action-stack .act-call { width: 44px; height: 44px; background: var(--navy); box-shadow: 0 6px 18px rgb(15 42 71 / .45); }
.action-stack .act-wa { width: 60px; height: 60px; background: var(--wa); box-shadow: 0 10px 25px rgb(37 211 102 / .45); }
.action-stack .act-tip {
  position: absolute; right: calc(100% + 10px); top: 50%; transform: translateY(-50%);
  background: rgb(15 42 71 / .95); color: #fff; padding: .35rem .6rem; border-radius: 6px;
  font-size: .8rem; font-weight: 600; white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity var(--t-fast);
}
.action-stack a:hover .act-tip { opacity: 1; }
.wa-pulse {
  position: absolute; inset: 0; border-radius: 50%; background: var(--wa);
  animation: wa-pulse 2.2s ease-out infinite; opacity: .55; z-index: -1;
}
@keyframes wa-pulse {
  0%   { transform: scale(.95); opacity: .55; }
  70%  { transform: scale(1.6);  opacity: 0; }
  100% { transform: scale(1.6);  opacity: 0; }
}

/* ───── Hero shuttle chip + extra CTAs ───── */
.hero-shuttle-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1rem; border-radius: 999px;
  background: linear-gradient(135deg, var(--wa) 0%, var(--wa-strong) 100%);
  color: #fff; font-weight: 800; font-size: .85rem; letter-spacing: .04em;
  margin-top: 1.25rem;
  box-shadow: 0 8px 22px rgb(37 211 102 / .45);
}

/* ───── Shuttle strip (marquee-ish) ───── */
.shuttle-strip {
  background: linear-gradient(90deg, var(--amber-strong) 0%, var(--amber) 50%, var(--amber-strong) 100%);
  color: var(--navy-dark); overflow: hidden; padding: .9rem 0;
  border-block: 1px solid rgb(0 0 0 / .08);
}
.shuttle-track {
  display: flex; gap: 2.5rem; white-space: nowrap; align-items: center;
  animation: shuttle-scroll 32s linear infinite;
  will-change: transform;
}
.shuttle-track span {
  font-weight: 800; font-size: .92rem; letter-spacing: .08em;
  display: inline-flex; align-items: center; gap: .5rem;
}
.shuttle-track span::after {
  content: "•"; margin-left: 2.5rem; color: rgb(15 42 71 / .35);
}
@keyframes shuttle-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ───── CTA banner ───── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: #fff;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 90% 100%, rgb(37 211 102 / .15), transparent 60%),
    radial-gradient(600px 300px at -10% 0%, rgb(245 158 11 / .15), transparent 60%);
  pointer-events: none;
}
.cta-banner > .container { position: relative; }
.cta-banner-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr; align-items: center;
  text-align: center;
}
.cta-banner .eyebrow { background: rgb(245 158 11 / .2); color: var(--amber); }
.cta-banner h2 { color: #fff; font-size: clamp(1.5rem, 3.2vw, 2.2rem); margin-bottom: .5rem; }
.cta-banner p  { color: rgb(255 255 255 / .85); max-width: 640px; margin: 0 auto 1.25rem; }
.cta-banner-actions { display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center; }
@media (min-width: 900px) {
  .cta-banner-grid { grid-template-columns: 1.5fr 1fr; text-align: left; }
  .cta-banner p { margin: 0 0 0 0; max-width: none; }
  .cta-banner-actions { justify-content: flex-end; }
}

/* ───── Service card shuttle badge ───── */
.service-card-head { position: relative; padding-top: 2.75rem; }
.service-card-head h3 { padding-right: 0; }
.shuttle-badge {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .3rem .7rem; border-radius: 999px;
  background: var(--wa); color: #fff;
  font-weight: 700; font-size: .72rem; letter-spacing: .04em;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgb(37 211 102 / .4);
}
.service-cta-row {
  display: grid; gap: .5rem; margin-top: auto;
  grid-template-columns: 1fr;
}
.service-cta-row .btn { width: 100%; }
@media (min-width: 480px) {
  .service-cta-row { grid-template-columns: 1.4fr 1fr; }
}

/* ───── Button variants for directions / call ───── */
.btn-dir { background: var(--amber); color: var(--navy-dark); }
.btn-dir:hover { background: var(--amber-strong); color: #fff; }
.btn-call { background: var(--navy); color: #fff; }
.btn-call:hover { background: var(--navy-dark); }
.btn-wa-soft { background: rgb(37 211 102 / .12); color: var(--wa-strong); border-color: rgb(37 211 102 / .35); }
.btn-wa-soft:hover { background: var(--wa); color: #fff; border-color: transparent; }

/* ───── Inner page hero (lightweight) ───── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: #fff; padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: .65rem; }
.page-hero p { color: rgb(255 255 255 / .8); max-width: 720px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb {
  display: flex; gap: .35rem; flex-wrap: wrap; justify-content: center;
  margin-bottom: 1rem; font-size: .85rem; color: rgb(255 255 255 / .7);
}
.breadcrumb a { color: rgb(255 255 255 / .9); }
.breadcrumb [aria-current] { color: var(--amber); }

/* ───── Generic article / about ───── */
.prose { max-width: 760px; }
.prose p { margin-bottom: 1rem; color: var(--text); }
.prose h2 { font-size: 1.5rem; margin: 2rem 0 .75rem; }

/* ───── Pricing table (services page) ───── */
.price-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); background: #fff; }
.price-table {
  width: 100%; border-collapse: collapse; min-width: 560px;
}
.price-table th, .price-table td {
  padding: 1rem 1.1rem; text-align: left; border-bottom: 1px solid var(--border);
}
.price-table th { background: var(--surface); color: var(--navy); font-weight: 700; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table td.right, .price-table th.right { text-align: right; }
.price-tag { font-weight: 800; color: var(--navy); font-size: 1.1rem; }

/* ───── Contact info grid ───── */
.contact-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.contact-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem;
}
.contact-card h3 { font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: .5rem; }
.contact-card p, .contact-card a { color: var(--text-strong); font-weight: 600; }

/* ───── Responsive ───── */
@media (min-width: 768px) {
  .field-row { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .nav-list {
    position: static; inset: auto; padding: 0; display: flex !important; flex-direction: row;
    background: transparent; border: 0; gap: .25rem; overflow: visible; align-items: center;
  }
  .nav-list a { padding: .55rem .9rem; font-size: .95rem; }
  .nav-cta { margin-top: 0; margin-left: .5rem; }
  .nav-cta .btn { width: auto; }
  .reserve-grid { grid-template-columns: 1.4fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr 1fr; }
  .hero-grid { grid-template-columns: 1.2fr 1fr; }
  .wa-float { width: 64px; height: 64px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
}

/* Focus visible */
:focus-visible {
  outline: 3px solid var(--amber); outline-offset: 2px; border-radius: 4px;
}

/* Print */
@media print { .site-header, .wa-float, .site-footer { display: none; } }
