:root {
  --bg: #fbf7ef;
  --surface: #fffefb;
  --surface-soft: #f3eee4;
  --surface-warm: #f7ecd6;
  --text: #17384a;
  --muted: #6f766e;
  --line: #e7dcc7;
  --primary: #0284c7;
  --primary-dark: #0369a1;
  --primary-light: #e0f2fe;
  --accent: #c8a45d;
  --accent-light: #f7ecd1;
  --success: #0284c7;
  --danger: #a63f35;
  --shadow-sm: 0 10px 30px rgba(23, 56, 74, .07);
  --shadow-md: 0 22px 60px rgba(23, 56, 74, .11);
  --shadow-lg: 0 34px 95px rgba(2, 84, 126, .16);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --container: 1180px;
  --header-height: 78px;
  color-scheme: light;
}

[data-theme="dark"] {
  --bg: #06131f;
  --surface: #0b2233;
  --surface-soft: #0b2a3d;
  --surface-warm: #261d12;
  --text: #f4f0e7;
  --muted: #b6b3a7;
  --line: #27465a;
  --primary: #7dd3fc;
  --primary-dark: #bae6fd;
  --primary-light: #10364d;
  --accent: #d9b76f;
  --accent-light: #352914;
  --success: #38bdf8;
  --danger: #f28b80;
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, .18);
  --shadow-md: 0 20px 55px rgba(0, 0, 0, .28);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, .35);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { margin: 0; background: var(--bg); color: var(--text); font-family: "Tahoma", "Arial", sans-serif; line-height: 1.7; -webkit-font-smoothing: antialiased; }
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
svg { width: 1.25em; height: 1.25em; display: block; }
.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 12px; inset-inline-start: 12px; z-index: 9999; transform: translateY(-150%); padding: 10px 16px; border-radius: 10px; background: var(--primary); color: #fff; }
.skip-link:focus { transform: translateY(0); }

.topbar { background: var(--primary-dark); color: #fff; font-size: .83rem; }
.topbar__inner { min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar__contact { display: inline-flex; align-items: center; gap: 10px; }
.topbar__contact > span:last-child { display: flex; align-items: center; gap: 10px; }
.topbar__contact small { opacity: .75; border-inline-start: 1px solid rgba(255,255,255,.25); padding-inline-start: 10px; }
.topbar__promise { display: inline-flex; align-items: center; gap: 8px; opacity: .9; }
.icon-circle { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.13); }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: #7dd3fc; box-shadow: 0 0 0 0 rgba(125,211,252,.55); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(125,211,252,0); } 100% { box-shadow: 0 0 0 0 rgba(125,211,252,0); } }

.site-header { position: sticky; top: 0; z-index: 1000; background: color-mix(in srgb, var(--bg) 90%, transparent); backdrop-filter: blur(16px); border-bottom: 1px solid transparent; transition: .25s ease; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.header__inner { min-height: var(--header-height); display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand__mark { width: 48px; height: 48px; border-radius: 16px 16px 8px 16px; display: grid; place-items: center; background: linear-gradient(145deg, var(--primary), var(--primary-dark)); color: #fff; box-shadow: 0 9px 24px rgba(14,165,233,.23); position: relative; overflow: hidden; }
.brand__mark::after { content: ""; position: absolute; width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.12); inset: -5px auto auto -5px; }
.brand__mark span { font-size: 1.55rem; font-weight: 900; position: relative; z-index: 1; }
.brand__text { display: grid; line-height: 1.25; }
.brand__text strong { font-size: 1.08rem; }
.brand__text small { color: var(--muted); font-size: .7rem; margin-top: 3px; }
.main-nav { display: flex; align-items: center; gap: 26px; margin-inline: auto; }
.main-nav a { font-weight: 700; font-size: .91rem; color: var(--muted); position: relative; transition: .2s; }
.main-nav a::after { content: ""; position: absolute; bottom: -10px; right: 0; width: 0; height: 2px; border-radius: 2px; background: var(--accent); transition: .2s; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--text); }
.main-nav a:hover::after, .main-nav a:focus-visible::after { width: 100%; }
.header__actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle, .menu-toggle { border: 1px solid var(--line); background: var(--surface); color: var(--text); }
.theme-toggle { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; }
.menu-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; padding: 10px; }
.menu-toggle span { display: block; height: 2px; background: currentColor; border-radius: 2px; margin: 4px 0; transition: .2s; }

.btn { border: 0; border-radius: 14px; min-height: 46px; padding: 0 22px; display: inline-flex; justify-content: center; align-items: center; gap: 9px; font-weight: 800; transition: transform .2s, box-shadow .2s, background .2s, color .2s; }
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid color-mix(in srgb, var(--accent) 50%, transparent); outline-offset: 3px; }
.btn--primary { color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); box-shadow: 0 12px 28px rgba(14,165,233,.2); }
.btn--primary:hover { box-shadow: 0 16px 35px rgba(14,165,233,.3); }
.btn--ghost { background: var(--surface); color: var(--text); border: 1px solid var(--line); }
.btn--small { min-height: 42px; padding-inline: 18px; font-size: .87rem; }
.btn--large { min-height: 56px; padding-inline: 28px; border-radius: 17px; }
.btn--block { width: 100%; }

.hero { min-height: 680px; display: grid; align-items: center; position: relative; overflow: hidden; padding: 70px 0 84px; background: radial-gradient(circle at 15% 10%, var(--accent-light) 0, transparent 30%), radial-gradient(circle at 85% 80%, var(--primary-light) 0, transparent 34%); }
.hero__blobs span { position: absolute; border-radius: 50%; filter: blur(1px); opacity: .45; pointer-events: none; }
.hero__blobs span:nth-child(1) { width: 210px; height: 210px; background: var(--primary-light); right: -90px; top: 60px; }
.hero__blobs span:nth-child(2) { width: 130px; height: 130px; background: var(--accent-light); left: 8%; bottom: -55px; }
.hero__blobs span:nth-child(3) { width: 24px; height: 24px; background: var(--accent); left: 47%; top: 20%; opacity: .25; }
.hero__grid { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 64px; position: relative; z-index: 1; }
.eyebrow, .section-kicker { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-size: .83rem; font-weight: 900; letter-spacing: .02em; }
.eyebrow { background: var(--primary-light); padding: 8px 13px; border-radius: 999px; }
.hero h1 { max-width: 650px; font-size: clamp(2.6rem, 5.3vw, 5rem); line-height: 1.14; margin: 20px 0 22px; letter-spacing: -.045em; }
.hero__content > p { max-width: 610px; font-size: 1.08rem; color: var(--muted); margin: 0 0 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__trust { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 28px; }
.hero__trust > div { display: flex; align-items: center; gap: 10px; }
.hero__trust > div > svg { color: var(--accent); font-size: 1.5rem; }
.hero__trust span { display: grid; line-height: 1.25; }
.hero__trust strong { font-size: .88rem; }
.hero__trust small { color: var(--muted); font-size: .72rem; margin-top: 4px; }
.hero-slider { min-width: 0; }
.hero-slider__track { position: relative; min-height: 510px; border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid color-mix(in srgb, var(--line) 70%, transparent); }
.hero-slide { position: absolute; inset: 0; display: grid; grid-template-rows: 1fr auto; opacity: 0; visibility: hidden; transform: scale(.98); transition: .55s ease; }
.hero-slide.is-active { opacity: 1; visibility: visible; transform: scale(1); }
.hero-slide__image { padding: 26px 30px 0; min-height: 365px; display: grid; place-items: center; background: linear-gradient(150deg, var(--primary-light), color-mix(in srgb, var(--accent-light) 65%, var(--surface))); }
.hero-slide__image img { width: 100%; max-height: 350px; object-fit: contain; }
.hero-slide__caption { padding: 22px 28px 26px; background: var(--surface); }
.hero-slide__caption span { color: var(--accent); font-weight: 900; font-size: .78rem; }
.hero-slide__caption h3 { margin: 4px 0 3px; font-size: 1.25rem; }
.hero-slide__caption p { margin: 0; color: var(--muted); font-size: .9rem; }
.hero-slider__controls { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 18px; }
.hero-slider__controls > button { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line); background: var(--surface); color: var(--text); }
.hero-slider__dots { display: flex; gap: 7px; }
.hero-slider__dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 99px; background: color-mix(in srgb, var(--muted) 35%, transparent); transition: .25s; }
.hero-slider__dots button.is-active { width: 26px; background: var(--primary); }

.trust-strip { margin-top: -24px; position: relative; z-index: 3; }
.trust-strip__grid { min-height: 88px; display: grid; grid-template-columns: repeat(4, 1fr); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-md); border-radius: var(--radius-md); overflow: hidden; }
.trust-strip__grid > div { display: flex; align-items: center; justify-content: center; gap: 10px; font-weight: 800; font-size: .88rem; padding: 18px; }
.trust-strip__grid > div:not(:last-child) { border-inline-end: 1px solid var(--line); }
.trust-strip__grid svg { color: var(--accent); font-size: 1.45rem; }

.section { padding: 110px 0; }
.section--soft { background: var(--surface-soft); }
.section-heading { max-width: 710px; margin: 0 auto 46px; text-align: center; }
.section-heading h2 { font-size: clamp(2rem, 3.4vw, 3.2rem); line-height: 1.24; margin: 9px 0 12px; letter-spacing: -.025em; }
.section-heading p { color: var(--muted); margin: 0; }
.section-heading--right { text-align: right; margin-inline: 0; }

.packages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.package-card { position: relative; display: flex; flex-direction: column; min-width: 0; padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-sm); transition: .25s; overflow: hidden; }
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--primary) 35%, var(--line)); }
.package-card.is-featured { border: 2px solid var(--primary); transform: translateY(-12px); }
.package-card.is-featured:hover { transform: translateY(-16px); }
.package-badge { position: absolute; top: 0; inset-inline-end: 0; background: var(--primary); color: #fff; padding: 7px 16px; border-radius: 0 0 0 14px; font-size: .7rem; font-weight: 900; }
.package-icon { width: 58px; height: 58px; border-radius: 18px; display: grid; place-items: center; background: var(--primary-light); color: var(--primary); font-size: 1.7rem; margin-bottom: 17px; }
.package-card h3 { margin: 0; font-size: 1.16rem; }
.package-card__desc { color: var(--muted); font-size: .86rem; min-height: 54px; margin: 7px 0 17px; }
.package-meta { display: grid; gap: 8px; padding: 13px 0; border-block: 1px solid var(--line); }
.package-meta span { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: .79rem; }
.package-meta svg { color: var(--primary); }
.package-price { display: flex; align-items: baseline; gap: 6px; margin: 18px 0 12px; }
.package-price strong { font-size: 2rem; line-height: 1; }
.package-price span { color: var(--muted); font-size: .83rem; }
.package-features { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 9px; flex: 1; }
.package-features li { display: flex; gap: 7px; align-items: flex-start; font-size: .79rem; color: var(--muted); }
.package-features svg { flex: 0 0 auto; color: var(--success); margin-top: 4px; }
.package-card .btn { min-height: 48px; }
.empty-state { grid-column: 1 / -1; padding: 45px; text-align: center; border: 1px dashed var(--line); border-radius: var(--radius-md); color: var(--muted); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { padding: 32px; border-radius: var(--radius-md); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: .25s; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card__icon { width: 64px; height: 64px; border-radius: 20px; display: grid; place-items: center; background: var(--accent-light); color: var(--accent); font-size: 1.8rem; }
.service-card h3 { font-size: 1.16rem; margin: 20px 0 8px; }
.service-card p { color: var(--muted); margin: 0; font-size: .9rem; }

.why-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: 80px; align-items: center; }
.why-visual { position: relative; border-radius: var(--radius-lg); background: linear-gradient(145deg, var(--primary-light), var(--accent-light)); padding: 35px; min-height: 510px; display: grid; place-items: center; }
.why-visual img { width: 100%; max-height: 450px; object-fit: contain; }
.floating-card { position: absolute; display: flex; align-items: center; gap: 10px; min-width: 180px; padding: 13px 16px; border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-md); border-radius: 16px; }
.floating-card svg { color: var(--success); font-size: 1.4rem; }
.floating-card span { display: grid; line-height: 1.2; }
.floating-card small { color: var(--muted); margin-top: 4px; font-size: .7rem; }
.floating-card--top { top: 40px; inset-inline-start: -28px; }
.floating-card--bottom { bottom: 35px; inset-inline-end: -28px; }
.why-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.why-item { display: grid; grid-template-columns: 52px 1fr; gap: 14px; padding: 20px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.why-item__icon { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; color: var(--primary); background: var(--primary-light); font-size: 1.35rem; }
.why-item h3 { margin: 1px 0 5px; font-size: .96rem; }
.why-item p { margin: 0; color: var(--muted); font-size: .78rem; }

.stats-section { padding: 54px 0; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat-item { text-align: center; padding: 15px 30px; }
.stat-item:not(:last-child) { border-inline-end: 1px solid rgba(255,255,255,.2); }
.stat-item strong { display: block; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.1; }
.stat-item span { display: block; opacity: .8; margin-top: 7px; font-size: .9rem; }

.booking-section { background: radial-gradient(circle at 90% 20%, var(--primary-light), transparent 30%), radial-gradient(circle at 10% 80%, var(--accent-light), transparent 28%); }
.booking-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.booking-copy h2 { font-size: clamp(2rem, 3.6vw, 3.3rem); line-height: 1.2; margin: 10px 0 13px; }
.booking-copy > p { color: var(--muted); }
.booking-steps { list-style: none; margin: 35px 0 28px; padding: 0; display: grid; gap: 18px; }
.booking-steps li { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: center; }
.booking-steps li > span { width: 44px; height: 44px; border-radius: 15px; display: grid; place-items: center; background: var(--surface); color: var(--primary); border: 1px solid var(--line); font-weight: 900; box-shadow: var(--shadow-sm); }
.booking-steps div { display: grid; line-height: 1.3; }
.booking-steps small { color: var(--muted); margin-top: 4px; }
.payment-note { display: flex; gap: 11px; padding: 17px; border-radius: 16px; background: var(--accent-light); color: var(--text); border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent); }
.payment-note svg { flex: 0 0 auto; color: var(--accent); margin-top: 3px; }
.payment-note p { margin: 0; font-size: .82rem; }
.booking-form { padding: 32px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-lg); }
.form-head { display: flex; align-items: center; gap: 13px; margin-bottom: 28px; }
.form-head__icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 17px; background: var(--primary-light); color: var(--primary); font-size: 1.4rem; }
.form-head h3 { margin: 0; font-size: 1.25rem; }
.form-head p { margin: 2px 0 0; color: var(--muted); font-size: .76rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field > span { font-size: .8rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 13px; background: var(--bg); color: var(--text); padding: 12px 14px; outline: none; transition: border .2s, box-shadow .2s; }
.field input, .field select { min-height: 49px; }
.field textarea { resize: vertical; min-height: 92px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 13%, transparent); }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: var(--danger); }
.field-error { min-height: 15px; color: var(--danger); font-size: .68rem; }
.consent { display: flex; align-items: flex-start; gap: 9px; margin: 22px 0 16px; color: var(--muted); font-size: .76rem; }
.consent input { margin-top: 5px; accent-color: var(--primary); }
.form-message { display: none; margin-bottom: 14px; padding: 12px 14px; border-radius: 12px; font-size: .8rem; }
.form-message.is-error { display: block; color: var(--danger); background: color-mix(in srgb, var(--danger) 10%, transparent); }
.form-message.is-success { display: block; color: var(--success); background: color-mix(in srgb, var(--success) 10%, transparent); }
.form-security { display: flex; align-items: center; justify-content: center; gap: 6px; color: var(--muted); font-size: .7rem; margin: 12px 0 0; }
.button-loader { display: none; width: 20px; height: 20px; border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
.is-loading .button-text, .is-loading > svg { display: none; }
.is-loading .button-loader { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.site-footer { padding: 72px 0 20px; background: #082f49; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr .7fr 1fr; gap: 70px; padding-bottom: 48px; }
.brand--footer .brand__text small { color: rgba(255,255,255,.55); }
.footer-brand p { max-width: 480px; color: rgba(255,255,255,.65); font-size: .86rem; }
.site-footer h3 { font-size: .94rem; margin: 5px 0 18px; }
.footer-links, .footer-contact { display: grid; gap: 11px; color: rgba(255,255,255,.68); font-size: .82rem; }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact a, .footer-contact > span { display: flex; gap: 8px; align-items: flex-start; }
.footer-contact svg { color: var(--accent); margin-top: 3px; }
.footer-bottom { min-height: 62px; border-top: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.55); font-size: .72rem; }
.footer-bottom div { display: flex; gap: 18px; }

.floating-whatsapp { position: fixed; z-index: 900; inset-inline-start: 22px; bottom: 22px; min-height: 54px; display: flex; align-items: center; gap: 8px; padding: 0 18px; border-radius: 999px; background: #0ea5e9; color: #fff; font-weight: 900; font-size: .82rem; box-shadow: 0 14px 35px rgba(14,165,233,.32); transition: .2s; }
.floating-whatsapp:hover { transform: translateY(-3px); }
.floating-whatsapp svg { font-size: 1.35rem; }

.modal { position: fixed; inset: 0; z-index: 3000; display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: .2s; }
.modal.is-open { opacity: 1; visibility: visible; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(3,24,38,.72); backdrop-filter: blur(5px); }
.modal__card { position: relative; z-index: 1; width: min(100%, 440px); padding: 34px; background: var(--surface); border-radius: var(--radius-md); text-align: center; box-shadow: var(--shadow-lg); transform: translateY(15px); transition: .25s; }
.modal.is-open .modal__card { transform: translateY(0); }
.success-icon { width: 70px; height: 70px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; background: color-mix(in srgb, var(--success) 14%, transparent); color: var(--success); font-size: 2rem; }
.modal h2 { margin: 0 0 10px; }
.modal p { color: var(--muted); font-size: .85rem; }
.modal .btn { margin-top: 9px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s, transform .6s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.legal-page { min-height: 100vh; background: var(--surface-soft); }
.legal-header { background: var(--surface); border-bottom: 1px solid var(--line); padding: 15px 0; }
.legal-content { max-width: 850px; padding-top: 70px; padding-bottom: 90px; }
.legal-content h1 { font-size: 2.5rem; margin: 20px 0; }
.legal-content #legal-content { white-space: pre-wrap; padding: 28px; border-radius: var(--radius-md); background: var(--surface); border: 1px solid var(--line); color: var(--muted); box-shadow: var(--shadow-sm); }
.back-link { color: var(--primary); font-weight: 800; }
.not-found { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 20px; }
.not-found main { max-width: 450px; }
.not-found .brand__mark { margin: auto; }
.not-found main > strong { display: block; font-size: 5rem; color: var(--primary); line-height: 1; margin-top: 25px; }
.not-found h1 { margin-bottom: 6px; }
.not-found p { color: var(--muted); margin-bottom: 25px; }

@media (max-width: 1060px) {
  .main-nav { gap: 17px; }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .package-card.is-featured { transform: none; }
  .package-card.is-featured:hover { transform: translateY(-8px); }
  .why-layout { gap: 45px; }
  .booking-layout { gap: 42px; }
}

@media (max-width: 860px) {
  :root { --header-height: 68px; }
  .topbar__promise { display: none; }
  .topbar__inner { justify-content: center; }
  .menu-toggle { display: block; margin-inline-start: auto; }
  .main-nav { position: fixed; top: calc(48px + var(--header-height)); inset-inline: 16px; display: grid; gap: 0; padding: 10px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .2s; }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { padding: 12px; border-radius: 10px; }
  .main-nav a:hover { background: var(--surface-soft); }
  .main-nav a::after { display: none; }
  .header__actions .btn { display: none; }
  .hero { padding-top: 55px; }
  .hero__grid, .why-layout, .booking-layout { grid-template-columns: 1fr; }
  .hero__grid { gap: 45px; }
  .hero__content { text-align: center; }
  .hero__content > p { margin-inline: auto; }
  .hero__actions, .hero__trust { justify-content: center; }
  .hero-slider { width: min(100%, 580px); margin-inline: auto; }
  .services-grid { grid-template-columns: 1fr; }
  .why-layout { gap: 70px; }
  .why-content { order: -1; }
  .section-heading--right { text-align: center; margin-inline: auto; }
  .floating-card--top { inset-inline-start: 15px; }
  .floating-card--bottom { inset-inline-end: 15px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .topbar__contact > span:last-child { display: grid; gap: 0; text-align: center; }
  .topbar__contact small { border: 0; padding: 0; }
  .header__inner { gap: 9px; }
  .brand__mark { width: 43px; height: 43px; border-radius: 14px 14px 7px 14px; }
  .brand__text small { display: none; }
  .theme-toggle { width: 40px; height: 40px; }
  .hero { min-height: auto; padding: 48px 0 70px; }
  .hero h1 { font-size: clamp(2.25rem, 12vw, 3.4rem); }
  .hero__content > p { font-size: .95rem; }
  .hero__actions { display: grid; }
  .hero__actions .btn { width: 100%; }
  .hero__trust { display: grid; justify-content: stretch; text-align: right; }
  .hero-slider__track { min-height: 430px; }
  .hero-slide__image { min-height: 300px; padding-inline: 14px; }
  .trust-strip { margin-top: -18px; }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__grid > div { padding: 14px 8px; font-size: .76rem; }
  .trust-strip__grid > div:not(:last-child) { border-inline-end: 0; }
  .trust-strip__grid > div:nth-child(odd) { border-inline-end: 1px solid var(--line); }
  .trust-strip__grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section { padding: 82px 0; }
  .section-heading { margin-bottom: 34px; }
  .packages-grid { grid-template-columns: 1fr; }
  .package-card { padding: 23px; }
  .why-list { grid-template-columns: 1fr; }
  .why-visual { min-height: 390px; padding: 20px; }
  .floating-card { min-width: 155px; padding: 10px 12px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item:not(:last-child) { border-inline-end: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .booking-form { padding: 22px 18px; border-radius: 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { padding: 20px 0; flex-direction: column; text-align: center; }
  .floating-whatsapp { inset-inline-start: 14px; bottom: 14px; padding-inline: 14px; }
  .floating-whatsapp span:last-child { display: none; }
  .floating-whatsapp { width: 54px; padding: 0; justify-content: center; }
}

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

/* Phase 2: about, products, package imagery, and live booking schedule */
.main-nav { gap: 18px; }
.main-nav a { font-size: .84rem; }

.about-section { padding-top: 105px; }
.about-layout { display: grid; grid-template-columns: 1.18fr .82fr; gap: 55px; align-items: center; }
.about-copy h2 { margin: 12px 0 15px; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.25; }
.about-copy > p { margin: 0; max-width: 760px; color: var(--muted); font-size: 1rem; }
.about-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; margin-top: 27px; }
.about-points span { min-height: 49px; display: flex; align-items: center; gap: 9px; padding: 10px 13px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); font-size: .78rem; }
.about-points svg { flex: 0 0 auto; color: var(--success); }
.factory-card { position: relative; overflow: hidden; min-height: 330px; padding: 38px; display: flex; align-items: flex-start; gap: 20px; border-radius: var(--radius-lg); background: linear-gradient(145deg, var(--primary-dark), var(--primary)); color: #fff; box-shadow: var(--shadow-lg); }
.factory-card::before, .factory-card::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.08); }
.factory-card::before { width: 210px; height: 210px; left: -90px; bottom: -105px; }
.factory-card::after { width: 120px; height: 120px; right: -45px; top: -35px; }
.factory-card__icon { flex: 0 0 auto; width: 62px; height: 62px; display: grid; place-items: center; border-radius: 20px; background: rgba(255,255,255,.15); font-size: 1.7rem; position: relative; z-index: 1; }
.factory-card > div { position: relative; z-index: 1; }
.factory-card .mini-kicker { color: #e0f2fe; font-size: .76rem; font-weight: 900; }
.factory-card h3 { margin: 8px 0 12px; font-size: 1.55rem; line-height: 1.35; }
.factory-card p { margin: 0; color: rgba(255,255,255,.78); font-size: .9rem; }

.services-grid--wide { grid-template-columns: repeat(3, 1fr); }
.services-grid--wide .service-card { min-height: 225px; }

.package-card__image, .product-card__image { margin: -5px -5px 20px; height: 190px; overflow: hidden; border-radius: 18px; background: linear-gradient(145deg, var(--primary-light), var(--accent-light)); border: 1px solid var(--line); }
.package-card__image img, .product-card__image img { width: 100%; height: 100%; object-fit: cover; }
.package-card .package-icon { margin-top: 2px; }

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-sm); transition: .25s; }
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.product-card.is-featured { border-color: color-mix(in srgb, var(--accent) 60%, var(--line)); }
.product-card__image { margin: 0; height: 230px; border: 0; border-radius: 0; }
.product-card__body { padding: 22px; }
.product-card__brand { display: inline-flex; padding: 4px 9px; border-radius: 999px; background: var(--primary-light); color: var(--primary); font-size: .66rem; font-weight: 900; }
.product-card h3 { margin: 11px 0 7px; font-size: 1.05rem; }
.product-card p { min-height: 58px; margin: 0 0 13px; color: var(--muted); font-size: .78rem; }
.product-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 7px; }
.product-card li { display: flex; gap: 7px; align-items: flex-start; color: var(--muted); font-size: .72rem; }
.product-card li svg { flex: 0 0 auto; color: var(--success); margin-top: 2px; }
.product-card__footer { display: grid; gap: 12px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); }
.product-card__footer strong { color: var(--primary); font-size: .92rem; }
.product-card__footer .btn { min-height: 43px; padding-inline: 14px; }

.schedule-rule { display: flex; gap: 13px; align-items: flex-start; margin: 18px 0; padding: 16px; border-radius: 15px; background: var(--primary-light); color: var(--text); }
.schedule-rule > svg { flex: 0 0 auto; color: var(--primary); font-size: 1.4rem; margin-top: 2px; }
.schedule-rule strong { display: block; font-size: .84rem; }
.schedule-rule p { margin: 3px 0 0; color: var(--muted); font-size: .74rem; }
.field-help { color: var(--muted); font-size: .67rem; }
.field select:disabled { opacity: .7; cursor: not-allowed; }

@media (max-width: 1060px) {
  .main-nav { gap: 12px; }
  .main-nav a { font-size: .76rem; }
  .about-layout { gap: 35px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .about-layout { grid-template-columns: 1fr; }
  .factory-card { min-height: 250px; }
  .services-grid--wide { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .about-points, .services-grid--wide, .products-grid { grid-template-columns: 1fr; }
  .factory-card { padding: 26px 22px; min-height: auto; }
  .factory-card__icon { width: 52px; height: 52px; border-radius: 16px; }
  .product-card__image { height: 210px; }
  .package-card__image { height: 180px; }
}


/* Premium Minimal Saudi visual refresh. */
html { background: var(--bg); }
body {
  font-family: "IBM Plex Sans Arabic", "Noto Kufi Arabic", "Noto Sans Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
  background:
    radial-gradient(circle at 11% 10%, rgba(200,164,93,.13), transparent 28rem),
    radial-gradient(circle at 87% 5%, rgba(2,84,126,.10), transparent 25rem),
    linear-gradient(180deg, var(--bg) 0%, #f8f1e6 45%, var(--bg) 100%);
  letter-spacing: -.01em;
}
[data-theme="dark"] body {
  background:
    radial-gradient(circle at 8% 7%, rgba(217,183,111,.11), transparent 26rem),
    radial-gradient(circle at 90% 12%, rgba(56,189,248,.12), transparent 25rem),
    linear-gradient(180deg, var(--bg) 0%, #081b2a 60%, var(--bg) 100%);
}
.container { width: min(calc(100% - 40px), 1200px); }
.topbar {
  background: linear-gradient(90deg, #0369a1, #0284c7 55%, #0369a1);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.topbar__inner { min-height: 44px; }
.topbar__contact strong, .topbar__promise { font-weight: 800; }
.site-header {
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
}
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow: 0 18px 50px rgba(2,84,126,.08);
}
.header__inner { min-height: 82px; }
.brand__mark,
.form-head__icon,
.service-card__icon,
.why-item__icon,
.success-icon,
.package-icon {
  background: linear-gradient(145deg, #0284c7 0%, #075985 55%, #0369a1 100%);
  box-shadow: 0 16px 38px rgba(2,84,126,.20);
}
.brand__mark::after { background: rgba(200,164,93,.28); }
.brand__text strong { font-size: 1.12rem; }
.brand__text small { color: var(--muted); font-weight: 700; }
.main-nav a { color: color-mix(in srgb, var(--text) 78%, var(--muted)); font-weight: 800; }
.main-nav a::after { background: var(--accent); height: 2px; }
.theme-toggle, .menu-toggle, .hero-slider__controls > button, .btn--ghost {
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  border-color: color-mix(in srgb, var(--line) 75%, transparent);
  box-shadow: 0 10px 26px rgba(23,56,74,.05);
}
.btn {
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: -.01em;
}
.btn--primary {
  background: linear-gradient(135deg, #0284c7, #0891b2 62%, #0369a1);
  box-shadow: 0 18px 38px rgba(2,84,126,.22);
}
.btn--primary:hover { box-shadow: 0 22px 45px rgba(2,84,126,.28); }
.btn--ghost:hover { border-color: color-mix(in srgb, var(--accent) 48%, var(--line)); color: var(--primary); }
.hero {
  min-height: calc(100vh - 44px - var(--header-height));
  padding: 74px 0 108px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 6% 5% auto auto;
  width: 44vw;
  height: 44vw;
  max-width: 620px;
  max-height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2,84,126,.12), transparent 66%);
  pointer-events: none;
}
.hero__grid { grid-template-columns: minmax(0, .96fr) minmax(420px, 1.04fr); gap: 72px; align-items: center; }
.eyebrow {
  background: rgba(255,254,251,.72);
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
  color: var(--primary);
  box-shadow: 0 14px 32px rgba(23,56,74,.06);
}
[data-theme="dark"] .eyebrow { background: rgba(7,25,39,.74); }
.hero h1 {
  max-width: 780px;
  font-size: clamp(2.6rem, 5.8vw, 5.45rem);
  letter-spacing: -.055em;
  line-height: 1.04;
}
.hero__content > p { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.18rem); max-width: 720px; }
.hero__trust > div {
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  border: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  border-radius: 20px;
  padding: 12px 14px;
  box-shadow: 0 12px 30px rgba(23,56,74,.05);
}
.hero-slider { position: relative; }
.hero-slider::before {
  content: "";
  position: absolute;
  inset: -24px -22px auto auto;
  width: 170px;
  height: 170px;
  border-radius: 44px;
  background: linear-gradient(145deg, rgba(200,164,93,.28), rgba(200,164,93,.04));
  transform: rotate(9deg);
  z-index: 0;
}
.hero-slider__track {
  min-height: 590px;
  border-radius: 42px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 92%, transparent), var(--surface));
  border: 1px solid rgba(255,255,255,.68);
  box-shadow: 0 36px 110px rgba(2,84,126,.18);
  position: relative;
  z-index: 1;
}
[data-theme="dark"] .hero-slider__track { border-color: rgba(255,255,255,.08); box-shadow: 0 35px 90px rgba(0,0,0,.42); }
.hero-slide__image {
  min-height: 410px;
  padding: 18px;
  background:
    linear-gradient(160deg, rgba(2,84,126,.10), rgba(200,164,93,.16)),
    linear-gradient(180deg, #f7efe2, #fffdf8);
}
[data-theme="dark"] .hero-slide__image { background: linear-gradient(160deg, rgba(56,189,248,.13), rgba(217,183,111,.10)), #0b2a3d; }
.hero-slide__image img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 30px;
  background: #efe3d1;
  filter: saturate(.96) contrast(1.02);
}
.hero-slide__caption { padding: 28px 32px 30px; }
.hero-slide__caption h3 { font-size: 1.28rem; margin-bottom: 7px; }
.hero-slider__controls { margin-top: 18px; }
.hero-slider__dots button { width: 25px; height: 6px; border-radius: 999px; }
.trust-strip { margin-top: -46px; position: relative; z-index: 5; }
.trust-strip__grid {
  min-height: 96px;
  border-radius: 28px;
  border-color: rgba(255,255,255,.72);
  box-shadow: 0 26px 70px rgba(2,84,126,.12);
}
[data-theme="dark"] .trust-strip__grid { border-color: rgba(255,255,255,.08); }
.section { padding: 118px 0; }
.section--soft { background: linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--surface-soft) 72%, transparent) 14%, color-mix(in srgb, var(--surface-soft) 72%, transparent) 86%, transparent 100%); }
.section-kicker {
  color: var(--primary);
  background: color-mix(in srgb, var(--primary-light) 62%, transparent);
  border: 1px solid color-mix(in srgb, var(--primary) 12%, transparent);
  border-radius: 999px;
  padding: 5px 13px;
  display: inline-flex;
  width: fit-content;
}
.section-heading h2, .about-copy h2, .booking-copy h2 { letter-spacing: -.04em; }
.about-layout { grid-template-columns: 1fr .82fr; }
.about-points span,
.service-card,
.package-card,
.product-card,
.why-item,
.booking-form,
.factory-card,
.payment-note,
.schedule-rule {
  border-color: color-mix(in srgb, var(--line) 84%, transparent);
}
.about-points span,
.service-card,
.package-card,
.product-card,
.why-item {
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: 0 14px 35px rgba(23,56,74,.055);
}
.service-card,
.package-card,
.product-card { border-radius: 28px; }
.service-card { min-height: 238px; }
.service-card:hover,
.package-card:hover,
.product-card:hover { transform: translateY(-8px); box-shadow: 0 28px 75px rgba(2,84,126,.13); }
.service-card__icon, .why-item__icon { color: #fff; }
.factory-card {
  min-height: 370px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.16), transparent 12rem),
    linear-gradient(145deg, #0369a1 0%, #0284c7 55%, #0369a1 100%);
  box-shadow: 0 30px 85px rgba(2,84,126,.20);
}
.factory-card .mini-kicker { color: #e7d2a5; }
.package-card__image, .product-card__image {
  height: 235px;
  border-radius: 24px;
  background: linear-gradient(145deg, #efe2cc, #fffcf6 48%, #e0f2fe);
  border: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.65);
}
.product-card__image { height: 255px; }
.package-card__image img, .product-card__image img { transform: scale(1.02); }
.package-card.is-featured {
  border-color: color-mix(in srgb, var(--accent) 54%, var(--line));
  box-shadow: 0 30px 80px rgba(200,164,93,.16);
}
.package-badge,
.product-card__brand {
  background: color-mix(in srgb, var(--accent-light) 78%, var(--surface));
  color: #7c5b20;
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
}
[data-theme="dark"] .package-badge,
[data-theme="dark"] .product-card__brand { color: var(--accent); }
.stats-section {
  background:
    radial-gradient(circle at 15% 15%, rgba(200,164,93,.25), transparent 18rem),
    linear-gradient(135deg, #0369a1, #0284c7 58%, #0c4a6e);
}
.stats-grid { border-radius: 30px; overflow: hidden; }
.booking-section { position: relative; }
.booking-section::before {
  content: "";
  position: absolute;
  inset: 10% auto auto 3%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(200,164,93,.13);
  filter: blur(8px);
}
.booking-layout { grid-template-columns: .85fr 1.15fr; align-items: start; }
.booking-copy { position: sticky; top: 116px; }
.booking-steps li {
  background: color-mix(in srgb, var(--surface) 85%, transparent);
  border: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 12px 32px rgba(23,56,74,.045);
}
.booking-steps li > span {
  background: linear-gradient(145deg, var(--accent-light), var(--surface));
  color: #7a5519;
}
.booking-form {
  position: relative;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.96)),
    var(--surface);
  box-shadow: 0 34px 100px rgba(2,84,126,.17);
}
[data-theme="dark"] .booking-form { background: linear-gradient(180deg, rgba(7,25,39,.88), rgba(7,25,39,.98)); }
.booking-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(200,164,93,.70), rgba(2,84,126,.32), transparent 72%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.form-head { padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.field input, .field select, .field textarea {
  border-radius: 16px;
  min-height: 50px;
  background: color-mix(in srgb, var(--bg) 82%, var(--surface));
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent);
}
.consent {
  background: color-mix(in srgb, var(--primary-light) 64%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--primary) 14%, transparent);
  border-radius: 18px;
  padding: 13px 14px;
}
.floating-whatsapp {
  background: linear-gradient(135deg, #0284c7, #0284c7);
  box-shadow: 0 18px 42px rgba(2,84,126,.26);
}
.site-footer {
  background: #071927;
  color: #f4f0e7;
}
.site-footer::before { background: radial-gradient(circle at 20% 0%, rgba(200,164,93,.20), transparent 24rem); }
.footer-contact a, .footer-contact span, .footer-links a { color: rgba(244,240,231,.72); }
@media (max-width: 1060px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__content { text-align: center; }
  .hero__content > p { margin-inline: auto; }
  .hero__actions, .hero__trust { justify-content: center; }
  .booking-copy { position: static; }
  .booking-layout { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .container { width: min(calc(100% - 28px), 1200px); }
  .hero { padding-top: 56px; }
  .hero-slider__track { min-height: 520px; }
  .hero-slide__image { min-height: 350px; }
  .hero-slide__image img { height: 330px; }
}
@media (max-width: 620px) {
  .container { width: min(calc(100% - 24px), 1200px); }
  .hero h1 { font-size: clamp(2.45rem, 13vw, 3.7rem); }
  .hero-slider__track { min-height: 475px; border-radius: 28px; }
  .hero-slide__image { min-height: 315px; padding: 12px; }
  .hero-slide__image img { height: 300px; border-radius: 22px; }
  .section { padding: 88px 0; }
  .booking-form { border-radius: 26px; }
  .package-card__image, .product-card__image { height: 215px; }
}

/* ========================================================================== 
   Mobile production layout — 2026-08-05
   Responsive-only adjustments. Desktop design and all JavaScript hooks remain intact.
   ========================================================================== */

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

main,
section,
.container,
.header__inner,
.hero__grid,
.booking-layout,
.why-layout,
.about-layout {
  min-width: 0;
}

[id] {
  scroll-margin-top: 124px;
}

@media (hover: none) {
  .btn:hover,
  .service-card:hover,
  .package-card:hover,
  .product-card:hover,
  .floating-whatsapp:hover {
    transform: none;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 66px;
  }

  html {
    scroll-padding-top: 88px;
  }

  [id] {
    scroll-margin-top: 88px;
  }

  .topbar__inner {
    min-height: 40px;
    justify-content: center;
    padding-block: 5px;
  }

  .topbar__contact {
    max-width: 100%;
    justify-content: center;
  }

  .topbar__contact > span:last-child {
    min-width: 0;
  }

  .topbar__contact strong {
    white-space: nowrap;
    font-size: .79rem;
  }

  .topbar__contact small {
    white-space: nowrap;
    font-size: .67rem;
  }

  .site-header {
    overflow: visible;
  }

  .header__inner {
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    position: relative;
  }

  .brand {
    min-width: 0;
    overflow: hidden;
  }

  .brand__text {
    min-width: 0;
  }

  .brand__text strong,
  .brand__text small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-toggle {
    display: block;
    margin: 0;
    grid-column: 2;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
  }

  .header__actions {
    grid-column: 3;
    min-width: 0;
  }

  .theme-toggle {
    flex: 0 0 auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    z-index: 1200;
    display: grid;
    gap: 4px;
    width: auto;
    max-height: min(68svh, 520px);
    margin: 0;
    padding: 10px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: color-mix(in srgb, var(--surface) 96%, transparent);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(.985);
    transform-origin: top center;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .main-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 13px;
    font-size: .88rem;
  }

  .hero {
    min-height: auto;
    padding: 52px 0 78px;
  }

  .hero__grid {
    gap: 38px;
  }

  .hero__content {
    text-align: center;
  }

  .eyebrow {
    max-width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .hero h1 {
    max-width: 720px;
    margin-inline: auto;
    line-height: 1.12;
  }

  .hero__content > p {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__trust {
    width: min(100%, 620px);
    margin-inline: auto;
    justify-content: center;
  }

  .hero__trust > div {
    flex: 1 1 220px;
    min-width: 0;
    text-align: start;
  }

  .hero-slider {
    width: min(100%, 600px);
    margin-inline: auto;
  }

  .hero-slider::before {
    width: 118px;
    height: 118px;
    inset: -12px -8px auto auto;
    border-radius: 30px;
  }

  .hero-slider__track {
    min-height: 510px;
  }

  .hero-slide__image {
    min-height: 340px;
  }

  .hero-slide__image img {
    height: 322px;
  }

  .trust-strip {
    margin-top: -30px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .about-layout,
  .why-layout,
  .booking-layout {
    gap: 44px;
  }

  .why-content {
    order: -1;
  }

  .why-visual {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .booking-copy {
    position: static;
  }

  .footer-grid {
    gap: 42px;
  }
}

@media (max-width: 620px) {
  :root {
    --radius-lg: 28px;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: calc(100% - 24px);
  }

  .topbar__inner {
    width: calc(100% - 16px);
  }

  .topbar__contact {
    gap: 7px;
  }

  .topbar__contact .icon-circle {
    width: 27px;
    height: 27px;
    flex: 0 0 auto;
  }

  .topbar__contact > span:last-child {
    display: block;
    text-align: center;
  }

  .topbar__contact small {
    display: none;
  }

  .header__inner {
    width: calc(100% - 20px);
  }

  .brand {
    gap: 8px;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
    border-radius: 13px 13px 7px 13px;
  }

  .brand__mark span {
    font-size: 1.25rem;
  }

  .brand__text strong {
    font-size: .92rem;
  }

  .brand__text small {
    display: none;
  }

  .menu-toggle,
  .theme-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .main-nav {
    right: 2px;
    left: 2px;
    border-radius: 17px;
  }

  .hero {
    padding: 42px 0 66px;
  }

  .hero::before {
    width: 92vw;
    height: 92vw;
    inset: 2% -28% auto auto;
  }

  .hero__grid {
    gap: 32px;
  }

  .eyebrow {
    padding: 7px 11px;
    font-size: .73rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 10.6vw, 3rem);
    line-height: 1.13;
    margin: 16px 0 16px;
    letter-spacing: -.04em;
  }

  .hero__content > p {
    font-size: .93rem;
    line-height: 1.8;
    margin-bottom: 24px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero__actions .btn {
    width: 100%;
    min-height: 52px;
  }

  .hero__trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .hero__trust > div {
    width: 100%;
    padding: 11px 13px;
    border-radius: 16px;
  }

  .hero-slider::before {
    display: none;
  }

  .hero-slider__track {
    min-height: 420px;
    border-radius: 26px;
  }

  .hero-slide__image {
    min-height: 268px;
    padding: 10px;
  }

  .hero-slide__image img {
    height: 258px;
    border-radius: 19px;
  }

  .hero-slide__caption {
    padding: 20px 18px 22px;
  }

  .hero-slide__caption h3 {
    font-size: 1.08rem;
    line-height: 1.5;
  }

  .hero-slide__caption p {
    font-size: .8rem;
    line-height: 1.65;
  }

  .hero-slider__controls {
    margin-top: 14px;
  }

  .hero-slider__controls > button {
    width: 40px;
    height: 40px;
  }

  .trust-strip {
    margin-top: -22px;
  }

  .trust-strip__grid {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
  }

  .trust-strip__grid > div {
    min-height: 68px;
    padding: 11px 7px;
    gap: 7px;
    font-size: .69rem;
    text-align: center;
    justify-content: center;
  }

  .trust-strip__grid > div svg {
    flex: 0 0 auto;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .about-copy h2,
  .booking-copy h2 {
    font-size: clamp(1.75rem, 8.2vw, 2.35rem);
    line-height: 1.25;
  }

  .section-heading p,
  .about-copy > p,
  .booking-copy > p {
    font-size: .88rem;
    line-height: 1.8;
  }

  .section-kicker {
    font-size: .7rem;
    padding: 4px 10px;
  }

  .about-points,
  .services-grid--wide,
  .packages-grid,
  .products-grid,
  .why-list,
  .stats-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-points {
    gap: 8px;
  }

  .about-points span {
    min-height: 47px;
    padding: 10px 12px;
  }

  .factory-card {
    min-height: auto;
    align-items: flex-start;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .factory-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .service-card,
  .package-card,
  .product-card,
  .why-item {
    border-radius: 22px;
  }

  .service-card {
    min-height: auto;
    padding: 21px 18px;
  }

  .service-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 17px;
  }

  .package-card,
  .product-card {
    padding: 20px 17px;
  }

  .package-card__image,
  .product-card__image {
    height: 198px;
    border-radius: 19px;
  }

  .package-card__top,
  .product-card__top {
    min-width: 0;
  }

  .package-meta {
    gap: 8px;
  }

  .package-meta span {
    align-items: flex-start;
  }

  .package-price {
    align-items: baseline;
  }

  .package-price strong {
    font-size: 1.72rem;
  }

  .product-card__body {
    padding-inline: 0;
  }

  .product-card__footer {
    gap: 10px;
  }

  .product-card__footer .btn {
    width: 100%;
  }

  .why-layout {
    gap: 30px;
  }

  .why-visual {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px 0 0;
  }

  .why-visual img {
    width: 100%;
    max-height: 320px;
    margin-bottom: 4px;
  }

  .floating-card,
  .floating-card--top,
  .floating-card--bottom {
    position: static;
    width: 100%;
    min-width: 0;
    padding: 11px 13px;
    border-radius: 15px;
  }

  .why-item {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 11px;
    padding: 16px 14px;
  }

  .why-item__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .stats-section {
    padding: 22px 0;
  }

  .stats-grid {
    border-radius: 22px;
  }

  .stat-item {
    padding: 21px 14px;
  }

  .stat-item:not(:last-child) {
    border-inline-end: 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
  }

  .stat-item strong {
    font-size: 2rem;
  }

  .booking-layout {
    gap: 30px;
  }

  .booking-steps {
    margin: 25px 0 20px;
    gap: 10px;
  }

  .booking-steps li {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
    border-radius: 16px;
  }

  .booking-steps li > span {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .schedule-rule,
  .payment-note {
    padding: 13px;
    border-radius: 15px;
  }

  .booking-form {
    padding: 20px 14px;
    border-radius: 23px;
  }

  .form-head {
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .form-head__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    flex: 0 0 auto;
  }

  .form-head h3 {
    font-size: 1.08rem;
  }

  .form-head p {
    font-size: .7rem;
  }

  .form-grid {
    gap: 12px;
  }

  .field--full {
    grid-column: auto;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 50px;
    padding: 11px 12px;
    border-radius: 14px;
    font-size: 16px;
  }

  .field textarea {
    min-height: 96px;
  }

  .consent {
    margin: 16px 0 13px;
    padding: 11px 12px;
    font-size: .72rem;
  }

  .form-security {
    align-items: flex-start;
    text-align: center;
    line-height: 1.55;
  }

  .site-footer {
    padding: 54px 0 14px;
  }

  .footer-grid {
    gap: 28px;
    padding-bottom: 32px;
  }

  .footer-brand p {
    font-size: .8rem;
  }

  .footer-bottom {
    min-height: auto;
    padding: 18px 0 calc(18px + env(safe-area-inset-bottom));
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    min-height: 52px;
    inset-inline-start: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    padding: 0;
    justify-content: center;
  }

  .floating-whatsapp span:last-child {
    display: none;
  }

  .modal {
    place-items: end center;
    padding: 0;
  }

  .modal__card {
    width: 100%;
    max-height: min(90svh, 720px);
    overflow-y: auto;
    padding: 24px 18px calc(22px + env(safe-area-inset-bottom));
    border-radius: 25px 25px 0 0;
    transform: translateY(28px);
    -webkit-overflow-scrolling: touch;
  }

  .modal .btn {
    width: 100%;
  }

  .legal-content {
    padding-top: 42px;
    padding-bottom: 62px;
  }

  .legal-content h1 {
    font-size: 2rem;
  }

  .legal-content #legal-content {
    padding: 19px 15px;
    border-radius: 18px;
    font-size: .84rem;
  }
}

@media (max-width: 360px) {
  .container {
    width: calc(100% - 18px);
  }

  .header__inner {
    width: calc(100% - 14px);
    gap: 6px;
  }

  .brand__text strong {
    font-size: .84rem;
  }

  .hero h1 {
    font-size: 1.88rem;
  }

  .hero-slide__image img {
    height: 235px;
  }

  .hero-slide__image {
    min-height: 245px;
  }

  .hero-slider__track {
    min-height: 405px;
  }

  .trust-strip__grid > div {
    font-size: .64rem;
  }

  .booking-form {
    padding-inline: 12px;
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .main-nav {
    max-height: 68vh;
  }

  .hero {
    padding-top: 34px;
  }
}

/* CLEANUP HERO TYPOGRAPHY FIX 2026-09-07 */
#hero-title {
    font-size: clamp(2.6rem, 4.1vw, 4rem) !important;
    line-height: 1.18 !important;
    letter-spacing: -0.025em;
    max-width: 760px;
    text-wrap: balance;
    margin-bottom: 22px;
}

#hero-description {
    font-size: clamp(1rem, 1.25vw, 1.2rem);
    line-height: 1.9;
    max-width: 720px;
    text-wrap: balance;
}

@media (max-width: 768px) {
    #hero-title {
        font-size: clamp(2.1rem, 9vw, 3rem) !important;
        line-height: 1.22 !important;
    }

    #hero-description {
        font-size: 1rem;
        line-height: 1.8;
    }
}

/* Cleanup hero title size fix */
#hero-title {
    font-size: clamp(2.7rem, 4.2vw, 4.6rem) !important;
    line-height: 1.18 !important;
}

@media (max-width: 768px) {
    #hero-title {
        font-size: clamp(2.1rem, 8vw, 3rem) !important;
        line-height: 1.22 !important;
    }
}
