:root {
  --navy: #031f33;
  --navy2: #082f49;
  --teal: #0795a9;
  --aqua: #3ed3d0;
  --sand: #ead8b0;
  --cream: #f7f5ef;
  --ink: #102635;
  --muted: #607482;
  --line: #dce4e4;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
body,
button,
input,
select {
  font-family: Arial, Helvetica, sans-serif;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}
.site-header {
  height: 90px;
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  padding: 0 3vw;
  background: #fffffff5;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10, 65, 82, 0.1);
}
.brand {
  width: 260px;
  height: 76px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 27px;
}
.nav a {
  font-size: 14px;
  font-weight: 700;
}
.nav a:hover {
  color: var(--teal);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 30px;
}
.lang,
.menu-button {
  border: 0;
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}
.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 27px;
  align-items: center;
  justify-content: center;
  background: var(--aqua);
  color: var(--navy);
  font-weight: 800;
  border: 0;
  border-radius: 2px;
  transition: 0.2s;
  cursor: pointer;
}
.button:hover {
  transform: translateY(-2px);
  background: #75e2de;
}
.button-small {
  min-height: 44px;
  padding: 0 21px;
}
.menu-button {
  display: none;
}
.hero {
  position: relative;
  min-height: 820px;
  margin-top: 90px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image {
  object-position: center 55%;
}
.hero-shade {
  background:
    linear-gradient(90deg, #021627e6, #02162785 46%, #02162714 80%),
    linear-gradient(0deg, rgba(2, 22, 39, 0.6), transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 120px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
}
.eyebrow.light {
  color: var(--aqua);
}
h1,
h2,
h3 {
  font-family:
    Georgia,
    Times New Roman,
    serif;
}
h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(62px, 7.2vw, 108px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  font-weight: 500;
}
.hero-copy {
  max-width: 670px;
  font-size: 20px;
  line-height: 1.6;
  color: #ffffffe0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 34px;
}
.text-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 1px solid;
}
.light-link {
  margin: 0;
  color: #fff;
}
.hero-card {
  position: absolute;
  right: 5vw;
  bottom: 0;
  z-index: 3;
  width: 290px;
  padding: 28px 30px;
  background: var(--sand);
  color: var(--navy);
}
.hero-card span,
.hero-card small {
  display: block;
  font-size: 12px;
}
.hero-card strong {
  display: block;
  margin: 5px 0 8px;
  font-family: Georgia, serif;
  font-size: 28px;
}
.trust {
  background: var(--navy);
  color: #fff;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 105px;
}
.trust-grid > div {
  display: flex;
  gap: 16px;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px;
}
.trust-grid > div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.trust-grid b {
  color: var(--aqua);
  font-size: 12px;
  letter-spacing: 0.1em;
}
.trust-grid span {
  font-size: 13px;
  line-height: 1.4;
}
.section {
  padding: 115px 0;
}
.section-heading {
  margin-bottom: 50px;
}
.section-heading h2 {
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1;
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.035em;
}
.split-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 80px;
  align-items: end;
}
.split-heading > p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}
.centered {
  text-align: center;
  color: #fff;
}
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.experience-card {
  background: #fff;
}
.card-image {
  height: 355px;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.experience-card:hover img {
  transform: scale(1.035);
}
.card-body {
  padding: 34px;
}
.card-body > span,
.mini-card span,
.route-card span,
.include-grid span,
.why-grid span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--teal);
}
.card-body h3,
.mini-card h3,
.route-card h3 {
  font-size: 34px;
  margin: 12px 0;
}
.card-body p,
.mini-card p {
  color: var(--muted);
  line-height: 1.65;
}
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 25px;
}
.price-row small {
  color: var(--muted);
  line-height: 1.5;
}
.price-row b {
  display: block;
  font-family: Georgia, serif;
  font-size: 26px;
  margin-top: 5px;
}
.mini-card {
  min-height: 285px;
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.mini-card img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.mini-card > div {
  position: relative;
  z-index: 2;
  padding: 38px;
  max-width: 410px;
}
.mini-card p {
  color: #ffffffc2;
}
.mini-card a {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.event-card {
  background: linear-gradient(135deg, #0b8596, var(--navy2));
}
.route-section {
  background: var(--navy);
}
.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.route-card {
  height: 490px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.route-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #011422eb, #01142200 65%);
}
.route-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.route-card:hover img {
  transform: scale(1.04);
}
.route-card div {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 25px;
}
.route-card h3 {
  margin: 8px 0;
  font-size: 32px;
}
.route-card p {
  margin: 0;
  color: #fffc;
  line-height: 1.55;
}
.route-note {
  max-width: 850px;
  text-align: center;
  margin: 32px auto 0;
  color: #ffffff9e;
  font-size: 13px;
}
.vessel {
  background: #fff;
}
.vessel-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: center;
}
.vessel-collage {
  position: relative;
}
.vessel-main {
  width: 100%;
  height: 640px;
  object-fit: cover;
}
.vessel-badge {
  position: absolute;
  right: -34px;
  bottom: 50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.vessel-badge b {
  font:
    58px/1 Georgia,
    serif;
}
.vessel-badge span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
}
.vessel-copy h2 {
  font-size: 78px;
  margin: 0;
}
.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}
.vessel-copy ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}
.vessel-copy li {
  display: flex;
  gap: 13px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.vessel-copy li span {
  color: var(--teal);
  font-weight: 900;
}
.dark-button,
.calculator-section {
  background: var(--navy);
  color: #fff;
}
.calculator-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}
.calculator-intro h2 {
  font-size: 68px;
  line-height: 1;
  margin: 0;
}
.calculator-intro > p:not(.eyebrow) {
  color: #ffffffad;
  line-height: 1.7;
  font-size: 17px;
}
.calc-photo {
  margin-top: 40px;
  height: 260px;
}
.calc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.calculator {
  background: #fff;
  color: var(--ink);
  padding: 42px;
}
.option-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.option-row label,
.range-label span {
  font-size: 13px;
  font-weight: 800;
}
.toggle {
  display: flex;
  background: #edf1ef;
  padding: 4px;
}
.toggle button {
  border: 0;
  background: transparent;
  padding: 10px 18px;
  font-weight: 800;
  cursor: pointer;
}
.toggle button.active {
  background: var(--navy);
  color: #fff;
}
.range-label {
  display: flex;
  justify-content: space-between;
  margin: 25px 0 10px;
}
.range-label b {
  font:
    25px Georgia,
    serif;
}
.calculator input[type="range"] {
  width: 100%;
  accent-color: var(--teal);
}
.breakdown {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 22px;
}
.breakdown div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 7px 0;
  font-size: 13px;
}
.breakdown span {
  color: var(--muted);
}
.total {
  margin-top: 20px;
  padding: 22px;
  background: #edf6f5;
}
.total span,
.total small {
  display: block;
}
.total b {
  display: block;
  font:
    36px Georgia,
    serif;
  margin: 7px 0;
}
.calc-button {
  width: 100%;
  margin-top: 18px;
}
.fineprint {
  font-size: 11px;
  line-height: 1.5;
  color: var(--muted);
}
.include-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.include-grid article {
  padding: 34px;
  min-height: 235px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.include-grid h3,
.why-grid h3 {
  font-size: 25px;
  margin: 16px 0 10px;
}
.include-grid p,
.why-grid p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}
.gallery-section {
  padding-bottom: 0;
  background: #fff;
}
.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  height: 540px;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery img:nth-child(2),
.gallery img:nth-child(4) {
  margin-top: 45px;
  height: calc(100% - 45px);
}
.why-section {
  background: #eaf2f1;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-grid article {
  padding: 28px 0;
  border-top: 2px solid var(--navy);
}
.review-box {
  margin-top: 70px;
  background: #fff;
  padding: 42px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.review-box h3 {
  font-size: 31px;
  margin: 9px 0;
}
.review-box p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.6;
}
.stars {
  color: #e1a92d;
  letter-spacing: 0.2em;
}
.faq-section {
  background: #fff;
}
.blog-section {
  background: var(--cream);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-card {
  display: flex;
  min-height: 320px;
  padding: 34px;
  flex-direction: column;
  background: #fff;
  border-top: 3px solid var(--teal);
  box-shadow: 0 12px 35px rgba(3, 31, 51, 0.06);
}
.blog-card > span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--teal);
}
.blog-card h3 {
  font-size: 29px;
  line-height: 1.12;
  margin: 24px 0 12px;
}
.blog-card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 26px;
}
.blog-card a {
  margin-top: auto;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 100px;
}
.faq-grid h2 {
  font-size: 66px;
  margin: 0;
}
.faqs details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.faqs details:last-child {
  border-bottom: 1px solid var(--line);
}
summary {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}
.faqs summary span {
  color: var(--teal);
  font-size: 20px;
}
.faqs p {
  color: var(--muted);
  line-height: 1.65;
}
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 730px;
  background: var(--navy);
  color: #fff;
}
.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-panel {
  padding: 80px max(5vw, 50px);
}
.contact-panel h2 {
  font-size: 62px;
  line-height: 1;
  margin: 0;
}
.contact-panel > p:not(.eyebrow) {
  color: #ffffffb3;
  line-height: 1.7;
}
.contact form {
  margin-top: 35px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact label {
  display: block;
  font-size: 12px;
  margin-bottom: 18px;
  color: #ffffffb3;
}
.contact input,
.contact select {
  width: 100%;
  height: 48px;
  margin-top: 8px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  outline: none;
}
.contact select option {
  color: var(--ink);
}
.contact form .button {
  width: 100%;
  margin-top: 10px;
}
.phone-link {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  text-decoration: underline;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 80px;
  padding: 80px 0;
}
footer {
  background: #021725;
  color: #fff;
}
.footer-brand img {
  width: 220px;
  height: 165px;
  object-fit: cover;
  object-position: center;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  max-width: 390px;
  color: #ffffffa6;
  line-height: 1.6;
}
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.04em;
  transition: 0.2s;
}
.socials a:hover,
.socials a:focus-visible {
  border-color: var(--aqua);
  color: #fff;
  transform: translateY(-2px);
}
.socials svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  fill: currentColor;
}
.socials svg rect,
.socials svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.socials svg .icon-dot {
  fill: currentColor;
  stroke: none;
}
.socials span {
  color: inherit !important;
  font-size: 11px !important;
}
.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-grid h3 {
  font-family: Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--aqua);
}
.footer-grid a,
.footer-grid span {
  font-size: 13px;
  color: #ffffffb3;
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0 35px;
  font-size: 11px;
  color: #ffffff73;
  display: flex;
  justify-content: space-between;
}
.pelican-mascot {
  position: fixed;
  z-index: 38;
  left: 22px;
  bottom: 18px;
  width: 116px;
  height: 116px;
  padding: 13px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 3px solid rgba(56, 199, 202, 0.82);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 34px rgba(3, 31, 51, 0.26);
  pointer-events: none;
  transform-origin: 50% 65%;
  animation: pelican-drift 5.5s ease-in-out infinite;
}
.pelican-mascot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@keyframes pelican-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }
  50% {
    transform: translate3d(0, -8px, 0) rotate(1.5deg);
  }
}
.whatsapp {
  position: fixed;
  z-index: 39;
  right: 24px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 10px 30px #00000040;
  transition: 0.2s;
}
.whatsapp:hover,
.whatsapp:focus-visible {
  transform: translateY(-3px) scale(1.03);
  background: #20bd5a;
  box-shadow: 0 14px 34px #0000004d;
}
.whatsapp svg {
  width: 36px;
  height: 36px;
  fill: #fff;
}
.cookie {
  position: fixed;
  z-index: 50;
  right: 25px;
  bottom: 92px;
  max-width: 430px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 15px 50px #00000038;
  border-top: 3px solid var(--teal);
}
.cookie p {
  font-size: 13px;
  line-height: 1.55;
  margin-top: 0;
}
.cookie > div {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.cookie button {
  border: 1px solid var(--line);
  background: #fff;
  padding: 9px 14px;
  cursor: pointer;
}
.cookie .accept {
  background: var(--navy);
  color: #fff;
}
@media (max-width: 1000px) {
  h1 {
    font-size: clamp(54px, 7vw, 88px);
  }
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav {
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 25px;
    flex-direction: column;
  }
  .nav.open {
    display: flex;
  }
  .menu-button {
    display: block;
    width: 32px;
  }
  .menu-button span {
    display: block;
    height: 2px;
    background: var(--navy);
    margin: 7px 0;
  }
  .brand {
    width: 220px;
  }
  .hero {
    min-height: 700px;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .vessel-grid,
  .calculator-grid {
    gap: 50px;
  }
  .vessel-main {
    height: 520px;
  }
  .vessel-badge {
    right: -15px;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }
  .gallery img {
    height: 350px !important;
    margin: 0 !important;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact {
    grid-template-columns: 0.8fr 1.2fr;
  }
  .footer-grid {
    gap: 40px;
  }
}
@media (max-width: 720px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-card {
    min-height: 0;
  }
  .wrap {
    width: min(100% - 32px, 1180px);
  }
  .site-header {
    height: 76px;
    padding: 0 16px;
  }
  .brand {
    width: 168px;
    height: 62px;
  }
  .nav {
    top: 76px;
  }
  .nav-actions {
    margin-left: auto;
    gap: 8px;
  }
  .button-small {
    display: none;
  }
  .hero {
    margin-top: 76px;
    min-height: 710px;
  }
  .hero-content {
    padding-bottom: 130px;
  }
  .hero-image {
    object-position: 63% center;
  }
  .hero-shade {
    background: linear-gradient(0deg, #021627eb, #02162759 75%);
  }
  h1 {
    font-size: 48px;
    line-height: 0.96;
  }
  .hero-copy {
    font-size: 16px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }
  .hero-card {
    left: 16px;
    right: 16px;
    width: auto;
    padding: 18px 22px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid > div {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    min-height: 68px;
  }
  .section {
    padding: 78px 0;
  }
  .split-heading,
  .experience-grid,
  .vessel-grid,
  .calculator-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .section-heading h2,
  .calculator-intro h2,
  .faq-grid h2 {
    font-size: 47px;
  }
  .experience-grid {
    gap: 16px;
  }
  .card-image {
    height: 260px;
  }
  .mini-card {
    min-height: 260px;
  }
  .route-grid {
    grid-template-columns: 1fr;
  }
  .route-card {
    height: 390px;
  }
  .vessel-main {
    height: 420px;
  }
  .vessel-badge {
    width: 110px;
    height: 110px;
    right: 10px;
  }
  .vessel-badge b {
    font-size: 42px;
  }
  .vessel-copy h2 {
    font-size: 58px;
  }
  .calculator {
    padding: 25px 20px;
  }
  .option-row {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }
  .include-grid,
  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery img {
    height: 300px !important;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .review-box {
    padding: 30px;
    align-items: flex-start;
    flex-direction: column;
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .contact-image {
    height: 340px;
  }
  .contact-panel {
    padding: 65px 24px;
  }
  .contact-panel h2 {
    font-size: 46px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer-brand img {
    margin-left: -25px;
  }
  .copyright {
    gap: 12px;
    flex-direction: column;
  }
  .cookie {
    left: 16px;
    right: 16px;
    bottom: 90px;
  }
  .whatsapp {
    right: 16px;
  }
  .pelican-mascot {
    left: 12px;
    bottom: 14px;
    width: 86px;
    height: 86px;
    padding: 10px;
    border-width: 2px;
  }
  .price-row {
    flex-direction: column;
  }
  .split-heading {
    display: block;
  }
  .split-heading > p {
    margin-top: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pelican-mascot {
    animation: none;
  }
}


/* 2026-08 production hardening: accessibility, forms and consent */
:focus-visible{outline:3px solid var(--aqua);outline-offset:3px}
.lang{display:inline-flex;min-width:44px;min-height:44px;align-items:center;justify-content:center;text-decoration:none}
.contact input,.contact select,.contact textarea{width:100%;margin-top:8px;border:0;border-bottom:1px solid rgba(255,255,255,.35);background:transparent;color:#fff;outline:none;border-radius:0}
.contact input,.contact select{height:48px}.contact textarea{min-height:96px;padding:12px 0;resize:vertical}
.contact input:focus-visible,.contact select:focus-visible,.contact textarea:focus-visible{outline:2px solid var(--aqua);outline-offset:3px;border-bottom-color:var(--aqua)}
.contact input:invalid:not(:placeholder-shown),.contact select:invalid:not(:focus){border-bottom-color:#ffb4ab}
.consent{display:flex!important;align-items:flex-start;gap:10px;color:#ffffffd1!important;line-height:1.5!important}.consent input{width:20px!important;height:20px!important;margin:2px 0 0!important;flex:0 0 20px}.consent a{text-decoration:underline;color:#fff}
.form-status{min-height:28px;margin-top:16px;color:#fff;font-size:13px;line-height:1.55}.form-status.success{color:#b8fff5}.form-status.error{color:#ffd2ce}
.form-whatsapp-continue{display:inline-flex;margin-top:10px;min-height:44px;align-items:center;padding:9px 15px;border-radius:999px;background:#25d366;color:#062a1a!important;font-weight:800;text-decoration:none}
.form-submit:disabled{opacity:.65;cursor:wait;transform:none}
.cookie-settings{padding:0;border:0;background:transparent;color:#ffffffb3;text-align:left;font:inherit;font-size:13px;cursor:pointer}.cookie-settings:hover,.cookie-settings:focus-visible{color:#fff}
.footer-in-view .whatsapp,.footer-in-view .pelican-mascot{opacity:0;visibility:hidden;pointer-events:none;transform:translateY(15px)}
.whatsapp,.pelican-mascot{transition:opacity .2s,visibility .2s,transform .2s}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}.pelican-mascot{animation:none!important}}
@media(max-width:1000px){.nav.open{max-height:calc(100vh - 90px);overflow:auto}.nav a{min-height:44px;display:flex;align-items:center}.menu-button{min-width:44px;min-height:44px;padding:6px}}
