:root {
  --ink: #10243d;
  --muted: #5f6f80;
  --pool: #027c9d;
  --pool-dark: #07516c;
  --sun: #ffd166;
  --coral: #ef6f61;
  --course-red: #d92d2d;
  --mint: #c9f2df;
  --surface: #ffffff;
  --soft: #f4fbfb;
  --ice: #eaf7ff;
  --aqua-band: #e0f6f2;
  --warm-band: #fff7df;
  --mint-band: #ecfbf3;
  --line: rgba(16, 36, 61, 0.12);
  --shadow: 0 14px 34px rgba(16, 36, 61, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: #ffffff;
  background: linear-gradient(180deg, rgba(8, 29, 48, 0.78), rgba(8, 29, 48, 0));
}

.legal-header {
  position: static;
  color: #ffffff;
  background: var(--pool-dark);
}

.brand,
nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 800;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(8, 29, 48, 0.18);
}

nav {
  font-size: 0.95rem;
  font-weight: 700;
}

nav a {
  opacity: 0.9;
}

nav a:hover {
  opacity: 1;
}

.nav-cta {
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--pool-dark);
}

.floating-whatsapp {
  position: fixed;
  right: clamp(16px, 3vw, 30px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 18px 10px 10px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  background: #25d366;
  color: #073d22;
  box-shadow: 0 18px 42px rgba(7, 61, 34, 0.28);
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  background: #2ee272;
  box-shadow: 0 22px 48px rgba(7, 61, 34, 0.34);
}

.floating-whatsapp:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.34);
  outline-offset: 4px;
}

.floating-whatsapp-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: #128c4a;
  font-size: 1.15rem;
  line-height: 1;
}

.floating-whatsapp-text {
  white-space: nowrap;
}

.hero {
  position: relative;
  display: grid;
  min-height: 86svh;
  overflow: hidden;
  color: #ffffff;
}

.hero-image,
.hero-shade,
.hero-content {
  grid-area: 1 / 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 86svh;
  object-fit: cover;
  object-position: 58% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(6, 29, 47, 0.86) 0%, rgba(6, 29, 47, 0.62) 40%, rgba(6, 29, 47, 0.08) 78%),
    linear-gradient(180deg, rgba(6, 29, 47, 0.2), rgba(6, 29, 47, 0.38));
}

.hero-content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(760px, calc(100% - 36px));
  padding: 116px 0 72px clamp(18px, 7vw, 96px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.35rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
}

h3 {
  font-size: 1.22rem;
}

.hero-copy {
  max-width: 610px;
  margin: 22px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.15;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.primary {
  background: var(--sun);
  color: #18324a;
  box-shadow: 0 14px 34px rgba(255, 209, 102, 0.32);
}

.secondary {
  border-color: rgba(255, 255, 255, 0.52);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.whatsapp-button {
  border-color: rgba(37, 211, 102, 0.72);
  background: #25d366;
  color: #073d22;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.26);
}

.whatsapp-button:hover {
  background: #2ee272;
}

.whatsapp-button:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.34);
  outline-offset: 3px;
}

.dark {
  background: var(--ink);
  color: #ffffff;
  box-shadow: none;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 72px) 0;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 360px);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
  background: var(--soft);
}

.section-copy p,
.section-heading p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.course-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 12px 28px rgba(16, 36, 61, 0.08);
}

.course-panel > div {
  padding: 20px;
  background: var(--surface);
}

.panel-label {
  display: block;
  margin-bottom: 6px;
  color: var(--pool);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.course-panel strong {
  font-size: 1.25rem;
}

.course-panel small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.price-row {
  border-left: 5px solid var(--sun);
}

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

.course-sidebar {
  display: grid;
  gap: 14px;
}

.photo-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  width: 100%;
  max-width: none;
  padding: clamp(40px, 6vw, 68px) clamp(18px, 4vw, 56px);
  background: #ffffff;
}

.photo-copy {
  justify-self: end;
  width: min(430px, 100%);
}

.photo-copy .eyebrow {
  color: var(--coral);
}

.photo-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: repeat(2, 190px);
  gap: 12px;
  width: min(650px, 100%);
}

.photo-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ice);
  box-shadow: 0 12px 28px rgba(16, 36, 61, 0.08);
}

.photo-card-large {
  grid-row: span 2;
}

.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card-large img {
  object-position: center 34%;
}

.photo-card figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--pool-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.calendar-section {
  padding: clamp(34px, 5vw, 58px) 0;
  background: var(--aqua-band);
}

.calendar-inner {
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.calendar-copy {
  max-width: 640px;
}

.calendar-copy .eyebrow {
  color: var(--pool-dark);
}

.calendar-copy h2 {
  color: var(--pool-dark);
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
}

.calendar-copy p {
  color: #315d70;
  font-size: 1.08rem;
}

.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  margin: 0 0 8px;
  color: var(--pool-dark);
  font-size: 0.8rem;
  font-weight: 850;
}

.calendar-toolbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.calendar-toolbar i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--course-red);
}

.calendar-widget {
  justify-self: start;
  width: min(340px, 100%);
  padding: 16px;
  border: 1px solid rgba(7, 81, 108, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(7, 81, 108, 0.1);
}

.single-calendar {
  width: 100%;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
}

.calendar-controls {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 32px;
  gap: 8px;
  align-items: center;
  padding: 8px;
  border-bottom: 1px solid var(--line);
  background: #f9fdfd;
}

.calendar-controls h3 {
  text-align: center;
  color: var(--pool-dark);
  font-size: 1rem;
}

.calendar-controls button {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  color: var(--pool-dark);
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}

.calendar-controls button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.month-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
  padding: 10px;
}

.weekday,
.day {
  display: grid;
  min-width: 0;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  font-size: 0.75rem;
}

.weekday {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 900;
  text-transform: uppercase;
}

.day {
  color: var(--ink);
  background: #f7fbfb;
  font-weight: 750;
}

.blank {
  visibility: hidden;
}

.course-day {
  background: var(--course-red);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(217, 45, 45, 0.2);
}

.dates-note {
  margin: 9px 0 0;
  color: var(--pool-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.benefits {
  width: 100%;
  max-width: none;
  padding-top: clamp(42px, 6vw, 70px);
  padding-bottom: clamp(42px, 6vw, 70px);
  padding-right: clamp(18px, 4vw, 56px);
  padding-left: clamp(18px, 4vw, 56px);
  background: var(--warm-band);
}

.section-heading {
  width: min(1120px, 100%);
  margin: 0 auto 34px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.benefit-card {
  min-height: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.benefit-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--pool-dark);
  font-size: 1.4rem;
  font-weight: 900;
}

.flow {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 5vw, 70px);
  background: #ffffff;
}

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

.steps li {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.steps span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: #ffffff;
  font-weight: 900;
}

.steps p {
  margin: 8px 0 0;
  color: var(--muted);
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(44px, 6vw, 76px) clamp(18px, 4vw, 36px);
  background: var(--mint-band);
}

.booking-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
}

.booking-whatsapp {
  margin-top: 12px;
}

.booking-form {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(16, 36, 61, 0.09);
}

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

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--pool-dark);
  font-size: 0.92rem;
  font-weight: 850;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: #f9fdfd;
  font: inherit;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--pool);
  outline: 3px solid rgba(2, 124, 157, 0.14);
}

.full-field {
  grid-column: 1 / -1;
}

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

.consent-field {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px !important;
  align-items: start;
  margin: 18px 0;
  color: var(--muted) !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
}

.consent-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  padding: 0;
}

.consent-field a {
  color: var(--pool-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.seo-section,
.faq-section {
  width: 100%;
  max-width: none;
  padding: clamp(42px, 6vw, 70px) clamp(18px, 4vw, 56px);
}

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

.faq-section {
  background: #ffffff;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.seo-grid article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.seo-grid article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.seo-grid h3,
.faq-list summary {
  color: var(--pool-dark);
}

.seo-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.local-area {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: min(1120px, 100%);
  margin: 18px auto 0;
}

.local-area span {
  padding: 7px 11px;
  border: 1px solid rgba(7, 81, 108, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--pool-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 10px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.faq-list details {
  padding: 16px 18px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(34px, 5vw, 58px) clamp(18px, 7vw, 96px);
  background: var(--pool-dark);
  color: #ffffff;
}

.cta-band .eyebrow {
  color: var(--sun);
}

.cta-band h2 {
  max-width: 850px;
  font-size: clamp(1.7rem, 3.4vw, 3rem);
}

.imprint {
  padding-top: clamp(42px, 6vw, 72px);
  padding-bottom: clamp(42px, 6vw, 72px);
}

.legal-page {
  min-height: 62svh;
  background: var(--soft);
}

.legal-page h1 {
  max-width: 900px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.imprint h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.imprint address {
  margin-top: 18px;
  color: var(--muted);
  font-style: normal;
  font-size: 1.08rem;
}

.imprint strong {
  color: var(--ink);
}

.legal-section {
  padding-top: clamp(42px, 6vw, 72px);
}

.legal-section h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.legal-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.legal-grid h3 {
  color: var(--pool-dark);
  font-size: 1.08rem;
}

.legal-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.blog-page {
  background: var(--soft);
}

.blog-hero {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0 clamp(28px, 5vw, 48px);
}

.blog-hero h1 {
  max-width: 920px;
  color: var(--ink);
  font-size: clamp(2.3rem, 5vw, 4.8rem);
}

.blog-hero > p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.12rem;
}

.tip-dice {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  max-width: 720px;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.dice-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  border: 0;
  border-radius: 8px;
  padding: 10px 18px 10px 10px;
  background: var(--sun);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.dice-cube {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  width: 42px;
  height: 42px;
  padding: 7px;
  border: 2px solid rgba(16, 36, 61, 0.16);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: inset 0 -4px 0 rgba(16, 36, 61, 0.08), 0 8px 16px rgba(16, 36, 61, 0.12);
}

.dice-cube i {
  width: 7px;
  height: 7px;
  place-self: center;
  border-radius: 50%;
  background: var(--pool-dark);
}

.dice-cube i:nth-child(1) {
  grid-area: 1 / 1;
}

.dice-cube i:nth-child(2) {
  grid-area: 1 / 3;
}

.dice-cube i:nth-child(3) {
  grid-area: 2 / 2;
}

.dice-cube i:nth-child(4) {
  grid-area: 3 / 1;
}

.dice-cube i:nth-child(5) {
  grid-area: 3 / 3;
}

.dice-button.is-rolling .dice-cube {
  animation: dice-roll 520ms cubic-bezier(0.22, 0.8, 0.3, 1);
}

@keyframes dice-roll {
  0% {
    transform: rotate(0deg) scale(1);
  }

  35% {
    transform: rotate(120deg) scale(1.12);
  }

  70% {
    transform: rotate(260deg) scale(0.96);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

.tip-dice p {
  flex: 1 1 260px;
  margin: 0;
  color: var(--pool-dark);
  font-weight: 800;
}

.blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding-bottom: clamp(56px, 8vw, 96px);
}

.blog-card {
  display: none;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.blog-card.current-tip {
  display: block;
  max-width: 720px;
  border-color: var(--course-red);
  box-shadow: 0 18px 44px rgba(217, 45, 45, 0.16);
  transform: translateY(-3px);
}

.blog-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--pool);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h2 {
  font-size: 1.28rem;
}

.blog-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--muted);
  background: #ffffff;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--pool-dark);
  font-weight: 800;
}

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

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    gap: 12px;
  }

  nav {
    gap: 10px;
    font-size: 0.85rem;
  }

  nav a:not(.nav-cta) {
    display: none;
  }

  .brand span:last-child {
    max-width: 150px;
    line-height: 1.15;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 54px;
    padding: 8px 14px 8px 8px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-image {
    min-height: 88svh;
    object-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 29, 47, 0.9), rgba(6, 29, 47, 0.54)),
      linear-gradient(180deg, rgba(6, 29, 47, 0.2), rgba(6, 29, 47, 0.5));
  }

  .hero-content {
    width: min(620px, calc(100% - 32px));
    padding: 108px 0 52px 16px;
  }

  .intro-section,
  .calendar-inner,
  .photo-section,
  .flow,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .photo-copy {
    justify-self: start;
    width: min(680px, 100%);
  }

  .photo-grid {
    width: 100%;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .seo-grid {
    grid-template-columns: 1fr;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 68px;
    padding: 12px 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 8px 12px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 52px;
    padding: 7px 12px 7px 7px;
    font-size: 0.92rem;
  }

  .floating-whatsapp-icon {
    width: 36px;
    height: 36px;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-left: 14px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .photo-card,
  .photo-card-large {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .tip-dice {
    align-items: flex-start;
    flex-direction: column;
  }

  .steps li {
    grid-template-columns: 1fr;
  }

  .calendar-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .calendar-controls {
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    gap: 6px;
    padding: 8px;
  }

  .calendar-controls h3 {
    font-size: 0.95rem;
  }

  .calendar-controls button {
    width: 30px;
    height: 30px;
  }

  .month-grid {
    gap: 4px;
    padding: 9px;
  }

  .weekday,
  .day {
    font-size: 0.72rem;
  }
}
