:root {
  --ice: #ddeff2;
  --crystal: #f8fbfb;
  --mist: #e8ecec;
  --petrol: #163b42;
  --petrol-dark: #0c2d33;
  --charcoal: #202829;
  --aqua: #6cb7b5;
  --aqua-pale: #c9e5e5;
  --white: #fff;
  --line: rgba(22, 59, 66, 0.15);
  --shadow: 0 26px 70px rgba(17, 50, 56, 0.12);
  --serif: "Cormorant Garamond", Cormorant, "Times New Roman", serif;
  --sans: Manrope, Inter, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; background: var(--crystal); color: var(--charcoal); font-family: var(--sans); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
body.is-locked { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { color: inherit; font: inherit; }
button { border: 0; cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--petrol); font-family: var(--serif); font-weight: 500; line-height: .95; }
h1 em, h2 em { display: block; color: var(--aqua); font-weight: 400; }
:focus-visible { outline: 3px solid #80ccca; outline-offset: 4px; }
::selection { background: var(--aqua-pale); color: var(--petrol-dark); }

.skip-link { position: fixed; top: 12px; left: 12px; z-index: 2000; padding: 10px 16px; background: var(--white); color: var(--petrol); border-radius: 30px; transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
.shell { width: min(100% - 40px, 1220px); margin-inline: auto; }
.section { padding-block: 88px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; color: #547075; font-size: .7rem; font-weight: 700; letter-spacing: .16em; line-height: 1.2; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 1px; background: var(--aqua); }
.eyebrow--light { color: rgba(255,255,255,.75); }
.eyebrow--light > span { background: rgba(255,255,255,.7); }
.button { position: relative; display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 18px; padding: 13px 22px; overflow: hidden; background: var(--petrol); color: var(--white); border: 1px solid var(--petrol); border-radius: 2px; font-size: .78rem; font-weight: 700; letter-spacing: .025em; line-height: 1.25; text-align: center; transition: color .3s, background .3s, border-color .3s, transform .3s, box-shadow .3s; }
.button::before { position: absolute; inset: 0; background: linear-gradient(105deg, transparent 25%, rgba(255,255,255,.18) 50%, transparent 75%); content: ""; transform: translateX(-120%); transition: transform .65s; }
.button:hover { background: var(--petrol-dark); border-color: var(--petrol-dark); box-shadow: 0 12px 26px rgba(12,45,51,.2); transform: translateY(-2px); }
.button:hover::before { transform: translateX(120%); }
.button--small { min-height: 44px; padding: 10px 18px; font-size: .7rem; }
.button--light { background: rgba(248,251,251,.95); border-color: rgba(248,251,251,.95); color: var(--petrol-dark); }
.button--light:hover { background: var(--white); border-color: var(--white); color: var(--petrol-dark); }
.button--wide { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 32px; padding-bottom: 6px; border-bottom: 1px solid rgba(22,59,66,.35); color: var(--petrol); font-size: .75rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; transition: gap .3s, border-color .3s; }
.text-link:hover { gap: 42px; border-color: var(--aqua); }
.text-link--light { border-color: rgba(255,255,255,.5); color: var(--white); }
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

.brand { display: inline-flex; align-items: center; gap: 13px; color: var(--petrol); }
.brand__gem { display: grid; width: 45px; aspect-ratio: 1; place-items: center; border: 1px solid currentColor; clip-path: polygon(50% 0, 94% 24%, 88% 78%, 50% 100%, 12% 78%, 6% 24%); font-family: var(--serif); font-size: 1.45rem; }
.brand > span:last-child { display: grid; }
.brand strong { font-family: var(--serif); font-size: 1.65rem; font-weight: 600; letter-spacing: .04em; line-height: .8; text-transform: uppercase; }
.brand small { margin-top: 7px; font-size: .53rem; font-weight: 600; letter-spacing: .24em; line-height: 1; text-transform: uppercase; }
.brand--compact .brand__gem { width: 38px; font-size: 1.2rem; }
.brand--compact strong { font-size: 1.35rem; }
.brand--compact small { font-size: .47rem; }
.sample-badge { position: absolute; z-index: 3; top: 14px; right: 14px; display: inline-flex; align-items: center; min-height: 28px; padding: 5px 10px; background: rgba(248,251,251,.9); color: var(--petrol-dark); border: 1px solid rgba(255,255,255,.5); border-radius: 20px; backdrop-filter: blur(10px); font-size: .61rem; font-weight: 800; letter-spacing: .09em; line-height: 1; text-transform: uppercase; }

.site-header { position: fixed; z-index: 100; top: 0; right: 0; left: 0; border-bottom: 1px solid transparent; color: var(--white); transition: background .35s, border-color .35s, color .35s, box-shadow .35s; }
.header-inner { display: flex; min-height: 76px; align-items: center; justify-content: space-between; }
.site-header .brand { color: var(--white); }
.site-header.is-scrolled { background: rgba(248,251,251,.88); border-color: rgba(22,59,66,.11); color: var(--petrol); box-shadow: 0 8px 35px rgba(12,45,51,.08); backdrop-filter: blur(18px); }
.site-header.is-scrolled .brand { color: var(--petrol); }
.desktop-nav, .header-cta { display: none; }
.menu-toggle { display: grid; width: 46px; height: 46px; place-content: center; gap: 7px; background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: currentColor; }
.menu-toggle span { display: block; width: 18px; height: 1px; background: currentColor; }
.site-header.is-scrolled .menu-toggle { background: rgba(22,59,66,.05); border-color: rgba(22,59,66,.2); }
.menu-overlay { position: fixed; z-index: 300; inset: 0; visibility: hidden; background: rgba(10,36,42,.42); opacity: 0; backdrop-filter: blur(3px); transition: opacity .35s, visibility .35s; }
.menu-overlay.is-open { visibility: visible; opacity: 1; }
.mobile-menu { position: absolute; top: 0; right: 0; display: flex; width: min(88vw, 420px); height: 100%; flex-direction: column; padding: 24px 26px 30px; background: var(--crystal); box-shadow: -20px 0 70px rgba(8,37,42,.22); transform: translateX(100%); transition: transform .4s cubic-bezier(.22,.8,.28,1); }
.menu-overlay.is-open .mobile-menu { transform: none; }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 35px; }
.icon-button { display: grid; width: 44px; aspect-ratio: 1; place-items: center; background: transparent; border: 1px solid var(--line); border-radius: 50%; color: var(--petrol); font-size: 1.8rem; font-weight: 200; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { display: flex; align-items: baseline; gap: 18px; padding: 13px 2px; border-bottom: 1px solid var(--line); color: var(--petrol); font-family: var(--serif); font-size: clamp(1.6rem, 7vw, 2.1rem); line-height: 1.1; }
.mobile-menu nav a span { color: var(--aqua); font-family: var(--sans); font-size: .6rem; letter-spacing: .1em; }
.mobile-menu__contact { margin-top: auto; padding-top: 26px; }
.mobile-menu__contact p { margin-bottom: 10px; color: #658086; font-size: .76rem; }
.mobile-menu__contact a { color: var(--petrol); font-size: .78rem; font-weight: 800; text-transform: uppercase; }

.hero { position: relative; display: flex; min-height: 92svh; overflow: hidden; align-items: flex-end; background: var(--petrol-dark); color: var(--white); }
.hero__image, .hero__veil, .hero__refraction { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__image { object-fit: cover; object-position: 58% center; animation: hero-breathe 16s ease-in-out infinite alternate; }
.hero__veil { background: linear-gradient(180deg, rgba(8,31,36,.28) 0%, rgba(8,36,41,.18) 30%, rgba(8,31,36,.85) 100%), linear-gradient(90deg, rgba(8,32,38,.58), transparent 85%); }
.hero__refraction { inset: auto -20vw -30vw auto; width: 75vw; height: 75vw; border: 1px solid rgba(220,246,246,.22); border-radius: 44% 56% 48% 52%; box-shadow: inset 0 0 70px rgba(220,250,250,.08); animation: drift 12s ease-in-out infinite alternate; }
.hero > .sample-badge { top: 92px; right: 20px; }
.hero__content { position: relative; z-index: 2; padding-top: 150px; padding-bottom: 80px; }
.hero__copy { max-width: 760px; }
.hero h1 { margin-bottom: 26px; color: var(--white); font-size: clamp(4rem, 17vw, 7.6rem); letter-spacing: -.055em; text-wrap: balance; }
.hero h1 em { color: #c8ebea; }
.hero__lead { max-width: 620px; margin-bottom: 32px; color: rgba(255,255,255,.83); font-size: clamp(.98rem, 2vw, 1.12rem); line-height: 1.8; }
.hero__actions { display: flex; align-items: flex-start; flex-direction: column; gap: 24px; }
.hero__trust { display: grid; margin-top: 52px; border-top: 1px solid rgba(255,255,255,.24); grid-template-columns: repeat(3, 1fr); }
.hero__trust div { min-width: 0; padding: 18px 8px 0; border-right: 1px solid rgba(255,255,255,.17); }
.hero__trust div:first-child { padding-left: 0; }
.hero__trust div:last-child { border-right: 0; }
.hero__trust span { color: #a9d6d5; font-size: .58rem; letter-spacing: .12em; }
.hero__trust p { margin: 6px 0 0; color: rgba(255,255,255,.82); font-size: .67rem; font-weight: 600; line-height: 1.45; }
.hero__scroll { display: none; }

.about { display: grid; gap: 64px; }
.about__visual { position: relative; padding: 0 18px 42px 0; }
.about__image-wrap { position: relative; overflow: hidden; aspect-ratio: .82; background: var(--ice); }
.about__image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.about__visual:hover img { transform: scale(1.025); }
.about__note { position: absolute; right: 0; bottom: 0; display: grid; min-width: 190px; padding: 20px; background: rgba(248,251,251,.92); border: 1px solid rgba(255,255,255,.8); box-shadow: var(--shadow); backdrop-filter: blur(16px); }
.about__note span { color: #6a8589; font-size: .61rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.about__note strong { margin: 4px 0; color: var(--petrol); font-family: var(--serif); font-size: 1.4rem; font-weight: 500; }
.about__note small { color: #72878a; font-size: .62rem; }
.about__copy h2, .section-heading h2, .why h2, .gallery h2, .faq h2, .contact h2 { margin-bottom: 26px; font-size: clamp(3.05rem, 10vw, 5.5rem); letter-spacing: -.045em; }
.about__copy > p:not(.eyebrow) { color: #5c6c6e; font-size: .96rem; line-height: 1.85; }
.about__features { display: grid; margin: 32px 0; gap: 10px; grid-template-columns: repeat(2, 1fr); }
.about__features span { display: flex; align-items: center; gap: 9px; color: var(--petrol); font-size: .72rem; font-weight: 700; }
.about__features i { display: grid; width: 23px; aspect-ratio: 1; place-items: center; background: var(--ice); border-radius: 50%; color: var(--petrol); font-size: .65rem; font-style: normal; }

@keyframes hero-breathe { to { transform: scale(1.045); } }
@keyframes drift { to { transform: translate(-7vw,-4vw) rotate(5deg); } }

.services { background: #edf5f5; }
.section-heading { display: grid; margin-bottom: 34px; gap: 20px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { max-width: 440px; margin: 0; color: #607477; font-size: .9rem; }
.draft-notice { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 32px; padding: 16px; background: rgba(255,255,255,.62); border: 1px solid rgba(22,59,66,.12); }
.draft-notice > span { display: grid; width: 25px; aspect-ratio: 1; flex: 0 0 auto; place-items: center; border: 1px solid var(--aqua); border-radius: 50%; color: var(--petrol); font-family: var(--serif); font-style: italic; }
.draft-notice p { margin: 0; color: #5c7275; font-size: .75rem; line-height: 1.7; }
.draft-notice strong { color: var(--petrol); }
.services-grid { display: grid; gap: 18px; }
.service-card { overflow: hidden; background: rgba(255,255,255,.7); border: 1px solid rgba(22,59,66,.08); transition: transform .35s, box-shadow .35s, background .35s; }
.service-card:hover { background: var(--white); box-shadow: var(--shadow); transform: translateY(-5px); }
.service-card__image { position: relative; overflow: hidden; aspect-ratio: 1.35; background: var(--mist); }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s; }
.service-card:hover .service-card__image img { transform: scale(1.045); }
.service-card__number { position: absolute; right: 16px; bottom: 14px; display: grid; width: 38px; aspect-ratio: 1; place-items: center; background: rgba(12,45,51,.74); border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: var(--white); backdrop-filter: blur(8px); font-size: .61rem; letter-spacing: .1em; }
.service-card__body { padding: 24px 22px 26px; }
.service-card h3 { margin-bottom: 14px; font-size: 2.1rem; line-height: 1; }
.service-card h3 a { transition: color .25s; }
.service-card h3 a:hover { color: var(--aqua); }
.service-card p { min-height: 4.7em; margin-bottom: 22px; color: #627679; font-size: .78rem; line-height: 1.65; }
.service-card__link { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--line); color: var(--petrol); font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.service-card__link span { font-size: 1rem; transition: transform .25s; }
.service-card__link:hover span { transform: translate(3px,-3px); }

.experience { position: relative; min-height: 760px; overflow: hidden; background: var(--petrol-dark); color: var(--white); }
.experience__image, .experience__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.experience__image { object-fit: cover; }
.experience__overlay { background: linear-gradient(180deg, rgba(5,30,34,.48), rgba(5,31,36,.94)), linear-gradient(90deg, rgba(6,35,41,.85), transparent); }
.experience > .sample-badge { top: 24px; right: 20px; }
.experience__inner { position: relative; z-index: 2; padding-block: 92px; }
.experience__intro h2 { max-width: 850px; margin-bottom: 55px; color: var(--white); font-size: clamp(3.3rem, 11vw, 6.5rem); letter-spacing: -.045em; }
.experience__intro h2 em { color: #c7e9e8; }
.experience__steps { display: grid; margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.22); list-style: none; }
.experience__steps li { display: grid; padding: 23px 0; border-bottom: 1px solid rgba(255,255,255,.18); gap: 18px; grid-template-columns: 32px 1fr; }
.experience__steps > li > span { color: #a3d1d0; font-size: .62rem; letter-spacing: .12em; }
.experience__steps h3 { margin-bottom: 8px; color: var(--white); font-size: 1.65rem; }
.experience__steps p { margin: 0; color: rgba(255,255,255,.66); font-size: .76rem; line-height: 1.6; }

.why { display: grid; gap: 50px; }
.why__heading > p:not(.eyebrow) { max-width: 440px; color: #647679; font-size: .9rem; }
.why__heading .button { margin-top: 18px; }
.why__grid { display: grid; border-top: 1px solid var(--line); }
.why__grid article { position: relative; padding: 26px 8px 26px 54px; border-bottom: 1px solid var(--line); }
.why__grid article > span { position: absolute; top: 29px; left: 8px; color: var(--aqua); font-size: .6rem; letter-spacing: .12em; }
.why__grid h3 { margin-bottom: 10px; font-family: var(--sans); font-size: .9rem; font-weight: 750; letter-spacing: .01em; line-height: 1.3; }
.why__grid p { margin: 0; color: #667a7d; font-size: .75rem; line-height: 1.65; }

.campaign { position: relative; display: grid; margin-bottom: 88px; padding: 46px 28px; overflow: hidden; background: linear-gradient(135deg, #dceff0 0%, #f4faf9 55%, #cae5e5 100%); border: 1px solid rgba(108,183,181,.28); box-shadow: 0 24px 70px rgba(21,74,82,.1); gap: 30px; }
.campaign::before, .campaign::after { position: absolute; border: 1px solid rgba(108,183,181,.25); border-radius: 44% 56% 48% 52%; content: ""; }
.campaign::before { top: -140px; right: -100px; width: 320px; height: 320px; transform: rotate(20deg); }
.campaign::after { right: 140px; bottom: -180px; width: 280px; height: 280px; }
.campaign > * { position: relative; z-index: 2; }
.campaign h2 { margin: 0; font-size: clamp(3rem, 10vw, 5.2rem); letter-spacing: -.045em; }
.campaign__action p { max-width: 500px; margin-bottom: 24px; color: #506b70; font-size: .82rem; }
.campaign__glow { position: absolute; top: -80%; left: 10%; width: 25%; height: 250%; background: rgba(255,255,255,.6); filter: blur(24px); opacity: .65; transform: rotate(28deg); animation: glint 8s ease-in-out infinite; }
@keyframes glint { 50% { left: 72%; opacity: .25; } }

.gallery { overflow: hidden; background: var(--white); }
.gallery__heading { margin-bottom: 42px; }
.gallery-grid { display: grid; padding-inline: 12px; gap: 12px; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 210px; }
.gallery-card { position: relative; overflow: hidden; min-width: 0; padding: 0; background: var(--mist); text-align: left; }
.gallery-card--1 { grid-column: span 2; grid-row: span 2; }
.gallery-card--4 { grid-row: span 2; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.gallery-card:hover img { transform: scale(1.045); }
.gallery-card__shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(7,32,37,.65)); }
.gallery-card__label { position: absolute; z-index: 2; bottom: 18px; left: 16px; color: var(--white); font-family: var(--serif); font-size: 1.45rem; }
.gallery-card__open { position: absolute; z-index: 2; right: 15px; bottom: 15px; display: grid; width: 35px; aspect-ratio: 1; place-items: center; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; color: var(--white); font-size: 1.25rem; font-weight: 200; transition: background .25s, color .25s, transform .25s; }
.gallery-card:hover .gallery-card__open { background: var(--white); color: var(--petrol); transform: rotate(90deg); }

.review-placeholder { position: relative; display: grid; margin-block: 28px 80px; padding: 32px 24px; overflow: hidden; background: var(--petrol); color: var(--white); gap: 22px; }
.review-placeholder__mark { position: absolute; top: -25px; right: 5%; color: rgba(255,255,255,.08); font-family: var(--serif); font-size: 13rem; line-height: 1; }
.review-placeholder h2 { max-width: 560px; margin: 0; color: var(--white); font-size: clamp(2.8rem, 9vw, 4.8rem); }
.review-placeholder h2 em { color: #b7dfde; }
.review-placeholder > p { position: relative; z-index: 1; max-width: 460px; margin: 0; color: rgba(255,255,255,.7); font-size: .8rem; }

.faq { background: #edf4f4; }
.faq__inner { display: grid; gap: 44px; }
.faq__intro { align-self: start; }
.faq__intro > p:not(.eyebrow) { color: #627679; font-size: .86rem; }
.faq__list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: grid; min-height: 78px; align-items: center; padding: 18px 0; color: var(--petrol); cursor: pointer; font-size: .86rem; font-weight: 700; gap: 12px; grid-template-columns: 28px 1fr 30px; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq__number { color: var(--aqua); font-size: .57rem; letter-spacing: .12em; }
.faq summary i { display: grid; width: 29px; aspect-ratio: 1; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 1rem; font-style: normal; font-weight: 300; transition: transform .3s, background .3s; }
.faq details[open] summary i { background: var(--petrol); color: var(--white); transform: rotate(45deg); }
.faq__answer { padding: 0 36px 22px 40px; }
.faq__answer p { margin: 0; color: #607477; font-size: .78rem; line-height: 1.75; }

.contact { padding-bottom: 0; background: var(--petrol-dark); color: var(--white); }
.contact__heading { margin-bottom: 48px; }
.contact__heading h2 { max-width: 760px; margin-bottom: 18px; color: var(--white); }
.contact__heading h2 em { color: #b8dedc; }
.contact__heading > p:last-child { color: rgba(255,255,255,.64); font-size: .9rem; }
.contact__layout { display: grid; gap: 46px; }
.contact__details { display: grid; align-content: start; }
.contact__detail { display: grid; padding: 23px 0; border-top: 1px solid rgba(255,255,255,.16); gap: 6px; }
.contact__detail > span { color: #92c3c1; font-size: .61rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.contact__detail > a:first-of-type, .contact__detail > p { margin: 0; color: var(--white); font-family: var(--serif); font-size: 1.38rem; line-height: 1.35; }
.contact__detail > a:last-child:not(:first-child), .contact__detail > p + a { width: fit-content; color: rgba(255,255,255,.7); font-family: var(--sans); font-size: .67rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.contact__detail-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.booking-form { padding: 28px 22px; background: var(--crystal); color: var(--charcoal); box-shadow: 0 30px 80px rgba(0,0,0,.2); }
.booking-form__top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 28px; }
.booking-form__top > div > span { color: #70878a; font-size: .59rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.booking-form h3 { margin: 8px 0 0; font-size: 2.25rem; }
.booking-form__spark { color: var(--aqua); font-size: 1.7rem; }
.form-grid { display: grid; gap: 18px; }
.form-grid label { display: grid; gap: 7px; }
.form-grid label > span { color: #587075; font-size: .62rem; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; min-height: 50px; padding: 11px 0; background: transparent; border: 0; border-bottom: 1px solid rgba(22,59,66,.2); border-radius: 0; outline: 0; color: var(--petrol); font-size: .8rem; transition: border-color .25s, background .25s; }
.form-grid textarea { min-height: 84px; resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--aqua); }
.form-grid input::placeholder, .form-grid textarea::placeholder { color: #8da0a2; }
.form-grid input[type="date"] { color-scheme: light; }
.honeypot { position: absolute !important; left: -9999px !important; }
.booking-form__note { margin: 22px 0 16px; color: #728689; font-size: .66rem; line-height: 1.55; }
.map-wrap { position: relative; height: 340px; margin-top: 62px; overflow: hidden; background: #dce6e5; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.25) saturate(.65) contrast(.95); }
.map-wrap > a { position: absolute; right: 14px; bottom: 14px; left: 14px; display: flex; align-items: center; justify-content: space-between; padding: 15px 17px; background: rgba(248,251,251,.93); color: var(--petrol); box-shadow: 0 10px 30px rgba(9,40,45,.18); backdrop-filter: blur(14px); font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.map-wrap > a span { display: none; color: #6e8285; font-size: .62rem; font-weight: 600; }
.map-wrap > a b { font-size: 1rem; }

.footer { padding: 65px 0 88px; background: #071f23; color: rgba(255,255,255,.65); }
.footer__top { display: grid; gap: 42px; }
.footer .brand { color: var(--white); }
.footer__brand p { max-width: 310px; margin-top: 22px; font-size: .77rem; line-height: 1.75; }
.footer h3 { margin-bottom: 18px; color: #a4cfcd; font-family: var(--sans); font-size: .62rem; font-weight: 750; letter-spacing: .15em; text-transform: uppercase; }
.footer__top > div:not(.footer__brand) { display: grid; align-content: start; gap: 8px; }
.footer__top a, .footer__top p { margin: 0; font-size: .74rem; }
.footer__top a { width: fit-content; transition: color .2s; }
.footer__top a:hover { color: var(--white); }
.footer__contact > a { color: var(--white); font-family: var(--serif); font-size: 1.5rem; }
.footer__bottom { display: grid; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); gap: 10px; }
.footer__bottom p { margin: 0; color: rgba(255,255,255,.43); font-size: .58rem; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 8px 16px; }

.mobile-contact-bar { position: fixed; z-index: 90; right: 10px; bottom: 9px; left: 10px; display: grid; min-height: 62px; padding: 5px; background: rgba(248,251,251,.94); border: 1px solid rgba(22,59,66,.12); border-radius: 10px; box-shadow: 0 12px 38px rgba(8,38,43,.2); backdrop-filter: blur(16px); grid-template-columns: repeat(3, 1fr); }
.mobile-contact-bar a { display: flex; align-items: center; justify-content: center; flex-direction: column; border-right: 1px solid var(--line); color: var(--petrol); font-size: .59rem; font-weight: 800; line-height: 1.2; text-transform: uppercase; }
.mobile-contact-bar a:last-child { border-right: 0; }
.mobile-contact-bar span { margin-bottom: 2px; color: var(--aqua); font-size: 1.1rem; line-height: 1; }

.lightbox { position: fixed; z-index: 1000; inset: 0; display: grid; padding: 65px 50px; place-items: center; background: rgba(4,24,28,.94); backdrop-filter: blur(14px); }
.lightbox figure { width: min(100%, 1050px); margin: 0; }
.lightbox__image-wrap { position: relative; overflow: hidden; max-height: 75vh; background: var(--petrol); }
.lightbox__image-wrap img { width: 100%; max-height: 75vh; object-fit: contain; }
.lightbox figcaption { display: flex; align-items: center; justify-content: space-between; padding-top: 13px; color: var(--white); font-family: var(--serif); font-size: 1.3rem; }
.lightbox figcaption small { color: rgba(255,255,255,.6); font-family: var(--sans); font-size: .65rem; }
.lightbox__close { position: absolute; top: 16px; right: 16px; display: grid; width: 44px; aspect-ratio: 1; place-items: center; background: transparent; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; color: var(--white); font-size: 1.65rem; }
.lightbox__nav { position: absolute; top: 50%; display: grid; width: 42px; aspect-ratio: 1; place-items: center; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: var(--white); transform: translateY(-50%); }
.lightbox__nav--prev { left: 7px; }
.lightbox__nav--next { right: 7px; }

@media (min-width: 680px) {
  .shell { width: min(100% - 64px, 1220px); }
  .section { padding-block: 110px; }
  .hero > .sample-badge { right: 32px; }
  .hero__actions { align-items: center; flex-direction: row; gap: 28px; }
  .hero__trust { max-width: 640px; }
  .hero__trust div { padding: 20px 20px 0; }
  .hero__trust p { font-size: .72rem; }
  .about { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); align-items: center; gap: 60px; }
  .about__visual { max-width: 470px; }
  .section-heading { align-items: end; grid-template-columns: 1.25fr .75fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card__body { padding: 27px; }
  .experience__steps { grid-template-columns: repeat(2, 1fr); }
  .experience__steps li { padding: 28px 24px 28px 0; }
  .experience__steps li:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.18); }
  .experience__steps li:nth-child(even) { padding-left: 24px; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid article:nth-child(odd) { border-right: 1px solid var(--line); }
  .campaign { padding: 54px 46px; }
  .gallery-grid { grid-auto-rows: 260px; grid-template-columns: repeat(4, 1fr); }
  .gallery-card--1 { grid-column: span 2; grid-row: span 2; }
  .gallery-card--2 { grid-column: span 2; }
  .gallery-card--4 { grid-row: auto; }
  .gallery-card--5 { grid-column: span 2; }
  .review-placeholder { align-items: center; padding: 42px; grid-template-columns: 1.15fr .85fr; }
  .review-placeholder__mark { display: none; }
  .contact__detail-row { gap: 30px; }
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid__full { grid-column: 1 / -1; }
  .booking-form { padding: 38px; }
  .map-wrap { height: 400px; }
  .map-wrap > a span { display: inline; }
  .footer__top { grid-template-columns: 1.5fr repeat(3, 1fr); }
  .footer__bottom { align-items: center; grid-template-columns: auto 1fr auto; }
  .footer__legal { justify-content: center; }
}

@media (min-width: 1024px) {
  body { padding-bottom: 0; }
  .section { padding-block: 140px; }
  .header-inner { min-height: 86px; }
  .desktop-nav { display: flex; align-items: center; gap: clamp(13px, 1.55vw, 25px); }
  .desktop-nav a { position: relative; padding: 8px 0; font-size: .63rem; font-weight: 700; letter-spacing: .035em; }
  .desktop-nav a::after { position: absolute; right: 0; bottom: 2px; left: 0; height: 1px; background: currentColor; content: ""; transform: scaleX(0); transform-origin: right; transition: transform .3s; }
  .desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
  .header-cta { display: inline-flex; }
  .site-header:not(.is-scrolled) .header-cta { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.55); }
  .site-header:not(.is-scrolled) .header-cta:hover { background: var(--white); border-color: var(--white); color: var(--petrol); }
  .menu-toggle { display: none; }
  .hero { min-height: min(900px, 96svh); }
  .hero__image { object-position: center; }
  .hero__veil { background: linear-gradient(90deg, rgba(7,31,36,.79) 0%, rgba(7,31,36,.36) 54%, rgba(7,31,36,.12) 100%), linear-gradient(180deg, rgba(7,31,36,.2), rgba(7,31,36,.58)); }
  .hero__content { display: grid; align-items: end; padding-bottom: 90px; grid-template-columns: 1fr auto; }
  .hero h1 { font-size: clamp(6rem, 8.1vw, 8.4rem); }
  .hero__trust { width: 330px; margin: 0 0 7px; grid-template-columns: 1fr; border-top: 0; border-left: 1px solid rgba(255,255,255,.27); }
  .hero__trust div { padding: 17px 0 17px 26px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .hero__trust div:first-child { padding-left: 26px; border-top: 1px solid rgba(255,255,255,.18); }
  .hero__trust p { font-size: .78rem; }
  .hero__scroll { position: absolute; z-index: 4; bottom: 30px; left: 22px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.64); font-size: .55rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; transform: rotate(-90deg); transform-origin: left center; }
  .hero__scroll span { width: 30px; height: 1px; background: rgba(255,255,255,.55); }
  .about { gap: 110px; }
  .about__visual { padding: 0 32px 58px 0; }
  .about__note { min-width: 230px; padding: 25px; }
  .about__copy > p:not(.eyebrow) { max-width: 570px; }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .service-card:nth-child(even) { margin-top: 35px; }
  .service-card h3 { font-size: 1.95rem; }
  .service-card p { font-size: .73rem; }
  .experience__inner { padding-block: 130px; }
  .experience__intro { display: grid; align-items: start; grid-template-columns: 250px 1fr; }
  .experience__intro .eyebrow { margin-top: 16px; }
  .experience__intro h2 { margin-bottom: 75px; }
  .experience__steps { grid-template-columns: repeat(4, 1fr); }
  .experience__steps li, .experience__steps li:nth-child(even) { padding: 32px 28px; border-right: 1px solid rgba(255,255,255,.18); }
  .experience__steps li:first-child { padding-left: 0; }
  .experience__steps li:last-child { border-right: 0; }
  .why { align-items: start; grid-template-columns: .72fr 1.28fr; gap: 100px; }
  .why__heading { position: sticky; top: 125px; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid article { min-height: 176px; padding: 34px 20px 30px 60px; }
  .why__grid article > span { top: 38px; left: 15px; }
  .campaign { align-items: center; margin-bottom: 140px; padding: 70px 75px; grid-template-columns: 1.05fr .95fr; gap: 80px; }
  .campaign__action { padding-left: 50px; border-left: 1px solid rgba(22,59,66,.16); }
  .gallery-grid { padding-inline: 24px; grid-auto-rows: 330px; }
  .review-placeholder { margin-block: 35px 130px; padding: 62px 75px; }
  .review-placeholder__mark { display: block; }
  .faq__inner { align-items: start; grid-template-columns: .75fr 1.25fr; gap: 110px; }
  .faq__intro { position: sticky; top: 125px; }
  .contact { padding-top: 135px; }
  .contact__heading { display: grid; align-items: end; grid-template-columns: 1fr auto; }
  .contact__heading .eyebrow, .contact__heading h2 { grid-column: 1; }
  .contact__heading > p:last-child { grid-column: 2; grid-row: 2; }
  .contact__layout { grid-template-columns: .78fr 1.22fr; gap: 100px; }
  .booking-form { padding: 45px; }
  .map-wrap { height: 470px; margin-top: 100px; }
  .map-wrap > a { right: 24px; bottom: 24px; left: auto; width: 430px; }
  .mobile-contact-bar { display: none; }
  .footer { padding-bottom: 38px; }
  .lightbox { padding: 70px 100px; }
  .lightbox__nav { width: 50px; }
  .lightbox__nav--prev { left: 24px; }
  .lightbox__nav--next { right: 24px; }
}

@media (min-width: 1260px) {
  .desktop-nav { gap: 27px; }
  .desktop-nav a { font-size: .68rem; }
  .gallery-grid { grid-auto-rows: 380px; }
}

@media (max-width: 1023px) {
  body { padding-bottom: 78px; }
}

@media (max-width: 380px) {
  .shell { width: min(100% - 28px, 1220px); }
  .brand--compact .brand__gem { width: 34px; }
  .brand--compact strong { font-size: 1.18rem; }
  .hero h1 { font-size: 3.55rem; }
  .hero__trust p { font-size: .6rem; }
  .about__features { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card--1 { grid-column: auto; grid-row: span 2; }
  .contact__detail-row { grid-template-columns: 1fr; gap: 0; }
}

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

/* PHP hosting package additions */
.brand__logo {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
}
.brand__logo img { width: 100%; height: 100%; object-fit: contain; }
.brand--compact .brand__logo { width: 40px; height: 40px; }
.brand__words { display: grid; }
.tracking-frame { position: absolute; visibility: hidden; border: 0; }
.form-status { min-height: 1.5em; margin: 12px 0 0; color: var(--petrol); font-size: .72rem; font-weight: 700; }
.form-status.is-error { color: #a23d3d; }
.lightbox[hidden], .sample-badge[hidden] { display: none !important; }

.reviews { background: var(--petrol); color: var(--white); }
.reviews .section-heading h2 { color: var(--white); }
.reviews .section-heading h2 em { color: #b7dfde; }
.reviews .section-heading > p { color: rgba(255,255,255,.65); }
.reviews .eyebrow { color: rgba(255,255,255,.72); }
.reviews-grid { display: grid; gap: 16px; }
.review-card { display: flex; min-height: 275px; flex-direction: column; padding: 28px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); transition: transform .3s, background .3s; }
.review-card:hover { background: rgba(255,255,255,.11); transform: translateY(-4px); }
.review-card__stars { color: #a8d8d6; font-size: .78rem; letter-spacing: .18em; }
.review-card blockquote { margin: 25px 0 30px; color: var(--white); font-family: var(--serif); font-size: 1.65rem; line-height: 1.25; }
.review-card footer { display: grid; margin-top: auto; gap: 3px; }
.review-card footer strong { font-size: .72rem; letter-spacing: .04em; }
.review-card footer span { color: rgba(255,255,255,.55); font-size: .62rem; text-transform: uppercase; }

.site-header--inner { color: var(--petrol); }
.inner-main { min-height: 70vh; }
.detail-hero { position: relative; display: flex; min-height: 680px; align-items: flex-end; overflow: hidden; background: var(--petrol-dark); color: var(--white); }
.detail-hero__image, .detail-hero__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.detail-hero__image { object-fit: cover; animation: hero-breathe 18s ease-in-out infinite alternate; }
.detail-hero__overlay { background: linear-gradient(180deg, rgba(7,31,36,.18), rgba(7,31,36,.89)), linear-gradient(90deg, rgba(7,31,36,.62), transparent 82%); }
.detail-hero > .sample-badge { top: 110px; }
.detail-hero__content { position: relative; z-index: 2; padding-top: 170px; padding-bottom: 72px; }
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin-bottom: 44px; color: rgba(255,255,255,.64); font-size: .62rem; letter-spacing: .06em; text-transform: uppercase; }
.breadcrumbs a { transition: color .2s; }
.breadcrumbs a:hover { color: var(--white); }
.detail-hero h1 { max-width: 850px; margin: 0 0 22px; color: var(--white); font-size: clamp(4.2rem, 13vw, 8rem); letter-spacing: -.05em; }
.detail-hero__content > p:not(.eyebrow) { max-width: 670px; margin-bottom: 30px; color: rgba(255,255,255,.8); font-size: 1rem; line-height: 1.8; }

.service-detail { display: grid; gap: 56px; }
.service-detail__article > h2 { max-width: 730px; margin-bottom: 30px; font-size: clamp(3rem, 9vw, 5rem); letter-spacing: -.04em; }
.rich-text { color: #536b6f; }
.rich-text > *:first-child { margin-top: 0; }
.rich-text p { margin-bottom: 22px; font-size: .94rem; line-height: 1.9; }
.rich-text h2 { margin: 44px 0 16px; color: var(--petrol); font-size: 2rem; line-height: 1.05; }
.rich-text h3 { margin: 34px 0 14px; color: var(--petrol); font-size: 1.55rem; line-height: 1.15; }
.benefit-panel { margin-top: 44px; padding: 28px; background: #edf5f5; border: 1px solid rgba(22,59,66,.1); }
.benefit-panel h3, .detail-steps > h3 { margin-bottom: 22px; color: var(--petrol); font-size: 2rem; }
.benefit-panel ul { display: grid; margin: 0; padding: 0; gap: 13px; list-style: none; }
.benefit-panel li { display: flex; align-items: flex-start; gap: 12px; color: #526a6e; font-size: .8rem; line-height: 1.6; }
.benefit-panel li span { display: grid; width: 24px; aspect-ratio: 1; flex: 0 0 auto; place-items: center; background: var(--white); border-radius: 50%; color: var(--petrol); font-size: .64rem; }
.detail-steps { margin-top: 50px; }
.detail-steps ol { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.detail-steps li { display: grid; padding: 23px 0; border-bottom: 1px solid var(--line); gap: 18px; grid-template-columns: 35px 1fr; }
.detail-steps li > span { padding-top: 3px; color: var(--aqua); font-size: .62rem; letter-spacing: .12em; }
.detail-steps strong { color: var(--petrol); font-size: .86rem; }
.detail-steps p { margin: 6px 0 0; color: #667a7d; font-size: .76rem; line-height: 1.65; }
.service-disclaimer { margin-top: 40px; padding: 22px; border-left: 3px solid var(--aqua); background: rgba(221,239,242,.5); }
.service-disclaimer strong { display: block; margin-bottom: 5px; color: var(--petrol); font-size: .72rem; text-transform: uppercase; }
.service-disclaimer p { margin: 0; color: #61777a; font-size: .72rem; line-height: 1.7; }
.booking-card { position: relative; overflow: hidden; padding: 33px 28px; background: var(--petrol); color: var(--white); box-shadow: var(--shadow); }
.booking-card::after { position: absolute; right: -100px; bottom: -120px; width: 260px; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.12); border-radius: 47% 53% 44% 56%; content: ""; }
.booking-card > * { position: relative; z-index: 1; }
.booking-card__spark { position: absolute; top: 22px; right: 25px; color: #9ed0ce; font-size: 1.7rem; }
.booking-card .eyebrow { color: rgba(255,255,255,.68); }
.booking-card h2 { margin-bottom: 20px; color: var(--white); font-size: 2.8rem; }
.booking-card > p:not(.eyebrow) { color: rgba(255,255,255,.68); font-size: .78rem; line-height: 1.75; }
.booking-card .button { margin: 12px 0 18px; background: var(--white); border-color: var(--white); color: var(--petrol); }
.booking-card__phone { display: block; color: var(--white); font-family: var(--serif); font-size: 1.55rem; text-align: center; }
.booking-card dl { margin: 26px 0 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); }
.booking-card dl div { display: flex; justify-content: space-between; gap: 20px; padding: 6px 0; }
.booking-card dt { color: rgba(255,255,255,.5); font-size: .61rem; text-transform: uppercase; }
.booking-card dd { margin: 0; color: rgba(255,255,255,.86); font-size: .66rem; text-align: right; }
.related-services { background: #edf5f5; }
.empty-page { display: grid; min-height: 74vh; align-content: center; padding-top: 160px; padding-bottom: 100px; }
.empty-page h1 { max-width: 740px; margin-bottom: 25px; font-size: clamp(4rem, 12vw, 7rem); }
.empty-page > p:not(.eyebrow) { max-width: 600px; color: #607477; }
.empty-page .hero__actions { margin-top: 25px; }

.legal-main { min-height: 70vh; }
.legal-hero { padding: 170px 0 75px; background: var(--petrol); color: var(--white); }
.legal-hero .breadcrumbs { margin-bottom: 36px; }
.legal-hero h1 { max-width: 900px; margin-bottom: 18px; color: var(--white); font-size: clamp(4rem, 12vw, 7rem); letter-spacing: -.05em; }
.legal-hero > .shell > p:last-child { max-width: 600px; margin: 0; color: rgba(255,255,255,.68); font-size: .82rem; }
.legal-layout { display: grid; gap: 45px; }
.legal-nav { display: grid; align-content: start; border-top: 1px solid var(--line); }
.legal-nav a { display: flex; align-items: center; justify-content: space-between; padding: 17px 4px; border-bottom: 1px solid var(--line); color: #62777a; font-size: .72rem; font-weight: 700; }
.legal-nav a[aria-current="page"] { color: var(--petrol); }
.legal-nav a[aria-current="page"] span { color: var(--aqua); }
.legal-document { min-width: 0; }
.legal-document__updated { margin-bottom: 32px; color: #7b8c8e; font-size: .64rem; letter-spacing: .05em; text-transform: uppercase; }
.legal-document .rich-text h2 { margin-top: 40px; }
.legal-contact { margin-top: 55px; padding: 32px; background: #edf5f5; border: 1px solid rgba(22,59,66,.1); }
.legal-contact h2 { margin-bottom: 12px; font-size: 2.5rem; }
.legal-contact p { max-width: 620px; color: #607477; font-size: .8rem; }
.legal-contact > div { display: flex; align-items: center; flex-wrap: wrap; gap: 25px; margin-top: 22px; }

@media (min-width: 680px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-panel { padding: 36px; }
  .benefit-panel ul { grid-template-columns: repeat(2, 1fr); gap: 16px 25px; }
  .legal-contact { padding: 42px; }
}
@media (min-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .service-detail { align-items: start; grid-template-columns: minmax(0, 1.35fr) minmax(310px, .65fr); gap: 100px; }
  .service-detail__aside { position: sticky; top: 120px; }
  .services-grid--related { grid-template-columns: repeat(3, 1fr); }
  .services-grid--related .service-card:nth-child(even) { margin-top: 0; }
  .legal-layout { align-items: start; grid-template-columns: 280px minmax(0, 1fr); gap: 90px; }
  .legal-nav { position: sticky; top: 120px; }
}
@media (max-width: 679px) {
  .detail-hero { min-height: 640px; }
  .detail-hero__content { padding-bottom: 55px; }
  .booking-card { margin-inline: -4px; }
  .legal-hero { padding-top: 145px; }
}