@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Nunito:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f5f7fb;
  --bg-strong: #edf4fb;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-solid: #ffffff;
  --text: #0f172a;
  --muted: #566173;
  --line: rgba(15, 23, 42, 0.12);
  --accent: #0f766e;
  --accent-strong: #16a39a;
  --accent-soft: rgba(15, 118, 110, 0.12);
  --warm: #ff8a65;
  --shadow: 0 28px 80px rgba(15, 23, 42, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(22, 163, 152, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 138, 101, 0.14), transparent 22%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 45%, #eef4f8 100%);
  font-family: "Nunito", system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  filter: blur(22px);
  opacity: 0.75;
}

body::before {
  width: 220px;
  height: 220px;
  top: 8%;
  right: -70px;
  background: rgba(22, 163, 152, 0.24);
  border-radius: 39% 61% 44% 56% / 52% 48% 52% 48%;
}

body::after {
  width: 260px;
  height: 260px;
  left: -100px;
  bottom: 6%;
  background: rgba(255, 138, 101, 0.18);
  border-radius: 45% 55% 40% 60% / 60% 43% 57% 40%;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(245, 247, 251, 0.8);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  font-family: "Fredoka", Georgia, serif;
  font-size: 1.06rem;
  letter-spacing: 0.03em;
}

.brand span {
  font-size: 1.18rem;
}

.brand small {
  color: var(--muted);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.96rem;
  color: var(--muted);
}

.nav a {
  position: relative;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.menu-toggle:focus-visible,
.btn:focus-visible,
.tag:focus-visible,
.nav a:focus-visible,
.legal-link:focus-visible {
  outline: 2px solid rgba(15, 118, 110, 0.34);
  outline-offset: 3px;
}

.menu-icon {
  width: 16px;
  height: 12px;
  position: relative;
  display: inline-block;
}

.menu-icon::before,
.menu-icon::after,
.menu-icon span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.menu-icon::before { top: 0; }
.menu-icon span { top: 5px; }
.menu-icon::after { bottom: 0; }

.hero {
  padding: 46px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Fredoka", Georgia, serif;
  font-weight: 600;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3rem, 6vw, 6.2rem);
  letter-spacing: -0.04em;
  max-width: 10ch;
}

.hero-copy p {
  max-width: 56ch;
  margin: 20px 0 0;
  font-size: 1.12rem;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  box-shadow: 0 18px 32px rgba(15, 118, 110, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(15, 23, 42, 0.1);
  color: var(--text);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.stat,
.card,
.surface {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.stat {
  padding: 18px;
}

.stat strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.45rem;
  font-family: "Fredoka", Georgia, serif;
}

.stat span {
  color: var(--muted);
  font-size: 0.94rem;
  overflow-wrap: anywhere;
  hyphens: auto;
  text-wrap: pretty;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.hero-photo {
  position: relative;
  min-height: 640px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 36px 100px rgba(15, 23, 42, 0.28);
}

.hero-photo img,
.gallery-item img,
.offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 18, 36, 0.1) 0%, rgba(9, 18, 36, 0.56) 100%);
}

.hero-overlay {
  position: absolute;
  inset: auto 22px 22px 22px;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(9, 18, 36, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  pointer-events: none;
}

.hero-overlay strong {
  font-size: 1.15rem;
  font-family: "Fredoka", Georgia, serif;
}

.hero-overlay span {
  color: rgba(255, 255, 255, 0.82);
}

.section {
  padding: 84px 0;
}

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

.section-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
  letter-spacing: -0.03em;
  font-weight: 600;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.offer-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  overflow: hidden;
}

.offer-card h3 {
  font-size: 2rem;
}

.offer-media {
  min-height: 260px;
  border-radius: 24px;
  overflow: hidden;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag,
.meta-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
}

.tag {
  min-height: 34px;
  padding: 0 12px;
  background: var(--accent-soft);
  color: var(--accent);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.feature-list li {
  display: flex;
  gap: 12px;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--warm);
  box-shadow: 0 0 0 4px rgba(255, 138, 101, 0.16);
}

.feature-list strong {
  color: var(--text);
}

.highlights {
  align-items: stretch;
}

.highlight-card {
  padding: 22px;
}

.highlight-card h3 {
  font-size: 1.5rem;
}

.highlight-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.highlight-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(255, 138, 101, 0.12));
  color: var(--text);
  font-family: "Fredoka", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.gallery-item {
  min-height: 220px;
  grid-column: span 4;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-item.wide {
  grid-column: span 8;
}

.gallery-item.tall {
  grid-row: span 2;
  min-height: 456px;
}

.gallery-caption {
  padding: 14px 16px 18px;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.gallery-caption strong {
  display: block;
  margin-bottom: 4px;
}

.gallery-caption span,
.price-note,
.muted {
  color: var(--muted);
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
}

.pricing-layout.pricing-single {
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
}

.price-card {
  padding: 22px;
}

.price-table {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.price-row strong {
  display: block;
  font-size: 1rem;
}

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

.price-row em {
  font-style: normal;
  font-weight: 800;
  font-size: 1.18rem;
  font-family: "Fredoka", Georgia, serif;
  white-space: nowrap;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.info-card {
  padding: 22px;
}

.info-card h3 {
  font-size: 1.6rem;
}

.info-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
}

.contact-card {
  padding: 24px;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  border: 1px solid rgba(15, 118, 110, 0.14);
  font-weight: 800;
}

.site-footer {
  padding: 30px 0 48px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.legal {
  padding: 48px 0 96px;
}

.legal article {
  padding: clamp(24px, 4vw, 48px);
}

.legal h1 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin-bottom: 18px;
}

.legal h2 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  margin: 34px 0 12px;
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal ul {
  margin: 0;
  padding-left: 18px;
}

.legal .header-inner {
  min-height: 78px;
}

.legal-link {
  color: var(--accent);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

body > main {
  position: relative;
}

.ticker-shell {
  overflow: hidden;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.06), rgba(255, 138, 101, 0.06));
}

.ticker-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 14px 0;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(15, 23, 42, 0.74);
  animation: ticker-move 26s linear infinite;
}

.ticker-track span::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 18px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.45;
}

.hero {
  padding-top: 32px;
}

.hero-grid {
  position: relative;
  isolation: isolate;
}

.hero-grid::before,
.hero-grid::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.hero-grid::before {
  inset: 8% auto auto -10%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 163, 152, 0.18) 0%, rgba(22, 163, 152, 0.06) 45%, transparent 75%);
  animation: drift 14s ease-in-out infinite alternate;
}

.hero-grid::after {
  right: -5%;
  top: 24%;
  width: 220px;
  height: 220px;
  border-radius: 40% 60% 42% 58% / 54% 46% 54% 46%;
  background: radial-gradient(circle, rgba(255, 138, 101, 0.18) 0%, rgba(255, 138, 101, 0.04) 50%, transparent 75%);
  animation: drift 18s ease-in-out infinite alternate-reverse;
}

.hero-copy::before,
.band-shell::before,
.gallery-pullquote::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.4), rgba(255, 138, 101, 0.3), rgba(255, 255, 255, 0.18));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.hero-ribbon {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.6));
  border: 1px solid rgba(15, 23, 42, 0.09);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.ribbon-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--accent);
}

.ribbon-label::after {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.ribbon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.ribbon-grid div {
  padding: 14px 14px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.08), rgba(255, 255, 255, 0.56));
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.ribbon-grid strong,
.band-stat strong {
  display: block;
  font-family: "Fredoka", Georgia, serif;
  font-size: 1.05rem;
}

.ribbon-grid span,
.band-stat span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.hero-visual {
  isolation: isolate;
}

.float-card {
  position: absolute;
  z-index: 2;
  min-width: 160px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(16px);
  animation: bob 6s ease-in-out infinite;
}

.float-card span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.float-card strong {
  display: block;
  margin-top: 6px;
  font-family: "Fredoka", Georgia, serif;
  font-size: 1.06rem;
}

.float-card-a {
  top: 8%;
  left: -10px;
  animation-delay: -1.5s;
}

.float-card-b {
  right: 12px;
  top: 34%;
  animation-delay: -3s;
}

.float-card-c {
  left: 8%;
  bottom: 8%;
  animation-delay: -4.2s;
}

.section {
  position: relative;
}

.section:nth-of-type(odd) {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.22), transparent);
}

.section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(980px, 92vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.12), transparent);
}

.section-heading h2 {
  text-wrap: balance;
}

.card {
  overflow: hidden;
}

.offer-card,
.highlight-card,
.info-card,
.price-card,
.contact-card,
.gallery-item,
.gallery-pullquote,
.band-shell {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.offer-card:hover,
.highlight-card:hover,
.info-card:hover,
.price-card:hover,
.contact-card:hover,
.gallery-item:hover,
.band-shell:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 110px rgba(15, 23, 42, 0.18);
  border-color: rgba(15, 118, 110, 0.18);
}

.offer-media,
.gallery-item,
.hero-photo {
  position: relative;
}

.offer-media::after,
.gallery-item::after,
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(9, 18, 36, 0.12) 100%);
  opacity: 0;
  transition: opacity 0.24s ease;
  pointer-events: none;
}

.offer-card:hover .offer-media::after,
.gallery-item:hover::after,
.hero-photo:hover::before {
  opacity: 1;
}

.highlight-card {
  background:
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.08), transparent 28%),
    var(--surface);
}

.gallery-pullquote {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  padding: 20px 22px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(255, 255, 255, 0.7), rgba(255, 138, 101, 0.08));
}

.gallery-pullquote span {
  margin-bottom: 0;
}

.gallery-pullquote p {
  margin: 0;
  max-width: 65ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.gallery-item {
  transform: translateZ(0);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 36px 110px rgba(15, 23, 42, 0.18);
}

.gallery-item:nth-child(3n) {
  transform: translateY(10px);
}

.gallery-item:nth-child(4n) {
  transform: translateY(-6px);
}

.section-band {
  padding-top: 14px;
}

.band-shell {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 20px;
  align-items: center;
  padding: 26px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(255, 255, 255, 0.72), rgba(255, 138, 101, 0.08));
  overflow: hidden;
}

.band-copy h2 {
  max-width: 16ch;
}

.band-visual {
  position: relative;
  min-height: 240px;
  display: grid;
  place-items: center;
}

.band-arc {
  width: min(100%, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(from 180deg, rgba(15, 118, 110, 0.14), rgba(255, 138, 101, 0.18), rgba(15, 118, 110, 0.14));
  mask: radial-gradient(circle, transparent 55%, #000 56%);
  animation: spin 18s linear infinite;
}

.band-stat {
  position: absolute;
  inset: auto 10% 12% 10%;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.reveal {
  transform: translateY(24px) scale(0.985);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes ticker-move {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(18px, -10px, 0) scale(1.06); }
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1080px) {
  .ribbon-grid,
  .band-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .band-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .ribbon-grid {
    grid-template-columns: 1fr;
  }

  .float-card {
    min-width: 136px;
    padding: 12px 14px;
  }

  .float-card-b {
    top: 30%;
    right: 0;
  }

  .float-card-c {
    left: 2%;
    bottom: 4%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track,
  .float-card,
  .band-arc,
  .hero-grid::before,
  .hero-grid::after {
    animation: none !important;
  }
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .hero-grid,
  .pricing-layout,
  .contact-panel,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .hero-photo {
    min-height: 560px;
  }

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

@media (max-width: 880px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 78px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .hero {
    padding-top: 34px;
  }

  .section {
    padding: 68px 0;
  }

  .grid-2,
  .grid-3,
  .hero-meta,
  .gallery-item,
  .gallery-item.wide {
    grid-template-columns: 1fr;
    grid-column: span 12;
  }

  .gallery-item.tall {
    min-height: 300px;
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 20px, 1180px);
  }

  h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-photo,
  .hero-visual {
    min-height: 440px;
  }

  .hero-meta,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

:root {
  --bg: #f5f7fb;
  --bg-strong: #edf4fb;
  --surface: rgba(255, 255, 255, 0.74);
  --text: #0f172a;
  --muted: #566173;
  --line: rgba(15, 23, 42, 0.12);
  --accent: #0f766e;
  --accent-strong: #16a39a;
  --accent-soft: rgba(15, 118, 110, 0.12);
  --warm: #ff8a65;
  --shadow: 0 28px 80px rgba(15, 23, 42, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 32px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(22, 163, 152, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 138, 101, 0.14), transparent 22%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 45%, #eef4f8 100%);
  font-family: "Nunito", system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
  filter: blur(22px);
  opacity: 0.75;
}

body::before {
  width: 220px;
  height: 220px;
  top: 8%;
  right: -70px;
  background: rgba(22, 163, 152, 0.24);
  border-radius: 39% 61% 44% 56% / 52% 48% 52% 48%;
}

body::after {
  width: 260px;
  height: 260px;
  left: -100px;
  bottom: 6%;
  background: rgba(255, 138, 101, 0.18);
  border-radius: 45% 55% 40% 60% / 60% 43% 57% 40%;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: var(--container); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(245, 247, 251, 0.8);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  font-family: "Fredoka", Georgia, serif;
  font-size: 1.06rem;
  letter-spacing: 0.03em;
}

.brand span { font-size: 1.18rem; }
.brand small {
  color: var(--muted);
  font-family: "Nunito", system-ui, sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav { display: flex; align-items: center; gap: 22px; font-size: 0.96rem; color: var(--muted); }
.nav a { position: relative; font-weight: 700; transition: color 0.2s ease; }
.nav a:hover,
.nav a:focus-visible { color: var(--text); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav a:hover::after,
.nav a:focus-visible::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.menu-toggle:focus-visible,
.btn:focus-visible,
.tag:focus-visible,
.nav a:focus-visible,
.legal-link:focus-visible { outline: 2px solid rgba(15, 118, 110, 0.34); outline-offset: 3px; }

.menu-icon { width: 16px; height: 12px; position: relative; display: inline-block; }
.menu-icon::before,
.menu-icon::after,
.menu-icon span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.menu-icon::before { top: 0; }
.menu-icon span { top: 5px; }
.menu-icon::after { bottom: 0; }

.hero { padding: 46px 0 24px; }
.hero-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 28px; align-items: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; border-radius: 999px; background: currentColor; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: "Fredoka", Georgia, serif;
  font-weight: 500;
  line-height: 1.02;
}
h1 { font-size: clamp(3rem, 6vw, 6.2rem); letter-spacing: -0.04em; max-width: 10ch; font-weight: 500; }
.hero-copy p { max-width: 56ch; margin: 20px 0 0; font-size: 1.12rem; color: var(--muted); }

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-strong)); color: #fff; box-shadow: 0 18px 32px rgba(15, 118, 110, 0.24); }
.btn-secondary { background: rgba(255, 255, 255, 0.8); border-color: rgba(15, 23, 42, 0.1); color: var(--text); }

.hero-meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 14px; margin-top: 32px; }
.stat,
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.stat { padding: 18px; }
.stat strong { display: block; margin-bottom: 4px; font-size: 1.45rem; font-family: "Fredoka", Georgia, serif; }
.stat span { color: var(--muted); font-size: 0.94rem; overflow-wrap: anywhere; hyphens: auto; text-wrap: pretty; }

.hero-visual { position: relative; min-height: 640px; }
.hero-photo {
  position: relative;
  min-height: 640px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 36px 100px rgba(15, 23, 42, 0.28);
}
.hero-photo img,
.gallery-item img,
.offer-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9, 18, 36, 0.1) 0%, rgba(9, 18, 36, 0.56) 100%); }
.hero-overlay {
  position: absolute;
  inset: auto 22px 22px 22px;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(9, 18, 36, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}
.hero-overlay strong { font-size: 1.15rem; font-family: "Fredoka", Georgia, serif; }
.hero-overlay span { color: rgba(255, 255, 255, 0.82); }

.section { padding: 84px 0; }
.section-heading { max-width: 820px; margin-bottom: 28px; }
.section-heading p { margin: 18px 0 0; color: var(--muted); font-size: 1.06rem; }
.section-heading h2 { font-size: clamp(2rem, 4vw, 3.55rem); letter-spacing: -0.03em; }
.section-heading h2 { font-weight: 500; }

.grid-2,
.grid-3,
.info-grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.offer-card { display: grid; gap: 18px; padding: 22px; overflow: hidden; }
.offer-card h3 { font-size: 2rem; }
.offer-media { min-height: 260px; border-radius: 24px; overflow: hidden; }

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag,
.meta-chip { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; font-weight: 800; }
.tag { min-height: 34px; padding: 0 12px; background: var(--accent-soft); color: var(--accent); }

.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.feature-list li { display: flex; gap: 12px; color: var(--muted); }
.feature-list li::before { content: ""; flex: 0 0 auto; width: 10px; height: 10px; margin-top: 8px; border-radius: 50%; background: var(--warm); box-shadow: 0 0 0 4px rgba(255, 138, 101, 0.16); }
.feature-list strong { color: var(--text); }

.highlights { align-items: stretch; }
.highlight-card { padding: 22px; }
.highlight-card h3 { font-size: 1.5rem; }
.highlight-card p { margin: 14px 0 0; color: var(--muted); }
.highlight-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(255, 138, 101, 0.12));
  color: var(--text);
  font-family: "Fredoka", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.gallery-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 16px; }
.gallery-item { min-height: 220px; grid-column: span 4; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.gallery-item.wide { grid-column: span 8; }
.gallery-item.tall { grid-column: span 4; min-height: 456px; }
.gallery-caption { padding: 14px 16px 18px; background: rgba(255, 255, 255, 0.92); border-top: 1px solid rgba(15, 23, 42, 0.08); }
.gallery-caption strong { display: block; margin-bottom: 4px; }
.gallery-caption span,
.price-note,
.muted { color: var(--muted); }

.pricing-layout,
.contact-panel { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 20px; }
.price-card,
.contact-card,
.info-card,
.legal article { padding: 22px; }
.price-table { display: grid; gap: 12px; margin-top: 18px; }
.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.08);
}
.price-row strong { display: block; font-size: 1rem; }
.price-row span { color: var(--muted); font-size: 0.92rem; }
.price-row em { font-style: normal; font-weight: 800; font-size: 1.18rem; font-family: "Fredoka", Georgia, serif; white-space: nowrap; }

.info-card h3 { font-size: 1.6rem; }
.info-card p { margin: 14px 0 0; color: var(--muted); }
.map-card {
  padding: 16px;
  display: grid;
  gap: 14px;
}

.map-embed {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.84);
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: clamp(280px, 52vw, 460px);
}

.map-actions {
  margin-top: 2px;
}

.contact-links { display: grid; gap: 10px; margin-top: 18px; }
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  border: 1px solid rgba(15, 118, 110, 0.14);
  font-weight: 800;
}

.site-footer { padding: 30px 0 48px; color: var(--muted); }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
}
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; }

.legal { padding: 48px 0 96px; }
.legal article { border-radius: var(--radius-xl); }
.legal h1 { font-size: clamp(2.4rem, 4vw, 4rem); margin-bottom: 18px; }
.legal h2 { font-size: clamp(1.4rem, 2.2vw, 2rem); margin: 34px 0 12px; }
.legal p,
.legal li { color: var(--muted); }
.legal ul { margin: 0; padding-left: 18px; }
.legal-link { color: var(--accent); font-weight: 800; }

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

@media (max-width: 1080px) {
  .hero-grid,
  .pricing-layout,
  .contact-panel,
  .info-grid { grid-template-columns: 1fr; }
  .hero-visual,
  .hero-photo { min-height: 560px; }
  .grid-3,
  .grid-2,
  .hero-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 880px) {
  .menu-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 78px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .hero { padding-top: 34px; }
  .section { padding: 68px 0; }
  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall { grid-column: span 12; min-height: 300px; }
  .gallery-item.tall { grid-row: auto; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 20px, 1180px); }
  h1 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero-photo,
  .hero-visual { min-height: 440px; }
  .hero-meta,
  .grid-2,
  .grid-3 { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1fr; gap: 6px; }
  .footer-inner { flex-direction: column; }
}

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


/* ===================================================
   LANGUAGE SWITCHER
   =================================================== */
.lang-switcher {
  display: flex;
  gap: 2px;
  background: var(--line);
  border-radius: 20px;
  padding: 3px;
}

.lang-btn {
  background: transparent;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  color: var(--muted);
  transition: background 0.18s, color 0.18s;
  line-height: 1;
}

.lang-btn.active,
.lang-btn:focus-visible {
  background: var(--accent);
  color: #fff;
  outline: none;
}

.lang-btn:hover:not(.active) {
  background: var(--accent-soft);
  color: var(--accent);
}

/* ===================================================
   INTERACTIVE CAROUSEL
   =================================================== */
.photo-carousel.auto-slider-section {
  position: relative;
  margin-top: 10px;
  border-radius: 24px;
  padding: 20px 0 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.26));
  overflow: hidden;
}

.photo-carousel.auto-slider-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 16%, rgba(22, 163, 152, 0.14), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(255, 138, 101, 0.12), transparent 28%);
  pointer-events: none;
  z-index: 0;
}

.auto-slider-eyebrow {
  position: relative;
  z-index: 2;
  text-align: center;
  color: rgba(15, 23, 42, 0.7);
  font-weight: 500;
}

.auto-slider-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 10px;
  overflow: hidden;
  mask: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.auto-slider-track {
  display: flex;
  gap: 8px;
  width: max-content;
  padding: 14px 0 20px;
  animation: gallery-scroll 32s linear infinite;
  will-change: transform;
}

.auto-slider-item {
  position: relative;
  flex: 0 0 auto;
  width: clamp(180px, 21vw, 310px);
  height: clamp(180px, 21vw, 310px);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}

.auto-slider-item:hover,
.auto-slider-item:focus-visible {
  transform: scale(1.05);
  filter: brightness(1.08);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.52);
}

.auto-slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auto-slider-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.62));
  pointer-events: none;
}

.carousel-caption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  color: rgba(248, 250, 252, 0.96);
  font-size: 0.82rem;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

#gallery .section-heading h2 {
  font-weight: 500;
}

@keyframes gallery-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .photo-carousel.auto-slider-section {
    border-radius: 18px;
    padding: 16px 0 12px;
  }

  .auto-slider-track {
    gap: 8px;
    padding: 10px 0 14px;
    animation-duration: 24s;
  }

  .auto-slider-item {
    width: clamp(144px, 45vw, 220px);
    height: clamp(144px, 45vw, 220px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .auto-slider-item {
    transition: none;
  }
}

/* ===================================================
   LIGHTBOX
   =================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 15, 30, 0.93);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: lb-fadein 0.22s ease;
}

.lightbox[hidden] {
  display: none;
}

@keyframes lb-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lb-figure {
  position: relative;
  max-width: min(90vw, 1100px);
  max-height: 90vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.lb-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}

.lb-caption {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  text-align: center;
  max-width: 60ch;
}

.lb-close,
.lb-prev,
.lb-next {
  position: fixed;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  transition: background 0.18s;
  backdrop-filter: blur(4px);
}

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  background: rgba(255, 255, 255, 0.24);
}

.lb-close {
  top: 20px;
  right: 20px;
}

.lb-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
}

.lb-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
}

.gallery-item img,
.hero-photo img,
.offer-media img,
[data-carousel-slide] img {
  cursor: zoom-in;
}

/* ===================================================
   PREMIUM V2 OVERRIDES
   =================================================== */

:root {
  --brand-navy: #1e3a8a;
  --brand-sky: #3b82f6;
  --brand-gold: #ca8a04;
}

body {
  background:
    radial-gradient(circle at 12% 4%, rgba(59, 130, 246, 0.16), transparent 34%),
    radial-gradient(circle at 88% 0%, rgba(202, 138, 4, 0.12), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #f2f7ff 40%, #eef3fb 100%);
}

.site-header {
  top: 10px;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.header-inner {
  min-height: 72px;
  border: 1px solid rgba(30, 58, 138, 0.14);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 50px rgba(20, 40, 85, 0.14);
  backdrop-filter: blur(14px);
}

.brand {
  color: var(--brand-navy);
}

.brand small {
  color: #3e5da8;
}

.nav {
  color: #2f4f96;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--brand-navy);
}

.btn-primary {
  background: linear-gradient(125deg, var(--brand-navy), var(--brand-sky));
  box-shadow: 0 20px 34px rgba(30, 58, 138, 0.24);
}

.btn-secondary {
  border-color: rgba(30, 58, 138, 0.2);
}

.quick-book {
  margin-top: 20px;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(30, 58, 138, 0.14);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(235, 244, 255, 0.84));
  box-shadow: 0 24px 70px rgba(30, 58, 138, 0.14);
}

.quick-book .eyebrow {
  margin-bottom: 10px;
}

.quick-book h3 {
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  line-height: 1.1;
  color: var(--brand-navy);
}

.quick-book-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.quick-item {
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(30, 58, 138, 0.14);
  background: rgba(255, 255, 255, 0.74);
}

.quick-item span {
  display: block;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4164b2;
}

.quick-item strong {
  display: block;
  margin-top: 6px;
  font-family: "Fredoka", Georgia, serif;
  font-size: 0.96rem;
  color: #122c72;
  word-break: break-word;
}

.quick-actions {
  margin-top: 14px;
}

.hero-meta .stat {
  border-color: rgba(30, 58, 138, 0.13);
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  display: none;
  gap: 10px;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid rgba(30, 58, 138, 0.14);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(20, 40, 85, 0.2);
  backdrop-filter: blur(12px);
}

.mobile-cta-link {
  flex: 1;
  min-height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  cursor: pointer;
  border: 1px solid rgba(30, 58, 138, 0.2);
  background: rgba(255, 255, 255, 0.86);
  color: var(--brand-navy);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-cta-link:hover,
.mobile-cta-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(20, 40, 85, 0.14);
}

.mobile-cta-link-primary {
  background: linear-gradient(125deg, var(--brand-navy), var(--brand-sky));
  color: #fff;
  border-color: transparent;
}

@media (max-width: 980px) {
  .quick-book-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 8px;
  }

  .header-inner {
    border-radius: 18px;
    padding: 10px;
  }

  .quick-book-grid {
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: 86px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-cta-link,
  .btn,
  .card,
  .gallery-item {
    transition: none;
  }
}
