:root {
  --navy-950: #041521;
  --navy-900: #071f32;
  --navy-800: #0a2c46;
  --blue-700: #1557a6;
  --blue-600: #1c67bc;
  --teal-700: #008d8b;
  --teal-600: #00a7a2;
  --teal-400: #41ccc2;
  --coral-600: #ed2844;
  --coral-500: #ff3851;
  --sand-100: #f5f0e8;
  --sand-50: #fbf8f3;
  --mist-100: #eef5f5;
  --white: #ffffff;
  --ink: #0b2233;
  --muted: #657786;
  --line: rgba(10, 44, 70, 0.14);
  --shadow-sm: 0 12px 34px rgba(8, 37, 56, 0.1);
  --shadow-lg: 0 30px 80px rgba(5, 30, 48, 0.2);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --container: 1220px;
  --header-height: 88px;
  --ease: cubic-bezier(.2, .75, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--sand-50);
  font-family: "Manrope", "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(65, 204, 194, .9);
  outline-offset: 4px;
}

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

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

address {
  font-style: normal;
}

::selection {
  color: var(--white);
  background: var(--teal-700);
}

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

.section {
  position: relative;
  padding: 132px 0;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform .25s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 2000;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--teal-400), var(--coral-500));
  transform-origin: left;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--white);
  transition: background-color .35s var(--ease), box-shadow .35s var(--ease), color .35s var(--ease), backdrop-filter .35s var(--ease);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, .18);
  transition: background .35s var(--ease);
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 248, 243, .88);
  box-shadow: 0 8px 36px rgba(5, 30, 48, .08);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.site-header.is-scrolled::after {
  background: rgba(10, 44, 70, .1);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 57px;
  height: 57px;
  padding: 3px;
  background: rgba(255, 255, 255, .93);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 18px 6px 18px 6px;
  box-shadow: 0 8px 28px rgba(4, 21, 33, .12);
  overflow: hidden;
}

.brand-mark img {
  width: 50px;
  height: 47px;
  object-fit: contain;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 23px;
  letter-spacing: .015em;
}

.brand-name small {
  margin-top: 5px;
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  opacity: .78;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 40px);
  margin-left: auto;
  margin-right: 10px;
}

.desktop-nav a {
  position: relative;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--coral-500);
  transition: right .3s var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 990;
  inset: var(--header-height) 0 auto;
  color: var(--ink);
  background: rgba(251, 248, 243, .98);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  transform: translateY(-120%);
  opacity: 0;
  visibility: hidden;
  transition: transform .4s var(--ease), opacity .3s var(--ease), visibility .4s;
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu nav {
  display: grid;
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding: 32px 0 40px;
}

.mobile-menu nav > a:not(.button) {
  padding: 14px 2px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu .button {
  margin-top: 26px;
}

/* Buttons and shared type */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .025em;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}

.button svg,
.text-link svg,
.experience-card a svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .3s var(--ease);
}

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

.button:hover svg,
.text-link:hover svg,
.experience-card a:hover svg {
  transform: translateX(4px);
}

.button--small {
  min-height: 46px;
  padding-inline: 20px;
}

.button--large {
  min-height: 58px;
  padding-inline: 28px;
  font-size: 14px;
}

.button--coral {
  color: var(--white);
  background: var(--coral-500);
  box-shadow: 0 15px 34px rgba(237, 40, 68, .25);
}

.button--coral:hover {
  background: var(--coral-600);
  box-shadow: 0 18px 42px rgba(237, 40, 68, .32);
}

.button--navy {
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 15px 34px rgba(7, 31, 50, .2);
}

.button--navy:hover {
  background: var(--navy-800);
}

.button--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .38);
  backdrop-filter: blur(12px);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .68);
}

.button--outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, .35);
}

.button--outline-light:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .7);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--teal-700);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 34px;
  height: 2px;
  background: currentColor;
}

.eyebrow--light {
  color: #9eece5;
}

.section-heading h2,
.story-copy h2,
.journey h2,
.benefits-copy h2,
.corporate h2,
.faq-heading h2,
.location-copy h2 {
  color: var(--navy-900);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.04;
  letter-spacing: -.035em;
}

.section-heading h2 em,
.story-copy h2 em,
.journey h2 em,
.benefits-copy h2 em,
.corporate h2 em,
.faq-heading h2 em,
.location-copy h2 em,
.hero h1 em {
  color: var(--teal-700);
  font-weight: 600;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .7fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 70px;
}

.section-heading--split > p,
.gallery-heading-side > p {
  max-width: 470px;
  color: var(--muted);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-900);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid rgba(10, 44, 70, .35);
  padding-bottom: 6px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 790px;
  height: 100svh;
  max-height: 980px;
  color: var(--white);
  background: var(--navy-950);
  overflow: hidden;
}

.hero-media,
.hero-shade,
.hero-orbit {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("assets/images/hero-canoagem.jpg") center 56% / cover no-repeat;
  transform: scale(1.045);
  will-change: transform;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 21, 33, .96) 0%, rgba(4, 21, 33, .84) 35%, rgba(4, 21, 33, .37) 68%, rgba(4, 21, 33, .18) 100%),
    linear-gradient(180deg, rgba(4, 21, 33, .4) 0%, transparent 36%, rgba(4, 21, 33, .53) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(4, 21, 33, .72));
  pointer-events: none;
}

.hero-orbit {
  inset: auto auto 15% 45%;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.hero-orbit::before {
  inset: 60px;
}

.hero-orbit::after {
  inset: 122px;
}

.hero-orbit--two {
  inset: 9% -250px auto auto;
  width: 560px;
  height: 560px;
  opacity: .75;
}

.hero-layout {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 100%;
  padding-top: var(--header-height);
}

.hero-content {
  width: min(750px, 70%);
  padding: 60px 0 45px;
}

.hero-eyebrow {
  margin-bottom: 25px;
  opacity: 0;
  animation: heroIn .8s .18s var(--ease) forwards;
}

.hero h1 {
  max-width: 760px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(66px, 8vw, 118px);
  font-weight: 600;
  line-height: .9;
  letter-spacing: -.055em;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(28px);
  animation: heroIn 1s .3s var(--ease) forwards;
}

.hero h1 em {
  color: #94ebe5;
}

.hero-lead {
  max-width: 650px;
  margin-top: 32px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn .9s .48s var(--ease) forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
  opacity: 0;
  transform: translateY(18px);
  animation: heroIn .9s .62s var(--ease) forwards;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 52px;
  opacity: 0;
  animation: heroIn .9s .76s var(--ease) forwards;
}

.hero-proof div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-proof strong {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.hero-proof span {
  color: rgba(255, 255, 255, .55);
  font-size: 11px;
  letter-spacing: .04em;
}

.hero-proof i {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, .22);
}

.hero-place-card {
  position: absolute;
  right: 0;
  bottom: 90px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
  width: 315px;
  padding: 18px 20px;
  background: rgba(5, 31, 49, .55);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn .9s .9s var(--ease) forwards;
}

.place-pulse {
  position: absolute;
  top: 16px;
  right: 17px;
  width: 7px;
  height: 7px;
  background: #79e7dd;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(121, 231, 221, .5);
  animation: pulse 2.3s infinite;
}

.place-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #9eece5;
  background: rgba(158, 236, 229, .1);
  border: 1px solid rgba(158, 236, 229, .22);
  border-radius: 50%;
}

.place-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.hero-place-card div:last-child {
  display: flex;
  flex-direction: column;
}

.hero-place-card small {
  color: rgba(255, 255, 255, .5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-place-card strong {
  margin-top: 4px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
}

.hero-place-card span:not(.place-pulse) {
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .65);
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, .25);
  overflow: hidden;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: -100% 0 auto;
  height: 100%;
  background: var(--white);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(121, 231, 221, 0); }
  100% { box-shadow: 0 0 0 0 rgba(121, 231, 221, 0); }
}

@keyframes scrollLine {
  0% { transform: translateY(0); }
  100% { transform: translateY(200%); }
}

/* Marquee */
.marquee {
  color: var(--navy-900);
  background: #d9f2ef;
  border-bottom: 1px solid rgba(0, 141, 139, .13);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 200%;
  height: 72px;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
}

.marquee-track span {
  padding-inline: 34px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-style: italic;
}

.marquee-track i {
  color: var(--coral-500);
  font-style: normal;
  font-size: 11px;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Experiences */
.experiences {
  background:
    radial-gradient(circle at 5% 20%, rgba(65, 204, 194, .13), transparent 26%),
    var(--sand-50);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(2, 1fr);
  grid-template-rows: repeat(2, 315px);
  gap: 18px;
}

.experience-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 300px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 50px rgba(8, 37, 56, .055);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.experience-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 167, 162, .25);
  box-shadow: 0 28px 60px rgba(8, 37, 56, .13);
}

.experience-card--featured {
  grid-row: 1 / -1;
  color: var(--white);
  padding: 0;
  border: 0;
}

.experience-card--teal {
  color: var(--white);
  background: var(--teal-700);
  border-color: transparent;
}

.experience-card--teal p,
.experience-card--teal .card-number {
  color: rgba(255, 255, 255, .68);
}

.experience-card--teal .experience-icon {
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .22);
}

.experience-card--teal a {
  color: var(--white);
  border-color: rgba(255, 255, 255, .36);
}

.experience-card-media,
.experience-card-overlay {
  position: absolute;
  inset: 0;
}

.experience-card-media {
  background: url("assets/images/experiencia-catamara.jpg") center / cover no-repeat;
  transition: transform .8s var(--ease);
}

.experience-card:hover .experience-card-media {
  transform: scale(1.055);
}

.experience-card-overlay {
  background: linear-gradient(180deg, rgba(4, 21, 33, .08) 12%, rgba(4, 21, 33, .24) 45%, rgba(4, 21, 33, .94) 100%);
}

.experience-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 38px;
}

.card-number {
  color: rgba(10, 44, 70, .36);
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
}

.experience-card--featured .card-number {
  color: rgba(255, 255, 255, .64);
}

.experience-card h3 {
  margin-top: 16px;
  color: inherit;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 31px;
  line-height: 1.05;
}

.experience-card--featured h3 {
  font-size: clamp(40px, 4vw, 56px);
}

.experience-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.experience-card--featured p {
  max-width: 440px;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
}

.experience-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 25px;
  padding-bottom: 4px;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, .4);
}

.experience-card:not(.experience-card--featured) > a {
  position: absolute;
  right: 28px;
  top: 26px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0;
  color: var(--navy-900);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.experience-card:not(.experience-card--featured) > a:hover {
  color: var(--white);
  background: var(--coral-500);
  border-color: var(--coral-500);
}

.experience-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: auto;
  color: var(--teal-700);
  background: var(--mist-100);
  border: 1px solid rgba(0, 167, 162, .12);
  border-radius: 18px 6px 18px 6px;
}

.experience-icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Story */
.story {
  background: var(--white);
  overflow: hidden;
}

.story::before {
  content: "ATHĒNÁ";
  position: absolute;
  right: -35px;
  top: 36px;
  color: rgba(10, 44, 70, .028);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(130px, 22vw, 330px);
  font-weight: 700;
  line-height: .8;
  letter-spacing: -.05em;
  pointer-events: none;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, .8fr);
  align-items: center;
  gap: clamp(70px, 9vw, 125px);
}

.story-visual {
  position: relative;
  min-height: 690px;
}

.story-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.story-photo:hover img {
  transform: scale(1.045);
}

.story-photo--main {
  inset: 0 13% 16% 0;
  border-radius: 160px 24px 160px 24px;
}

.story-photo--main img {
  object-position: center;
}

.story-photo--detail {
  right: 0;
  bottom: 0;
  width: 48%;
  height: 43%;
  border: 10px solid var(--white);
  border-radius: 24px 8px 80px 8px;
}

.story-seal {
  position: absolute;
  z-index: 3;
  left: -35px;
  bottom: 35px;
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  color: var(--navy-900);
  background: #d9f2ef;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.story-seal svg {
  width: 126px;
  height: 126px;
  animation: sealSpin 22s linear infinite;
}

.story-seal text {
  fill: currentColor;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.6px;
}

.story-seal > svg > path:not(#circlePath) {
  fill: none;
  stroke: var(--coral-500);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform-origin: center;
  animation: sealCounterSpin 22s linear infinite;
}

@keyframes sealSpin { to { transform: rotate(360deg); } }
@keyframes sealCounterSpin { to { transform: rotate(-360deg); } }

.story-copy {
  position: relative;
  z-index: 2;
}

.story-intro {
  margin-top: 34px;
  color: var(--navy-800);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.5;
}

.story-copy > p:not(.story-intro) {
  margin-top: 24px;
  color: var(--muted);
}

.story-values {
  display: grid;
  margin: 38px 0 35px;
  border-top: 1px solid var(--line);
}

.story-values > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.story-values span {
  color: var(--coral-500);
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}

.story-values p {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 13px;
}

.story-values strong {
  margin-bottom: 2px;
  color: var(--navy-900);
  font-size: 15px;
}

/* Journey */
.journey {
  position: relative;
  padding: 132px 0 116px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 167, 162, .22), transparent 28%),
    linear-gradient(135deg, var(--navy-950), #063c51 110%);
  overflow: hidden;
}

.journey-wave {
  position: absolute;
  inset: auto 0 0;
  height: 340px;
  color: #78d8d0;
  background: url("assets/images/wave-lines.svg") center bottom / cover no-repeat;
  opacity: .38;
}

.journey::before {
  content: "";
  position: absolute;
  left: 4%;
  top: -210px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(255, 255, 255, .025), 0 0 0 144px rgba(255, 255, 255, .018);
}

.journey .container {
  position: relative;
  z-index: 2;
}

.journey h2,
.corporate h2,
.location-copy h2 {
  color: var(--white);
}

.journey h2 em,
.corporate h2 em,
.location-copy h2 em {
  color: #9eece5;
}

.journey-heading {
  max-width: 760px;
}

.journey-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 78px;
  list-style: none;
}

.journey-steps::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 47px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(158, 236, 229, .45), transparent);
}

.journey-steps li {
  position: relative;
  padding: 0 clamp(18px, 3vw, 36px);
  border-right: 1px solid rgba(255, 255, 255, .11);
}

.journey-steps li:first-child {
  padding-left: 0;
}

.journey-steps li:last-child {
  padding-right: 0;
  border-right: 0;
}

.journey-steps > li > span {
  display: block;
  color: rgba(255, 255, 255, .35);
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}

.journey-icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 22px 0 28px;
  color: #a9f0ea;
  background: rgba(5, 52, 72, .9);
  border: 1px solid rgba(158, 236, 229, .28);
  border-radius: 50%;
  box-shadow: 0 0 0 9px rgba(7, 31, 50, .88);
}

.journey-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-steps h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 23px;
  line-height: 1.2;
}

.journey-steps p {
  margin-top: 12px;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
  line-height: 1.7;
}

.journey-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 76px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.journey-cta p {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-style: italic;
}

/* Benefits */
.benefits {
  background: var(--sand-100);
}

.benefits-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(60px, 9vw, 130px);
}

.benefits-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.benefits-copy > p {
  max-width: 500px;
  margin: 32px 0 34px;
  color: var(--muted);
  font-size: 17px;
}

.benefit-list {
  border-top: 1px solid rgba(10, 44, 70, .2);
}

.benefit-item {
  display: grid;
  grid-template-columns: 42px 1fr 76px;
  align-items: center;
  gap: 26px;
  min-height: 154px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(10, 44, 70, .2);
  transition: padding .35s var(--ease), background .35s var(--ease);
}

.benefit-item:hover {
  padding-left: 16px;
  padding-right: 16px;
  background: rgba(255, 255, 255, .42);
}

.benefit-item > span {
  color: var(--coral-500);
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
}

.benefit-item h3 {
  color: var(--navy-900);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
}

.benefit-item p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.benefit-item > svg {
  justify-self: end;
  width: 54px;
  height: 54px;
  padding: 12px;
  color: var(--teal-700);
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(10, 44, 70, .1);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Gallery */
.gallery {
  background: var(--white);
}

.gallery-heading-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-template-rows: 300px 300px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  color: var(--white);
  background: var(--navy-900);
  border: 0;
  border-radius: var(--radius-sm);
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-item--wide {
  grid-row: 1 / -1;
}

.gallery-item--tall {
  grid-row: 1 / -1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .5s var(--ease);
}

.gallery-item:nth-child(1) img {
  object-position: 48% center;
}

.gallery-item:nth-child(2) img {
  object-position: center;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(4, 21, 33, .82) 100%);
  opacity: .86;
  transition: opacity .4s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.055);
  filter: saturate(1.08);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item > span {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  text-align: left;
}

.gallery-item > span small {
  margin-bottom: 2px;
  color: #9eece5;
  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* Corporate */
.corporate {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 720px;
  color: var(--white);
  background: var(--navy-950);
  overflow: hidden;
}

.corporate-media,
.corporate-overlay {
  position: absolute;
  inset: 0;
}

.corporate-media {
  background: url("assets/images/desafio-canoa.jpg") center 57% / cover no-repeat;
  transform: scale(1.03);
}

.corporate-overlay {
  background:
    linear-gradient(90deg, rgba(4, 21, 33, .96) 0%, rgba(4, 21, 33, .82) 38%, rgba(4, 21, 33, .18) 75%, rgba(4, 21, 33, .12) 100%),
    linear-gradient(180deg, rgba(4, 21, 33, .16), rgba(4, 21, 33, .42));
}

.corporate::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -140px;
  width: 510px;
  height: 510px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(255, 255, 255, .035), 0 0 0 150px rgba(255, 255, 255, .02);
  transform: translateY(-50%);
}

.corporate-inner {
  position: relative;
  z-index: 2;
  padding-block: 120px;
}

.corporate h2 {
  max-width: 780px;
  font-size: clamp(54px, 7vw, 96px);
}

.corporate p {
  max-width: 600px;
  margin: 30px 0 38px;
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
}

/* FAQ */
.faq {
  background: var(--sand-50);
}

.faq-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(70px, 10vw, 150px);
}

.faq-heading {
  align-self: start;
}

.faq-heading > p {
  max-width: 440px;
  margin: 28px 0 30px;
  color: var(--muted);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item h3 {
  font-family: inherit;
}

.accordion-item button {
  display: grid;
  grid-template-columns: 1fr 30px;
  align-items: center;
  gap: 20px;
  width: 100%;
  min-height: 90px;
  padding: 22px 0;
  color: var(--navy-900);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.accordion-item button span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
}

.accordion-item button i {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.accordion-item button i::before,
.accordion-item button i::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 14px;
  height: 1px;
  background: currentColor;
  transition: transform .3s var(--ease);
}

.accordion-item button i::after {
  transform: rotate(90deg);
}

.accordion-item button[aria-expanded="true"] i {
  color: var(--white);
  background: var(--coral-500);
  border-color: var(--coral-500);
}

.accordion-item button[aria-expanded="true"] i::after {
  transform: rotate(0);
}

.accordion-panel {
  padding: 0 58px 26px 0;
  color: var(--muted);
  font-size: 14px;
}

/* Location */
.location {
  position: relative;
  min-height: 760px;
  padding: 120px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(0, 167, 162, .18), transparent 35%),
    var(--navy-950);
  overflow: hidden;
}

.location-map {
  position: absolute;
  inset: 0 0 0 52%;
  background:
    linear-gradient(110deg, transparent 47%, rgba(0, 167, 162, .18) 47.2%, rgba(0, 167, 162, .04) 100%),
    repeating-linear-gradient(22deg, transparent 0 38px, rgba(255, 255, 255, .026) 39px 40px),
    repeating-linear-gradient(112deg, transparent 0 48px, rgba(255, 255, 255, .025) 49px 50px);
  opacity: .92;
}

.location-map::before {
  content: "";
  position: absolute;
  left: 15%;
  top: -8%;
  width: 52%;
  height: 120%;
  background: rgba(8, 58, 73, .42);
  border-left: 1px solid rgba(65, 204, 194, .25);
  clip-path: polygon(8% 0, 70% 6%, 88% 19%, 65% 34%, 96% 47%, 75% 61%, 100% 77%, 64% 89%, 80% 100%, 0 100%, 0 0);
}

.map-line {
  position: absolute;
  width: 78%;
  height: 2px;
  background: rgba(255, 255, 255, .14);
  transform-origin: left;
}

.map-line--one { left: 8%; top: 25%; transform: rotate(16deg); }
.map-line--two { left: 4%; top: 57%; transform: rotate(-7deg); }
.map-line--three { left: 26%; top: 75%; transform: rotate(24deg); }

.map-water {
  position: absolute;
  right: 9%;
  bottom: 12%;
  color: rgba(158, 236, 229, .24);
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .34em;
  transform: rotate(-11deg);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 44%;
  display: flex;
  flex-direction: column;
  width: 130px;
  padding-left: 34px;
}

.map-pin > span {
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--coral-500);
  border: 4px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(237, 40, 68, .15), 0 10px 30px rgba(0, 0, 0, .25);
}

.map-pin strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
}

.map-pin small {
  color: rgba(255, 255, 255, .48);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.location-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(380px, .62fr);
  align-items: center;
  gap: clamp(65px, 10vw, 150px);
}

.location-copy p {
  max-width: 570px;
  margin-top: 32px;
  color: rgba(255, 255, 255, .62);
  font-size: 17px;
}

.location-card {
  padding: 36px;
  background: rgba(8, 44, 62, .82);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-md);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.location-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.location-card-top img {
  width: 72px;
  height: 66px;
  padding: 4px;
  background: rgba(255, 255, 255, .94);
  border-radius: 14px 5px 14px 5px;
  object-fit: contain;
}

.location-card-top > span {
  color: #9eece5;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.contact-row > svg {
  width: 23px;
  height: 23px;
  color: #9eece5;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-row div {
  display: flex;
  flex-direction: column;
}

.contact-row small {
  color: rgba(255, 255, 255, .42);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-row strong {
  margin-top: 4px;
  font-size: 14px;
}

.contact-row span {
  margin-top: 2px;
  color: rgba(255, 255, 255, .55);
  font-size: 11px;
}

.location-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}

.location-actions .button {
  min-height: 48px;
  padding-inline: 13px;
  font-size: 11px;
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, .65);
  background: #020e16;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  padding: 78px 0 62px;
}

.brand--footer {
  color: var(--white);
}

.footer-brand > p {
  margin-top: 22px;
  color: rgba(255, 255, 255, .48);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
  font-style: italic;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  font-size: 13px;
  transition: color .25s ease, transform .25s ease;
}

.footer-links a:hover {
  color: #9eece5;
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 74px;
  font-size: 11px;
  border-top: 1px solid rgba(255, 255, 255, .09);
}

.footer-bottom p:last-child {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px 0 14px;
  color: var(--white);
  background: #159a68;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(5, 55, 38, .3);
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(5, 55, 38, .38);
}

.whatsapp-float svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Lightbox */
.lightbox {
  width: min(1080px, calc(100% - 40px));
  max-width: none;
  max-height: calc(100svh - 40px);
  padding: 0;
  background: transparent;
  border: 0;
  overflow: visible;
}

.lightbox::backdrop {
  background: rgba(2, 14, 22, .92);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  max-height: calc(100svh - 60px);
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .5);
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  right: -12px;
  top: -12px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--coral-500);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.lightbox-close svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.experience-grid .reveal:nth-child(2),
.benefit-list .reveal:nth-child(2),
.journey-steps .reveal:nth-child(2),
.gallery-grid .reveal:nth-child(2) { transition-delay: .08s; }

.experience-grid .reveal:nth-child(3),
.benefit-list .reveal:nth-child(3),
.journey-steps .reveal:nth-child(3),
.gallery-grid .reveal:nth-child(3) { transition-delay: .16s; }

.experience-grid .reveal:nth-child(4),
.benefit-list .reveal:nth-child(4),
.journey-steps .reveal:nth-child(4),
.gallery-grid .reveal:nth-child(4) { transition-delay: .24s; }

/* Responsive */
@media (max-width: 1120px) {
  :root { --container: 1040px; }

  .desktop-nav { gap: 20px; }
  .header-cta { padding-inline: 16px; }

  .hero-content { width: min(720px, 74%); }
  .hero-place-card { right: 20px; }

  .experience-grid {
    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: 340px 290px 290px;
  }

  .experience-card--featured { grid-row: 1 / span 2; }
  .experience-card:nth-child(4) { grid-column: 1 / -1; min-height: 250px; }

  .story-grid { gap: 70px; }
  .story-visual { min-height: 610px; }
  .story-seal { left: -10px; }

  .journey-steps { grid-template-columns: repeat(2, 1fr); row-gap: 56px; }
  .journey-steps::before { display: none; }
  .journey-steps li:nth-child(2) { border-right: 0; }
  .journey-steps li:nth-child(3) { padding-left: 0; }

  .gallery-grid {
    grid-template-columns: 1.15fr .85fr;
    grid-template-rows: repeat(3, 280px);
  }
  .gallery-item--wide { grid-row: 1 / span 2; }
  .gallery-item--tall { grid-row: 1 / span 2; }

  .location-map { inset-left: 48%; }
  .location-grid { grid-template-columns: .8fr .65fr; gap: 60px; }
}

@media (max-width: 900px) {
  :root { --header-height: 78px; }

  .section { padding: 100px 0; }
  .desktop-nav,
  .header-cta { display: none; }
  .menu-toggle { display: block; }

  .site-header.is-scrolled .brand-mark,
  .site-header .brand-mark { width: 52px; height: 52px; }
  .brand-name strong { font-size: 21px; }

  .hero { min-height: 760px; max-height: none; }
  .hero-media { background-position: 63% center; }
  .hero-shade {
    background: linear-gradient(90deg, rgba(4, 21, 33, .94) 0%, rgba(4, 21, 33, .72) 70%, rgba(4, 21, 33, .38) 100%), linear-gradient(180deg, rgba(4, 21, 33, .35), rgba(4, 21, 33, .56));
  }
  .hero-content { width: 84%; }
  .hero h1 { font-size: clamp(64px, 12vw, 100px); }
  .hero-place-card { display: none; }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 54px;
  }

  .experience-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 470px 290px 290px;
  }
  .experience-card--featured { grid-column: 1 / -1; grid-row: auto; }
  .experience-card:nth-child(4) { grid-column: auto; min-height: 290px; }

  .story-grid {
    grid-template-columns: 1fr;
  }
  .story-visual { width: min(100%, 680px); margin-inline: auto; }
  .story-copy { max-width: 720px; }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .benefits-copy { position: static; }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .location { padding: 100px 0; }
  .location-map { inset: 45% 0 0; opacity: .5; }
  .location-grid { grid-template-columns: 1fr; }
  .location-copy { max-width: 700px; }
  .location-card { width: min(100%, 580px); }

  .footer-top { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 82px 0; }

  .brand-name { display: none; }
  .brand-mark { border-radius: 15px 5px 15px 5px; }

  .hero {
    min-height: 720px;
    height: 100svh;
  }
  .hero-media { background-position: 67% center; }
  .hero-shade {
    background: linear-gradient(90deg, rgba(4, 21, 33, .94), rgba(4, 21, 33, .56)), linear-gradient(180deg, rgba(4, 21, 33, .2), rgba(4, 21, 33, .76));
  }
  .hero-layout { align-items: flex-end; }
  .hero-content {
    width: 100%;
    padding: 120px 0 88px;
  }
  .hero h1 { font-size: clamp(58px, 18vw, 82px); line-height: .92; }
  .hero-lead { margin-top: 24px; font-size: 16px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; margin-top: 28px; }
  .hero-actions .button { width: 100%; }
  .hero-proof { gap: 14px; margin-top: 30px; }
  .hero-proof strong { font-size: 12px; }
  .hero-proof span { font-size: 9px; }
  .hero-proof i { height: 28px; }
  .scroll-cue { display: none; }

  .marquee-track { height: 60px; }
  .marquee-track span { font-size: 19px; padding-inline: 23px; }

  .section-heading h2,
  .story-copy h2,
  .journey h2,
  .benefits-copy h2,
  .corporate h2,
  .faq-heading h2,
  .location-copy h2 {
    font-size: clamp(39px, 12vw, 55px);
  }

  .experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 460px repeat(3, minmax(280px, auto));
  }
  .experience-card--featured,
  .experience-card:nth-child(4) { grid-column: auto; }
  .experience-card { padding: 29px; }
  .experience-card-content { padding: 30px; }
  .experience-card--featured h3 { font-size: 43px; }

  .story-visual { min-height: 520px; }
  .story-photo--main { inset: 0 5% 15% 0; border-radius: 100px 20px 100px 20px; }
  .story-photo--detail { width: 51%; height: 38%; border-width: 7px; }
  .story-seal { width: 112px; height: 112px; left: -6px; bottom: 25px; }
  .story-seal svg { width: 94px; height: 94px; }
  .story-intro { font-size: 21px; }

  .journey { padding: 88px 0; }
  .journey-steps { grid-template-columns: 1fr; gap: 0; margin-top: 50px; }
  .journey-steps li,
  .journey-steps li:first-child,
  .journey-steps li:nth-child(3) {
    display: grid;
    grid-template-columns: 62px 1fr;
    column-gap: 20px;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }
  .journey-steps li > span { grid-column: 1; grid-row: 1; align-self: center; }
  .journey-icon { grid-column: 1; grid-row: 2 / span 2; width: 54px; height: 54px; margin: 10px 0 0; box-shadow: none; }
  .journey-icon svg { width: 25px; height: 25px; }
  .journey-steps h3 { grid-column: 2; grid-row: 2; margin-top: 8px; font-size: 21px; }
  .journey-steps p { grid-column: 2; grid-row: 3; }
  .journey-cta { align-items: flex-start; flex-direction: column; margin-top: 44px; }
  .journey-cta .button { width: 100%; }

  .benefit-item { grid-template-columns: 30px 1fr 46px; gap: 12px; min-height: 140px; }
  .benefit-item > svg { width: 44px; height: 44px; padding: 10px; }
  .benefit-item h3 { font-size: 21px; }
  .benefit-item p { font-size: 12px; }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 330px);
  }
  .gallery-item--wide,
  .gallery-item--tall { grid-row: auto; }

  .corporate { min-height: 650px; }
  .corporate-media { background-position: 60% center; }
  .corporate-overlay { background: linear-gradient(90deg, rgba(4, 21, 33, .94), rgba(4, 21, 33, .55)), linear-gradient(180deg, transparent, rgba(4, 21, 33, .65)); }
  .corporate p { font-size: 16px; }
  .corporate .button { width: 100%; }

  .accordion-item button { min-height: 80px; }
  .accordion-item button span { font-size: 19px; }
  .accordion-panel { padding-right: 0; }

  .location { min-height: auto; }
  .location-map { inset: 48% 0 0; }
  .location-card { padding: 26px 22px; }
  .location-actions { grid-template-columns: 1fr; }

  .footer-top { padding: 60px 0 48px; }
  .footer-links { gap: 25px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 22px 0; }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    padding: 0;
    justify-content: center;
  }
  .whatsapp-float span { display: none; }

  .lightbox-close { right: 4px; top: -54px; }
}

@media (max-width: 420px) {
  .hero-proof { justify-content: space-between; gap: 7px; }
  .hero-proof i { display: none; }
  .hero-proof span { max-width: 76px; }
  .story-visual { min-height: 455px; }
  .story-seal { display: none; }
  .footer-links { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-media { transform: none !important; }
}
