:root {
  --white: #ffffff;
  --foam: #f4fbfb;
  --mist: #e9f5f3;
  --ink: #082438;
  --muted: #5b7280;
  --navy: #062a44;
  --deep: #031827;
  --sea: #027c9b;
  --aqua: #10c6cf;
  --sun: #f5bd23;
  --coral: #e86f50;
  --line: rgba(8, 36, 56, 0.12);
  --shadow: 0 24px 70px rgba(6, 42, 68, 0.16);
  --soft-shadow: 0 16px 44px rgba(6, 42, 68, 0.1);
  --radius: 8px;
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--foam);
  font-family: var(--font);
  line-height: 1.6;
  letter-spacing: 0;
  padding-bottom: 0;
  overflow-x: hidden;
}

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

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

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

p {
  color: var(--muted);
  text-wrap: pretty;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 850;
  color: var(--navy);
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(6, 42, 68, 0.12);
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 13px;
  border-radius: var(--radius);
  color: #29495a;
  font-size: 0.94rem;
  font-weight: 750;
}

.primary-nav a:hover,
.primary-nav a.is-active,
.primary-nav a[aria-current="page"] {
  color: var(--navy);
  background: rgba(16, 198, 207, 0.12);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  white-space: normal;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--deep);
  background: var(--sun);
  box-shadow: 0 14px 34px rgba(245, 189, 35, 0.3);
}

.button-primary:hover {
  background: #ffcb39;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
}

.button-outline {
  color: var(--navy);
  border-color: rgba(6, 42, 68, 0.18);
  background: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--navy);
}

.button-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--navy);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--deep);
}

.hero-home {
  min-height: 620px;
}

.hero-page {
  min-height: 54vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 24, 39, 0.86) 0%, rgba(3, 24, 39, 0.58) 44%, rgba(3, 24, 39, 0.22) 100%),
    linear-gradient(0deg, rgba(3, 24, 39, 0.55), transparent 42%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.58fr);
  align-items: center;
  gap: 36px;
  min-height: inherit;
  padding: 46px 0;
}

.hero-content {
  width: min(780px, 100%);
  padding: 88px 0 62px;
}

.hero-kicker,
.eyebrow,
.article-meta,
.service-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sea);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-kicker {
  color: var(--sun);
}

.hero h1 {
  max-width: 820px;
  margin-top: 14px;
  font-size: clamp(2.55rem, 4.3vw, 4.35rem);
  font-weight: 920;
}

.hero-page h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.hero p {
  max-width: 680px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span,
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  font-weight: 780;
}

.booking-panel {
  align-self: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.booking-panel .button {
  width: 100%;
  margin-top: 18px;
}

.booking-panel h2 {
  color: var(--navy);
  font-size: 1.55rem;
}

.booking-panel p {
  margin-top: 10px;
  color: var(--muted);
}

.choice-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.choice-card {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(8, 36, 56, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, border-color 180ms ease;
}

.choice-card:hover {
  border-color: rgba(16, 198, 207, 0.52);
  transform: translateY(-2px);
}

.choice-card strong {
  color: var(--navy);
  font-size: 1.04rem;
}

.choice-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.choice-tag {
  width: max-content;
  padding: 3px 8px;
  border-radius: 999px;
  color: var(--deep) !important;
  background: rgba(245, 189, 35, 0.3);
  font-size: 0.72rem !important;
  font-weight: 850;
  text-transform: uppercase;
}

.quick-facts {
  position: relative;
  z-index: 3;
  margin-top: -34px;
}

.flow-bar {
  position: relative;
  z-index: 4;
  margin-top: -28px;
}

.flow-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.flow-step {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.flow-step:last-child {
  border-right: 0;
}

.flow-step span {
  color: var(--sea);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flow-step strong {
  color: var(--navy);
  font-size: 1.06rem;
}

.flow-step small {
  color: var(--muted);
  font-size: 0.92rem;
}

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

.fact {
  min-height: 112px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.fact strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
}

.fact span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 88px 0;
}

.section-light {
  background: var(--foam);
}

.section-white {
  background: var(--white);
}

.section-dark {
  color: var(--white);
  background: var(--deep);
}

.section-dark p,
.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.76);
}

.section-tight {
  padding: 56px 0;
}

.section-heading {
  display: grid;
  gap: 14px;
  width: min(780px, 100%);
  margin-bottom: 34px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-self: center;
}

.section-heading h2,
.copy-stack h2,
.page-intro h2,
.blog-post h2,
.cta-band h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
}

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

.section-heading p,
.copy-stack p,
.page-intro p,
.blog-post p {
  font-size: 1.06rem;
}

.grid-2,
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 42px;
}

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

.decision-card {
  display: grid;
  grid-template-rows: 230px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.decision-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.decision-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.decision-body h3 {
  color: var(--navy);
  font-size: 1.45rem;
}

.decision-check {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.96rem;
}

.decision-check li {
  list-style: disc;
  margin-left: 18px;
}

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

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

.route-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.route-card div {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.route-card span {
  color: var(--sea);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-card h3 {
  color: var(--navy);
  font-size: 1.2rem;
}

.message-strip {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 5vw, 42px);
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--deep), var(--navy) 58%, var(--sea));
  box-shadow: var(--shadow);
}

.message-strip h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.message-strip p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.message-list {
  display: grid;
  gap: 10px;
}

.message-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
}

.message-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sun);
  flex: 0 0 10px;
}

.photo-credit-link {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.photo-credit-link:hover {
  color: var(--sun);
}

.cards-4,
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.card,
.service-card,
.article-card,
.gallery-card,
.contact-card,
.faq-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(6, 42, 68, 0.07);
}

.card img,
.service-card img,
.article-card img,
.gallery-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-body,
.service-body,
.article-body,
.gallery-body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.card h3,
.service-card h3,
.article-card h3,
.faq-card h3,
.contact-card h3 {
  color: var(--navy);
  font-size: 1.3rem;
}

.card-link {
  display: inline-flex;
  width: max-content;
  color: var(--sea);
  font-weight: 850;
  border-bottom: 2px solid rgba(16, 198, 207, 0.35);
}

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

.media-panel img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.media-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(3, 24, 39, 0.76);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.copy-stack {
  display: grid;
  gap: 18px;
}

.signal-list {
  display: grid;
  gap: 10px;
}

.signal-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.signal-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 5px rgba(245, 189, 35, 0.18);
  transform: translateY(-50%);
}

.section-dark .signal-list li {
  color: rgba(255, 255, 255, 0.8);
}

.service-detail-grid {
  display: grid;
  gap: 22px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.service-detail:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.84fr);
}

.service-detail:nth-child(even) .service-photo {
  order: 2;
}

.service-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.service-detail-body {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(26px, 5vw, 54px);
}

.service-detail-body h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.comparison {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.comparison-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.comparison-row:last-child {
  border-bottom: 0;
}

.comparison-row > * {
  padding: 16px 18px;
  border-right: 1px solid var(--line);
}

.comparison-row > *:last-child {
  border-right: 0;
}

.comparison-row strong {
  color: var(--navy);
  background: rgba(16, 198, 207, 0.1);
}

.comparison-row span {
  color: var(--muted);
}

.highlight {
  color: var(--navy) !important;
  font-weight: 850;
}

.steps {
  counter-reset: steps;
  display: grid;
  gap: 14px;
}

.steps li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.steps li::before {
  content: counter(steps, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  color: var(--deep);
  background: var(--sun);
  font-weight: 900;
}

.steps strong {
  display: block;
  color: var(--navy);
}

.steps span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.page-intro {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 42px;
  align-items: start;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--deep);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

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

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(3, 24, 39, 0.74);
  font-weight: 850;
  text-align: left;
}

.lightbox {
  width: min(1040px, calc(100% - 32px));
  border: 0;
  padding: 0;
  border-radius: var(--radius);
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(3, 24, 39, 0.86);
}

.lightbox-inner {
  position: relative;
  background: var(--deep);
}

.lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(3, 24, 39, 0.76);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

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

.blog-post {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.blog-post:last-child {
  border-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.contact-item {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-item strong {
  color: var(--navy);
}

.contact-item a {
  color: var(--sea);
  font-weight: 820;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--navy);
  font-weight: 850;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(8, 36, 56, 0.16);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: var(--foam);
}

.field textarea {
  min-height: 126px;
  resize: vertical;
}

.hours {
  display: grid;
  gap: 8px;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.84);
}

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

.faq-card {
  padding: 22px;
}

.faq-card p {
  margin-top: 10px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 5vw, 42px);
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--sea));
  box-shadow: var(--shadow);
}

.cta-band h2 {
  color: var(--white);
}

.cta-band p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.quick-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 54px rgba(3, 24, 39, 0.18);
  backdrop-filter: blur(14px);
}

.quick-contact-label {
  padding: 0 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.quick-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 850;
}

.quick-whatsapp {
  background: #19b76b;
}

.quick-phone {
  background: var(--navy);
}

.quick-social img {
  width: 20px;
  height: 20px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: var(--deep);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 0.7fr;
  gap: 30px;
  padding: 58px 0 34px;
}

.footer-brand img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--white);
}

.footer-brand p {
  max-width: 360px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a:hover {
  color: var(--sun);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.social-button img {
  width: 22px;
  height: 22px;
}

.legal-page {
  background: var(--white);
}

.legal-content {
  display: grid;
  gap: 28px;
  max-width: 900px;
}

.legal-content h2 {
  color: var(--navy);
  font-size: 1.6rem;
}

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

.legal-content ul {
  display: grid;
  gap: 8px;
}

.legal-content li {
  list-style: disc;
  margin-left: 18px;
}

@media (max-width: 1040px) {
  .primary-nav {
    position: fixed;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav ul {
    display: grid;
    gap: 4px;
  }

  .primary-nav a {
    width: 100%;
  }

  .nav-toggle {
    display: block;
  }

  .header-actions .button {
    display: none;
  }

  .hero-grid,
  .grid-2,
  .split,
  .contact-grid,
  .page-intro,
  .blog-post {
    grid-template-columns: 1fr;
  }

  .booking-panel {
    align-self: auto;
  }

  .fact-grid,
  .cards-4,
  .experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-bar-inner,
  .route-grid,
  .message-strip {
    grid-template-columns: 1fr;
  }

  .flow-step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .flow-step:last-child {
    border-bottom: 0;
  }

  .service-detail,
  .service-detail:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-detail:nth-child(even) .service-photo {
    order: 0;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .quick-contact {
    display: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .primary-nav {
    top: 72px;
    left: 14px;
    right: 14px;
  }

  .hero-home {
    min-height: auto;
  }

  .hero-grid,
  .hero-content {
    padding: 36px 0 38px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 8.4vw, 2.35rem);
    overflow-wrap: break-word;
    text-wrap: wrap;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hero-proof {
    display: none;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(3, 24, 39, 0.9), rgba(3, 24, 39, 0.58)),
      linear-gradient(0deg, rgba(3, 24, 39, 0.66), transparent 48%);
  }

  .section {
    padding: 62px 0;
  }

  .fact-grid,
  .grid-3,
  .cards-3,
  .cards-4,
  .experience-grid,
  .article-grid,
  .faq-grid,
  .route-grid {
    grid-template-columns: 1fr;
  }

  .comparison {
    overflow-x: auto;
  }

  .comparison-row {
    min-width: 760px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .media-panel img,
  .service-photo img {
    min-height: 360px;
  }

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

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .hero h1 {
    max-width: 330px;
    font-size: clamp(1.72rem, 7vw, 1.95rem);
  }

  .hero p {
    max-width: 330px;
  }
}
