:root {
  color-scheme: light;
  --ink: #102532;
  --ink-2: #173848;
  --muted: #64757b;
  --paper: #fffdf8;
  --shell: #f7f3eb;
  --foam: #eef8f5;
  --line: #d9e5df;
  --sea: #0073a6;
  --sea-dark: #073b5a;
  --aqua: #57c3bb;
  --mauve: #9a6077;
  --terracotta: #b66345;
  --gold: #d7b46a;
  --radius: 8px;
  --content: 1160px;
  --shadow: 0 20px 55px rgba(16, 37, 50, 0.12);
  --shadow-deep: 0 35px 90px rgba(6, 22, 32, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

[id] {
  scroll-margin-top: 6.5rem;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 1rem;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.9rem;
  line-height: 0.9;
}

h2 {
  margin-bottom: 0.75rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.1rem;
  line-height: 1.02;
}

h3 {
  margin-bottom: 0.42rem;
  font-size: 1.08rem;
  line-height: 1.25;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem max(1rem, calc((100% - var(--content)) / 2));
  background: rgba(8, 31, 44, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
}

.site-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 31, 44, 0.96), rgba(8, 65, 90, 0.8));
}

.nav-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
}

.nav-brand img {
  width: 44px;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
}

.nav-brand strong,
.nav-brand small,
.brand strong,
.brand small {
  display: block;
}

.nav-brand strong {
  font-size: 1rem;
  line-height: 1.05;
}

.nav-brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 750;
}

.nav-actions {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 1.05rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
}

.nav-pill {
  position: absolute;
  right: 1rem;
  top: 50%;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0.55rem 0.88rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  transform: translateY(-50%);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0.9rem 1.15rem;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #057db2, #10afd7);
  color: #fff;
  box-shadow: 0 18px 36px rgba(0, 115, 166, 0.28);
}

.button-primary:hover {
  background: var(--sea-dark);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

main .button-secondary,
.request-form .button-secondary,
.thank-you .button-secondary,
.price-card .button-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.button-ghost {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(4, 19, 31, 0.94) 0%, rgba(5, 35, 52, 0.82) 47%, rgba(5, 35, 52, 0.2) 100%),
    linear-gradient(180deg, rgba(4, 19, 31, 0.15), rgba(4, 19, 31, 0.45)),
    url("./photos/bedroom-wide.jpeg");
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(4, 19, 31, 0), rgba(4, 19, 31, 0.7));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--content));
  margin: 0 auto;
  padding: 8.7rem 0 7rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  align-items: center;
  gap: 4rem;
}

.hero-copy {
  max-width: 840px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.82rem;
  color: var(--mauve);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #bdf3ec;
}

.hero-lead {
  max-width: 780px;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.45rem;
  line-height: 1.42;
}

.hero-subtitle {
  max-width: 720px;
  margin-bottom: 1.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta-microcopy {
  max-width: 720px;
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: 820px;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0.43rem 0.72rem;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 850;
}

.hero-request-card {
  display: grid;
  gap: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: rgba(255, 253, 248, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(16px);
}

.hero-request-card .section-kicker {
  margin-bottom: -0.25rem;
}

.hero-request-card h2 {
  margin-bottom: -0.1rem;
  color: var(--ink);
  font-size: 1.62rem;
  line-height: 1.08;
}

.hero-request-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.quick-note,
.form-microcopy {
  margin: -0.1rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.quick-more,
.reviews-source a {
  color: var(--sea-dark);
  font-size: 0.88rem;
  font-weight: 900;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -3.2rem;
  background: transparent;
  color: var(--ink);
}

.section-inner {
  width: min(100% - 2rem, var(--content));
  margin: 0 auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.trust-grid article {
  padding: 1.35rem 1.25rem;
  border-right: 1px solid var(--line);
}

.trust-grid article:last-child {
  border-right: 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--sea-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.trust-grid span {
  margin-top: 0.34rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.section {
  padding: 6rem 0;
}

.section-muted,
.section-reviews,
.section-booking {
  background: var(--foam);
}

.section-pricing {
  background: var(--paper);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-heading p,
.intro-copy,
.rule-intro,
.request-copy p,
.cta-strip p,
.price-card p,
.use-card p,
.review-card p {
  color: var(--muted);
}

.split-heading,
.intro-layout,
.request-layout,
.rules-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 3.2rem;
}

.value-grid,
.pricing-grid,
.use-grid,
.reviews-grid,
.gallery-grid,
.faq-list,
.intro-photo-grid,
.review-proof {
  display: grid;
  gap: 1rem;
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 1.35rem 0 1.2rem;
}

.value-card,
.price-card,
.use-card,
.review-card,
.rule-item,
.faq-item,
.section-photo,
.cta-photo,
.rules-photo,
.request-photo,
.availability-panel,
.request-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.value-card,
.price-card,
.use-card,
.review-card,
.faq-item,
.section-photo,
.request-form,
.availability-panel {
  box-shadow: 0 12px 28px rgba(16, 37, 50, 0.06);
}

.value-card {
  padding: 1rem;
}

.value-card span {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--mauve);
  font-size: 0.78rem;
  font-weight: 950;
}

.value-card strong {
  display: block;
  margin-bottom: 0.24rem;
}

.value-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-photo,
.cta-photo,
.rules-photo,
.request-photo {
  overflow: hidden;
  margin: 0;
  background: var(--foam);
}

.section-photo img,
.cta-photo img,
.rules-photo img,
.request-photo img,
.card-photo {
  width: 100%;
  object-fit: cover;
}

.section-photo img,
.rules-photo img,
.request-photo img {
  aspect-ratio: 4 / 3;
}

.section-photo figcaption,
.rules-photo figcaption,
.request-photo figcaption {
  padding: 0.78rem 0.9rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.intro-photo-grid,
.review-proof {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section-photo-large {
  grid-column: span 2;
}

.review-summary {
  display: grid;
  grid-template-columns: repeat(3, auto 1fr);
  align-items: center;
  gap: 0.8rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 115, 166, 0.18);
  border-radius: var(--radius);
  padding: 1.05rem;
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 37, 50, 0.06);
}

.review-summary strong {
  color: var(--sea-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.review-summary span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.review-proof {
  margin-bottom: 1rem;
}

.reviews-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.review-card {
  display: grid;
  gap: 0.78rem;
  padding: 1.1rem;
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.review-score {
  border-radius: 999px;
  padding: 0.33rem 0.58rem;
  background: var(--sea-dark);
  color: #fff;
}

.review-card h3,
.review-card blockquote,
.review-card footer {
  margin: 0;
}

.review-card blockquote {
  border-left: 4px solid var(--mauve);
  padding-left: 0.8rem;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
  line-height: 1.42;
}

.review-card footer,
.reviews-source {
  color: var(--muted);
  font-size: 0.88rem;
}

.reviews-source {
  margin: 1rem 0 0;
}

.pricing-grid {
  grid-template-columns: 1fr 1.12fr 1fr 0.9fr;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  overflow: hidden;
  padding: 1.15rem;
}

.price-photo {
  height: 160px;
  margin: -1.15rem -1.15rem 1rem;
  width: calc(100% + 2.3rem);
  border-bottom: 1px solid var(--line);
}

.price-card.featured {
  border-color: rgba(0, 115, 166, 0.38);
  background: linear-gradient(180deg, #ffffff 0%, #eefbfb 100%);
  box-shadow: 0 22px 55px rgba(0, 115, 166, 0.15);
}

.card-badge {
  align-self: flex-start;
  margin-bottom: 0.7rem;
  border-radius: 999px;
  padding: 0.3rem 0.55rem;
  background: rgba(182, 99, 69, 0.13);
  color: var(--terracotta);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.price-topline {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 0.55rem;
}

.price {
  color: var(--sea-dark);
  font-size: 1.9rem;
  font-weight: 950;
}

.package-details {
  display: grid;
  gap: 0.42rem;
  margin: auto 0 1.1rem;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 0.92rem;
}

.package-details li::before {
  content: "";
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: var(--aqua);
  vertical-align: middle;
}

.package-select {
  margin-top: auto;
}

.pricing-note {
  margin-top: 1rem;
  border-left: 4px solid var(--mauve);
  border-radius: var(--radius);
  padding: 1rem;
  background: var(--shell);
  color: var(--muted);
}

.section-cta-strip {
  padding: 0;
  background: linear-gradient(180deg, var(--paper), var(--foam));
}

.cta-strip {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.2rem;
  border: 1px solid rgba(0, 115, 166, 0.18);
  border-radius: var(--radius);
  padding: 1.1rem;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-photo {
  border-color: rgba(255, 255, 255, 0.14);
}

.cta-photo img {
  aspect-ratio: 16 / 11;
}

.cta-strip .section-kicker {
  color: #bdf3ec;
}

.cta-strip h2 {
  margin-bottom: 0.35rem;
  color: #fff;
  font-size: 2.1rem;
}

.cta-strip p,
.cta-note {
  color: rgba(255, 255, 255, 0.75);
}

.cta-strip-actions {
  display: grid;
  gap: 0.52rem;
  min-width: 220px;
}

.cta-note {
  font-size: 0.86rem;
  font-weight: 750;
}

.use-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.use-card {
  overflow: hidden;
  min-height: 245px;
}

.use-photo {
  height: 155px;
  border-bottom: 1px solid var(--line);
}

.use-card h3 {
  padding: 1rem 1rem 0;
}

.use-card p {
  margin-bottom: 0;
  padding: 0 1rem 1rem;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-item {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(16, 37, 50, 0.06);
}

.gallery-item.featured-photo {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-button {
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  text-align: left;
}

.gallery-item img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.gallery-item.featured-photo img {
  height: 100%;
  aspect-ratio: 16 / 10;
}

.gallery-button:hover img {
  transform: scale(1.025);
}

.gallery-item figcaption {
  padding: 0.78rem 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 850;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(6, 18, 28, 0.9);
  color: #fff;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-frame {
  width: min(100%, 1120px);
  margin: 0;
}

.lightbox-frame img {
  width: 100%;
  max-height: 82svh;
  border-radius: var(--radius);
  object-fit: contain;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
}

.lightbox-frame figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
  color: rgba(255, 255, 255, 0.86);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 52px;
  height: 52px;
  font-size: 2.8rem;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.section-rules {
  background:
    linear-gradient(135deg, #102532, #073e5d 70%, #0c5f79),
    var(--ink);
  color: #fff;
}

.section-rules .section-kicker {
  color: #bdf3ec;
}

.section-rules p,
.rule-intro {
  color: rgba(255, 255, 255, 0.76);
}

.rules-summary {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.rules-summary article,
.rule-item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.rules-summary article {
  padding: 0.95rem;
}

.rules-summary strong,
.rule-item strong {
  display: block;
  color: #fff;
}

.rules-summary span,
.rule-item span {
  display: block;
  margin-top: 0.24rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.rules-photo {
  margin-top: 1rem;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.rules-photo figcaption {
  color: rgba(255, 255, 255, 0.78);
}

.rules-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rule-item {
  display: grid;
  grid-template-columns: 0.7rem 1fr;
  gap: 0.25rem 0.72rem;
  padding: 1rem;
}

.rule-item::before {
  content: "";
  grid-row: 1 / span 2;
  width: 0.58rem;
  height: 0.58rem;
  margin-top: 0.42rem;
  border-radius: 50%;
  background: var(--gold);
}

.faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 1rem;
  font-weight: 950;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--foam);
  color: var(--sea-dark);
  font-weight: 950;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.request-copy {
  max-width: 560px;
}

.availability-panel {
  display: grid;
  gap: 0.25rem;
  margin-top: 1.1rem;
  padding: 1rem;
}

.availability-panel.available {
  border-color: rgba(0, 115, 166, 0.45);
  background: #eefbfb;
}

.availability-panel.unavailable {
  border-color: rgba(154, 96, 119, 0.5);
  background: #fff3f7;
}

.availability-panel span {
  color: var(--muted);
  font-size: 0.92rem;
}

.request-photo {
  margin-top: 1rem;
}

.request-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

.form-row.split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 950;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.84rem 0.9rem;
  background: #fff;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(0, 115, 166, 0.14);
  border-color: var(--sea);
}

.checkbox-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  color: var(--muted);
  font-weight: 750;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 0.16rem;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  max-width: 100%;
  overflow-wrap: anywhere;
  white-space: normal;
}

.form-status.success {
  padding: 0.78rem 0.9rem;
  border: 1px solid rgba(0, 115, 166, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(234, 249, 250, 0.86);
  color: var(--sea-dark);
  font-weight: 850;
}

.form-status.error {
  padding: 0.78rem 0.9rem;
  border: 1px solid rgba(144, 89, 111, 0.22);
  border-radius: var(--radius-sm);
  background: rgba(255, 246, 249, 0.94);
  color: var(--mauve);
  font-weight: 850;
}

.hidden-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding: 2.4rem 0 5rem;
  background: var(--ink);
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: start;
  width: min(100% - 2rem, var(--content));
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
}

.brand-logo {
  width: 52px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.2));
}

.brand small,
.footer-inner p,
.footer-links,
.footer-links a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.booking-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mobile-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: none;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.84rem 1.12rem;
  background: #1fae5b;
  color: #fff;
  font-weight: 950;
  box-shadow: 0 12px 32px rgba(17, 24, 20, 0.26);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: transform 160ms ease, opacity 160ms ease;
}

.mobile-whatsapp.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-whatsapp.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.back-to-top {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 29;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(7, 29, 43, 0.88);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 12px 32px rgba(17, 24, 20, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: transform 160ms ease, opacity 160ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.thank-you-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  background: var(--foam);
}

.thank-you {
  width: min(100% - 2rem, 720px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.thank-you h1 {
  color: var(--ink);
  font-size: 3rem;
}

@media (max-width: 980px) {
  h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero-layout,
  .split-heading,
  .intro-layout,
  .request-layout,
  .rules-layout,
  .cta-strip {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 1.8rem;
  }

  .reviews-grid,
  .pricing-grid,
  .use-grid,
  .gallery-grid,
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-strip-actions {
    min-width: 0;
  }
}

@media (min-width: 860px) {
  .site-nav {
    justify-content: space-between;
  }

  .nav-actions {
    display: flex;
  }

  .nav-pill {
    display: none;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 5.8rem;
  }

  [id] {
    scroll-margin-top: 5.8rem;
  }

  h1 {
    max-width: 340px;
    font-size: 3.45rem;
    line-height: 0.92;
  }

  h2 {
    font-size: 2.08rem;
  }

  .site-nav {
    width: min(100%, 390px);
    padding: 0.58rem 0.5rem;
  }

  .nav-brand {
    width: auto;
    max-width: calc(100% - 6.6rem);
  }

  .nav-brand img {
    width: 40px;
  }

  .nav-brand span {
    min-width: 0;
  }

  .nav-brand strong {
    overflow: hidden;
    max-width: 145px;
    font-size: 0.9rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-brand small {
    font-size: 0.7rem;
  }

  .nav-pill {
    right: 0.5rem;
    min-height: 38px;
    padding: 0.48rem 0.78rem;
    font-size: 0.82rem;
  }

  .hero {
    align-items: flex-start;
    min-height: auto;
  }

  .hero-content {
    width: min(100% - 2rem, 360px);
    margin-left: 1rem;
    margin-right: auto;
    padding: 6.7rem 0 2.8rem;
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .hero-subtitle {
    font-size: 0.96rem;
  }

  .hero-actions,
  .form-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-request-card {
    padding: 1rem;
  }

  .trust-strip {
    margin-top: 0;
  }

  .trust-grid,
  .value-grid,
  .reviews-grid,
  .pricing-grid,
  .use-grid,
  .gallery-grid,
  .faq-list,
  .intro-photo-grid,
  .review-proof,
  .form-row.split {
    grid-template-columns: 1fr;
  }

  .trust-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 1rem;
  }

  .trust-grid article:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 3.6rem 0;
  }

  .section-photo-large,
  .gallery-item.featured-photo {
    grid-column: auto;
    grid-row: auto;
  }

  .price-photo,
  .use-photo {
    height: 140px;
  }

  .price-card {
    min-height: 0;
  }

  .review-summary {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .mobile-whatsapp {
    display: inline-flex;
  }

  .lightbox {
    padding: 0.75rem;
  }

  .lightbox-frame img {
    max-height: 76svh;
  }

  .lightbox-frame figcaption {
    display: grid;
    gap: 0.25rem;
    font-size: 0.92rem;
  }

  .lightbox-nav {
    top: auto;
    bottom: 1rem;
    width: 46px;
    height: 46px;
    font-size: 2.2rem;
    transform: none;
  }

  .lightbox-prev {
    left: calc(50% - 58px);
  }

  .lightbox-next {
    right: calc(50% - 58px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
