:root {
  --ocean: #4AADAD;
  --ocean-dark: #287f7f;
  --driftwood: #B09A7A;
  --shell: #FDFAF5;
  --sand: #F0E4C8;
  --seafoam: #C4E8D8;
  --charcoal: #2C2C2C;
  --navy: #173153;
  --white: #ffffff;
  --muted: #647878;
  --line: rgba(74, 173, 173, 0.18);
  --shadow: 0 24px 70px rgba(23, 49, 83, 0.12);
  --shadow-soft: 0 14px 36px rgba(23, 49, 83, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
  --header-h: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 8% 0%, rgba(196, 232, 216, 0.75), transparent 30rem),
    radial-gradient(circle at 92% 10%, rgba(240, 228, 200, 0.8), transparent 26rem),
    linear-gradient(180deg, var(--shell), #fff 50%, var(--shell));
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 9999;
  background: var(--navy);
  color: white;
  padding: 0.8rem 1rem;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(253, 250, 245, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(74, 173, 173, 0.16);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  background: rgba(253, 250, 245, 0.97);
  box-shadow: 0 12px 34px rgba(23, 49, 83, 0.08);
}

.nav-shell {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 285px;
  max-height: 58px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-links a {
  color: var(--navy);
  font-weight: 800;
  font-size: 0.93rem;
  padding: 0.68rem 0.85rem;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(74, 173, 173, 0.13);
  color: var(--ocean-dark);
  transform: translateY(-1px);
}

.nav-links .nav-cta {
  background: var(--ocean);
  color: white;
  box-shadow: 0 14px 28px rgba(74, 173, 173, 0.22);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta.active {
  background: var(--ocean-dark);
  color: white;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(74, 173, 173, 0.14);
  position: relative;
  z-index: 1200;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--navy);
  margin: 5px auto;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

main {
  min-height: 65vh;
}

.section {
  padding: clamp(4.5rem, 8vw, 7.25rem) 1rem;
}

.section-tight {
  padding: clamp(3rem, 6vw, 5rem) 1rem;
}

.container {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.narrow {
  width: min(870px, 100%);
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - var(--header-h));
  padding: clamp(4.5rem, 8vw, 7rem) 1rem;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(253, 250, 245, 0.98), rgba(253, 250, 245, 0.88) 48%, rgba(253, 250, 245, 0.65)),
    radial-gradient(circle at 75% 20%, rgba(74, 173, 173, 0.22), transparent 25rem),
    radial-gradient(circle at 80% 82%, rgba(176, 154, 122, 0.18), transparent 21rem);
}

.hero::after {
  content: "";
  position: absolute;
  right: -12rem;
  bottom: -10rem;
  width: min(760px, 62vw);
  aspect-ratio: 1.5 / 1;
  background:
    repeating-radial-gradient(ellipse at center, rgba(74, 173, 173, 0.18) 0 2px, transparent 2px 26px);
  border-radius: 50% 50% 0 0;
  opacity: 0.65;
  animation: floatSoft 8s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: clamp(2rem, 7vw, 5rem);
  align-items: center;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.78rem;
  border-radius: 999px;
  background: rgba(74, 173, 173, 0.13);
  color: var(--ocean-dark);
  border: 1px solid rgba(74, 173, 173, 0.18);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.045em;
  color: var(--navy);
}

h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  max-width: 11ch;
  margin-top: 1.1rem;
}

.hero-copy p,
.page-hero p {
  color: #526969;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  max-width: 720px;
  margin: 1.3rem 0 0;
}

.logo-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(74, 173, 173, 0.16);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: clamp(1rem, 2.2vw, 1.6rem);
  transform: rotate(1.5deg);
  animation: floatSoft 7s ease-in-out infinite;
}

.logo-card img {
  width: 100%;
  border-radius: 22px;
  margin: 0 auto;
}

.logo-card-note {
  margin-top: 1rem;
  background: var(--shell);
  border: 1px solid rgba(74, 173, 173, 0.14);
  border-radius: 22px;
  padding: 1rem;
}

.logo-card-note strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
}

.logo-card-note span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
  margin-top: 0.1rem;
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.12rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--ocean);
  color: white;
  box-shadow: 0 16px 32px rgba(74, 173, 173, 0.25);
}

.btn-primary:hover {
  background: var(--ocean-dark);
}

.btn-secondary {
  background: white;
  color: var(--ocean-dark);
  border-color: rgba(74, 173, 173, 0.24);
  box-shadow: var(--shadow-soft);
}

.btn-light {
  background: var(--shell);
  color: var(--navy);
  border-color: rgba(23, 49, 83, 0.14);
}

.page-hero {
  padding: clamp(5rem, 8vw, 7rem) 1rem clamp(3.5rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 82% 20%, rgba(240, 228, 200, 0.8), transparent 20rem),
    linear-gradient(135deg, rgba(196, 232, 216, 0.85), rgba(253, 250, 245, 0.96));
  border-bottom: 1px solid rgba(74, 173, 173, 0.13);
}

.page-hero h1 {
  max-width: 13ch;
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.section-heading.center {
  text-align: center;
  justify-items: center;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4.3vw, 4rem);
  max-width: 850px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  max-width: 780px;
  font-size: 1.08rem;
}

.trust-bar {
  position: relative;
  z-index: 3;
  margin-top: -2.4rem;
}

.trust-grid {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(74, 173, 173, 0.16);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.trust-item {
  min-height: 92px;
  padding: 1rem;
  display: grid;
  align-content: center;
  gap: 0.3rem;
  border-right: 1px solid rgba(74, 173, 173, 0.12);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item span {
  font-size: 1.35rem;
}

.trust-item strong {
  color: var(--navy);
  line-height: 1.25;
  font-size: 0.92rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(74, 173, 173, 0.14);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 2.2vw, 1.75rem);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(74, 173, 173, 0.3);
}

.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(196, 232, 216, 0.82);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}

.card p,
.card li {
  color: var(--muted);
}

.card p {
  margin: 0;
}

.soft-panel {
  background: linear-gradient(135deg, rgba(196, 232, 216, 0.42), rgba(240, 228, 200, 0.48));
  border-block: 1px solid rgba(74, 173, 173, 0.11);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(74, 173, 173, 0.13);
  border-radius: 18px;
  padding: 0.9rem 1rem;
}

.check-list li::before {
  content: "✓";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--ocean);
  color: white;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
}

.brand-moment {
  min-height: 390px;
  padding: 5rem 1rem;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(23, 49, 83, 0.08), rgba(23, 49, 83, 0.72)),
    linear-gradient(145deg, #c4e8d8 0 28%, #f0e4c8 28% 38%, #4aAdad 38% 68%, #173153 68%);
}

.brand-moment::before {
  content: "";
  position: absolute;
  inset: 18% -14% auto;
  height: 140px;
  background: repeating-linear-gradient(175deg, rgba(255, 255, 255, 0.3) 0 14px, transparent 14px 28px);
  border-radius: 50%;
  opacity: 0.55;
  animation: waveMove 8s ease-in-out infinite;
}

.brand-moment blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 860px;
  font-size: clamp(1.8rem, 4vw, 3.35rem);
  line-height: 1.2;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.cta-panel {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.25), transparent 18rem),
    linear-gradient(135deg, var(--ocean), var(--ocean-dark));
  color: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: clamp(2rem, 5vw, 4rem);
}

.cta-panel h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.86);
  max-width: 760px;
}

.cta-panel .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: white;
  border-color: rgba(255, 255, 255, 0.22);
}

.cta-panel .btn-primary {
  background: white;
  color: var(--ocean-dark);
}

.about-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(74, 173, 173, 0.14);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 4vw, 3rem);
}

.about-card h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin: 0.8rem 0 1rem;
}

.about-card p {
  color: var(--muted);
}

.founder-trust {
  display: grid;
  gap: 1rem;
}

.founder-logo-box {
  background: rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(74, 173, 173, 0.14);
  box-shadow: var(--shadow-soft);
  padding: 1.4rem;
}

.founder-logo-box img {
  width: min(340px, 100%);
  margin: 0 auto;
  border-radius: 24px;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.credential {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(74, 173, 173, 0.13);
  border-radius: 18px;
  padding: 1rem;
  font-weight: 900;
  color: var(--navy);
  box-shadow: var(--shadow-soft);
}

.service-stack {
  display: grid;
  gap: 1.2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(74, 173, 173, 0.14);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.4rem, 4vw, 2.4rem);
  display: grid;
  gap: 1rem;
}

.service-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.info-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(74, 173, 173, 0.14);
}

.info-row strong {
  color: var(--ocean-dark);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.info-row p {
  margin: 0;
  color: var(--muted);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.pricing-table th,
.pricing-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(74, 173, 173, 0.13);
}

.pricing-table th {
  background: var(--ocean);
  color: white;
}

.pricing-table tr:last-child td {
  border-bottom: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}

.step {
  background: white;
  border: 1px solid rgba(74, 173, 173, 0.13);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.4rem;
  font-weight: 800;
  color: var(--navy);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--ocean);
  color: white;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 1rem;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  align-items: start;
}

.booking-widget {
  background: white;
  border: 1px solid rgba(74, 173, 173, 0.14);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 680px;
}

.booking-fallback {
  min-height: 680px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(74, 173, 173, 0.16), transparent 18rem),
    linear-gradient(135deg, white, var(--shell));
}

.booking-fallback img {
  width: min(330px, 80%);
  margin: 0 auto 1.2rem;
}

.booking-fallback h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.booking-fallback p {
  color: var(--muted);
  max-width: 520px;
  margin-inline: auto;
}

.form-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(74, 173, 173, 0.14);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.3rem, 3vw, 2rem);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-weight: 900;
  color: var(--navy);
  font-size: 0.92rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(23, 49, 83, 0.16);
  border-radius: 14px;
  background: white;
  color: var(--charcoal);
  padding: 0.8rem 0.9rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 4px rgba(74, 173, 173, 0.14);
}

.form-status {
  margin: 0;
  color: var(--ocean-dark);
  font-weight: 900;
}

.faq-group-title {
  margin: 2.5rem 0 1rem;
  color: var(--ocean-dark);
  font-size: 1.35rem;
}

.accordion {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background: white;
  border: 1px solid rgba(74, 173, 173, 0.13);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  text-align: left;
  font-weight: 900;
}

.faq-question span:last-child {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(196, 232, 216, 0.85);
  color: var(--ocean-dark);
  transition: transform 0.2s ease;
}

.faq-item.open .faq-question span:last-child {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
}

.policy-content {
  background: white;
  border: 1px solid rgba(74, 173, 173, 0.13);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.3rem, 4vw, 2.4rem);
}

.policy-content h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.site-footer {
  background:
    radial-gradient(circle at 85% 20%, rgba(74, 173, 173, 0.24), transparent 26rem),
    linear-gradient(135deg, #173153, #10243d);
  color: white;
  position: relative;
}

.footer-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0 3rem;
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.9fr 1fr;
  gap: 2rem;
}

.footer-brand img {
  width: min(310px, 100%);
  border-radius: 18px;
  margin-bottom: 1rem;
}

.footer-inner h3 {
  color: white;
  margin-bottom: 0.9rem;
}

.footer-inner a,
.footer-inner p {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  margin: 0.3rem 0;
}

.footer-inner a:hover {
  color: white;
}

.trust-note {
  font-weight: 900;
}

.footer-bottom {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1500;
  width: min(980px, calc(100% - 2rem));
  margin: 0 auto;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(74, 173, 173, 0.18);
  border-radius: 22px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.cookie-banner.show {
  display: grid;
  animation: slideUp 0.32s ease both;
}

.cookie-banner p {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--ocean);
  color: white;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatSoft {
  0%, 100% {
    transform: translateY(0) rotate(1.5deg);
  }

  50% {
    transform: translateY(-13px) rotate(-0.5deg);
  }
}

@keyframes waveMove {
  0%, 100% {
    transform: translateX(0) rotate(-2deg);
  }

  50% {
    transform: translateX(28px) rotate(2deg);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1030px) {
  .menu-toggle {
    display: block;
  }

  .brand img {
    width: 240px;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    min-height: 100vh;
    background:
      radial-gradient(circle at top right, rgba(74, 173, 173, 0.18), transparent 22rem),
      var(--shell);
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 0.8rem;
    transform: translateX(100%);
    transition: transform 0.28s ease;
  }

  body.nav-open .nav-links {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: clamp(1.35rem, 5vw, 2.2rem);
  }

  .nav-links .nav-cta {
    font-size: 1.2rem;
    margin-top: 0.5rem;
  }

  .hero-inner,
  .split,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .logo-card {
    max-width: 540px;
  }

  .trust-grid,
  .card-grid,
  .card-grid.two,
  .card-grid.four,
  .credentials-grid,
  .steps,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --header-h: 70px;
  }

  .nav-shell {
    width: min(100% - 1rem, var(--max));
  }

  .brand img {
    width: 198px;
  }

  .section,
  .section-tight,
  .page-hero,
  .hero {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .hero {
    padding-top: 3.5rem;
    padding-bottom: 4.5rem;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.4rem);
  }

  .actions {
    align-items: stretch;
  }

  .actions .btn {
    width: 100%;
  }

  .trust-grid,
  .card-grid,
  .card-grid.two,
  .card-grid.four,
  .credentials-grid,
  .steps,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid rgba(74, 173, 173, 0.12);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .pricing-table {
    display: block;
    overflow-x: auto;
  }

  .booking-widget,
  .booking-fallback {
    min-height: 560px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions .btn {
    flex: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}