:root {
  --night: #061923;
  --deep: #0a2b38;
  --blue: #087daf;
  --blue-dark: #00638b;
  --foam: #eaf7f7;
  --lime: #8dcb3d;
  --lime-dark: #527d18;
  --orange: #f2a23b;
  --white: #fff;
  --ink: #102c38;
  --muted: #4b6874;
  --line: #cddde1;
  --max: 1180px;
  --shadow: 0 24px 64px rgb(6 25 35 / 16%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 7rem; }
body { margin: 0; color: var(--ink); background: var(--white); font: 1rem/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
img { display: block; max-width: 100%; }
a { color: var(--blue-dark); text-underline-offset: .2em; }
a:hover { color: var(--lime-dark); }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.skip { position: fixed; z-index: 100; top: .5rem; left: .5rem; padding: .75rem 1rem; color: var(--white); background: var(--night); border-radius: .5rem; transform: translateY(-160%); }
.skip:focus { transform: none; }

.contact-bar { color: #dff2f5; background: var(--night); font-size: .9rem; }
.contact-bar .container { display: flex; justify-content: space-between; gap: 1rem; padding-block: .45rem; }
.contact-bar .links { display: flex; flex-wrap: wrap; gap: 1rem; }
.contact-bar a { color: var(--white); font-weight: 750; text-decoration: none; }
.site-header { position: sticky; z-index: 40; top: 0; border-bottom: 4px solid var(--blue); background: rgb(255 255 255 / 96%); backdrop-filter: blur(12px); }
.header-row { display: flex; min-height: 6.3rem; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { flex: 0 0 auto; text-decoration: none; }
.brand img { width: 112px; height: auto; }
.nav ul { display: flex; align-items: center; gap: .15rem; margin: 0; padding: 0; list-style: none; }
.nav a { display: block; padding: .7rem .65rem; color: var(--deep); border-radius: .55rem; font-size: .93rem; font-weight: 800; text-decoration: none; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--blue-dark); background: var(--foam); }
.nav .nav-book { margin-left: .4rem; color: var(--night); background: var(--lime); }
.nav .nav-book:hover { color: var(--night); background: #aae264; }
.menu-toggle { display: none; width: 3rem; height: 3rem; place-items: center; color: var(--white); background: var(--deep); border: 0; border-radius: .65rem; cursor: pointer; }
.menu-toggle svg { width: 1.5rem; }

.hero { position: relative; overflow: hidden; color: var(--white); background: var(--night); }
.hero::after { position: absolute; inset: 0; z-index: 0; content: ""; background: radial-gradient(circle at 88% 20%, rgb(8 125 175 / 40%), transparent 38%), linear-gradient(115deg, transparent 52%, rgb(141 203 61 / 10%) 52% 57%, transparent 57%); pointer-events: none; }
.hero-grid { position: relative; z-index: 1; display: grid; min-height: min(47rem, 78vh); grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(2rem, 6vw, 5rem); padding-block: 4.5rem; }
.hero-copy { max-width: 47rem; }
.hero-visual { position: relative; }
.hero-visual::before { position: absolute; inset: -1rem 1rem 1rem -1rem; content: ""; border: 1px solid rgb(141 203 61 / 65%); clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%); }
.hero-visual img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%); }
.eyebrow { display: inline-flex; align-items: center; gap: .55rem; margin: 0 0 1rem; color: var(--blue-dark); font-size: .76rem; font-weight: 950; letter-spacing: .16em; text-transform: uppercase; }
.hero .eyebrow, .page-hero .eyebrow { color: var(--lime); }
.eyebrow::before { width: 2rem; height: 3px; content: ""; background: currentColor; }
h1, h2, h3, h4 { margin-block: 0 .7em; color: var(--night); font-weight: 900; letter-spacing: -.035em; line-height: 1.07; }
h1 { font-size: clamp(2.7rem, 6.5vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
.hero h1 { max-width: 11ch; color: var(--white); }
.hero p { max-width: 57ch; color: #d7e8ec; font-size: clamp(1.05rem, 2vw, 1.23rem); }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.button { display: inline-flex; min-height: 3.15rem; align-items: center; justify-content: center; padding: .72rem 1.1rem; color: var(--night); background: var(--lime); border: 2px solid var(--lime); border-radius: .55rem; font-weight: 900; text-align: center; text-decoration: none; transition: .18s ease; }
.button:hover { color: var(--night); background: #ace36b; transform: translateY(-2px); box-shadow: 0 10px 25px rgb(0 0 0 / 18%); }
.button-blue { color: var(--white); background: var(--blue); border-color: var(--blue); }
.button-blue:hover { color: var(--white); background: var(--blue-dark); border-color: var(--blue-dark); }
.button-outline { color: var(--white); background: transparent; border-color: rgb(255 255 255 / 70%); }
.button-outline:hover { color: var(--night); background: var(--white); }

.page-hero { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(125deg, var(--night), var(--deep)); }
.page-hero::after { position: absolute; inset: 0; content: ""; background: linear-gradient(100deg, rgb(6 25 35 / 97%), rgb(6 25 35 / 55%)), var(--page-image, none) center / cover no-repeat; }
.page-hero .container { position: relative; z-index: 1; padding-block: clamp(4rem, 8vw, 7rem); }
.page-hero h1 { max-width: 15ch; color: var(--white); font-size: clamp(2.5rem, 6vw, 4.9rem); }
.page-hero p { max-width: 60ch; margin: 0; color: #dbeaed; font-size: 1.14rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.1rem; color: #c6dce1; font-size: .88rem; }
.breadcrumbs a { color: var(--white); }

.section { padding-block: clamp(4.5rem, 8vw, 7.5rem); }
.section-foam { background: var(--foam); }
.section-dark { color: #cee2e6; background: var(--night); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-heading { max-width: 50rem; margin-bottom: 2.25rem; }
.section-heading p { color: var(--muted); font-size: 1.1rem; }
.section-dark .section-heading p { color: #bfd3d8; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.5rem, 5vw, 4rem); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: .85rem; box-shadow: 0 10px 32px rgb(6 25 35 / 7%); }
.card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card-body { padding: 1.35rem; }
.card p { color: var(--muted); }
.card-link { font-weight: 900; }
.feature { padding: 1.5rem; border-top: 5px solid var(--blue); }
.feature .mark { display: inline-grid; width: 2.9rem; height: 2.9rem; margin-bottom: 1rem; place-items: center; color: var(--night); background: var(--lime); border-radius: 50%; font-weight: 950; }
.photo { overflow: hidden; border-radius: 1rem; box-shadow: var(--shadow); }
.photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.photo.portrait img { aspect-ratio: 4 / 5; }
.check-list { margin: 1.2rem 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; margin-block: .65rem; padding-left: 1.8rem; }
.check-list li::before { position: absolute; left: 0; color: var(--lime-dark); content: "✓"; font-weight: 950; }
.pill { display: inline-flex; padding: .3rem .62rem; color: var(--blue-dark); background: var(--foam); border-radius: 999px; font-size: .82rem; font-weight: 850; }
.notice { padding: 1.1rem 1.2rem; color: #513200; background: #fff2d9; border: 1px solid #e4bd74; border-left: 5px solid var(--orange); border-radius: .7rem; }
.callout { padding: 1.4rem; color: var(--ink); background: var(--foam); border-left: 5px solid var(--blue); border-radius: .7rem; }
.price { font-size: 2.5rem; font-weight: 950; letter-spacing: -.04em; }
.package-card { position: relative; padding: clamp(1.5rem, 4vw, 2.5rem); }
.package-card::after { position: absolute; top: 0; right: 0; width: 5.5rem; height: 5.5rem; content: ""; background: linear-gradient(135deg, transparent 50%, var(--lime) 50%); }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 18rem; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.article-body { max-width: 48rem; }
.article-body h2 { margin-top: 1.6em; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.article-body h3 { margin-top: 1.45em; }
.article-body > p:first-of-type { color: var(--muted); font-size: 1.17rem; }
.article-aside { position: sticky; top: 8rem; padding: 1.25rem; background: var(--foam); border-radius: .75rem; }

.contact-panel { padding: clamp(1.35rem, 4vw, 2.25rem); background: var(--white); border: 1px solid var(--line); border-radius: .9rem; box-shadow: var(--shadow); }
.contact-stack { display: grid; gap: .75rem; }
.contact-link { display: flex; gap: .8rem; align-items: center; padding: 1rem; color: var(--ink); background: var(--foam); border-radius: .65rem; font-weight: 850; text-decoration: none; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field-full { grid-column: 1 / -1; }
.field label { font-weight: 850; }
.field input, .field select, .field textarea { width: 100%; min-height: 3.15rem; padding: .68rem .78rem; color: var(--ink); background: var(--white); border: 1px solid #92aab3; border-radius: .5rem; }
.field textarea { min-height: 9rem; resize: vertical; }
.field-hp { position: absolute; left: -10000px; }
.form-note { color: var(--muted); font-size: .88rem; }
.form-status { min-height: 1.6rem; font-weight: 750; }

.gallery-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: .55rem; }
.gallery-strip img { width: 100%; height: 17rem; object-fit: cover; border-radius: .65rem; }
.cta { color: var(--white); background: linear-gradient(110deg, var(--blue-dark), var(--blue)); }
.cta .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-block: 3rem; }
.cta h2 { margin: 0; color: var(--white); font-size: clamp(1.7rem, 4vw, 2.8rem); }
.cta p { margin: .45rem 0 0; color: #e1f0f4; }

.site-footer { color: #c9dce0; background: #031118; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding-block: 4rem 2.8rem; }
.footer-logo { width: 140px; padding: .4rem; background: var(--white); border-radius: .6rem; }
.site-footer h2 { color: var(--white); font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin-block: .4rem; }
.site-footer a { color: #e0edf0; text-decoration: none; }
.site-footer a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-block: 1.2rem; border-top: 1px solid rgb(255 255 255 / 12%); font-size: .88rem; }
.float-contact { position: fixed; z-index: 35; right: 1rem; bottom: 1rem; display: flex; gap: .45rem; }
.float-contact a { display: grid; width: 3.1rem; height: 3.1rem; place-items: center; color: var(--night); background: var(--lime); border: 2px solid var(--white); border-radius: 50%; box-shadow: 0 8px 25px rgb(0 0 0 / 22%); font-size: .88rem; font-weight: 950; text-decoration: none; }
.center { text-align: center; }
.center .section-heading { margin-inline: auto; }
.narrow { max-width: 49rem; }
.muted { color: var(--muted); }
.spacer { margin-top: 2rem; }

@media (max-width: 1080px) {
  .menu-toggle { display: grid; }
  .nav { position: absolute; top: 100%; right: 1rem; left: 1rem; display: none; max-height: calc(100vh - 8rem); overflow: auto; padding: .8rem; background: var(--white); border: 1px solid var(--line); border-radius: .8rem; box-shadow: var(--shadow); }
  .nav[data-open] { display: block; }
  .nav ul { display: grid; align-items: stretch; }
  .nav .nav-book { margin-left: 0; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .contact-bar .container { justify-content: center; }
  .contact-bar .location, .contact-bar .secondary { display: none; }
  .hero-grid, .grid-2, .grid-3, .article-layout { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; padding-block: 3.8rem; }
  .hero-copy { order: 1; }
  .hero-visual { order: 2; max-width: 34rem; }
  .article-aside { position: static; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .cta .container { display: grid; }
}

@media (max-width: 520px) {
  .container { width: min(calc(100% - 1.2rem), var(--max)); }
  .header-row { min-height: 5.4rem; }
  .brand img { width: 92px; }
  h1 { font-size: clamp(2.4rem, 13vw, 3.8rem); }
  .grid-4, .gallery-strip, .footer-grid { grid-template-columns: 1fr; }
  .gallery-strip img { height: 21rem; }
  .button-row .button { width: 100%; }
  .footer-bottom { display: grid; }
  .float-contact { right: .7rem; bottom: .7rem; }
}

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