:root {
  --navy: #041224;
  --navy-deep: #041224;
  --blue: #2f86b8;
  --blue-soft: #e9f6fb;
  --foam: #f7fbfa;
  --sand: #f4ead6;
  --gold: #b3831d;
  --ink: #10263a;
  --muted: #657889;
  --line: #d8e8ee;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(4, 18, 36, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--foam);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.6;
}

body::selection {
  color: var(--white);
  background: var(--navy);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--navy);
  border-bottom: 1px solid rgba(179, 131, 29, 0.42);
  box-shadow: 0 12px 34px rgba(4, 18, 36, 0.24);
}

.nav-shell {
  width: min(1240px, calc(100% - 32px));
  min-height: 94px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: auto;
  height: 86px;
  max-width: 112px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.nav-links a {
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.language-switcher button {
  min-width: 38px;
  height: 34px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.language-switcher button.is-active {
  color: var(--navy);
  background: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - 94px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(4, 18, 36, 0.93) 0%, rgba(4, 18, 36, 0.72) 48%, rgba(4, 18, 36, 0.38) 100%),
    url("images/sea-kayak.jpg") center / cover no-repeat;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sun {
  position: absolute;
  right: 9vw;
  top: 12vh;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(179, 131, 29, 0.42);
  border-radius: 50%;
}

.line {
  position: absolute;
  left: -8vw;
  right: -8vw;
  height: 180px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.16) transparent transparent transparent;
  border-radius: 50% 50% 0 0;
}

.line-one {
  bottom: 6vh;
}

.line-two {
  bottom: 0;
  transform: translateY(40px);
}

.line-three {
  bottom: -7vh;
  border-color: rgba(179, 131, 29, 0.22) transparent transparent transparent;
}

.hero h1 {
  color: var(--white);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.74fr);
  gap: 64px;
  align-items: center;
  padding: 72px 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--navy-deep);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
}

h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 84px);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4vw, 56px);
}

h3 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.18;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 16px 34px rgba(4, 18, 36, 0.22);
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
}

.hero-panel {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(4, 18, 36, 0.76);
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: min(100%, 360px);
  margin: 0 auto;
}

.panel-note {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.panel-note strong,
.panel-note span {
  display: block;
}

.panel-note strong {
  color: var(--white);
  font-size: 18px;
}

.panel-note span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
}

.section-pad {
  padding: 96px 0;
}

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

.intro-grid,
.proof-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 72px;
  align-items: start;
}

.intro-text {
  color: #3f5c70;
  font-size: 18px;
}

.offer {
  background:
    linear-gradient(180deg, var(--blue-soft), var(--foam));
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

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

.offer-card {
  min-height: 330px;
  padding: 28px;
  border: 1px solid rgba(216, 232, 238, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(4, 18, 36, 0.08);
}

.offer-card.wide {
  grid-column: span 2;
  min-height: 250px;
  background: var(--navy);
}

.offer-card.wide h3,
.offer-card.wide p {
  color: var(--white);
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--sand);
  font-size: 13px;
  font-weight: 800;
}

.offer-card p {
  color: var(--muted);
}

.business,
.trips,
.sports {
  background: var(--white);
}

.business-hero,
.trips-hero,
.sports-hero {
  max-width: 920px;
  margin-bottom: 42px;
}

.business-showcase,
.sports-showcase {
  height: clamp(300px, 45vw, 560px);
  overflow: hidden;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.business-showcase img,
.sports-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-gallery,
.sports-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 34px;
}

.business-gallery figure,
.sports-gallery figure {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: var(--navy);
}

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

.business-gallery figure:hover img,
.sports-gallery figure:hover img {
  transform: scale(1.04);
}

.business-gallery figcaption,
.sports-gallery figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 9px 11px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(4, 18, 36, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.business-hero p:not(.section-kicker),
.business-block p,
.business-cta p,
.trips-hero p:not(.section-kicker),
.trips-block p,
.trips-cta p,
.sports-hero p:not(.section-kicker),
.sports-block p,
.sports-cta p {
  color: var(--muted);
  font-size: 18px;
}

.business-content,
.trips-content,
.sports-content {
  display: grid;
  gap: 22px;
}

.business-block,
.business-cta,
.trips-block,
.trips-cta,
.sports-block,
.sports-cta {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--foam);
}

.business-block h3,
.business-cta h3,
.trips-block h3,
.trips-cta h3,
.sports-block h3,
.sports-cta h3 {
  color: var(--navy);
}

.business-block h4,
.trips-block h4,
.place-grid h4 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 19px;
}

.business-block.split,
.trips-block.split,
.sports-block.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
}

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

.place-grid > div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.place-grid p {
  margin-bottom: 0;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.feature-list.compact {
  margin: 0;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  color: #3f5c70;
  font-weight: 700;
}

.feature-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--gold);
}

.business-cta,
.trips-cta,
.sports-cta {
  color: var(--white);
  background: var(--navy);
}

.business-cta p,
.business-cta h3,
.trips-cta p,
.trips-cta h3,
.sports-cta p,
.sports-cta h3 {
  color: var(--white);
}

.business-cta p:last-of-type,
.trips-cta p:first-of-type,
.sports-cta p:first-child {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.business-cta .button.primary,
.trips-cta .button.primary,
.sports-cta .button.primary {
  margin-top: 10px;
  color: var(--navy);
  background: var(--white);
  box-shadow: none;
}

.statement {
  padding: 82px 0;
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(4, 18, 36, 0.96), rgba(4, 18, 36, 0.86)),
    linear-gradient(90deg, var(--navy-deep), var(--blue));
}

.statement-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.statement p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 22px;
  font-weight: 700;
}

.statement h2 {
  max-width: 680px;
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 6vw, 86px);
}

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

.proof-list {
  display: grid;
  gap: 18px;
}

.proof-list div {
  padding: 24px 0 24px 24px;
  border-left: 3px solid var(--gold);
}

.proof-list strong,
.proof-list span {
  display: block;
}

.proof-list strong {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 20px;
}

.proof-list span {
  color: var(--muted);
}

.about {
  background: var(--foam);
}

.about-grid {
  align-items: center;
}

.about-visual {
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.about p,
.contact p {
  color: var(--muted);
  font-size: 18px;
}

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

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.contact-details a,
.contact-details p {
  display: grid;
  gap: 2px;
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

.contact-details span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.social-block {
  margin-top: 28px;
}

.social-block p {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
}

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

.social-links a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  font-size: 13px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.social-links a:hover {
  color: var(--white);
  background: var(--navy);
  transform: translateY(-2px);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c7dce4;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(47, 134, 184, 0.22);
  border-color: var(--blue);
}

.site-footer {
  padding: 34px 0;
  background: var(--navy-deep);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner img {
  width: auto;
  height: 112px;
  max-width: 150px;
}

.footer-copy {
  display: grid;
  justify-items: end;
  gap: 14px;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.footer-social a {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
  color: var(--navy);
  background: var(--white);
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 14px;
    font-size: 12px;
  }

  .brand img {
    width: auto;
    height: 76px;
  }

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

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .nav-shell {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: var(--navy);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .nav-links a::after {
    display: none;
  }

  .language-switcher {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .intro-grid,
  .proof-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-grid {
    padding: 52px 0 64px;
  }

  .section-pad {
    padding: 68px 0;
  }

  .statement-inner {
    display: block;
  }

  .statement p {
    margin-bottom: 10px;
  }

  .about-visual {
    min-height: 300px;
  }

  .business-block.split,
  .trips-block.split,
  .place-grid,
  .business-gallery,
  .sports-gallery,
  .sports-block.split,
  .sports-mini-grid {
    grid-template-columns: 1fr;
  }

  .business-gallery figure,
  .sports-gallery figure {
    aspect-ratio: 16 / 10;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: auto;
    height: 64px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-panel,
  .contact-form,
  .offer-card,
  .business-block,
  .business-cta,
  .trips-block,
  .trips-cta,
  .sports-block,
  .sports-cta {
    padding: 22px;
  }

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

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

  .offer-card,
  .offer-card.wide {
    grid-column: auto;
    min-height: auto;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-copy {
    justify-items: start;
  }
}
