section,
header,
footer {
  overflow-x: clip;
  max-width: 100%;
  box-sizing: border-box;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--bg);
  background: linear-gradient(145deg, #263B3C 0%, #395966 48%, #587265 100%);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(38, 59, 60, 0.72), rgba(57, 89, 102, 0.48), rgba(88, 114, 101, 0.38));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--container));
  margin: 0 auto;
  padding: 7rem 0 5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  max-width: 11ch;
  margin: 0 0 1.25rem;
  color: var(--bg);
}

.hero p {
  max-width: 34rem;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  color: rgba(238, 243, 242, 0.88);
  margin: 0 0 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-glass {
  margin-top: 2.5rem;
  display: inline-flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1rem 1.25rem;
  border-radius: 18px;
  background: rgba(238, 243, 242, 0.1);
  border: 1px solid rgba(238, 243, 242, 0.18);
  backdrop-filter: blur(10px);
}

.hero-glass strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(238, 243, 242, 0.62);
  font-weight: 500;
}

.hero-glass span {
  font-family: var(--font-head);
  font-weight: 600;
}

.section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.section-dark {
  background: var(--dark);
  color: rgba(238, 243, 242, 0.88);
}

.section-dark .display,
.section-dark .h-section {
  color: var(--bg);
}

.section-soft {
  background: linear-gradient(180deg, #EEF3F2 0%, #DDE7E4 100%);
}

.section-stone {
  background: var(--bg-2);
}

.section-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 3rem;
}

.section-head p {
  margin: 0;
  color: rgba(37, 45, 44, 0.78);
  line-height: 1.65;
}

.value-editorial {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.value-editorial .display {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  max-width: 10ch;
}

.value-list {
  display: grid;
  gap: 1.6rem;
}

.value-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(57, 89, 102, 0.16);
}

.value-item h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  margin: 0 0 0.55rem;
}

.value-item p {
  margin: 0;
  color: rgba(37, 45, 44, 0.78);
}

.signature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 72vh;
}

.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 {
  background: linear-gradient(160deg, #263B3C, #395966);
  color: var(--bg);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.signature-copy .display {
  color: var(--bg);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  margin-bottom: 1.2rem;
}

.signature-copy p {
  color: rgba(238, 243, 242, 0.86);
  line-height: 1.65;
}

.showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
}

.showcase-main,
.showcase-side article {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--primary);
  box-shadow: var(--shadow-soft);
}

.showcase-main {
  min-height: 560px;
}

.showcase-side {
  display: grid;
  gap: 1.25rem;
}

.showcase-side article {
  min-height: 268px;
}

.showcase-main img,
.showcase-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.showcase-main:hover img,
.showcase-side article:hover img {
  transform: scale(1.045);
}

.showcase-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(38, 59, 60, 0.82));
  color: var(--bg);
  transform: translateY(0);
  transition: transform 0.45s ease;
}

.showcase-main:hover .showcase-caption,
.showcase-side article:hover .showcase-caption {
  transform: translateY(-6px);
}

.showcase-caption h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin: 0.4rem 0 0.35rem;
}

.showcase-caption p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(238, 243, 242, 0.82);
}

.insight {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.insight-panel {
  background: var(--secondary);
  color: var(--bg);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem);
  background-image: linear-gradient(145deg, #587265, #82958A);
}

.insight-panel .display {
  color: var(--bg);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
}

.insight-copy h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  margin: 0 0 0.8rem;
}

.insight-copy p {
  margin: 0 0 1.2rem;
  color: rgba(37, 45, 44, 0.82);
  line-height: 1.65;
}

.services-hybrid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.services-intro {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.services-table {
  border: 1px solid rgba(57, 89, 102, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
}

.service-row {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr;
  gap: 1rem;
  padding: 1.35rem 1.4rem;
  border-bottom: 1px solid rgba(57, 89, 102, 0.12);
  transition: background 0.35s ease;
}

.service-row:last-child {
  border-bottom: 0;
}

.service-row:hover {
  background: rgba(216, 224, 222, 0.55);
}

.service-row h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
}

.service-row p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(37, 45, 44, 0.72);
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--accent-2), var(--primary), var(--secondary));
}

.timeline-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 1.25rem;
  padding: 1.4rem 0;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  margin: 0.35rem 0 0 12px;
  box-shadow: 0 0 0 6px rgba(155, 84, 79, 0.12);
}

.timeline-body {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(57, 89, 102, 0.1);
  border-radius: var(--radius-sm);
  padding: 1.35rem 1.45rem;
}

.timeline-body h3 {
  font-family: var(--font-head);
  margin: 0 0 0.45rem;
}

.timeline-body p {
  margin: 0;
  color: rgba(37, 45, 44, 0.78);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
}

.quote-card,
.case-card {
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(57, 89, 102, 0.1);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.quote-card:hover,
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.quote-card blockquote {
  margin: 0 0 1.2rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.35;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.logo-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  border-radius: 14px;
  background: rgba(141, 139, 114, 0.12);
  color: var(--natural);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--primary);
}

.stat span {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--natural);
}

.cta-block {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, #263B3C, #395966 55%, #587265);
  color: var(--bg);
  padding: clamp(2.8rem, 6vw, 4.5rem);
}

.cta-block h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  max-width: 12ch;
  margin: 0 0 1rem;
  color: var(--bg);
}

.cta-block p {
  max-width: 34rem;
  margin: 0 0 1.8rem;
  color: rgba(238, 243, 242, 0.86);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(57, 89, 102, 0.12);
  border-radius: var(--radius);
  padding: 1.8rem;
}

.contact-card h3 {
  font-family: var(--font-head);
  margin: 0 0 1rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  margin-bottom: 0.9rem;
  line-height: 1.5;
}

.contact-list strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--natural);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-grid label {
  display: grid;
  gap: 0.45rem;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(57, 89, 102, 0.22);
  background: rgba(255, 255, 255, 0.65);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-grid input:focus,
.form-grid textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(57, 89, 102, 0.12);
}

.form-grid textarea {
  min-height: 150px;
  resize: vertical;
}

.map-frame {
  margin-top: 1.2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(57, 89, 102, 0.12);
  background: var(--bg-2);
  min-height: 280px;
}

.map-frame iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.dest-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #587265, #82958A);
  min-height: 420px;
  box-shadow: var(--shadow-soft);
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.7s ease;
}

.dest-card:hover img {
  transform: scale(1.04);
}

.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 35%, rgba(38, 59, 60, 0.82));
}

.dest-body {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  color: var(--bg);
  transform: translateY(0);
  transition: transform 0.45s ease;
}

.dest-card:hover .dest-body {
  transform: translateY(-8px);
}

.dest-body h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: 0.45rem 0 0.4rem;
}

.dest-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
}

.dest-meta span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(238, 243, 242, 0.14);
  border: 1px solid rgba(238, 243, 242, 0.18);
}

.dest-body p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(238, 243, 242, 0.86);
}

.landscape-rail {
  display: grid;
  gap: 1.5rem;
}

.landscape-item {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: stretch;
  min-height: 320px;
}

.landscape-item:nth-child(even) {
  grid-template-columns: 0.9fr 1.1fr;
}

.landscape-item:nth-child(even) .landscape-copy {
  order: -1;
}

.landscape-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 280px;
}

.landscape-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.landscape-item:hover .landscape-media img {
  transform: scale(1.04);
}

.landscape-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.landscape-copy {
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(57, 89, 102, 0.1);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.landscape-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0.4rem 0 0.8rem;
}

.routes {
  display: grid;
  gap: 1rem;
}

.route-line {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(57, 89, 102, 0.1);
  transition: transform 0.35s ease, background 0.35s ease;
}

.route-line:hover {
  transform: translateX(6px);
  background: rgba(216, 224, 222, 0.65);
}

.route-line strong {
  font-family: var(--font-head);
  font-size: 1.05rem;
}

.route-line p {
  margin: 0;
  color: rgba(37, 45, 44, 0.75);
}

.route-line .meta {
  color: var(--accent-2);
}

.page-hero {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(145deg, #263B3C, #395966 55%, #587265);
  color: var(--bg);
  overflow: hidden;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--container));
  margin: 0 auto;
  padding: 6rem 0 3.5rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.9rem;
  max-width: 14ch;
}

.page-hero p {
  max-width: 36rem;
  margin: 0;
  color: rgba(238, 243, 242, 0.86);
  line-height: 1.65;
}

.faq {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid rgba(57, 89, 102, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.4);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1.15rem 1.3rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq-q::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.is-open .faq-q::after {
  transform: rotate(-135deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.35s ease;
  padding: 0 1.3rem;
  color: rgba(37, 45, 44, 0.78);
}

.faq-item.is-open .faq-a {
  max-height: 280px;
  padding: 0 1.3rem 1.2rem;
}

.legal-wrap {
  width: min(100% - 2.5rem, 860px);
  margin: 0 auto;
  padding: 4rem 0 5rem;
}

.legal-wrap h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 0 0 1.5rem;
}

.legal-wrap h2 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  margin: 2.2rem 0 0.8rem;
}

.legal-wrap h3 {
  font-family: var(--font-head);
  font-size: 1.08rem;
  margin: 1.5rem 0 0.6rem;
}

.legal-wrap p,
.legal-wrap li {
  color: rgba(37, 45, 44, 0.86);
  line-height: 1.7;
}

.legal-wrap p {
  margin: 0 0 1rem;
}

.thanks {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #263B3C, #395966 50%, #587265);
  color: var(--bg);
  text-align: center;
  padding: 2rem;
}

.thanks-card {
  width: min(100%, 640px);
}

.thanks-card .eyebrow {
  color: rgba(238, 243, 242, 0.55);
}

.thanks-card h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  letter-spacing: -0.035em;
  margin: 0 0 1rem;
  color: var(--bg);
}

.thanks-card p {
  margin: 0 auto 2rem;
  max-width: 28rem;
  color: rgba(238, 243, 242, 0.86);
  line-height: 1.65;
}

.icon-line {
  width: 42px;
  height: 42px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.icon-line path,
.icon-line circle,
.icon-line polyline {
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  transition: stroke-dashoffset 1.1s ease;
}

.is-in .icon-line path,
.is-in .icon-line circle,
.is-in .icon-line polyline {
  stroke-dashoffset: 0;
}

@media (hover: hover) and (pointer: fine) {
  .tilt-ready {
    transform-style: preserve-3d;
    transition: transform 0.35s ease;
  }
}

@media (min-width: 1025px) {
  .hero-media.js-parallax img {
    will-change: transform;
  }
}

@media (max-width: 1024px) {
  .section-head,
  .value-editorial,
  .signature,
  .showcase,
  .insight,
  .services-hybrid,
  .proof-grid,
  .contact-grid,
  .landscape-item,
  .landscape-item:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .landscape-item:nth-child(even) .landscape-copy {
    order: 0;
  }

  .services-intro {
    position: static;
  }

  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-main {
    min-height: 420px;
  }

  .hero-media.js-parallax img {
    transform: none !important;
  }
}

@media (max-width: 720px) {
  .dest-grid,
  .logo-strip,
  .stats,
  .service-row,
  .route-line {
    grid-template-columns: 1fr;
  }

  .hero-content {
    width: min(100% - 1.5rem, var(--container));
    padding: 6.5rem 0 3.5rem;
  }

  .hero h1 {
    max-width: none;
  }

  .page-hero-inner {
    width: min(100% - 1.5rem, var(--container));
  }
}

html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}
