.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  max-width: 100%;
  background: linear-gradient(135deg, #2F3B3A 0%, #4A6470 48%, #7D8B69 100%);
  color: var(--bg);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero.is-ready .hero-media img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(47, 59, 58, 0.72) 0%, rgba(74, 100, 112, 0.44) 50%, rgba(125, 139, 105, 0.35) 100%),
    rgba(47, 59, 58, 0.44);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--container));
  margin: 0 auto;
  padding: 8rem 0 5rem;
}

.hero h1 {
  color: var(--bg);
  max-width: 14ch;
  margin-bottom: 1.1rem;
}

.hero .lead {
  color: rgba(242, 244, 241, 0.88);
  max-width: 34rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2rem;
  font-family: var(--font-meta);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(242, 244, 241, 0.7);
}

.page-hero {
  position: relative;
  padding: clamp(6rem, 12vw, 8.5rem) 0 clamp(3.5rem, 7vw, 5rem);
  overflow: hidden;
  max-width: 100%;
  background: linear-gradient(135deg, #2F3B3A 0%, #4A6470 55%, #7D8B69 100%);
  color: var(--bg);
}

.page-hero h1 {
  color: var(--bg);
  max-width: 16ch;
}

.page-hero .lead {
  color: rgba(242, 244, 241, 0.86);
}

.page-hero-media {
  position: absolute;
  inset: 0;
  opacity: 0.28;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.value-prop {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: end;
}

.value-prop-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--primary);
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
}

.value-list {
  display: grid;
  gap: 1.5rem;
}

.value-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(74, 100, 112, 0.14);
}

.value-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.value-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.signature {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 70vh;
  overflow: hidden;
  max-width: 100%;
}

.signature-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.signature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.signature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem);
  background: linear-gradient(180deg, #F2F4F1 0%, #E4E9E4 100%);
}

.signature-stat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(74, 100, 112, 0.14);
}

.signature-stat div strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--accent);
  letter-spacing: -0.03em;
}

.signature-stat div span {
  font-family: var(--font-meta);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(42, 48, 46, 0.6);
}

.showcase {
  display: grid;
  gap: 1.5rem;
}

.showcase-featured {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 1.5rem;
  min-height: 520px;
}

.showcase-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  background: var(--bg-2);
  box-shadow: var(--shadow);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(47, 59, 58, 0.78) 100%);
}

.showcase-card:hover img {
  transform: scale(1.06);
}

@media (hover: hover) and (pointer: fine) {
  .showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(47, 59, 58, 0.14);
  }
}

.showcase-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.6rem 1.7rem;
  color: var(--bg);
}

.showcase-body h3 {
  color: var(--bg);
  margin-bottom: 0.35rem;
}

.showcase-body p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(242, 244, 241, 0.85);
}

.showcase-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.showcase-meta span {
  font-family: var(--font-meta);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.showcase-side {
  display: grid;
  gap: 1.5rem;
}

.insight {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.insight-aside {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  align-self: start;
}

.insight-body p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(42, 48, 46, 0.84);
}

.insight-body p.drop {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  line-height: 1.45;
  color: var(--primary);
}

.keyword-note {
  margin-top: 2rem;
  padding: 1.4rem 1.5rem;
  background: var(--bg-2);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent);
}

.services-hybrid {
  display: grid;
  gap: 0;
  border: 1px solid rgba(74, 100, 112, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.service-row {
  display: grid;
  grid-template-columns: 0.35fr 1fr 0.4fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.6rem 1.8rem;
  border-bottom: 1px solid rgba(74, 100, 112, 0.12);
  transition: background 0.35s var(--ease);
}

.service-row:last-child {
  border-bottom: 0;
}

.service-row:hover {
  background: rgba(166, 179, 154, 0.18);
}

.service-row .num {
  font-family: var(--font-meta);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.service-row h3 {
  margin-bottom: 0.35rem;
}

.service-row p {
  margin: 0;
  color: rgba(42, 48, 46, 0.72);
}

.service-row .dur {
  font-family: var(--font-meta);
  font-size: 0.85rem;
  text-align: right;
  color: var(--primary);
}

.landscape-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(74, 100, 112, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.landscape-item {
  background: var(--bg);
  padding: 2rem 1.6rem;
  min-height: 180px;
  transition: background 0.35s var(--ease);
}

.landscape-item:hover {
  background: rgba(166, 179, 154, 0.28);
}

.landscape-item .icon-line {
  width: 36px;
  height: 36px;
  margin-bottom: 1.1rem;
}

.landscape-item .icon-line svg {
  width: 100%;
  height: 100%;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.5;
}

.landscape-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.landscape-item p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(42, 48, 46, 0.7);
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(242, 244, 241, 0.22);
}

.timeline-item {
  position: relative;
  padding: 0 0 2.5rem 4rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 10px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--dark);
  box-shadow: 0 0 0 3px rgba(197, 165, 106, 0.35);
}

.timeline-item .day {
  font-family: var(--font-meta);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.45rem;
}

.timeline-item h3 {
  color: var(--bg);
  margin-bottom: 0.5rem;
}

.timeline-item p {
  margin: 0;
  color: rgba(242, 244, 241, 0.78);
}

.social-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.proof-quotes {
  display: grid;
  gap: 1.25rem;
}

.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .quote-card:hover {
    transform: translateY(-4px);
  }
}

.quote-card p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.45;
  margin-bottom: 1.2rem;
}

.quote-card cite {
  font-family: var(--font-meta);
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(42, 48, 46, 0.6);
}

.proof-cases {
  display: grid;
  gap: 1rem;
}

.case-line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 1.35rem;
  background: var(--bg-2);
  border-radius: var(--radius-sm);
}

.case-line strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.case-line span {
  font-family: var(--font-meta);
  font-size: 0.78rem;
  color: var(--primary);
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(74, 100, 112, 0.12);
  opacity: 0.55;
}

.logo-row span {
  font-family: var(--font-meta);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.cta-block {
  text-align: center;
  padding: clamp(4rem, 9vw, 7rem) 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, #2F3B3A 0%, #4A6470 50%, #7D8B69 100%);
  color: var(--bg);
  overflow: hidden;
  max-width: 100%;
}

.cta-block h2 {
  color: var(--bg);
  max-width: 16ch;
  margin-inline: auto;
}

.cta-block .lead {
  margin-inline: auto;
  color: rgba(242, 244, 241, 0.86);
}

.cta-block .btn-group {
  justify-content: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  box-shadow: var(--shadow);
}

.contact-details {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.contact-details dt {
  font-family: var(--font-meta);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.contact-details dd {
  margin: 0;
  font-size: 1.05rem;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-family: var(--font-meta);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  color: rgba(42, 48, 46, 0.7);
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(74, 100, 112, 0.22);
  background: var(--bg);
  border-radius: 14px;
  padding: 0.95rem 1.1rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(74, 100, 112, 0.12);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.map-wrap {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
  background: var(--dark);
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(0.95);
}

.js-marquee-wrap {
  overflow: hidden;
  max-width: 100vw;
  padding: 1.75rem 0;
  background: var(--dark);
  border-block: 1px solid rgba(242, 244, 241, 0.08);
}

.js-mq-row {
  display: flex;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
}

.js-mq-row span {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 38px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--bg);
  opacity: 0.12;
  padding-right: 2.5rem;
}

.js-mq-row.fwd {
  animation: mq-fwd 42s linear infinite;
}

.js-mq-row.rev {
  animation: mq-rev 48s linear infinite;
  margin-top: 0.35rem;
}

@keyframes mq-fwd {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes mq-rev {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.dest-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .dest-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(47, 59, 58, 0.12);
  }
}

.dest-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.dest-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.dest-card:hover .dest-card-media img {
  transform: scale(1.05);
}

.dest-card-body {
  padding: 1.35rem 1.4rem 1.55rem;
}

.dest-card-body h3 {
  margin-bottom: 0.5rem;
}

.dest-card-body p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(42, 48, 46, 0.72);
}

.dest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.faq {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(74, 100, 112, 0.14);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: none;
  border: 0;
  padding: 1.35rem 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text);
}

.faq-q svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.8;
}

.faq-item.is-open .faq-q svg {
  transform: rotate(45deg);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}

.faq-item.is-open .faq-a {
  grid-template-rows: 1fr;
}

.faq-a-inner {
  overflow: hidden;
}

.faq-a-inner p {
  padding-bottom: 1.35rem;
  color: rgba(42, 48, 46, 0.78);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.stagger > *.reveal:nth-child(1) { transition-delay: 0.05s; }
.stagger > *.reveal:nth-child(2) { transition-delay: 0.12s; }
.stagger > *.reveal:nth-child(3) { transition-delay: 0.19s; }
.stagger > *.reveal:nth-child(4) { transition-delay: 0.26s; }
.stagger > *.reveal:nth-child(5) { transition-delay: 0.33s; }
.stagger > *.reveal:nth-child(6) { transition-delay: 0.4s; }

.legal-page {
  padding: 4rem 0 5rem;
}

.legal-page .container {
  max-width: 820px;
}

.legal-page h1 {
  margin-bottom: 0.5rem;
}

.legal-page h2 {
  margin-top: 2.5rem;
  font-size: 1.55rem;
}

.legal-page h3 {
  margin-top: 1.75rem;
  font-size: 1.2rem;
}

.legal-page p,
.legal-page li {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(42, 48, 46, 0.84);
}

.legal-page ul {
  padding-left: 1.25rem;
  margin-bottom: 1.2rem;
}

.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #2F3B3A 0%, #4A6470 45%, #7D8B69 100%);
  color: var(--bg);
  text-align: center;
  padding: 3rem 1.5rem;
  overflow-x: hidden;
  max-width: 100%;
}

.thanks-inner {
  max-width: 640px;
}

.thanks-inner .mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.75rem;
  border-radius: 50%;
  border: 1.5px solid rgba(242, 244, 241, 0.35);
  display: grid;
  place-items: center;
}

.thanks-inner .mark svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-2);
  fill: none;
  stroke-width: 2;
}

.thanks-inner h1 {
  color: var(--bg);
}

.thanks-inner p {
  color: rgba(242, 244, 241, 0.84);
  font-size: 1.1rem;
  line-height: 1.65;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-split img {
  border-radius: var(--radius);
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.editorial-stack {
  display: grid;
  gap: 2.5rem;
}

.editorial-block {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(74, 100, 112, 0.12);
}

.editorial-block:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.editorial-block .label {
  font-family: var(--font-meta);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.route-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.route-table th,
.route-table td {
  padding: 1.15rem 1.35rem;
  text-align: left;
  border-bottom: 1px solid rgba(74, 100, 112, 0.1);
}

.route-table th {
  font-family: var(--font-meta);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--bg-2);
  color: var(--primary);
}

.route-table tr:last-child td {
  border-bottom: 0;
}

.route-table td:first-child {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.media-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay);
  pointer-events: none;
}

section,
header,
footer {
  overflow-x: clip;
  max-width: 100%;
  box-sizing: border-box;
}

@media (min-width: 1025px) {
  .parallax-img {
    will-change: transform;
  }
}

@media (max-width: 1024px) {
  .value-prop,
  .signature,
  .showcase-featured,
  .insight,
  .social-proof,
  .contact-grid,
  .about-split,
  .editorial-block {
    grid-template-columns: 1fr;
  }

  .signature-visual {
    min-height: 360px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .service-row .dur {
    text-align: left;
  }

  .landscape-strip,
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .parallax-img {
    transform: none !important;
  }
}

@media (max-width: 720px) {
  .hero-content {
    width: min(100% - 1.5rem, var(--container));
    padding: 7rem 0 3.5rem;
  }

  .hero {
    min-height: 88vh;
  }

  .landscape-strip,
  .dest-grid,
  .signature-stat {
    grid-template-columns: 1fr;
  }

  .showcase-featured {
    min-height: auto;
  }

  .showcase-card {
    min-height: 320px;
  }

  .case-line {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .route-table th,
  .route-table td {
    padding: 0.9rem;
    font-size: 0.9rem;
  }
}

html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}
