/* BrightMint Agency — Fjord Crossing. Unique bright cinematic system. */
:root {
  --night: #03141c;
  --fjord: #0a4560;
  --fjord-mid: #14789a;
  --mint: #2ee6c0;
  --mint-hot: #8affdc;
  --sun: #ffd166;
  --coral: #ff5d4a;
  --ice: #f4fbff;
  --fog: #d5eef8;
  --ink: #052533;
  --ink-soft: #355868;
  --white: #ffffff;
  --glass: rgba(3, 20, 28, 0.55);
  --glass-edge: rgba(46, 230, 192, 0.38);
  --shadow: 0 28px 70px rgba(3, 20, 28, 0.22);
  --radius: 1.4rem;
  --header-h: 5.1rem;
  --max: 78rem;
  --gutter: clamp(1.1rem, 4vw, 2.6rem);
  --font-display: "BBH Bartle", "Syne", sans-serif;
  --font-display-ui: "Syne", "Avenir Next", sans-serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.7rem);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.35vw + 0.94rem, 1.08rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--ice);
  overflow-x: clip;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--fjord-mid);
}

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

:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: -5rem;
  background: var(--mint);
  color: var(--night);
  padding: 0.6rem 1rem;
  z-index: 90;
  border-radius: 999px;
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(100% - 2 * var(--gutter), var(--max));
  margin-inline: auto;
}

h1,
h2,
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--night);
}

h3 {
  font-family: var(--font-display-ui);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 0.98;
  color: var(--night);
}

h1 {
  font-size: clamp(1.5rem, 6vw, 4.6rem);
  margin: 0.2rem 0 1rem;
}

h2 {
  font-size: clamp(1.25rem, 2.6vw, 2.2rem);
  margin: 0 0 1rem;
}

h3 {
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  margin: 0 0 0.45rem;
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  color: var(--ink-soft);
  max-width: 42rem;
}

.crumbs {
  display: inline-flex;
  gap: 0.45rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--fjord-mid);
  margin: 0 0 0.8rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-h);
  background: var(--night);
  border-bottom: 1px solid var(--glass-edge);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ice);
  flex-shrink: 0;
}

.brand:hover {
  color: var(--mint-hot);
}

.brand__mark {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.85rem;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--mint), #1bb7d6);
  color: var(--night);
  font-family: var(--font-display-ui);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand__name {
  display: block;
  font-weight: 750;
  letter-spacing: -0.03em;
  font-size: 0.98rem;
}

.brand__sub {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
}

.nav {
  display: none;
  margin-inline-start: auto;
  gap: 0.15rem 0.85rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: rgba(244, 251, 255, 0.82);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 560;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--mint-hot);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-inline-start: auto;
}

.lang-switch {
  display: flex;
  border: 1px solid rgba(46, 230, 192, 0.35);
  border-radius: 999px;
  overflow: hidden;
}

.lang-switch a {
  padding: 0.28rem 0.62rem;
  color: var(--ice);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
}

.lang-switch a.is-active {
  background: var(--mint);
  color: var(--night);
}

.nav-toggle {
  width: 2.7rem;
  height: 2.7rem;
  border: 0;
  border-radius: 0.8rem;
  background: rgba(244, 251, 255, 0.08);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--ice);
  position: relative;
  transition: transform 0.25s var(--ease);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.site-header.is-open .nav-toggle span {
  background: transparent;
}

.site-header.is-open .nav-toggle span::before {
  transform: rotate(45deg);
  top: 0;
}

.site-header.is-open .nav-toggle span::after {
  transform: rotate(-45deg);
  top: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.9rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, var(--mint), #18c5d8);
  color: var(--night);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(46, 230, 192, 0.28);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn:hover {
  color: var(--night);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--ice);
  border: 1px solid rgba(244, 251, 255, 0.35);
  box-shadow: none;
}

.btn--ghost:hover {
  color: var(--mint-hot);
  border-color: var(--mint);
}

.panel .btn--ghost {
  color: var(--ink);
  border-color: rgba(5, 37, 51, 0.22);
}

.panel .btn--ghost:hover {
  color: var(--fjord);
  border-color: var(--fjord);
}

.btn--coral {
  background: linear-gradient(135deg, var(--coral), #ff8a4a);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(255, 93, 74, 0.28);
}

.btn--coral:hover {
  color: var(--white);
}

.btn--sun {
  background: var(--sun);
  color: var(--night);
}

.btn--desk {
  display: none;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 58rem);
  display: grid;
  align-items: end;
  isolation: isolate;
  color: var(--ice);
  overflow: clip;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ken 28s var(--ease) infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  /* deslop-ignore-next-line 06 */
  background: linear-gradient(180deg, rgba(3, 20, 28, 0.22), rgba(3, 20, 28, 0.78));
}

.hero__inner {
  padding: 7.5rem 0 3.4rem;
}

.hero .lede {
  color: rgba(244, 251, 255, 0.88);
}

.hero h1 {
  color: var(--white);
  max-width: 16ch;
  text-shadow: 0 18px 50px rgba(3, 20, 28, 0.45);
}

.err-code {
  margin: 0 0 0.6rem;
  font-family: var(--font-display-ui);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--fjord-mid);
}

@keyframes ken {
  from {
    transform: scale(1.08) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.18) translate3d(-2%, -1.5%, 0);
  }
}

.hero-note {
  margin-top: 1.2rem;
  font-size: 0.82rem;
  color: rgba(244, 251, 255, 0.7);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
  margin-top: -2.2rem;
  position: relative;
  z-index: 2;
}

.stat {
  background: var(--white);
  border-radius: 1.2rem;
  padding: 1rem 1.05rem;
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  font-family: var(--font-display-ui);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.04em;
  color: var(--fjord);
}

.stat span {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  position: relative;
}

.section--photo {
  color: var(--ice);
  isolation: isolate;
  overflow: clip;
}

.section--photo h2,
.section--photo h3 {
  color: var(--white);
}

.section--photo .lede,
.section--photo p {
  color: rgba(244, 251, 255, 0.88);
}

.bg-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 20, 28, 0.82), rgba(3, 20, 28, 0.42) 70%);
}

.section--mint {
  background: #d4f4ee;
}

.section--night {
  background: var(--night);
  color: var(--ice);
}

.section--night h2,
.section--night h3 {
  color: var(--white);
}

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.section-head p {
  max-width: 40rem;
  color: var(--ink-soft);
}

.split {
  display: grid;
  gap: 1.6rem;
  align-items: center;
}

.frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.frame--tall img {
  aspect-ratio: 4 / 5;
}

.caption {
  margin-top: 0.55rem;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.list-check li {
  display: flex;
  gap: 0.7rem;
  padding: 0.55rem 0;
  border-top: 1px solid rgba(5, 37, 51, 0.1);
}

.list-check svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  color: var(--fjord-mid);
  margin-top: 0.25rem;
}

.bento {
  display: grid;
  gap: 0.9rem;
}

.tile {
  border-radius: 1.3rem;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  display: grid;
  min-height: 16rem;
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 12rem;
}

.tile__body {
  padding: 1.05rem 1.15rem 1.25rem;
}

.tile__meta {
  color: var(--fjord-mid);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.room-rail {
  display: grid;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.4rem;
  grid-auto-flow: column;
  grid-auto-columns: minmax(16.5rem, 78%);
}

.room-card {
  scroll-snap-align: start;
  border-radius: 1.35rem;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.room-card img {
  aspect-ratio: 16 / 11;
  width: 100%;
  object-fit: cover;
}

.room-card__body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: grid;
  gap: 0.35rem;
}

.room-card__foot {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-weight: 700;
  color: var(--fjord);
}

.notice {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 1.1rem;
  background: rgba(255, 209, 102, 0.28);
  border: 1px solid rgba(255, 209, 102, 0.7);
  color: var(--ink);
}

.btn--outline {
  background: transparent;
  color: var(--fjord);
  border: 1px solid rgba(10, 69, 96, 0.22);
  box-shadow: none;
}

.btn--outline:hover {
  color: var(--night);
  border-color: var(--mint);
}

.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 22rem;
  display: grid;
  align-items: end;
  color: var(--ice);
  overflow: clip;
}

.page-hero .hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.page-hero .hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: ken 26s var(--ease) infinite alternate;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  /* deslop-ignore-next-line 06 */
  background: linear-gradient(180deg, rgba(3, 20, 28, 0.24), rgba(3, 20, 28, 0.82));
}

.page-hero .wrap {
  padding: 7.2rem 0 2.6rem;
}

.page-hero h1 {
  color: var(--white);
  max-width: 18ch;
}

.page-hero .lede {
  color: rgba(244, 251, 255, 0.88);
}

.mosaic {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--white);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
}

.card__body {
  padding: 1.1rem 1.15rem 1.3rem;
}

.faq details {
  background: var(--white);
  border-radius: 1.1rem;
  padding: 1rem 1.15rem;
  margin-bottom: 0.7rem;
  box-shadow: 0 10px 30px rgba(3, 20, 28, 0.06);
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-display-ui);
  letter-spacing: -0.03em;
}

.faq details p {
  margin: 0.7rem 0 0.2rem;
  color: var(--ink-soft);
}

.form {
  background: var(--white);
  border-radius: 1.4rem;
  padding: 1.3rem;
  box-shadow: var(--shadow);
}

.form-note {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.form-row {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.field {
  display: grid;
  gap: 0.35rem;
  font-weight: 650;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(5, 37, 51, 0.16);
  border-radius: 0.85rem;
  padding: 0.72rem 0.8rem;
  background: var(--ice);
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-error {
  display: none;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 500;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: var(--coral);
}

.field.is-invalid .form-error {
  display: block;
}

.form.is-sent::after {
  content: attr(data-ok);
  display: block;
  margin-top: 0.9rem;
  padding: 0.8rem 0.9rem;
  border-radius: 0.9rem;
  background: rgba(46, 230, 192, 0.2);
  color: var(--fjord);
  font-weight: 650;
}

.check {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-weight: 500;
  margin: 0.6rem 0 1rem;
}

.check.is-invalid {
  outline: 2px solid var(--coral);
  outline-offset: 4px;
  border-radius: 0.5rem;
}

.policy-list {
  counter-reset: item;
  list-style: none;
  padding: 0;
  margin: 0;
}

.policy-list > li {
  counter-increment: item;
  background: var(--white);
  border-radius: 1.2rem;
  padding: 1.2rem 1.25rem 1.35rem;
  margin-bottom: 0.8rem;
  box-shadow: 0 12px 32px rgba(3, 20, 28, 0.06);
}

.policy-list h2 {
  font-family: var(--font-display-ui);
  font-weight: 750;
  font-size: 1.35rem;
}

.policy-list h2::before {
  content: counter(item) ". ";
  color: var(--fjord-mid);
}

.map-embed {
  border: 0;
  width: 100%;
  min-height: 22rem;
  border-radius: 1.3rem;
}

.site-footer {
  background: var(--night);
  color: rgba(244, 251, 255, 0.82);
  padding: 3.4rem 0 1.8rem;
}

.site-footer h2 {
  font-family: var(--font-display-ui);
  font-weight: 750;
  color: var(--mint-hot);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--ice);
}

.site-footer a:hover {
  color: var(--mint);
}

.footer-grid {
  display: grid;
  gap: 1.6rem;
  margin: 1.4rem 0 1.8rem;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.footer-contact li {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}

.footer-contact svg {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  color: var(--mint);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin: 0.35rem 0;
}

.rg-bar {
  display: grid;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  border-radius: 1.1rem;
  background: rgba(46, 230, 192, 0.08);
  border: 1px solid rgba(46, 230, 192, 0.2);
}

.age-pill {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.8rem;
  display: grid;
  place-items: center;
  background: var(--coral);
  color: var(--white);
  font-weight: 800;
}

.footer-legal {
  font-size: 0.82rem;
  color: rgba(244, 251, 255, 0.6);
}

.overlay,
.cookie-bar {
  position: fixed;
  z-index: 80;
}

.overlay {
  inset: 0;
  background: rgba(3, 20, 28, 0.72);
  display: none;
  place-items: center;
  padding: 1.2rem;
}

.overlay.is-open {
  display: grid;
}

.panel {
  background: var(--white);
  color: var(--ink);
  max-width: 28rem;
  border-radius: 1.4rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.age-mark {
  font-family: var(--font-display-ui);
  font-size: 2rem;
  color: var(--coral);
  margin: 0 0 0.4rem;
}

.cookie-bar {
  inset-inline: 1rem;
  bottom: 1rem;
  display: none;
  background: var(--night);
  color: var(--ice);
  border-radius: 1.2rem;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--glass-edge);
}

.cookie-bar.is-open {
  display: grid;
  gap: 0.8rem;
}

.cookie-bar a {
  color: var(--mint-hot);
}

.err-page {
  min-height: 70vh;
  display: grid;
  align-items: center;
}

@media (min-width: 720px) {
  .stat-row {
    grid-template-columns: repeat(5, 1fr);
  }


  .split--reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .split--reverse > :first-child {
    order: 2;
  }

  .bento {
    grid-template-columns: 1.2fr 1fr;
  }

  .room-rail {
    grid-auto-columns: minmax(18rem, 24%);
  }

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

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

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

  .rg-bar {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .page-hero {
    min-height: 28rem;
  }
}

@media (min-width: 1080px) {
  .nav {
    display: flex;
  }

  .btn--desk {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }

  .header-tools {
    margin-inline-start: 0.6rem;
  }

  .section-head {
    align-items: end;
  }
}

@media (max-width: 1079px) {
  .nav {
    margin-inline-start: 0;
    justify-content: flex-start;
  }

  .site-header.is-open .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    position: absolute;
    inset-inline: 0;
    top: 100%;
    width: 100%;
    margin: 0;
    max-height: min(72vh, calc(100dvh - var(--header-h)));
    overflow-y: auto;
    overscroll-behavior: contain;
    background: color-mix(in srgb, var(--night) 96%, var(--mint) 4%);
    padding: 0.55rem var(--gutter) 1.35rem;
    border-bottom: 1px solid var(--glass-edge);
    box-shadow: 0 1.4rem 2.4rem rgba(3, 16, 24, 0.45);
  }

  .site-header.is-open .nav a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin: 0;
    padding-block: 0.92rem;
    padding-inline: 0.15rem 0.6rem;
    font-size: clamp(1.05rem, 3.6vw, 1.22rem);
    font-weight: 650;
    letter-spacing: -0.02em;
    text-align: start;
    border-block-end: 1px solid rgba(244, 251, 255, 0.08);
  }

  .site-header.is-open .nav a:last-child {
    border-block-end: 0;
  }

  .site-header.is-open .nav a[aria-current="page"] {
    color: var(--mint-hot);
    box-shadow: inset 0.22rem 0 0 var(--mint);
    padding-inline-start: 0.7rem;
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__bg img {
    animation: none;
  }

  .reveal,
  .btn {
    transition: none;
  }
}
