:root {
  --ink: #080a0c;
  --ink-soft: #0d1115;
  --ivory: #f4efe7;
  --paper: #efe9df;
  --muted: #aaa69f;
  --gold: #c39a53;
  --gold-light: #e0b76c;
  --copper: #a86643;
  --line: rgba(195, 154, 83, 0.38);
  --header-height: 88px;
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --body: "Montserrat", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--body);
  margin: 0;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.84' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  content: "";
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  position: fixed;
  z-index: 200;
}

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

button {
  cursor: pointer;
}

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

a {
  text-decoration: none;
}

.shell {
  margin-inline: auto;
  max-width: 1280px;
  width: min(90%, 1280px);
}

.eyebrow {
  color: var(--gold-light);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  line-height: 1.5;
  margin: 0;
  text-transform: uppercase;
}

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

.brand-name {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.brand-tagline {
  color: rgba(244, 239, 231, 0.66);
  font-size: 0.48rem;
  letter-spacing: 0.16em;
  margin-top: 7px;
}

.site-header {
  background: linear-gradient(
    180deg,
    rgba(4, 7, 10, 0.82),
    rgba(4, 7, 10, 0.12)
  );
  border-bottom: 1px solid transparent;
  height: var(--header-height);
  inset: 0 0 auto;
  position: fixed;
  transition:
    background 200ms ease,
    border-color 200ms ease,
    backdrop-filter 200ms ease;
  z-index: 100;
}

.site-header.is-scrolled {
  backdrop-filter: blur(18px);
  background: rgba(7, 9, 11, 0.9);
  border-color: rgba(255, 255, 255, 0.055);
}

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

.main-nav {
  align-items: center;
  display: flex;
  gap: clamp(22px, 3vw, 44px);
}

.nav-link {
  background: none;
  border: 0;
  color: rgba(244, 239, 231, 0.84);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  padding: 12px 0;
  position: relative;
}

.nav-link::after {
  background: var(--gold);
  bottom: 5px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  width: calc(100% - 0.2em);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after,
.nav-link[aria-expanded="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.contact-menu {
  position: relative;
}

.contact-toggle {
  display: block;
}

.contact-popover {
  background: rgba(11, 14, 17, 0.98);
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  padding: 22px;
  position: absolute;
  right: -18px;
  top: calc(100% + 18px);
  width: 320px;
}

.contact-popover[hidden] {
  display: none;
}

.contact-eyebrow {
  color: var(--gold-light);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin: 0 0 14px;
}

.contact-option {
  align-items: center;
  display: flex;
  gap: 13px;
  padding: 10px 6px;
}

.contact-option:hover,
.contact-option:focus-visible {
  background: rgba(195, 154, 83, 0.08);
  outline: none;
}

.contact-icon {
  align-items: center;
  border: 1px solid rgba(195, 154, 83, 0.55);
  border-radius: 50%;
  color: var(--gold-light);
  display: inline-flex;
  flex: 0 0 44px;
  height: 44px;
  justify-content: center;
}

.contact-icon svg {
  fill: none;
  height: 21px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  width: 21px;
}

.contact-icon .fill-dot {
  fill: currentColor;
  stroke: none;
}

.contact-option strong,
.contact-option small {
  display: block;
}

.contact-option strong {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.contact-option small {
  color: var(--muted);
  font-size: 0.67rem;
  margin-top: 3px;
}

.button {
  align-items: center;
  border: 1px solid var(--gold);
  display: inline-flex;
  font-size: 0.66rem;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.22em;
  min-height: 49px;
  padding: 13px 28px;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--gold);
  box-shadow: 0 12px 38px rgba(195, 154, 83, 0.19);
  color: #090a0b;
  outline: none;
  transform: translateY(-2px);
}

.header-cta {
  min-height: 43px;
  padding-inline: 21px;
}

.button-outline {
  background: rgba(5, 8, 11, 0.8);
}

.button-small {
  min-height: 43px;
  padding-inline: 22px;
}

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

.menu-toggle span {
  background: var(--ivory);
  display: block;
  height: 1px;
  margin: 6px 0;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
  width: 24px;
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.hero {
  align-items: center;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.hero-image,
.hero-overlay {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-image {
  object-fit: cover;
  z-index: 0;
}

.hero-drift {
  animation: hero-drift 18s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  from {
    transform: scale(1.01) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.075) translate3d(-0.6%, -0.7%, 0);
  }
}

.hero-overlay {
  z-index: 1;
}

.hero-overlay-andes {
  background:
    linear-gradient(90deg, rgba(4, 8, 12, 0.55), rgba(4, 8, 12, 0.1) 65%),
    linear-gradient(
      180deg,
      rgba(4, 7, 10, 0.18),
      rgba(4, 7, 10, 0.07) 58%,
      rgba(4, 7, 10, 0.9)
    );
}

.hero-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-top: var(--header-height);
  position: relative;
  text-align: center;
  z-index: 2;
}

.hero-content h1 {
  font-family: var(--display);
  font-size: clamp(3.1rem, 7.1vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.94;
  margin: 22px 0 0;
  max-width: 1050px;
  text-shadow: 0 5px 34px rgba(0, 0, 0, 0.36);
}

.hero-content h1 span {
  display: block;
}

.hero-lead {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.5;
  margin: 28px 0 32px;
  max-width: 590px;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.7);
}

.hero-scroll {
  bottom: 26px;
  height: 40px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 40px;
  z-index: 3;
}

.hero-scroll span {
  border-bottom: 1px solid var(--gold-light);
  border-right: 1px solid var(--gold-light);
  height: 10px;
  left: 15px;
  position: absolute;
  top: 10px;
  transform: rotate(45deg);
  width: 10px;
}

.signature-statement {
  background:
    radial-gradient(
      circle at 50% 120%,
      rgba(168, 102, 67, 0.10),
      transparent 36%
    ),
     #d8d3ca;
     
  color: #292621;
  min-height: 250px;
  overflow: hidden;
  position: relative;
}

.signature-statement::before,
.topo-surface::before {
  background-image:
    repeating-radial-gradient(
      ellipse at 10% 50%,
      transparent 0 36px,
      rgba(116, 89, 54, 0.06) 37px 38px
    ),
    repeating-radial-gradient(
      ellipse at 90% 50%,
      transparent 0 52px,
      rgba(116, 89, 54, 0.04) 53px 54px
    );
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.signature-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 250px;
  padding-block: 42px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.statement-mark {
  color: var(--copper);
  font-size: 1.35rem;
  margin-bottom: 20px;
}

.signature-statement p {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.2vw, 2.9rem);
  line-height: 1.25;
  margin: 0;
}

.signature-statement strong {
  color: var(--copper);
  font-weight: 500;
}

.topo-surface {
  position: relative;
}

.topo-surface::before {
  opacity: 0.33;
}

.experiences {
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(195, 154, 83, 0.06),
      transparent 25%
    ),
    var(--ink);
  padding: 86px 0 94px;
}

.section-heading {
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: center;
  z-index: 1;
}

.mountain-mark {
  color: var(--gold-light);
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 10px;
}

.section-heading h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.4vw, 3.7rem);
  font-weight: 400;
  line-height: 1.08;
  margin: 16px 0 0;
}

.experience-tabs {
  border-bottom: 1px solid rgba(195, 154, 83, 0.22);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.experience-tab {
  background: none;
  border: 0;
  color: rgba(244, 239, 231, 0.72);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  min-height: 54px;
  padding: 16px 8px;
  position: relative;
}

.experience-tab::after {
  background: var(--gold-light);
  bottom: -1px;
  content: "";
  height: 2px;
  left: 14%;
  position: absolute;
  transform: scaleX(0);
  transition: transform 200ms ease;
  width: 72%;
}

.experience-tab.is-active {
  color: var(--gold-light);
}

.experience-tab.is-active::after {
  transform: scaleX(1);
}

.experience-tab:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: -4px;
}

.experience-panel {
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(420px, 1.15fr) minmax(0, 1.4fr);
  min-height: 510px;
  overflow: hidden;
  position: relative;
  transition:
    opacity 130ms ease,
    transform 130ms ease;
  z-index: 1;
}

.experience-panel.is-changing {
  opacity: 0.55;
  transform: translateY(3px);
}

.experience-copy {
  align-self: stretch;
  background:
    linear-gradient(135deg, rgba(16, 20, 24, 0.98), rgba(6, 9, 12, 0.97)),
    var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 72px);
}

.experience-copy h3 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.12;
  margin: 20px 0 18px;
}

.experience-lead {
  color: var(--ivory);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

.experience-description {
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.75;
  margin: 16px 0 30px;
}

.experience-copy .button {
  align-self: flex-start;
}

.experience-visual {
  min-height: 510px;
  overflow: hidden;
}

.experience-visual img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.method-section {
  background:
    linear-gradient(180deg, #0a0d10, #080a0c),
    var(--ink);
  border-top: 1px solid rgba(195, 154, 83, 0.16);
  padding: 72px 0 80px;
}

.line-title {
  align-items: center;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr auto 1fr;
  position: relative;
  z-index: 1;
}

.line-title span {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(195, 154, 83, 0.35)
  );
  height: 1px;
}

.line-title span:last-child {
  background: linear-gradient(
    90deg,
    rgba(195, 154, 83, 0.35),
    transparent
  );
}

.line-title h2 {
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  margin: 0;
  text-align: center;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
  position: relative;
  z-index: 1;
}

.method-grid article {
  align-items: center;
  display: flex;
  flex-direction: column;
  min-height: 180px;
  padding: 18px 30px;
  text-align: center;
}

.method-grid article + article {
  border-left: 1px solid rgba(195, 154, 83, 0.4);
}

.method-grid svg {
  fill: none;
  height: 68px;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.15;
  width: 68px;
}

.method-grid h3 {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  margin: 26px 0 0;
}

.site-footer {
  align-items: center;
  background: #07090b;
  border-top: 1px solid rgba(195, 154, 83, 0.12);
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 64px 20px 44px;
  text-align: center;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-brand .brand-name {
  font-size: clamp(2.3rem, 4vw, 3.2rem);
}

.site-footer p {
  color: rgba(244, 239, 231, 0.42);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  margin: 30px 0 0;
}

/* SALARRA */

.hero-overlay-salarra {
  background:
    linear-gradient(90deg, rgba(4, 6, 8, 0.28), transparent 72%),
    linear-gradient(
      180deg,
      rgba(4, 6, 8, 0.38),
      rgba(4, 6, 8, 0.12) 55%,
      rgba(4, 6, 8, 0.72)
    );
}

.salarra-hero-content h1 {
  font-size: clamp(4.6rem, 11vw, 10.5rem);
  letter-spacing: 0.05em;
  line-height: 0.8;
  margin: 0 0 28px;
}

.salarra-hero-content h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.4vw, 4.4rem);
  font-weight: 400;
  line-height: 1.04;
  margin: 22px 0 0;
  max-width: 740px;
}

.salarra-hero-content h2 span {
  display: block;
}

.salarra-meta {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  margin: 30px 0 26px;
}

.salarra-meta i {
  color: var(--gold);
  font-style: normal;
  margin-inline: 8px;
}

.included-section {
  background:
    radial-gradient(
      circle at 50% 0,
      rgba(168, 102, 67, 0.12),
      transparent 42%
    ),
    #0b0d0f;
  padding: 66px 0 72px;
}

.compact-heading .short-rule {
  background: var(--gold);
  height: 1px;
  margin-top: 16px;
  width: 22px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 36px;
}

.included-grid article {
  align-items: center;
  display: flex;
  flex-direction: column;
  min-height: 132px;
  padding: 15px 18px;
  text-align: center;
}

.included-grid article + article {
  border-left: 1px solid rgba(195, 154, 83, 0.27);
}

.included-grid svg {
  fill: none;
  height: 50px;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
  width: 50px;
}

.included-grid h2 {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  margin: 20px 0 0;
}

.included-note,
.journey-note {
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.7;
  margin: 24px auto 0;
  max-width: 760px;
  text-align: center;
}

.journey-section {
  background: #080a0c;
  padding: 76px 0 84px;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 42px;
  min-height: 500px;
  position: relative;
  z-index: 1;
}

.journey-card {
  min-height: 500px;
  overflow: hidden;
  position: relative;
}

.journey-card + .journey-card {
  border-left: 1px solid rgba(244, 239, 231, 0.22);
}

.journey-card img,
.journey-card-overlay {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.journey-card img {
  object-fit: cover;
  transition: transform 700ms ease;
}

.journey-card:nth-child(3) img {
  object-position: 68% center;
}

.journey-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(5, 7, 9, 0.05) 18%,
    rgba(5, 7, 9, 0.58) 62%,
    rgba(5, 7, 9, 0.96)
  );
}

.journey-card-content {
  align-items: center;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  left: 18px;
  position: absolute;
  right: 18px;
  text-align: center;
  z-index: 1;
}

.journey-card-content p {
  color: var(--gold-light);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  margin: 0;
}

.journey-card-content span {
  background: var(--gold);
  height: 1px;
  margin: 14px 0;
  width: 20px;
}

.journey-card-content h3 {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.5;
  margin: 0;
}

.journey-card-content small {
  color: rgba(244, 239, 231, 0.62);
  font-size: 0.64rem;
  line-height: 1.55;
  margin-top: 12px;
}

.journey-card:hover img {
  transform: scale(1.045);
}

.salarra-closing {
  align-items: center;
  display: flex;
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.salarra-closing > img,
.closing-overlay {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.salarra-closing > img {
  object-fit: cover;
}

.closing-overlay {
  background: linear-gradient(
    180deg,
    rgba(4, 6, 8, 0.25),
    rgba(4, 6, 8, 0.55)
  );
}

.closing-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 70px 20px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.closing-content > span {
  color: var(--gold-light);
  font-size: 1.2rem;
}

.closing-content h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.8vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin: 25px 0 34px;
  text-shadow: 0 5px 35px rgba(0, 0, 0, 0.5);
}

.closing-content h2 em {
  color: var(--gold-light);
  display: block;
  font-weight: 400;
}

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

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 3;
  }

  .main-nav {
    align-items: stretch;
    background: rgba(6, 8, 10, 0.98);
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 8px;
    left: 0;
    opacity: 0;
    padding: 104px 5% 34px;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateY(-18px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
    visibility: hidden;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-link {
    padding: 13px 0;
    text-align: left;
    width: fit-content;
  }

  .contact-popover {
    left: 0;
    right: auto;
    top: calc(100% + 4px);
    width: min(86vw, 320px);
    z-index: 5;
  }

  .header-cta {
    margin-top: 12px;
    width: fit-content;
  }

  .experience-panel {
    grid-template-columns: 1fr;
  }

  .experience-visual {
    min-height: 390px;
    order: -1;
  }

  .included-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .included-grid article:nth-child(4) {
    border-left: 0;
  }

  .included-grid article:nth-child(n + 4) {
    border-top: 1px solid rgba(195, 154, 83, 0.27);
  }

  .journey-grid {
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
  }

  .journey-card {
    min-height: 420px;
  }

  .journey-card + .journey-card {
    border-left: 0;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(88%, 1280px);
  }

  .brand-name {
    font-size: 1.65rem;
  }

  .brand-tagline {
    font-size: 0.4rem;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-andes .hero-image {
    object-position: 68% center;
  }

  .hero-content {
    align-items: flex-start;
    text-align: left;
  }

  .hero-content .eyebrow {
    letter-spacing: 0.24em;
  }

  .hero-content h1 {
    font-size: clamp(3.05rem, 15vw, 4.7rem);
    line-height: 0.95;
  }

  .hero-lead {
    max-width: 88%;
  }

  .hero-scroll {
    display: none;
  }

  .signature-statement,
  .signature-inner {
    min-height: 230px;
  }

  .signature-statement p {
    font-size: clamp(1.6rem, 7.8vw, 2.25rem);
  }

  .experiences {
    padding-block: 68px;
  }

  .section-heading:not(.compact-heading) {
    align-items: flex-start;
    text-align: left;
  }

  .experience-tabs {
    display: flex;
    margin-inline: -6%;
    overflow-x: auto;
    padding-inline: 6%;
    scrollbar-width: none;
  }

  .experience-tabs::-webkit-scrollbar {
    display: none;
  }

  .experience-tab {
    flex: 0 0 44%;
    letter-spacing: 0.2em;
  }

  .experience-visual {
    min-height: 290px;
  }

  .experience-copy {
    padding: 34px 26px 40px;
  }

  .experience-copy h3 {
    font-size: 2.35rem;
  }

  .method-section {
    padding-block: 62px;
  }

  .line-title {
    display: block;
  }

  .line-title span {
    display: none;
  }

  .line-title h2 {
    line-height: 1.6;
  }

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

  .method-grid article {
    min-height: 160px;
  }

  .method-grid article + article {
    border-left: 0;
    border-top: 1px solid rgba(195, 154, 83, 0.33);
  }

  .hero-salarra .hero-image {
    object-position: 62% center;
  }

  .salarra-hero-content {
    align-items: center;
    text-align: center;
  }

  .salarra-hero-content h1 {
    font-size: clamp(4rem, 24vw, 6.5rem);
  }

  .salarra-hero-content h2 {
    font-size: 2.35rem;
  }

  .salarra-meta {
    line-height: 1.8;
  }

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

  .included-grid article:nth-child(3),
  .included-grid article:nth-child(5) {
    border-left: 0;
  }

  .included-grid article:nth-child(4) {
    border-left: 1px solid rgba(195, 154, 83, 0.27);
  }

  .included-grid article:nth-child(n + 3) {
    border-top: 1px solid rgba(195, 154, 83, 0.27);
  }

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

  .journey-card {
    min-height: 450px;
  }

  .salarra-closing {
    min-height: 560px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-drift {
    animation: none;
  }
}

.no-break {
  white-space: nowrap;
}

@media (max-width: 600px) {
  .experience-copy h3 {
    font-size: 1.7rem;
  }
}

/* CORREÇÕES DEFINITIVAS PARA CELULARES */
@media screen and (max-width: 680px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  /* VIVA O EXTRAORDINÁRIO */
  .hero-andes .hero-content h1 {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(1.9rem, 7.8vw, 2.5rem) !important;
    line-height: 1.02 !important;
    letter-spacing: 0 !important;
    overflow: visible !important;
  }

  /* SALARRA */
  .hero-salarra .salarra-hero-content h1 {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(2.8rem, 14vw, 3.4rem) !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    overflow: visible !important;
  }

  /* Barra das experiências fixa */
  .experience-tabs {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    touch-action: pan-y !important;
  }

  .experience-tab {
    min-width: 0 !important;
    width: 100% !important;
    padding-inline: 1px !important;
    font-size: 0.5rem !important;
    letter-spacing: 0.04em !important;
    white-space: nowrap !important;
  }
}