
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

:root {
  --bg: #050505;
  --bg-soft: #0d0a08;
  --panel: rgba(18, 13, 10, 0.72);
  --panel-strong: rgba(14, 10, 8, 0.9);
  --border: rgba(238, 219, 194, 0.12);
  --border-strong: rgba(238, 219, 194, 0.22);
  --text: #efe7dc;
  --muted: rgba(239, 231, 220, 0.72);
  --muted-2: rgba(239, 231, 220, 0.52);
  --accent: #e3c7a5;
  --accent-2: #9b6f49;
  --accent-3: #6d7b56;
  --shadow: 0 35px 120px rgba(0, 0, 0, 0.55);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --shell: min(90vw, 1380px);
  --ease: cubic-bezier(.2,.85,.2,1);
}

/* Tecnologia page */
.page-tecnologia { background: #050505; }
.page-tecnologia {
  overflow-x: hidden;
}
.page-tecnologia .site-header,
.page-tecnologia main,
.page-tecnologia .footer {
  overflow-x: clip;
}
.tech-hero,
.tech-prep,
.tech-expect,
.tech-future,
.tech-wow {
  position: relative;
  overflow: hidden;
  background: #050505;
}
.tech-hero {
  min-height: clamp(620px, 76vh, 820px);
  display: grid;
  align-items: stretch;
  border-bottom: 1px solid rgba(238,219,194,.12);
}
.tech-hero-grid {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(480px, 1.28fr);
  min-height: clamp(620px, 76vh, 820px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}
.tech-hero-copy { position: relative; z-index: 3; max-width: 560px; }
.tech-hero-copy h1,
.tech-prep-copy h2,
.tech-lifestyle-copy h2,
.tech-future-copy h2,
.tech-wow-copy h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0;
}
.tech-hero-copy h1 {
  margin: 24px 0 22px;
  font-size: clamp(3.3rem, 6.1vw, 6.6rem);
  line-height: .98;
}
.tech-hero-copy h1 span { display: block; }
.tech-text-link,
.tech-outline-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .73rem;
  font-weight: 700;
  text-decoration: none;
}
.tech-text-link::before {
  content: "";
  width: 52px;
  height: 1px;
  background: rgba(216,183,141,.68);
}
.tech-hero-media {
  position: absolute;
  inset: 84px 0 0 34%;
  min-height: 560px;
  background-image:
    linear-gradient(90deg, #050505 0%, rgba(5,5,5,.82) 18%, rgba(5,5,5,.28) 42%, rgba(5,5,5,.06) 100%),
    linear-gradient(180deg, rgba(5,5,5,.12), rgba(5,5,5,.38)),
    url('tech-hero-scene.jpg');
  background-size: cover;
  background-position: 62% center;
  transform-origin: center;
  animation: techImageDrift 18s ease-in-out infinite alternate;
}
.tech-hero-media::after,
.tech-lifestyle-media::after,
.tech-future-media::after,
.tech-wow-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 32%, rgba(216,183,141,.14), transparent 30%),
    linear-gradient(180deg, rgba(5,5,5,.05), rgba(5,5,5,.56));
  pointer-events: none;
}
.tech-light {
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, transparent 8%, rgba(216,183,141,.16) 36%, transparent 62%);
  mix-blend-mode: screen;
  opacity: .34;
  animation: techLightPass 11s ease-in-out infinite alternate;
}
.tech-prep {
  padding: clamp(58px, 7vw, 98px) 0;
  border-bottom: 1px solid rgba(238,219,194,.1);
  background:
    radial-gradient(circle at 72% 18%, rgba(84,73,55,.16), transparent 34%),
    #060606;
}
.tech-prep-grid {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(520px, 1.28fr);
  gap: clamp(38px, 5vw, 82px);
  align-items: center;
}
.tech-prep-copy h2 {
  max-width: 11ch;
  margin: 22px 0;
  font-size: clamp(2.8rem, 4.8vw, 5.2rem);
  line-height: 1.03;
}
.tech-prep-copy p,
.tech-lifestyle-copy p,
.tech-future-copy p,
.tech-expect-item p {
  color: var(--muted);
  line-height: 1.75;
}
.tech-idea-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 24px);
}
.tech-idea {
  min-height: clamp(190px, 20vw, 270px);
  padding: clamp(28px, 3vw, 44px) 24px;
  border: 1px solid rgba(238,219,194,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.008));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  text-align: center;
  transition: transform .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease);
}
.tech-idea:hover {
  transform: translate3d(0, -6px, 0);
  border-color: rgba(216,183,141,.34);
  background: linear-gradient(180deg, rgba(216,183,141,.07), rgba(255,255,255,.012));
}
.tech-idea h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  line-height: 1.15;
  color: var(--text);
  font-weight: 500;
  max-width: 12ch;
}
.tech-icon {
  position: relative;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(216,183,141,.72);
  color: var(--accent);
}
.tech-icon-phone { border-radius: 10px; width: 34px; }
.tech-icon-energy { border-radius: 4px; width: 34px; }
.tech-icon-energy::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 12px;
  width: 10px;
  height: 6px;
  border: 1px solid rgba(216,183,141,.72);
  border-bottom: 0;
}
.tech-icon-phone::after,
.tech-icon-energy::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  top: 15px;
  border-top: 1px solid currentColor;
}
.tech-icon-shield { border-radius: 50% 50% 44% 44%; }
.tech-icon-shield::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 10px;
  border-left: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(-45deg);
  left: 16px;
  top: 18px;
}
.tech-icon-circle { border-radius: 50%; }
.tech-lifestyle {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  min-height: clamp(520px, 58vw, 720px);
  border-bottom: 1px solid rgba(238,219,194,.1);
}
.tech-lifestyle-media {
  min-height: inherit;
  background-image:
    linear-gradient(90deg, rgba(5,5,5,.06), rgba(5,5,5,.62)),
    url('tech-desk-scene.jpg');
  background-size: cover;
  background-position: center;
  animation: techImageDrift 16s ease-in-out infinite alternate;
}
.tech-lifestyle-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 92px);
  background: linear-gradient(90deg, rgba(5,5,5,.92), #050505);
}
.tech-lifestyle-copy h2 {
  margin: 20px 0 22px;
  font-size: clamp(2.6rem, 4.5vw, 5.1rem);
  line-height: 1.02;
  max-width: 12ch;
}
.tech-outline-link,
.tech-notify button {
  border: 1px solid rgba(216,183,141,.48);
  padding: 17px 24px;
  width: fit-content;
  background: rgba(7,5,4,.24);
}
.tech-expect {
  padding: clamp(58px, 7vw, 104px) 0;
  border-bottom: 1px solid rgba(238,219,194,.1);
  background:
    radial-gradient(circle at 50% 0%, rgba(216,183,141,.08), transparent 34%),
    #060606;
}
.tech-expect h2 {
  margin: 0 0 clamp(34px, 4vw, 60px);
  text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--text);
  font-size: clamp(2.2rem, 3.4vw, 4rem);
  font-weight: 500;
}
.tech-expect-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.tech-expect-item {
  min-height: 210px;
  padding: 18px clamp(18px, 2.5vw, 40px);
  border-right: 1px solid rgba(238,219,194,.13);
  text-align: center;
}
.tech-expect-item:last-child { border-right: 0; }
.tech-mark {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 28px;
  border: 1px solid rgba(216,183,141,.7);
  border-radius: 50%;
  color: var(--accent);
  font-size: .72rem;
  letter-spacing: .16em;
}
.tech-expect-item h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--text);
  font-weight: 500;
  font-size: clamp(1.45rem, 2vw, 2rem);
  margin-bottom: 14px;
}
.tech-future {
  padding: clamp(50px, 7vw, 98px) 0;
  border-bottom: 1px solid rgba(238,219,194,.1);
}
.tech-future-grid {
  display: grid;
  grid-template-columns: minmax(320px, .75fr) minmax(520px, 1.25fr);
  gap: clamp(38px, 5vw, 80px);
  align-items: center;
}
.tech-future-copy h2 {
  max-width: 13ch;
  margin: 0 0 22px;
  font-size: clamp(2.5rem, 4.2vw, 4.7rem);
  line-height: 1.05;
}
.tech-notify {
  display: flex;
  margin-top: 30px;
  max-width: 520px;
}
.tech-notify input {
  min-width: 0;
  flex: 1;
  padding: 18px 20px;
  border: 1px solid rgba(238,219,194,.18);
  background: rgba(5,5,5,.62);
  color: var(--text);
}
.tech-notify button {
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  cursor: pointer;
}
.tech-future-media {
  min-height: clamp(260px, 28vw, 420px);
  background-image:
    linear-gradient(90deg, rgba(5,5,5,.18), rgba(5,5,5,.52)),
    url('tech-newsletter-scene.jpg');
  background-size: cover;
  background-position: center;
  animation: techImageDrift 17s ease-in-out infinite alternate;
}
.tech-wow {
  min-height: clamp(360px, 42vw, 560px);
  display: grid;
  place-items: center;
  text-align: center;
  border-bottom: 1px solid rgba(238,219,194,.12);
}
.tech-wow-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(5,5,5,.78), rgba(5,5,5,.12), rgba(5,5,5,.74)),
    url('tech-wide-desk.jpg');
  background-size: cover;
  background-position: center;
  animation: techImageDrift 20s ease-in-out infinite alternate;
}
.tech-wow-copy {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}
.tech-wow-copy h2 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(3rem, 5.3vw, 6.4rem);
  line-height: 1.04;
  text-shadow: 0 22px 80px rgba(0,0,0,.72);
}
.tech-home-brands { padding: 34px 0 40px; background: #070605; }
@keyframes techImageDrift {
  from { transform: translate3d(-1.2%, 0, 0) scale(1.045); filter: brightness(.84) contrast(1.06) saturate(.9); }
  to { transform: translate3d(1.4%, -1.2%, 0) scale(1.085); filter: brightness(.98) contrast(1.1) saturate(.96); }
}
@keyframes techLightPass {
  from { transform: translateX(-10%); opacity: .18; }
  to { transform: translateX(10%); opacity: .42; }
}
@media (max-width: 980px) {
  .tech-hero,
  .tech-hero-grid { min-height: auto; }
  .tech-hero-grid,
  .tech-prep-grid,
  .tech-lifestyle,
  .tech-future-grid { grid-template-columns: 1fr; }
  .tech-hero { padding-top: 92px; }
  .tech-hero-media {
    position: relative;
    inset: auto;
    min-height: 430px;
    order: -1;
    margin: 0;
    transform: none !important;
    animation: none;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
  }
  .page-tecnologia .tech-lifestyle-media,
  .page-tecnologia .tech-future-media,
  .page-tecnologia .tech-wow-media {
    transform: none !important;
    animation: none;
  }
  .tech-hero-copy { padding: 0 0 56px; }
  .tech-idea-grid,
  .tech-expect-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tech-lifestyle-copy { padding: clamp(38px, 8vw, 58px) calc((100vw - min(90vw, 1380px)) / 2); }
  .tech-lifestyle-media { min-height: 360px; }
  .tech-expect-item:nth-child(2) { border-right: 0; }
}
@media (max-width: 620px) {
  .tech-hero-copy h1,
  .tech-prep-copy h2,
  .tech-lifestyle-copy h2,
  .tech-future-copy h2,
  .tech-wow-copy h2 { font-size: clamp(2.65rem, 14vw, 4.2rem); }
  .tech-idea-grid,
  .tech-expect-grid { grid-template-columns: 1fr; }
  .tech-idea { min-height: 170px; }
  .tech-expect-item {
    border-right: 0;
    border-bottom: 1px solid rgba(238,219,194,.11);
  }
  .tech-expect-item:last-child { border-bottom: 0; }
  .tech-notify { flex-direction: column; }
  .tech-notify button { width: 100%; justify-content: center; }
}

/* Contacto page */
.page-contacto {
  background: #050505;
  overflow-x: hidden;
}
.page-contacto main,
.page-contacto .footer {
  overflow-x: clip;
}
.contact-hero,
.contact-human,
.contact-form-section,
.contact-social,
.contact-wow {
  position: relative;
  overflow: hidden;
  background: #050505;
}
.contact-hero {
  min-height: clamp(620px, 76vh, 820px);
  display: grid;
  align-items: center;
  border-bottom: 1px solid rgba(238,219,194,.12);
}
.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(520px, 1.22fr);
  min-height: clamp(620px, 76vh, 820px);
  align-items: center;
  gap: clamp(30px, 5vw, 78px);
}
.contact-hero-copy {
  position: relative;
  z-index: 3;
  max-width: 650px;
}
.contact-hero-copy h1,
.contact-human-copy h2,
.contact-form-copy h2,
.contact-social-copy h2,
.contact-wow-copy h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0;
}
.contact-hero-copy h1 {
  margin: 24px 0 22px;
  font-size: clamp(3.35rem, 6vw, 6.7rem);
  line-height: .98;
}
.contact-hero-copy h1 span {
  display: block;
}
.contact-actions,
.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 32px;
}
.contact-actions a,
.contact-direct a,
.contact-social-copy a,
.contact-form button {
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(216,183,141,.44);
  padding: 16px 22px;
  background: rgba(8,6,5,.34);
  transition: transform .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease), background .35s var(--ease);
}
.contact-actions a:hover,
.contact-direct a:hover,
.contact-social-copy a:hover,
.contact-form button:hover {
  color: var(--accent);
  border-color: rgba(216,183,141,.72);
  transform: translate3d(0, -2px, 0);
}
.contact-hero-media {
  position: absolute;
  inset: 84px 0 0 38%;
  min-height: 560px;
  background-image:
    linear-gradient(90deg, #050505 0%, rgba(5,5,5,.82) 22%, rgba(5,5,5,.24) 54%, rgba(5,5,5,.08) 100%),
    linear-gradient(180deg, rgba(5,5,5,.08), rgba(5,5,5,.42)),
    url('filo-hero.png');
  background-size: cover;
  background-position: 58% center;
  animation: contactImageDrift 18s ease-in-out infinite alternate;
}
.contact-hero-media::after,
.contact-human-media::after,
.contact-social-media::after,
.contact-wow-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 64% 28%, rgba(216,183,141,.16), transparent 32%),
    linear-gradient(180deg, rgba(5,5,5,.06), rgba(5,5,5,.58));
}
.contact-steam {
  position: absolute;
  right: 28%;
  bottom: 28%;
  width: 150px;
  height: 180px;
  z-index: 2;
}
.contact-human {
  padding: clamp(62px, 7vw, 104px) 0;
  border-bottom: 1px solid rgba(238,219,194,.1);
}
.contact-human-grid {
  display: grid;
  grid-template-columns: minmax(340px, .86fr) minmax(480px, 1.14fr);
  gap: clamp(42px, 5vw, 86px);
  align-items: center;
}
.contact-human-copy h2,
.contact-form-copy h2 {
  max-width: 12ch;
  margin: 20px 0 22px;
  font-size: clamp(2.8rem, 4.8vw, 5.2rem);
  line-height: 1.02;
}
.contact-human-copy p,
.contact-form-copy p,
.contact-social-copy p,
.contact-wow-copy p {
  color: var(--muted);
  line-height: 1.75;
}
.contact-human-media {
  min-height: clamp(360px, 36vw, 560px);
  background-image:
    linear-gradient(90deg, rgba(5,5,5,.12), rgba(5,5,5,.5)),
    url('filo-advisor-scene.png');
  background-size: cover;
  background-position: center;
  animation: contactImageDrift 16s ease-in-out infinite alternate;
}
.contact-form-section {
  padding: clamp(58px, 7vw, 104px) 0;
  border-bottom: 1px solid rgba(238,219,194,.1);
  background:
    radial-gradient(circle at 82% 10%, rgba(216,183,141,.08), transparent 34%),
    #060606;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(480px, 1.28fr);
  gap: clamp(38px, 5vw, 80px);
  align-items: start;
}
.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid rgba(238,219,194,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.01));
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.contact-form label span {
  color: var(--muted-2);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(238,219,194,.16);
  background: rgba(5,5,5,.54);
  color: var(--text);
  padding: 17px 18px;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
  resize: vertical;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(216,183,141,.64);
  background: rgba(5,5,5,.74);
  box-shadow: 0 0 0 3px rgba(216,183,141,.08);
}
.contact-form button {
  width: fit-content;
  cursor: pointer;
}
.contact-social {
  padding: clamp(54px, 7vw, 96px) 0;
  border-bottom: 1px solid rgba(238,219,194,.1);
}
.contact-social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 42px);
}
.contact-social-card {
  border: 1px solid rgba(238,219,194,.12);
  background: rgba(255,255,255,.018);
}
.contact-social-media {
  min-height: clamp(260px, 25vw, 410px);
  background-size: cover;
  background-position: center;
  animation: contactImageDrift 17s ease-in-out infinite alternate;
}
.contact-whatsapp-media {
  background-image:
    linear-gradient(180deg, rgba(5,5,5,.1), rgba(5,5,5,.56)),
    url('tech-desk-scene.jpg');
}
.contact-instagram-media {
  background-image:
    linear-gradient(180deg, rgba(5,5,5,.1), rgba(5,5,5,.56)),
    url('mt-lifestyle-ritual.png');
}
.contact-social-copy {
  padding: clamp(28px, 3vw, 44px);
}
.contact-social-copy h2 {
  margin: 18px 0;
  font-size: clamp(2.25rem, 3.5vw, 4.2rem);
  line-height: 1.03;
}
.contact-social-copy a {
  display: inline-flex;
  margin-top: 20px;
}
.contact-wow {
  min-height: clamp(440px, 52vw, 680px);
  display: grid;
  place-items: center;
  text-align: center;
  border-bottom: 1px solid rgba(238,219,194,.12);
}
.contact-wow-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(5,5,5,.78), rgba(5,5,5,.24), rgba(5,5,5,.78)),
    url('filo-advisor-scene.png');
  background-size: cover;
  background-position: center;
  animation: contactImageDrift 20s ease-in-out infinite alternate;
}
.contact-wow-copy {
  position: relative;
  z-index: 2;
  max-width: 980px;
  padding: 0 24px;
}
.contact-wow-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: 1.03;
  text-shadow: 0 22px 80px rgba(0,0,0,.74);
}
@keyframes contactImageDrift {
  from { transform: translate3d(-1%, 0, 0) scale(1.04); filter: brightness(.84) contrast(1.06) saturate(.92); }
  to { transform: translate3d(1.2%, -1%, 0) scale(1.08); filter: brightness(.98) contrast(1.1) saturate(.98); }
}
@media (max-width: 980px) {
  .contact-hero,
  .contact-hero-grid {
    min-height: auto;
  }
  .contact-hero-grid,
  .contact-human-grid,
  .contact-form-grid,
  .contact-social-grid {
    grid-template-columns: 1fr;
  }
  .contact-hero {
    padding-top: 92px;
  }
  .contact-hero-media {
    position: relative;
    inset: auto;
    min-height: 430px;
    order: -1;
    margin: 0;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
  }
  .contact-hero-copy {
    padding: 0 0 56px;
  }
}
@media (max-width: 620px) {
  .contact-hero-copy h1,
  .contact-human-copy h2,
  .contact-form-copy h2,
  .contact-social-copy h2,
  .contact-wow-copy h2 {
    font-size: clamp(2.65rem, 14vw, 4.2rem);
  }
  .contact-form button,
  .contact-actions a,
  .contact-direct a {
    width: 100%;
    justify-content: center;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(150, 101, 56, 0.18), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(99, 76, 46, 0.16), transparent 20%),
    radial-gradient(circle at 70% 92%, rgba(163, 137, 105, 0.08), transparent 25%),
    linear-gradient(180deg, #050505 0%, #0a0706 48%, #050505 100%);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .08;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 300 300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
  background-size: 260px 260px;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(120deg, transparent 0 34%, rgba(227,199,165,.035) 42%, transparent 53%),
    radial-gradient(circle at 52% 30%, rgba(255,236,214,.035), transparent 25%);
  mix-blend-mode: screen;
  opacity: .55;
  animation: ambientLight 18s ease-in-out infinite alternate;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
::selection { background: rgba(227, 199, 165, .28); color: var(--text); }

.shell {
  width: var(--shell);
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: linear-gradient(180deg, rgba(5,5,5,.86), rgba(5,5,5,.58));
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.nav-shell {
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.35rem, 1.2rem + 1vw, 2rem);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}
.nav-links a,
.nav-links button,
.mobile-links a {
  position: relative;
  color: var(--muted);
  font-size: .84rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: color .4s var(--ease), opacity .4s var(--ease), transform .4s var(--ease);
}
.nav-links a::after,
.mobile-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -11px;
  height: 1px;
  background: rgba(227, 199, 165, .28);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:hover,
.nav-links button:hover,
.mobile-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after,
.mobile-links a:hover::after { transform: scaleX(1); }
.top-cta {
  padding: 13px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.02);
  color: var(--text) !important;
  letter-spacing: .14em !important;
}
.top-cta:hover {
  border-color: rgba(227,199,165,.5);
  transform: translateY(-1px);
}
.menu-btn {
  display: none;
  width: 48px; height: 48px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  color: var(--text);
}
.menu-lines {
  width: 18px; height: 11px; display: inline-flex; flex-direction: column; justify-content: space-between;
}
.menu-lines span { display: block; height: 1.5px; background: currentColor; border-radius: 999px; }
.mobile-drawer {
  display: none;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(5,5,5,.94);
}
.mobile-drawer.open { display: block; }
.mobile-links {
  padding: 20px 0 28px;
  display: grid;
  gap: 18px;
}
.mobile-links a { font-size: .92rem; letter-spacing: .16em; }

main { position: relative; z-index: 1; }
.section {
  padding: 86px 0;
}
.section.tight { padding: 76px 0; }
.section.extra-top { padding-top: 140px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  letter-spacing: .34em;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 600;
}
.eyebrow::before {
  content: '';
  width: 38px; height: 1px;
  background: rgba(227, 199, 165, .58);
}
.kicker {
  font-size: .86rem;
  color: var(--accent);
  letter-spacing: .2em;
  text-transform: uppercase;
}
.serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
}
.lead {
  font-size: clamp(1.02rem, .95rem + .35vw, 1.24rem);
  line-height: 1.8;
  color: var(--muted);
}
.copy {
  font-size: .98rem;
  line-height: 1.9;
  color: var(--muted);
}
.h1, h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(3.25rem, 2.1rem + 4.1vw, 5.9rem);
  line-height: .95;
  letter-spacing: 0;
  margin: 0;
}
.h2, h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.35rem, 1.65rem + 2.25vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0;
  margin: 0;
}
.h3, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 1.2rem + 1.4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.02;
  margin: 0;
}
.small {
  font-size: .88rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.btn-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}
.btn-primary {
  background: linear-gradient(180deg, rgba(227,199,165,.96), rgba(193,157,123,.96));
  color: #120c08;
  box-shadow: 0 16px 44px rgba(159, 121, 82, .18);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary {
  background: rgba(255,255,255,.02);
  color: var(--text);
}
.btn-secondary:hover,
.btn-tertiary:hover {
  transform: translateY(-2px);
  border-color: rgba(227,199,165,.45);
  background: rgba(255,255,255,.04);
}
.btn-tertiary {
  background: transparent;
  color: var(--muted);
  border-color: transparent;
  padding-left: 0;
  min-height: 44px;
}
.btn .arrow {
  font-size: 1.1em;
  transform: translateY(-1px);
}

.hero {
  padding: 34px 0 90px;
}
.hero-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(24px, 4.5vw, 64px);
  align-items: stretch;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100svh - 120px);
  padding: 46px 0 70px;
}
.hero-copy .lead {
  max-width: 44rem;
  margin-top: 26px;
}
.hero-visual {
  min-height: calc(100svh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-panel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 700px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at 28% 22%, rgba(227,199,165,.16), transparent 18%),
    radial-gradient(circle at 78% 12%, rgba(122, 85, 52, .22), transparent 23%),
    linear-gradient(145deg, rgba(17,11,8,.96), rgba(5,5,5,.98) 50%, rgba(22,14,9,.95));
}
.cinematic-photo {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-size: cover;
  background-position: center;
}
.cinematic-photo::before {
  content: '';
  position: absolute;
  inset: -4%;
  background: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: livingFrame 18s var(--ease) infinite alternate;
  z-index: -2;
}
.cinematic-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 74% 42%, rgba(227,199,165,.14), transparent 28%),
    linear-gradient(90deg, rgba(5,5,5,.88), rgba(5,5,5,.34) 42%, rgba(5,5,5,.18) 70%, rgba(5,5,5,.72)),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.48));
}
.photo-hero { background-image: url('mt-hero-wellness.png'); }
.photo-wow { background-image: url('mt-wow-coffee.png'); background-position: center 46%; }
.photo-card { background-size: cover; background-position: center; }
.photo-wellness { background-image: url('mt-card-wellness.png'); }
.photo-coffee { background-image: url('mt-wow-coffee.png'); }
.photo-tech { background-image: url('mt-card-tech.png'); }
.ritual-photo {
  background-image: url('mt-lifestyle-ritual.png');
  background-position: center;
  min-height: 420px;
}
.motion-haze,
.skin-light,
.ambient-motion,
.coffee-glow {
  position: absolute;
  pointer-events: none;
}
.motion-haze {
  inset: 0;
  background:
    radial-gradient(circle at 72% 34%, rgba(255,230,204,.16), transparent 18%),
    linear-gradient(110deg, transparent 25%, rgba(227,199,165,.08) 46%, transparent 62%);
  filter: blur(18px);
  mix-blend-mode: screen;
  animation: hazeDrift 12s ease-in-out infinite alternate;
}
.skin-light {
  right: 6%;
  top: 8%;
  width: 38%;
  height: 62%;
  background: radial-gradient(circle, rgba(227,199,165,.2), transparent 64%);
  filter: blur(28px);
  animation: breatheLight 7.5s ease-in-out infinite;
}
.ambient-motion {
  inset: -10%;
  background:
    linear-gradient(115deg, transparent 12%, rgba(255,236,214,.08) 36%, transparent 62%),
    radial-gradient(circle at 70% 25%, rgba(227,199,165,.12), transparent 20%);
  filter: blur(10px);
  mix-blend-mode: screen;
  animation: ambientSweep 9s ease-in-out infinite alternate;
}
.coffee-glow {
  left: 39%;
  bottom: 19%;
  width: 24%;
  height: 24%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,199,165,.24), transparent 68%);
  filter: blur(18px);
  animation: breatheLight 6s ease-in-out infinite;
}
.hero-panel::before,
.scene::before,
.full-bleed::before,
.brand-plate::before,
.story-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-panel::before {
  background:
    radial-gradient(circle at 36% 35%, rgba(255,255,255,.06), transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,.05), transparent 20%, transparent 85%, rgba(0,0,0,.22));
  mix-blend-mode: screen;
}
.scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.scene::before {
  opacity: .55;
  background:
    radial-gradient(circle at 70% 28%, rgba(255, 214, 174, .16), transparent 18%),
    radial-gradient(circle at 28% 74%, rgba(147, 118, 80, .16), transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 38%, rgba(0,0,0,.35));
}
.scene::after,
.full-bleed::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.1) 40%, rgba(0,0,0,.35));
}
.scene-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  opacity: .9;
}
.orb-a { width: 44%; aspect-ratio: 1; right: -8%; top: 8%; background: radial-gradient(circle at 35% 35%, rgba(255,226,198,.38), rgba(173,118,75,.09) 42%, transparent 70%); }
.orb-b { width: 32%; aspect-ratio: 1; left: 7%; bottom: 2%; background: radial-gradient(circle at 50% 50%, rgba(226,199,165,.22), rgba(61,37,22,.08) 44%, transparent 72%); }
.hero-face {
  position: absolute;
  right: 7%;
  top: 7%;
  width: 58%;
  height: 80%;
  background:
    radial-gradient(circle at 60% 26%, rgba(255, 225, 196, .86) 0 9%, transparent 10%),
    radial-gradient(circle at 52% 40%, rgba(242, 193, 153, .92) 0 15%, transparent 16%),
    radial-gradient(circle at 40% 55%, rgba(181, 126, 83, .92) 0 18%, transparent 19%),
    radial-gradient(circle at 56% 66%, rgba(223, 168, 123, .92) 0 10%, transparent 11%),
    radial-gradient(circle at 43% 44%, rgba(255, 255, 255, .18), transparent 20%),
    linear-gradient(145deg, rgba(237, 184, 136, .18), rgba(102, 59, 33, .18));
  border-radius: 44% 56% 32% 68% / 36% 42% 58% 64%;
  transform: rotate(12deg);
  filter: blur(.15px) saturate(.92);
  box-shadow: -70px 40px 120px rgba(0,0,0,.5) inset;
  opacity: .95;
}
.hero-neck {
  position: absolute;
  right: 16%;
  bottom: 9%;
  width: 25%;
  height: 26%;
  background: linear-gradient(180deg, rgba(219, 155, 103, .8), rgba(61, 34, 19, .96));
  border-radius: 40% 40% 34% 36%;
  transform: rotate(8deg);
  box-shadow: -40px 10px 60px rgba(0,0,0,.5) inset;
}
.hero-hand {
  position: absolute;
  right: 24%;
  bottom: 12%;
  width: 16%;
  height: 28%;
  background: linear-gradient(180deg, rgba(243, 197, 150, .74), rgba(109, 71, 41, .96));
  border-radius: 52% 45% 35% 30%;
  transform: rotate(11deg);
  filter: blur(.1px);
  box-shadow: -18px 8px 40px rgba(0,0,0,.35) inset;
}
.hero-bottle {
  position: absolute;
  right: 5%;
  bottom: 8%;
  width: 17%;
  height: 40%;
  background: linear-gradient(180deg, rgba(12,12,13,.98), rgba(58, 40, 31, .98));
  border-radius: 22px 22px 30px 30px;
  box-shadow: 0 16px 55px rgba(0,0,0,.7);
}
.hero-bottle::before {
  content: '';
  position: absolute;
  left: 50%; top: -8%; transform: translateX(-50%);
  width: 34%; height: 10%;
  background: linear-gradient(180deg, #2b201a, #090909);
  border-radius: 12px 12px 4px 4px;
}
.hero-bottle::after {
  content: 'FARME';
  position: absolute;
  inset: 38% 14% auto;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: .18em;
  font-size: clamp(1rem, .8rem + 1vw, 1.65rem);
  color: rgba(227, 199, 165, .74);
}
.hero-gloss {
  position: absolute;
  inset: auto 12% 12% 12%;
  height: 12px;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,.45), transparent 62%);
  filter: blur(3px);
  opacity: .4;
}
.scene-steam {
  position: absolute;
  left: 42%; top: 8%;
  width: 22%; height: 34%;
  background: radial-gradient(circle, rgba(240,231,220,.35), transparent 70%);
  filter: blur(10px);
  animation: drift 9s var(--ease) infinite alternate;
}
.scene-steam::before,
.scene-steam::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: radial-gradient(circle at 40% 45%, rgba(244, 236, 224, .55), transparent 60%);
  transform: scale(.8) translateY(10%);
}
.scene-steam::after {
  left: 28%; top: -14%; width: 58%; height: 120%;
  background: radial-gradient(circle at 50% 50%, rgba(244, 236, 224, .22), transparent 68%);
  transform: scale(.72) translateY(-5%);
}

.section-frame {
  position: relative;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: linear-gradient(180deg, rgba(255,255,255,.01), rgba(255,255,255,.02));
}
.full-bleed {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.06);
  min-height: 650px;
  box-shadow: var(--shadow);
  background:
    radial-gradient(circle at 28% 24%, rgba(227,199,165,.18), transparent 18%),
    radial-gradient(circle at 78% 18%, rgba(106, 73, 42, .2), transparent 22%),
    linear-gradient(145deg, rgba(19,13,10,.96), rgba(5,5,5,.98));
}
.full-bleed .quote-wrap {
  position: absolute;
  inset: auto 7% 9% 7%;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  align-items: end;
}
.photo-wow .quote-wrap {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  inset: 0;
  place-content: center;
}
.photo-wow .quote-title {
  max-width: 18ch;
  text-shadow: 0 18px 50px rgba(0,0,0,.62);
}
.quote-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.7rem, 1.7rem + 3.8vw, 5.35rem);
  line-height: 1;
  letter-spacing: 0;
  max-width: 11ch;
  margin: 0;
}
.quote-copy {
  max-width: 34rem;
  margin-left: auto;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(239,231,220,.78);
}
.full-bleed .mini-quote {
  grid-column: 1 / -1;
  margin-top: 8px;
  color: var(--accent);
  letter-spacing: .24em;
  text-transform: uppercase;
  font-size: .74rem;
}
.cup-stage {
  position: absolute;
  inset: 0;
}
.cup-stage .cup,
.cup-stage .table,
.cup-stage .kettle,
.cup-stage .pour,
.cup-stage .halo {
  position: absolute;
}
.cup-stage .table {
  left: 50%; bottom: 0;
  width: 92%; height: 28%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(85,53,28,.42), rgba(18,11,8,.95));
  border-top: 1px solid rgba(255,255,255,.04);
}
.cup-stage .table::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.04) 20%, transparent 40%, transparent 60%, rgba(255,255,255,.04) 80%, transparent);
  opacity: .12;
}
.cup-stage .cup {
  left: 50%; bottom: 19%;
  width: 20%; aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, rgba(255,236,213,.16), transparent 26%),
    radial-gradient(circle at 50% 50%, rgba(20, 12, 9, .88), rgba(58, 35, 21, .98) 68%, rgba(15,10,8,.98) 100%);
  box-shadow: 0 25px 70px rgba(0,0,0,.55);
}
.cup-stage .cup::before {
  content: '';
  position: absolute;
  inset: 18% 18% 20% 18%;
  border-radius: 50%;
  border: 12px solid rgba(244, 225, 206, .72);
  opacity: .9;
}
.cup-stage .cup::after {
  content: '';
  position: absolute;
  right: -18%; top: 28%;
  width: 28%; height: 28%;
  border: 10px solid rgba(244, 225, 206, .52);
  border-left-color: transparent;
  border-top-color: transparent;
  border-radius: 50%;
  transform: rotate(18deg);
}
.cup-stage .kettle {
  left: 12%; top: 2%;
  width: 22%; height: 28%;
  background: linear-gradient(180deg, rgba(58,42,31,.98), rgba(15,11,8,.98));
  clip-path: polygon(12% 0, 78% 0, 100% 100%, 0 100%);
  border-radius: 20px;
  transform: rotate(-10deg);
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
}
.cup-stage .kettle::before {
  content: '';
  position: absolute;
  right: -18%; top: 48%;
  width: 28%; height: 12%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(58,42,31,.98), rgba(15,11,8,.98));
}
.cup-stage .pour {
  left: 25%; top: 17%;
  width: 18%; height: 28%;
  background: linear-gradient(180deg, rgba(227,199,165,.62), transparent 80%);
  clip-path: polygon(50% 0, 58% 0, 70% 100%, 38% 100%);
  transform: rotate(8deg);
  filter: blur(1px);
  animation: pour 4.8s ease-in-out infinite alternate;
}
.cup-stage .halo {
  left: 36%; top: 8%;
  width: 34%; height: 34%;
  background: radial-gradient(circle, rgba(227,199,165,.18), transparent 66%);
  filter: blur(10px);
}
.steam-lines {
  position: absolute;
  left: 46%; bottom: 38%;
  width: 12%; height: 22%;
}
.steam-lines span {
  position: absolute;
  bottom: 0;
  width: 2px; height: 100%;
  background: linear-gradient(180deg, rgba(244,236,224,.0), rgba(244,236,224,.6), rgba(244,236,224,.0));
  border-radius: 999px;
  opacity: .55;
  animation: steam 6.2s ease-in-out infinite;
}
.photo-wow .steam-lines {
  left: 50%;
  bottom: 34%;
  width: 18%;
  height: 46%;
  transform: translateX(-50%);
  filter: blur(2.5px);
  mix-blend-mode: screen;
  opacity: .9;
}
.photo-wow .steam-lines span {
  width: 4px;
  background: linear-gradient(180deg, rgba(244,236,224,0), rgba(244,236,224,.72), rgba(244,236,224,0));
  animation-name: steamPhoto;
  animation-duration: 7.8s;
}
.steam-lines span:nth-child(5) { left: 48%; height: 96%; animation-delay: 2.4s; }
.steam-lines span:nth-child(1) { left: 12%; height: 78%; animation-delay: 0s; }
.steam-lines span:nth-child(2) { left: 35%; height: 100%; animation-delay: .6s; }
.steam-lines span:nth-child(3) { left: 58%; height: 86%; animation-delay: 1.2s; }
.steam-lines span:nth-child(4) { left: 82%; height: 92%; animation-delay: 1.8s; }

.tech-stage {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 76% 22%, rgba(227,199,165,.12), transparent 20%),
    radial-gradient(circle at 35% 74%, rgba(105,123,85,.12), transparent 18%),
    linear-gradient(145deg, rgba(17,12,10,.96), rgba(5,5,5,.98));
}
.tech-desk {
  position: absolute;
  inset: auto 0 0 0;
  height: 30%;
  background: linear-gradient(180deg, rgba(122,84,49,.42), rgba(18,10,7,.98));
}
.tech-laptop {
  position: absolute;
  right: 12%; bottom: 18%;
  width: 34%; height: 27%;
  background: linear-gradient(180deg, rgba(54,54,54,.92), rgba(10,10,10,.98));
  border-radius: 16px;
  transform: perspective(900px) rotateX(14deg) rotateY(-22deg);
  box-shadow: -10px 20px 60px rgba(0,0,0,.52);
}
.tech-laptop::before {
  content: '';
  position: absolute; inset: 7% 7% 14% 7%;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(16,16,16,.95), rgba(32,32,32,.98));
}
.tech-tag {
  position: absolute;
  right: 19%; bottom: 20%;
  width: 12%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.4), rgba(227,199,165,.12) 38%, rgba(20,20,20,.96) 70%);
  box-shadow: 0 14px 28px rgba(0,0,0,.45);
}
.tech-book {
  position: absolute;
  left: 11%; bottom: 14%;
  width: 30%; height: 24%;
  background: linear-gradient(145deg, rgba(145,126,106,.36), rgba(37,28,22,.96));
  border-radius: 18px;
  transform: rotate(-8deg);
  box-shadow: 0 14px 50px rgba(0,0,0,.5);
}
.tech-book::before {
  content: '';
  position: absolute;
  inset: 10% 8% 12% 8%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
}
.tech-pen {
  position: absolute;
  left: 39%; bottom: 22%;
  width: 18%; height: 2.5%;
  background: linear-gradient(90deg, rgba(48,42,37,.96), rgba(255,255,255,.1));
  border-radius: 999px;
  transform: rotate(10deg);
}
.tech-cup {
  position: absolute;
  left: 24%; bottom: 26%;
  width: 12%; aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(221, 201, 176, .92), rgba(95,66,42,.92));
  box-shadow: 0 12px 30px rgba(0,0,0,.4);
}
.tech-cup::before {
  content: '';
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  border: 5px solid rgba(27, 18, 12, .88);
}
.tech-earbuds {
  position: absolute;
  right: 6%; bottom: 13%;
  width: 10%; height: 12%;
}
.tech-earbuds::before,
.tech-earbuds::after {
  content: '';
  position: absolute;
  width: 42%; height: 72%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(240,240,240,.92), rgba(185,185,185,.95));
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
}
.tech-earbuds::before { left: 0; top: 0; transform: rotate(14deg); }
.tech-earbuds::after { right: 0; bottom: 0; transform: rotate(-14deg); }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: transform, opacity;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.delay-4 { transition-delay: .4s; }
.reveal.delay-5 { transition-delay: .5s; }

.grid-3,
.grid-2,
.spec-grid,
.story-grid,
.brand-grid {
  display: grid;
  gap: 18px;
}
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.spec-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.story-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.brand-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.panel,
.story-card,
.spec-card,
.manifesto-card,
.contact-card,
.brand-plate,
.quote-panel {
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  box-shadow: 0 25px 80px rgba(0,0,0,.22);
}
.panel { padding: 26px; }
.story-card { overflow: hidden; position: relative; padding: 0; min-height: 440px; }
.story-card .story-head,
.story-card .story-body { padding: 26px; }
.story-card .story-image { position: absolute; inset: -4%; opacity: 1; }
.story-card .story-image::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.58)); }
.story-card .photo-card::before {
  background:
    radial-gradient(circle at 68% 28%, rgba(227,199,165,.16), transparent 24%),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.72));
}
.story-card .story-image .shape { position: absolute; border-radius: 999px; filter: blur(.5px); }
.story-card .story-image .shape.a { left: 16%; top: 12%; width: 44%; height: 58%; background: radial-gradient(circle at 45% 35%, rgba(255,223,191,.22), rgba(119,79,50,.1) 46%, transparent 70%); }
.story-card .story-image .shape.b { right: 10%; bottom: 10%; width: 38%; height: 40%; background: linear-gradient(180deg, rgba(20,17,16,.96), rgba(70,44,26,.9)); border-radius: 24px; }
.story-card .story-image .shape.c { left: 10%; bottom: 8%; width: 28%; height: 14%; background: rgba(255,255,255,.07); clip-path: polygon(0 100%, 100% 100%, 82% 0, 12% 0); }
.story-card .story-image .shape.d { right: 13%; top: 12%; width: 16%; height: 26%; background: rgba(250,245,240,.24); border-radius: 999px; transform: rotate(18deg); }
.story-card .story-head { position: relative; z-index: 2; display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.story-card .story-body { position: relative; z-index: 2; margin-top: auto; }
.story-card .meta { color: var(--accent); letter-spacing: .2em; text-transform: uppercase; font-size: .7rem; }
.story-card p { color: var(--muted); line-height: 1.85; }

.spec-card { padding: 24px; position: relative; overflow: hidden; min-height: 220px; }
.spec-card::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px; right: -160px; top: -160px;
  background: radial-gradient(circle, rgba(227,199,165,.2), transparent 64%);
}
.spec-card .num { color: var(--accent); font-size: .76rem; letter-spacing: .26em; text-transform: uppercase; }
.spec-card h3 { margin-top: 14px; }
.spec-card p { margin-top: 14px; color: var(--muted); line-height: 1.8; }
.spec-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}
.spec-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: .88rem;
  color: var(--muted);
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.spec-item span:first-child { color: rgba(239,231,220,.88); }

.manifesto-card {
  padding: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
}
.manifesto-card .quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 1.2rem + 2.8vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
  max-width: 12ch;
  margin: 0;
}
.manifesto-card p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 58ch;
}
.manifesto-card .row {
  margin-top: 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

.brand-plate {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
}
.brand-word {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 1rem + 1vw, 2rem);
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(239,231,220,.84);
}
.brand-word small { display: block; margin-top: 8px; font-size: .66rem; letter-spacing: .34em; color: var(--muted-2); }
.brand-plate img {
  max-width: 170px;
  width: 100%;
  filter: grayscale(1) brightness(.88) contrast(1.04);
  opacity: .82;
}
.brand-plate.mono { flex-direction: column; gap: 10px; }
.brands-section {
  padding: 52px 0 58px;
}
.brands-only {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(760px, 980px);
  gap: clamp(28px, 4.5vw, 72px);
  align-items: center;
  justify-content: center;
}
.brands-only .brand-grid {
  grid-template-columns: minmax(420px, 560px) minmax(190px, 260px);
  justify-content: center;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
}
.brands-only .brand-plate {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  animation: brandFloat 8s ease-in-out infinite alternate;
}
.brands-only .brand-plate:nth-child(2) { animation-delay: 1.4s; }
.brands-only .brand-plate::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 18%, rgba(227,199,165,.14) 42%, transparent 64%);
  transform: translateX(-120%);
  animation: brandSweep 7.5s ease-in-out infinite;
  pointer-events: none;
}
.brands-only .brand-plate img {
  max-width: 150px;
}
.brands-only .brand-word {
  width: 100%;
  text-align: center;
  font-size: clamp(1.35rem, .95rem + 1vw, 2rem);
  letter-spacing: .24em;
  line-height: 1.45;
}
.brands-only .brand-word small {
  letter-spacing: .26em;
}

.footer {
  padding: 44px 0 34px;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.footer h3 { font-size: 1.5rem; }
.footer p, .footer a { color: var(--muted); line-height: 1.8; }
.footer-links {
  display: grid;
  gap: 10px;
}
.footer-meta {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  color: var(--muted-2);
  font-size: .88rem;
}
.footer-brandline {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.footer-brandline span {
  color: rgba(239,231,220,.8);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .72rem;
}

.wow {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.wow .full-bleed {
  min-height: 72vh;
  background:
    radial-gradient(circle at 52% 38%, rgba(227,199,165,.12), transparent 14%),
    radial-gradient(circle at 72% 18%, rgba(255,255,255,.08), transparent 20%),
    linear-gradient(145deg, rgba(12,9,8,.96), rgba(4,4,4,.98));
}
.wow .steam-lines { left: 51%; bottom: 24%; width: 13%; }
.wow .full-bleed .quote-wrap {
  inset: auto 7% 11% 7%;
  grid-template-columns: 1.2fr .8fr;
}
.wow .cup-stage .cup { bottom: 18%; width: 18%; }
.wow .cup-stage .kettle { left: 8%; top: -2%; width: 24%; }
.wow .cup-stage .pour { left: 23%; top: 12%; }

.dialog {
  width: min(780px, calc(100vw - 26px));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(14,10,8,.96), rgba(8,7,6,.98));
  color: var(--text);
  box-shadow: 0 40px 140px rgba(0,0,0,.65);
  padding: 0;
}
.dialog::backdrop {
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(10px);
}
.dialog-head {
  padding: 26px 26px 0;
  display: flex; justify-content: space-between; gap: 16px; align-items: start;
}
.dialog-body { padding: 18px 26px 26px; }
.dialog-body p { color: var(--muted); line-height: 1.9; }
.embed-slot {
  margin-top: 18px;
  min-height: 190px;
  border-radius: 22px;
  border: 1px dashed rgba(227,199,165,.25);
  background:
    radial-gradient(circle at 30% 30%, rgba(227,199,165,.09), transparent 25%),
    rgba(255,255,255,.02);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
}
.embed-slot strong { display: block; letter-spacing: .16em; text-transform: uppercase; font-size: .76rem; color: var(--accent); }
.embed-slot span { display: block; margin-top: 8px; color: var(--muted); max-width: 36ch; }
.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.page-hero {
  padding: 64px 0 30px;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 26px;
  align-items: center;
}
.page-hero .panel { min-height: 520px; }
.page-hero .intro {
  max-width: 52ch;
  margin-top: 24px;
}
.page-hero .page-art { min-height: 520px; }
.page-hero .quote-wrap {
  inset: auto 6% 7% 6%;
  grid-template-columns: 1fr;
}
.page-banner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  color: var(--muted);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .72rem;
}
.page-banner .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
}

@keyframes drift {
  from { transform: translate3d(0,0,0) scale(1); opacity: .65; }
  to { transform: translate3d(10px,-18px,0) scale(1.04); opacity: .92; }
}
@keyframes steam {
  0%, 100% { transform: translateY(0) scaleY(.9); opacity: .15; }
  45% { transform: translateY(-18px) scaleY(1.08); opacity: .55; }
  70% { transform: translateY(-28px) scaleY(1.22); opacity: .28; }
}
@keyframes steamPhoto {
  0%, 100% { transform: translate3d(0, 14px, 0) scaleY(.7) rotate(0deg); opacity: .08; }
  35% { opacity: .52; }
  70% { transform: translate3d(22px, -68px, 0) scaleY(1.28) rotate(7deg); opacity: .22; }
}
@keyframes livingFrame {
  from { transform: scale(1.045) translate3d(-8px, 5px, 0); }
  to { transform: scale(1.1) translate3d(10px, -8px, 0); }
}
@keyframes livingFrameHero {
  0% { transform: scale(1.02) translate3d(-16px, 8px, 0); filter: brightness(.96) contrast(1.03); }
  45% { filter: brightness(1.08) contrast(1.06); }
  100% { transform: scale(1.075) translate3d(18px, -10px, 0); filter: brightness(1.02) contrast(1.08); }
}
@keyframes cardImagePan {
  0% { transform: scale(1.02) translate3d(-2%, 1%, 0); filter: brightness(.92) contrast(1.04); }
  50% { filter: brightness(1.05) contrast(1.08); }
  100% { transform: scale(1.11) translate3d(2%, -2%, 0); filter: brightness(.98) contrast(1.1); }
}
@keyframes brandFloat {
  from { transform: translate3d(0, 0, 0); border-color: rgba(255,255,255,.07); }
  to { transform: translate3d(0, -8px, 0); border-color: rgba(227,199,165,.18); }
}
@keyframes brandSweep {
  0%, 42% { transform: translateX(-120%); opacity: 0; }
  52% { opacity: .8; }
  72%, 100% { transform: translateX(120%); opacity: 0; }
}
@keyframes coffeeFrame {
  0% { transform: scale(1.01) translate3d(-14px, 6px, 0); filter: brightness(.96) contrast(1.04); }
  45% { filter: brightness(1.08) contrast(1.08); }
  100% { transform: scale(1.055) translate3d(10px, -8px, 0); filter: brightness(1.02) contrast(1.1); }
}
@keyframes hazeDrift {
  from { transform: translate3d(-2%, 1%, 0) scale(1); opacity: .38; }
  to { transform: translate3d(3%, -2%, 0) scale(1.08); opacity: .7; }
}
@keyframes breatheLight {
  0%, 100% { opacity: .32; transform: scale(.94); }
  50% { opacity: .74; transform: scale(1.08); }
}
@keyframes ambientSweep {
  from { transform: translate3d(-8%, 3%, 0) rotate(-2deg); opacity: .28; }
  to { transform: translate3d(8%, -3%, 0) rotate(2deg); opacity: .72; }
}
@keyframes ambientLight {
  from { transform: translate3d(-1%, 0, 0); opacity: .34; }
  to { transform: translate3d(1%, -1%, 0); opacity: .62; }
}
@keyframes pour {
  from { transform: rotate(8deg) scaleY(.96); opacity: .72; }
  to { transform: rotate(7deg) scaleY(1.08); opacity: .92; }
}

@media (max-width: 1200px) {
  .hero-grid,
  .page-hero-grid,
  .footer-grid,
  .grid-3,
  .grid-2,
  .spec-grid,
  .story-grid,
  .brand-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy,
  .hero-visual,
  .page-hero .panel,
  .page-hero .page-art { min-height: auto; }
  .full-bleed .quote-wrap,
  .wow .full-bleed .quote-wrap { grid-template-columns: 1fr; }
  .quote-copy { margin-left: 0; }
  .footer-meta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-btn { display: inline-grid; place-items: center; margin-left: auto; }
  .nav-shell { justify-content: space-between; }
  .section { padding: 84px 0; }
  .hero { padding-top: 18px; }
  .hero-copy { min-height: auto; padding: 26px 0 34px; }
  .hero-panel { min-height: 520px; }
  .full-bleed, .wow .full-bleed { min-height: 520px; }
  .brands-only {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }
  .brands-only .brand-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  :root { --radius-xl: 28px; --radius-lg: 22px; }
  .nav-shell { min-height: 72px; }
  .wordmark { font-size: 1.45rem; letter-spacing: .16em; }
  .h1, h1 { font-size: clamp(2.75rem, 2.25rem + 3vw, 3.8rem); line-height: 1; }
  .h2, h2 { font-size: clamp(2.15rem, 1.55rem + 2.6vw, 3rem); }
  .hero { padding-bottom: 54px; }
  .hero-panel, .full-bleed, .wow .full-bleed, .page-hero .panel { min-height: 420px; }
  .btn { min-height: 50px; }
  .panel, .manifesto-card, .spec-card, .story-card { padding: 20px; }
  .story-card .story-head, .story-card .story-body { padding: 20px; }
  .brands-only .brand-grid { gap: 14px; }
  .brands-only .brand-plate {
    min-height: 118px;
    padding: 14px;
  }
  .brands-only .brand-word {
    font-size: 1.15rem;
    letter-spacing: .16em;
  }
}

@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; }
}

/* Final photographic framing overrides. Keep these after generic panels so real
   images remain visible and motion is not replaced by abstract gradients. */
.hero-panel.cinematic-photo {
  min-height: clamp(520px, 72vh, 760px);
  background-image: url('mt-hero-wellness.png');
  background-size: cover;
  background-position: 83% center;
}
.hero-panel.cinematic-photo::before {
  content: '';
  position: absolute;
  inset: -6%;
  pointer-events: none;
  z-index: -2;
  background-image: url('mt-hero-wellness.png');
  background-size: cover;
  background-position: 83% center;
  transform: scale(1.04);
  animation: livingFrameHero 16s var(--ease) infinite alternate;
  mix-blend-mode: normal;
}
.hero-panel.cinematic-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 32%, rgba(227,199,165,.18), transparent 20%),
    linear-gradient(90deg, rgba(5,5,5,.06), rgba(5,5,5,0) 52%, rgba(5,5,5,.08)),
    linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.14));
}
.hero-panel .motion-haze {
  opacity: .55;
  animation-duration: 9s;
}
.hero-panel .skin-light {
  right: 7%;
  top: 9%;
  width: 48%;
  height: 70%;
  opacity: .58;
}
.wow .photo-wow {
  min-height: clamp(620px, 84vh, 860px);
  background-image: url('mt-wow-coffee.png');
  background-size: 100% auto;
  background-position: 38% 34%;
}
.wow .photo-wow::before {
  content: '';
  position: absolute;
  inset: -6%;
  z-index: -2;
  pointer-events: none;
  background-image: url('mt-wow-coffee.png');
  background-size: 100% auto;
  background-position: 38% 34%;
  animation: coffeeFrame 18s var(--ease) infinite alternate;
}
.wow .photo-wow::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,5,5,.70), rgba(5,5,5,.20) 32%, rgba(5,5,5,.04) 58%, rgba(5,5,5,.18)),
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.22));
}
.wow .photo-wow .quote-wrap,
.photo-wow .quote-wrap {
  inset: 11% 6% auto auto;
  width: min(34vw, 470px);
  display: block;
  text-align: right;
  justify-items: end;
  place-content: start;
}
.photo-wow .quote-title {
  max-width: 11ch;
  font-size: clamp(2.35rem, 1.4rem + 2.6vw, 4.2rem);
  text-shadow: 0 18px 50px rgba(0,0,0,.68);
}
.story-card .photo-card {
  background-size: cover;
  background-position: center;
  opacity: 1;
  animation: cardImagePan 16s var(--ease) infinite alternate;
}
.story-card .photo-card::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.24) 48%, rgba(0,0,0,.78)),
    radial-gradient(circle at 70% 28%, rgba(227,199,165,.14), transparent 24%);
}
.story-card .story-head { min-height: 170px; }
.story-card .story-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.ritual-photo.cinematic-photo {
  background-image: url('mt-lifestyle-ritual.png');
  background-position: 58% center;
}
.ritual-photo.cinematic-photo::before {
  background-image: url('mt-lifestyle-ritual.png');
  background-position: 58% center;
}
.ritual-photo.cinematic-photo::after {
  background:
    linear-gradient(90deg, rgba(5,5,5,.18), rgba(5,5,5,.04) 55%, rgba(5,5,5,.28)),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.34));
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-panel.cinematic-photo {
    min-height: 560px;
    background-position: 80% center;
  }
  .hero-panel.cinematic-photo::before {
    background-position: 80% center;
  }
  .wow .photo-wow .quote-wrap,
  .photo-wow .quote-wrap {
    inset: 8% 7% auto 7%;
    width: auto;
  }
}

@media (max-width: 720px) {
  .hero-panel.cinematic-photo {
    min-height: 440px;
    background-position: 80% center;
  }
  .wow .photo-wow {
    min-height: 560px;
    background-position: 56% center;
  }
  .photo-wow .quote-title {
    max-width: 11ch;
    font-size: clamp(2.25rem, 1.7rem + 5vw, 3.15rem);
  }
  .brands-only {
    grid-template-columns: 1fr;
  }
  .brands-only .brand-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Proposal final composition overrides */
.hero {
  position: relative;
  min-height: calc(100svh - 80px);
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(238,219,194,.18);
}
.hero .shell {
  width: 100%;
}
.hero-grid {
  width: 100%;
  min-height: calc(100svh - 80px);
  display: block;
}
.hero-copy {
  position: relative;
  z-index: 4;
  width: min(44vw, 680px);
  min-height: calc(100svh - 80px);
  margin-left: clamp(40px, 7vw, 118px);
  padding: clamp(80px, 14vh, 145px) 0 70px;
}
.hero-copy .eyebrow { display: none; }
.hero-copy h1 {
  font-size: clamp(4rem, 5.4vw, 6.7rem);
  line-height: .94;
  max-width: 7.8ch;
}
.hero-copy .lead {
  max-width: 28rem;
  margin-top: 26px;
}
.hero-panel.cinematic-photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(64vw, 1120px);
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background-position: 62% center;
}
.hero-panel.cinematic-photo::before {
  inset: -4%;
  background-position: 62% center;
  animation: livingFrameHero 16s var(--ease) infinite alternate;
}
.hero-panel.cinematic-photo::after {
  background:
    linear-gradient(90deg, rgba(5,5,5,1) 0%, rgba(5,5,5,.78) 12%, rgba(5,5,5,.22) 34%, rgba(5,5,5,.02) 58%, rgba(5,5,5,.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.28));
}
.hero-panel .skin-light {
  right: 20%;
  top: 8%;
  opacity: .45;
}
.hero .btn-row { margin-top: 38px; }
.hero .btn-secondary { display: none; }

.wow {
  min-height: clamp(390px, 43vh, 520px);
  padding: 0;
  border-bottom: 1px solid rgba(238,219,194,.18);
}
.wow .shell {
  width: 100%;
  max-width: none;
}
.wow .full-bleed,
.wow .photo-wow {
  min-height: clamp(390px, 43vh, 520px);
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  background-size: cover;
  background-position: 44% 48%;
}
.wow .photo-wow::before {
  background-size: cover;
  background-position: 44% 48%;
  animation: coffeeFrame 18s var(--ease) infinite alternate;
}
.wow .photo-wow::after {
  background:
    linear-gradient(90deg, rgba(5,5,5,.42), rgba(5,5,5,.10) 28%, rgba(5,5,5,.05) 64%, rgba(5,5,5,.38)),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.20));
}
.wow .photo-wow .quote-wrap,
.photo-wow .quote-wrap {
  inset: 32% auto auto 50%;
  width: min(48vw, 720px);
  transform: translateX(-50%);
  text-align: center;
}
.photo-wow .quote-title {
  max-width: 19ch;
  font-size: clamp(2.55rem, 3.35vw, 4.1rem);
  line-height: 1;
}
.photo-wow .steam-lines {
  left: 53%;
  bottom: 18%;
  width: 18%;
  height: 62%;
  opacity: 1;
}
.photo-wow .steam-lines span {
  width: 5px;
  animation-duration: 8.4s;
}
.section { padding: 58px 0; }
.story-card { min-height: 360px; border-radius: 0; }
.story-card .story-head { min-height: 130px; }
.brands-section { padding: 44px 0 46px; }
.universe-section {
  padding: 42px 0 26px;
}
.ritual-section {
  padding: 30px 0 52px;
}
.ritual-section .page-hero-grid {
  align-items: center;
}

@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; display: grid; }
  .hero-copy { width: auto; min-height: auto; margin: 0 auto; padding: 48px 24px 32px; }
  .hero-panel.cinematic-photo { position: relative; width: 100%; height: 560px; }
  .hero-copy h1 { max-width: 8.4ch; }
}
@media (max-width: 720px) {
  .hero-panel.cinematic-photo { height: 440px; background-position: 62% center; }
  .hero-panel.cinematic-photo::before { background-position: 62% center; }
  .wow .full-bleed, .wow .photo-wow { min-height: 460px; background-position: 40% center; }
  .wow .photo-wow::before { background-position: 40% center; }
  .wow .photo-wow .quote-wrap, .photo-wow .quote-wrap { inset: 10% 7% auto 7%; width: auto; transform: none; }
}

/* Proposal exact hero and coffee pass */
.hero {
  min-height: clamp(520px, 64vh, 620px);
  padding: 0;
  border-bottom: 1px solid rgba(238,219,194,.20);
}
.hero-grid {
  min-height: clamp(520px, 64vh, 620px);
}
.hero-copy {
  min-height: clamp(520px, 64vh, 620px);
  width: min(42vw, 620px);
  margin-left: clamp(42px, 7vw, 118px);
  padding-top: clamp(70px, 12vh, 118px);
  padding-bottom: 44px;
}
.hero-copy h1 {
  max-width: 620px;
  font-size: clamp(3.75rem, 5.25vw, 6.25rem);
  line-height: .98;
}
.hero-copy h1 span {
  display: block;
}
.hero-copy .lead {
  max-width: 31rem;
  margin-top: 26px;
}
.hero-panel.cinematic-photo {
  inset: 0 0 0 auto;
  width: min(66vw, 1160px);
  background-position: 61% 47%;
}
.hero-panel.cinematic-photo::before {
  background-position: 61% 47%;
}
.hero-panel.cinematic-photo::after {
  background:
    linear-gradient(90deg, rgba(5,5,5,1) 0%, rgba(5,5,5,.86) 14%, rgba(5,5,5,.36) 36%, rgba(5,5,5,.03) 64%, rgba(5,5,5,.16) 100%),
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.22));
}
.hero .btn-row { margin-top: 34px; }

.wow {
  min-height: clamp(310px, 36vh, 410px);
  padding: 0;
  border-top: 0;
  border-bottom: 1px solid rgba(238,219,194,.20);
}
.wow .full-bleed,
.wow .photo-wow {
  min-height: clamp(310px, 36vh, 410px);
  height: clamp(310px, 36vh, 410px);
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  background-size: cover;
  background-position: 42% 46%;
}
.wow .photo-wow::before {
  background-size: cover;
  background-position: 42% 46%;
  animation: coffeeFrame 18s var(--ease) infinite alternate;
}
.wow .photo-wow::after {
  background:
    linear-gradient(90deg, rgba(5,5,5,.50), rgba(5,5,5,.16) 28%, rgba(5,5,5,.06) 62%, rgba(5,5,5,.36)),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.18));
}
.wow .photo-wow .quote-wrap,
.photo-wow .quote-wrap {
  inset: 33% auto auto 50%;
  width: min(62vw, 820px);
  transform: translateX(-50%);
  text-align: center;
}
.wow-eyebrow {
  color: var(--accent);
  letter-spacing: .36em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.photo-wow .quote-title {
  max-width: none;
  font-size: clamp(2.4rem, 3.55vw, 4.25rem);
  line-height: 1.03;
}
.photo-wow .steam-lines {
  left: 52%;
  bottom: 18%;
  width: 17%;
  height: 70%;
  opacity: 1;
}
.photo-wow .steam-lines span {
  width: 5px;
  animation-duration: 8.4s;
}

@media (max-width: 980px) {
  .hero, .hero-grid, .hero-copy { min-height: auto; }
  .hero-copy { width: auto; margin: 0; padding: 48px 24px 34px; }
  .hero-panel.cinematic-photo { position: relative; width: 100%; height: 520px; background-position: 62% center; }
  .hero-panel.cinematic-photo::before { background-position: 62% center; }
  .wow .full-bleed, .wow .photo-wow { height: 430px; min-height: 430px; }
}
@media (max-width: 720px) {
  .hero-copy h1 { font-size: clamp(2.85rem, 13vw, 4rem); }
  .hero-panel.cinematic-photo { height: 430px; }
  .wow .full-bleed, .wow .photo-wow { height: 430px; min-height: 430px; background-position: 38% center; }
  .wow .photo-wow::before { background-position: 38% center; }
  .wow .photo-wow .quote-wrap, .photo-wow .quote-wrap { inset: 12% 7% auto 7%; width: auto; transform: none; }
  .wow-eyebrow { font-size: .68rem; }
}

/* Hero background cleanup pass */
.hero {
  background: #050505 !important;
  isolation: isolate;
}
.hero-copy {
  background: transparent !important;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: min(50vw, 760px);
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, #050505 0%, rgba(5,5,5,.96) 58%, rgba(5,5,5,0) 100%);
}
.hero-copy {
  position: relative;
  z-index: 5 !important;
  color: var(--text) !important;
}
.hero-copy h1,
.hero-copy .lead,
.hero-copy .btn-row,
.hero-copy a {
  color: var(--text) !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.hero-copy .btn-primary {
  color: #120c08 !important;
}
.hero-panel.cinematic-photo {
  z-index: 0 !important;
}
.hero-panel.cinematic-photo::after {
  background:
    linear-gradient(90deg, rgba(5,5,5,1) 0%, rgba(5,5,5,.78) 18%, rgba(5,5,5,.28) 38%, rgba(5,5,5,.02) 66%, rgba(5,5,5,.14) 100%),
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.20));
}
@media (max-width: 980px) {
  .hero::before { display: none; }
}

/* Scroll transition pass */
.hero::before {
  width: min(46vw, 700px);
  background: linear-gradient(90deg, #050505 0%, rgba(5,5,5,.90) 52%, rgba(5,5,5,0) 100%);
}
.hero-panel.cinematic-photo::after {
  background:
    linear-gradient(90deg, rgba(5,5,5,.58) 0%, rgba(5,5,5,.34) 18%, rgba(5,5,5,.08) 42%, rgba(5,5,5,0) 68%, rgba(5,5,5,.12) 100%),
    linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.18));
}
.hero-copy {
  text-shadow: 0 24px 70px rgba(0,0,0,.55);
}
.hero-copy h1, .hero-copy .lead, .hero-copy .btn-row {
  opacity: 1;
}
.scroll-motion {
  transition: transform .18s linear, opacity .18s linear, filter .18s linear;
  will-change: transform, opacity, filter;
}
.section {
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.section.scroll-near {
  opacity: 1;
}
.section.scroll-far {
  opacity: .72;
  transform: translateY(18px);
}
@media (max-width: 980px) {
  .hero::before { display: none; }
}

/* Photo text motion pass */
.hero-copy h1 span,
.hero-copy .lead,
.hero-copy .btn-row,
.wow-eyebrow,
.photo-wow .quote-title,
.story-card .meta,
.story-card h3,
.story-card .story-body p,
.story-card .story-body a {
  --text-float-y: -7px;
  --text-subtle-y: -4px;
  --text-drift-x: 4px;
  --text-drift-y: -3px;
  will-change: transform, translate, opacity, filter;
}
.hero-copy h1 span {
  display: block;
  animation: textFloat 7.5s ease-in-out infinite alternate;
}
.hero-copy h1 span:nth-child(2) { animation-delay: .45s; }
.hero-copy h1 span:nth-child(3) { animation-delay: .9s; }
.hero-copy .lead { animation: textFloatSubtle 8s ease-in-out infinite alternate .25s; }
.hero-copy .btn-row { animation: textFloatSubtle 8s ease-in-out infinite alternate .7s; }
.wow-eyebrow { animation: textDriftWide 7.5s ease-in-out infinite alternate; }
.photo-wow .quote-title { animation: textFloat 8s ease-in-out infinite alternate .4s; }
.story-card .meta { animation: textDriftWide 8s ease-in-out infinite alternate; }
.story-card h3 { animation: textFloat 8.5s ease-in-out infinite alternate .35s; }
.story-card .story-body p,
.story-card .story-body a { animation: textFloatSubtle 9s ease-in-out infinite alternate .7s; }
.photo-text-scroll {
  transition: transform .18s linear, opacity .18s linear, filter .18s linear;
  text-shadow: 0 18px 48px rgba(0,0,0,.46);
}
@keyframes textFloat {
  from { translate: 0 0; filter: brightness(1); }
  to { translate: 0 var(--text-float-y); filter: brightness(1.08); }
}
@keyframes textFloatSubtle {
  from { translate: 0 0; opacity: .9; }
  to { translate: 0 var(--text-subtle-y); opacity: 1; }
}
@keyframes textDriftWide {
  from { translate: calc(var(--text-drift-x) * -1) 0; opacity: .86; }
  to { translate: var(--text-drift-x) var(--text-drift-y); opacity: 1; }
}
@media (max-width: 720px) {
  .universe-section {
    padding: 28px 0 18px;
  }
  .ritual-section {
    padding: 22px 0 38px;
  }
  .universe-section .grid-3 {
    gap: 14px;
  }
  .universe-section .story-card {
    min-height: 300px;
  }
  .universe-section .story-card .story-head {
    min-height: 105px;
  }
  .ritual-section .ritual-photo {
    min-height: 340px !important;
  }
  .hero-copy h1 span,
  .hero-copy .lead,
  .hero-copy .btn-row,
  .wow-eyebrow,
  .photo-wow .quote-title,
  .story-card .meta,
  .story-card h3,
  .story-card .story-body p,
  .story-card .story-body a {
    --text-float-y: -3px;
    --text-subtle-y: -2px;
    --text-drift-x: 2px;
    --text-drift-y: -1px;
  }
  .hero-copy h1 span,
  .photo-wow .quote-title,
  .story-card h3 {
    animation-duration: 10.5s;
  }
  .hero-copy .lead,
  .hero-copy .btn-row,
  .story-card .story-body p,
  .story-card .story-body a,
  .wow-eyebrow,
  .story-card .meta {
    animation-duration: 11.5s;
  }
  .photo-text-scroll {
    text-shadow: 0 12px 34px rgba(0,0,0,.44);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-copy h1 span, .hero-copy .lead, .hero-copy .btn-row, .wow-eyebrow, .photo-wow .quote-title, .story-card .meta, .story-card h3, .story-card .story-body p, .story-card .story-body a {
    animation: none !important;
    translate: none !important;
    transform: none !important;
  }
}

/* Filosofia editorial page */
.page-filosofia {
  background: #050505;
}
.page-filosofia main {
  overflow: hidden;
}
.philo-hero {
  position: relative;
  min-height: calc(100svh - 80px);
  border-bottom: 1px solid rgba(238,219,194,.16);
  background:
    radial-gradient(circle at 54% 18%, rgba(98,65,39,.28), transparent 26%),
    linear-gradient(180deg, rgba(11,8,6,.98), #050505);
}
.philo-hero-grid {
  position: relative;
  min-height: calc(100svh - 80px);
}
.philo-hero-copy {
  position: relative;
  z-index: 3;
  width: min(44vw, 660px);
  min-height: calc(100svh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 10vh, 116px) 0 62px;
}
.philo-hero-copy h1 {
  margin-top: 22px;
  max-width: 9.5ch;
  font-size: clamp(4rem, 5.15vw, 6.8rem);
  line-height: .96;
  text-shadow: 0 24px 74px rgba(0,0,0,.6);
}
.philo-hero-copy h1 span {
  display: block;
  --text-float-y: -6px;
  animation: textFloat 8.5s ease-in-out infinite alternate;
}
.philo-hero-copy h1 span:nth-child(2) { animation-delay: .35s; }
.philo-hero-copy h1 span:nth-child(3) { animation-delay: .7s; }
.philo-hero-copy .lead {
  max-width: 30rem;
  margin-top: 30px;
}
.philo-play {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin-top: 34px;
  color: var(--text);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .72rem;
}
.philo-play::before {
  content: '';
  width: 38px;
  height: 1px;
  background: rgba(227,199,165,.62);
  transition: width .35s var(--ease), background .35s var(--ease);
}
.philo-play:hover::before {
  width: 58px;
  background: rgba(227,199,165,.9);
}
.philo-play .activity-marker,
.activity-marker {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(239,231,220,.76);
  border-radius: 999px;
  background: rgba(5,5,5,.22);
}
.activity-marker {
  position: relative;
  overflow: visible;
  animation: activityFloat 4.8s ease-in-out infinite alternate;
  box-shadow: 0 0 0 0 rgba(227,199,165,.0);
}
.philo-play .activity-marker {
  flex: 0 0 auto;
  animation: inlineActivityFloat 4.8s ease-in-out infinite alternate;
}
.philo-play .activity-marker::before,
.activity-marker::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(227,199,165,.86);
  box-shadow: 0 0 18px rgba(227,199,165,.42);
  animation: activityCore 2.4s ease-in-out infinite alternate;
}
.activity-marker::after {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(227,199,165,.26);
  border-radius: 999px;
  animation: activityPulse 2.8s ease-out infinite;
}
.philo-hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(67vw, 1180px);
  min-height: 100%;
  background-size: cover;
  background-position: 64% center;
}
.philo-hero-media::before {
  content: '';
  position: absolute;
  inset: -4%;
  z-index: -2;
  background: inherit;
  background-size: cover;
  background-position: inherit;
  animation: livingFrameHero 18s var(--ease) infinite alternate;
}
.philo-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, #050505 0%, rgba(5,5,5,.78) 18%, rgba(5,5,5,.22) 42%, rgba(5,5,5,.06) 70%, rgba(5,5,5,.22)),
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.24));
}
.philo-photo-person { background-image: url('mt-lifestyle-ritual.png'); }
.philo-photo-wellness { background-image: url('mt-card-wellness.png'); }
.philo-photo-coffee,
.philo-photo-wow { background-image: url('mt-wow-coffee.png'); }
.philo-photo-tech { background-image: url('mt-card-tech.png'); }
.philo-photo-ritual { background-image: url('mt-lifestyle-ritual.png'); }
.philo-bottle {
  position: absolute;
  left: 18%;
  bottom: 16%;
  z-index: 2;
  width: 78px;
  height: 150px;
  display: grid;
  place-items: end center;
  padding-bottom: 24px;
  border-radius: 18px 18px 12px 12px;
  border: 1px solid rgba(239,231,220,.16);
  background:
    linear-gradient(180deg, rgba(239,231,220,.88), rgba(174,151,129,.72) 66%, rgba(31,22,17,.78)),
    linear-gradient(90deg, rgba(255,255,255,.22), transparent 42%);
  color: rgba(23,18,14,.78);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  letter-spacing: .08em;
  box-shadow: 0 28px 80px rgba(0,0,0,.46);
  animation: bottleBreathe 8.5s ease-in-out infinite alternate;
}
.philo-bottle::before {
  content: '';
  position: absolute;
  top: -24px;
  width: 34px;
  height: 28px;
  border-radius: 9px 9px 4px 4px;
  background: rgba(22,17,14,.82);
}
.philo-bottle.small {
  left: 9%;
  bottom: 10%;
  transform: scale(.78);
  transform-origin: bottom left;
}
.philo-hero-media .steam-lines {
  left: 48%;
  bottom: 24%;
  width: 16%;
  height: 38%;
}
.philo-universes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(238,219,194,.16);
}
.philo-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-right: 1px solid rgba(238,219,194,.14);
  background: #090604;
}
.philo-card:last-child { border-right: 0; }
.philo-card-image {
  position: absolute;
  inset: -4%;
  background-size: cover;
  background-position: center;
}
.philo-card-image::before {
  content: '';
  position: absolute;
  inset: -3%;
  background: inherit;
  background-size: cover;
  background-position: inherit;
  animation: cardImagePan 18s var(--ease) infinite alternate;
  z-index: -2;
}
.philo-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5,5,5,.10), rgba(5,5,5,.16) 34%, rgba(5,5,5,.82)),
    radial-gradient(circle at 50% 38%, rgba(227,199,165,.12), transparent 28%);
}
.philo-card .activity-marker {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: .8;
}
.philo-card-copy {
  position: absolute;
  left: clamp(28px, 5vw, 56px);
  right: clamp(28px, 5vw, 56px);
  bottom: 40px;
  z-index: 2;
}
.philo-card-copy h2 {
  font-size: clamp(2rem, 2.1vw, 3rem);
  line-height: 1.04;
  --text-float-y: -5px;
  animation: textFloat 8.8s ease-in-out infinite alternate;
}
.philo-card-copy p {
  max-width: 26rem;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.75;
  --text-subtle-y: -3px;
  animation: textFloatSubtle 9.6s ease-in-out infinite alternate .4s;
}
.philo-statement {
  padding: 0;
  border-bottom: 1px solid rgba(238,219,194,.16);
}
.philo-statement-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: stretch;
  min-height: 520px;
}
.philo-statement-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 8vw, 92px) 8vw clamp(56px, 8vw, 92px) 0;
}
.philo-statement-copy h2,
.philo-wow-copy h2 {
  margin-top: 18px;
  font-size: clamp(2.7rem, 3.6vw, 5rem);
  line-height: 1.02;
}
.philo-statement-copy p,
.philo-advisor-copy p {
  max-width: 42rem;
  margin-top: 22px;
  color: var(--muted);
  line-height: 1.9;
}
.philo-statement-media {
  min-height: 520px;
  background-size: cover;
  background-position: 58% center;
}
.philo-statement-media::before,
.philo-advisor-media::before,
.philo-wow::before {
  content: '';
  position: absolute;
  inset: -5%;
  z-index: -2;
  background: inherit;
  background-size: cover;
  background-position: inherit;
  animation: livingFrame 20s var(--ease) infinite alternate;
}
.philo-statement-media::after,
.philo-advisor-media::after,
.philo-wow::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5,5,5,.28), rgba(5,5,5,.04) 52%, rgba(5,5,5,.44)),
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.36));
}
.philo-advisors {
  padding: 0;
  border-bottom: 1px solid rgba(238,219,194,.16);
}
.philo-advisors-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 520px;
}
.philo-advisor-media {
  position: relative;
  min-height: 520px;
  background-image: url('filo-advisor-scene.png');
  background-size: cover;
  background-position: 48% center;
}
.philo-advisor-media .activity-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.philo-advisor-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 7vw, 86px);
  background:
    radial-gradient(circle at 100% 0%, rgba(227,199,165,.10), transparent 24%),
    linear-gradient(180deg, rgba(12,8,6,.98), rgba(5,5,5,.98));
}
.philo-advisor-copy h2 {
  max-width: 14ch;
  font-size: clamp(2.5rem, 3vw, 4.2rem);
  line-height: 1.02;
  --text-float-y: -5px;
  animation: textFloat 9s ease-in-out infinite alternate;
}
.philo-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}
.philo-proof span {
  position: relative;
  padding-left: 42px;
  color: var(--muted);
  line-height: 1.55;
  --text-subtle-y: -3px;
  animation: textFloatSubtle 10s ease-in-out infinite alternate .45s;
}
.philo-proof span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(227,199,165,.58);
  box-shadow: inset 0 0 0 7px rgba(227,199,165,.04);
}
.philo-wow {
  position: relative;
  min-height: 76vh;
  display: grid;
  place-items: center;
  background-size: cover;
  background-position: 42% 46%;
  overflow: hidden;
  border-bottom: 1px solid rgba(238,219,194,.16);
}
.philo-wow::before {
  animation-name: coffeeFrame;
}
.philo-wow::after {
  background:
    radial-gradient(circle at 52% 52%, rgba(227,199,165,.10), transparent 28%),
    linear-gradient(90deg, rgba(5,5,5,.60), rgba(5,5,5,.14) 36%, rgba(5,5,5,.58)),
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.44));
}
.philo-wow .steam-lines {
  left: 51%;
  bottom: 18%;
  width: 18%;
  height: 70%;
  opacity: .95;
}
.philo-wow-copy {
  position: relative;
  z-index: 2;
  text-align: center;
}
.philo-wow-copy h2 {
  max-width: 16ch;
  margin: 0 auto;
  text-shadow: 0 28px 80px rgba(0,0,0,.64);
  --text-float-y: -6px;
  animation: textFloat 9s ease-in-out infinite alternate;
}
.philo-brands {
  padding: 34px 0;
  border-bottom: 1px solid rgba(238,219,194,.12);
}
.philo-brand-row {
  display: grid;
  grid-template-columns: 1fr repeat(3, minmax(140px, 1fr));
  align-items: center;
  gap: 24px;
  color: rgba(239,231,220,.58);
  text-align: center;
}
.philo-brand-row span {
  color: var(--accent);
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: .72rem;
  text-align: left;
}
.philo-brand-row strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.7rem, 2.2vw, 2.7rem);
  font-weight: 500;
  letter-spacing: .14em;
  color: rgba(239,231,220,.72);
}
.philo-footer .footer-brandline {
  display: none;
}
@keyframes bottleBreathe {
  from { transform: translate3d(0, 0, 0); filter: brightness(.9); }
  to { transform: translate3d(0, -7px, 0); filter: brightness(1.05); }
}
@keyframes activityPulse {
  0% { transform: scale(.74); opacity: 0; }
  28% { opacity: .72; }
  100% { transform: scale(1.32); opacity: 0; }
}
@keyframes activityCore {
  from { transform: scale(.72); opacity: .62; }
  to { transform: scale(1.22); opacity: 1; }
}
@keyframes activityFloat {
  0% { transform: translate3d(-50%, -50%, 0) scale(.96); filter: brightness(.88); }
  100% { transform: translate3d(-50%, calc(-50% - 8px), 0) scale(1.06); filter: brightness(1.12); }
}
@keyframes inlineActivityFloat {
  0% { transform: translate3d(0, 0, 0) scale(.96); filter: brightness(.88); }
  100% { transform: translate3d(0, -4px, 0) scale(1.04); filter: brightness(1.12); }
}
@media (max-width: 980px) {
  .philo-hero,
  .philo-hero-grid,
  .philo-hero-copy {
    min-height: auto;
  }
  .philo-hero-copy {
    width: auto;
    padding: 54px 0 34px;
  }
  .philo-hero-media {
    position: relative;
    width: 100%;
    height: 560px;
  }
  .philo-universes,
  .philo-statement-grid,
  .philo-advisors-grid {
    grid-template-columns: 1fr;
  }
  .philo-card {
    min-height: 390px;
    border-right: 0;
    border-bottom: 1px solid rgba(238,219,194,.14);
  }
  .philo-statement-copy {
    padding: 54px 0 38px;
  }
  .philo-statement-media,
  .philo-advisor-media {
    min-height: 420px;
  }
  .philo-advisor-copy {
    padding: 48px 0;
  }
  .philo-brand-row {
    grid-template-columns: 1fr;
    text-align: left;
  }
}
@media (max-width: 720px) {
  .philo-hero-copy h1 {
    font-size: clamp(3rem, 13vw, 4.4rem);
    max-width: 9ch;
  }
  .philo-hero-copy h1 span,
  .philo-wow-copy h2 {
    --text-float-y: -3px;
    animation-duration: 11s;
  }
  .philo-hero-media {
    height: 460px;
    background-position: 62% center;
  }
  .philo-bottle {
    left: 9%;
    bottom: 9%;
    transform: scale(.78);
    transform-origin: bottom left;
  }
  .philo-card {
    min-height: 330px;
  }
  .philo-card-copy {
    left: 24px;
    right: 24px;
    bottom: 28px;
  }
  .philo-card-copy h2 {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }
  .philo-statement-copy h2,
  .philo-wow-copy h2,
  .philo-advisor-copy h2 {
    font-size: clamp(2.35rem, 10vw, 3.35rem);
  }
  .philo-statement-media,
  .philo-advisor-media {
    min-height: 360px;
  }
  .philo-proof {
    grid-template-columns: 1fr;
  }
  .philo-wow {
    min-height: 560px;
    background-position: 39% center;
  }
}

/* Filosofia proposal alignment: same system, proposal structure and proposal crops */
.page-filosofia .site-header {
  background: rgba(5,5,5,.62);
  position: relative;
}
.page-filosofia .nav-shell {
  min-height: 76px;
}
.page-filosofia .nav-links a {
  font-size: .72rem;
}
.page-filosofia .philo-hero {
  min-height: 490px;
  background: #050505;
}
.page-filosofia .philo-hero-grid {
  width: 100%;
  max-width: none;
  min-height: 490px;
}
.page-filosofia .philo-hero-copy {
  width: min(43vw, 540px);
  min-height: 490px;
  margin-left: clamp(54px, 8vw, 94px);
  padding: 72px 0 48px;
}
.page-filosofia .philo-hero-copy h1 {
  max-width: 11.5ch;
  font-size: clamp(3.4rem, 4.3vw, 5.2rem);
  line-height: 1.03;
  margin-top: 24px;
}
.page-filosofia .philo-hero-copy h1 span {
  display: block;
}
.page-filosofia .philo-hero-copy .lead {
  max-width: 32rem;
  margin-top: 26px;
  font-size: .98rem;
}
.page-filosofia .philo-hero-media {
  width: 100%;
  min-height: 490px;
  background-image: url('filo-hero.png');
  background-size: cover;
  background-position: 66% center;
}
.page-filosofia .philo-hero-media::before {
  background-image: url('filo-hero.png');
  background-size: cover;
  background-position: 66% center;
}
.page-filosofia .philo-hero-media::after {
  background:
    linear-gradient(90deg, rgba(5,5,5,.96) 0%, rgba(5,5,5,.76) 22%, rgba(5,5,5,.22) 48%, rgba(5,5,5,.06) 72%, rgba(5,5,5,.26)),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.22));
}
.page-filosofia .philo-hero-media .steam-lines,
.page-filosofia .philo-bottle {
  display: none;
}
.page-filosofia .philo-universes {
  grid-template-columns: repeat(3, 1fr);
}
.page-filosofia .philo-card {
  min-height: 305px;
}
.page-filosofia .philo-card-image {
  inset: 0;
}
.page-filosofia .philo-photo-wellness,
.page-filosofia .philo-photo-wellness::before {
  background-image: url('filo-wellness.png');
  background-position: center;
}
.page-filosofia .philo-photo-coffee,
.page-filosofia .philo-photo-coffee::before {
  background-image: url('filo-coffee.png');
  background-position: center;
}
.page-filosofia .philo-photo-tech,
.page-filosofia .philo-photo-tech::before {
  background-image: url('filo-tech.png');
  background-position: center;
}
.page-filosofia .philo-card-copy {
  left: clamp(40px, 5vw, 68px);
  right: clamp(34px, 5vw, 58px);
  bottom: 28px;
}
.page-filosofia .philo-card-copy h2 {
  font-size: clamp(1.65rem, 1.8vw, 2.35rem);
}
.page-filosofia .philo-card-copy p {
  margin-top: 12px;
  font-size: .96rem;
  line-height: 1.65;
}
.page-filosofia .philo-statement-grid {
  width: 100%;
  max-width: none;
  min-height: 250px;
  grid-template-columns: 44% 56%;
}
.page-filosofia .philo-statement-copy {
  padding: 50px clamp(44px, 7vw, 82px);
}
.page-filosofia .philo-statement-copy h2 {
  max-width: 14ch;
  font-size: clamp(2.2rem, 3vw, 3.6rem);
}
.page-filosofia .philo-statement-copy p {
  max-width: 34rem;
  margin-top: 22px;
  font-size: .98rem;
}
.page-filosofia .philo-statement-media {
  min-height: 250px;
  background-image: url('filo-statement.png');
  background-size: cover;
  background-position: center;
}
.page-filosofia .philo-statement-media::before {
  background-image: url('filo-statement.png');
  background-position: center;
}
.page-filosofia .philo-advisors-grid {
  width: 100%;
  max-width: none;
  min-height: 260px;
  grid-template-columns: 56% 44%;
}
.page-filosofia .philo-advisor-media {
  min-height: 260px;
  background-image: url('filo-advisor-scene.png');
  background-position: 48% center;
}
.page-filosofia .philo-advisor-media::before {
  background-image: url('filo-advisor-scene.png');
  background-position: 48% center;
}
.page-filosofia .philo-advisor-copy {
  padding: 44px clamp(42px, 7vw, 76px);
}
.page-filosofia .philo-advisor-copy h2 {
  max-width: 15ch;
  font-size: clamp(2.1rem, 2.7vw, 3.3rem);
}
.page-filosofia .philo-advisor-copy p {
  max-width: 36rem;
  font-size: .96rem;
  line-height: 1.75;
}
.page-filosofia .philo-proof {
  margin-top: 26px;
  gap: 16px;
}
.page-filosofia .philo-home-brands {
  padding: 44px 0 46px;
}
.page-filosofia .philo-home-brands .brands-only {
  display: grid;
}
.page-filosofia .footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr;
}
@media (max-width: 980px) {
  .page-filosofia .philo-hero-grid,
  .page-filosofia .philo-hero,
  .page-filosofia .philo-hero-copy {
    min-height: auto;
  }
  .page-filosofia .philo-hero-copy {
    width: auto;
    margin-left: 0;
    padding: 50px 24px 28px;
  }
  .page-filosofia .philo-hero-media {
    position: relative;
    min-height: 440px;
  }
  .page-filosofia .philo-universes,
  .page-filosofia .philo-statement-grid,
  .page-filosofia .philo-advisors-grid,
  .page-filosofia .footer-grid {
    grid-template-columns: 1fr;
  }
  .page-filosofia .philo-card {
    min-height: 310px;
  }
  .page-filosofia .philo-statement-media,
  .page-filosofia .philo-advisor-media {
    min-height: 320px;
  }
}
@media (max-width: 720px) {
  .page-filosofia .philo-hero-copy h1 {
    font-size: clamp(2.85rem, 12vw, 4rem);
  }
  .page-filosofia .philo-hero-media {
    min-height: 390px;
  }
  .page-filosofia .philo-statement-copy,
  .page-filosofia .philo-advisor-copy {
    padding: 36px 24px;
  }
}

/* Filosofia final pass: proposal structure on top of the home visual system */
.page-filosofia .site-header {
  position: sticky;
  background: linear-gradient(180deg, rgba(5,5,5,.90), rgba(5,5,5,.58));
}
.page-filosofia .philo-hero {
  min-height: clamp(560px, 66vh, 680px);
}
.page-filosofia .philo-hero-grid {
  min-height: clamp(560px, 66vh, 680px);
}
.page-filosofia .philo-hero-copy {
  width: min(52vw, 760px);
  min-height: clamp(560px, 66vh, 680px);
  margin-left: clamp(54px, 8vw, 96px);
  padding-top: clamp(78px, 10vh, 120px);
}
.page-filosofia .philo-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3.65rem, 4.65vw, 5.7rem);
  line-height: 1.02;
}
.page-filosofia .philo-hero-copy h1 span {
  display: block;
  white-space: nowrap;
}
.page-filosofia .philo-hero-copy .lead {
  max-width: 30rem;
}
.page-filosofia .philo-hero-media {
  min-height: clamp(560px, 66vh, 680px);
  background-position: 72% center;
}
.page-filosofia .philo-hero-media::before {
  background-position: 72% center;
}
.page-filosofia .philo-hero-media::after {
  background:
    linear-gradient(90deg, rgba(5,5,5,.98) 0%, rgba(5,5,5,.78) 23%, rgba(5,5,5,.26) 48%, rgba(5,5,5,.06) 72%, rgba(5,5,5,.20)),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.24));
}
.page-filosofia .play-mark {
  box-shadow: 0 0 28px rgba(227,199,165,.12);
}
.page-filosofia .play-mark::after {
  border-color: rgba(227,199,165,.34);
}
.page-filosofia .activity-marker {
  box-shadow: 0 0 28px rgba(227,199,165,.12);
}
.page-filosofia .activity-marker::after {
  border-color: rgba(227,199,165,.34);
}
.page-filosofia .philo-card-image {
  animation: cardImagePan 17s var(--ease) infinite alternate;
  will-change: transform, filter;
}
.page-filosofia .philo-card .ambient-motion,
.page-filosofia .philo-advisor-media .ambient-motion {
  animation-duration: 7.5s;
  opacity: .85;
}
.page-filosofia .philo-card-copy h2,
.page-filosofia .philo-statement-copy h2,
.page-filosofia .philo-advisor-copy h2 {
  --text-float-y: -6px;
  animation: textFloat 8.8s ease-in-out infinite alternate;
  will-change: transform, translate, filter;
}
.page-filosofia .philo-card-copy p,
.page-filosofia .philo-statement-copy p,
.page-filosofia .philo-advisor-copy p,
.page-filosofia .philo-proof span {
  --text-subtle-y: -3px;
  animation: textFloatSubtle 9.8s ease-in-out infinite alternate .35s;
  will-change: transform, translate, opacity;
}
.page-filosofia .philo-statement-media,
.page-filosofia .philo-advisor-media {
  position: relative;
  overflow: hidden;
  transform: none !important;
  filter: none !important;
  contain: paint;
}
.page-filosofia .philo-statement-media::before,
.page-filosofia .philo-advisor-media::before {
  animation-duration: 18s;
}
.page-filosofia .philo-statement,
.page-filosofia .philo-advisors {
  overflow: hidden;
  background: #050505;
}
.page-filosofia .philo-statement-grid,
.page-filosofia .philo-advisors-grid {
  align-items: stretch;
}
.page-filosofia .philo-statement-media .philo-coffee-steam {
  left: 51%;
  bottom: 12%;
  width: 14%;
  height: 44%;
  opacity: .95;
  z-index: 4;
  pointer-events: none;
}
.page-filosofia .philo-advisor-media .philo-coffee-steam {
  left: 57%;
  bottom: 12%;
  width: 13%;
  height: 34%;
  opacity: .86;
  z-index: 4;
  pointer-events: none;
}
.page-filosofia .philo-statement-media .philo-coffee-steam span,
.page-filosofia .philo-advisor-media .philo-coffee-steam span {
  width: 4px;
  background: linear-gradient(180deg, rgba(244,236,224,0), rgba(244,236,224,.66), rgba(244,236,224,0));
  animation-name: steamPhoto;
  animation-duration: 8.8s;
  filter: blur(4px);
}
.page-filosofia .philo-home-brands {
  padding: 44px 0 46px;
  background: #070605;
}
.page-filosofia .philo-home-brands .brands-only,
.page-filosofia .philo-home-brands .brand-grid,
.page-filosofia .footer-grid {
  /* Keep persistent site elements aligned with the home implementation. */
}
@media (max-width: 980px) {
  .page-filosofia .philo-hero,
  .page-filosofia .philo-hero-grid,
  .page-filosofia .philo-hero-copy {
    min-height: auto;
  }
  .page-filosofia .philo-hero-copy {
    width: auto;
    margin-left: 0;
  }
  .page-filosofia .philo-hero-copy h1 span {
    white-space: normal;
  }
  .page-filosofia .philo-hero-media {
    min-height: 460px;
    background-position: 68% center;
  }
}
@media (max-width: 720px) {
  .page-filosofia .philo-hero-copy h1 {
    font-size: clamp(2.85rem, 12vw, 4rem);
  }
  .page-filosofia .philo-card-copy h2,
  .page-filosofia .philo-statement-copy h2,
  .page-filosofia .philo-advisor-copy h2 {
    --text-float-y: -3px;
    animation-duration: 11s;
  }
  .page-filosofia .philo-card-copy p,
  .page-filosofia .philo-statement-copy p,
  .page-filosofia .philo-advisor-copy p,
  .page-filosofia .philo-proof span {
    --text-subtle-y: -2px;
    animation-duration: 11.5s;
  }
}

/* Bienestar: Clairex editorial page, aligned with home and filosofia */
.page-bienestar .site-header {
  position: sticky;
  background: linear-gradient(180deg, rgba(5,5,5,.92), rgba(5,5,5,.56));
}
.wellness-hero {
  position: relative;
  min-height: clamp(560px, 65vh, 700px);
  overflow: hidden;
  border-bottom: 1px solid rgba(238,219,194,.14);
  background:
    radial-gradient(circle at 70% 24%, rgba(159,121,82,.12), transparent 36%),
    linear-gradient(90deg, #050505 0%, #0b0806 48%, #050505 100%);
}
.wellness-hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, .88fr) minmax(520px, 1.12fr);
  min-height: clamp(560px, 65vh, 700px);
  align-items: stretch;
}
.wellness-hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(76px, 9vh, 120px) 0 clamp(58px, 7vh, 86px) clamp(22px, 3vw, 42px);
}
.wellness-hero-copy h1 {
  max-width: 650px;
  margin-top: 18px;
  font-size: clamp(3.45rem, 4.4vw, 5.45rem);
  line-height: 1.03;
}
.wellness-hero-copy h1 span {
  display: block;
}
.wellness-hero-copy .lead {
  max-width: 31rem;
  margin-top: 28px;
  color: rgba(239,231,220,.72);
}
.wellness-hero-media {
  position: relative;
  min-height: clamp(560px, 65vh, 700px);
  overflow: hidden;
  background-image: url('bienestar-hero.png');
  background-size: cover;
  background-position: 64% center;
  contain: paint;
}
.wellness-hero-media::before,
.wellness-products-media::before,
.wellness-wow-media::before,
.wellness-collection-media::before,
.wellness-category-image::before {
  content: '';
  position: absolute;
  inset: -4%;
  background: inherit;
  background-size: cover;
  background-position: inherit;
  animation: wellnessImageDrift 10.5s var(--ease) infinite alternate;
  will-change: transform, filter;
}
.wellness-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,.94) 0%, rgba(5,5,5,.64) 22%, rgba(5,5,5,.14) 53%, rgba(5,5,5,.10)),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.34));
}
.section-kicker {
  margin: 0 auto clamp(18px, 2vw, 28px);
  text-align: center;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .76rem;
  font-weight: 700;
}
.wellness-categories {
  padding: clamp(42px, 5vw, 70px) 0 34px;
  background:
    radial-gradient(circle at 50% 0%, rgba(159,121,82,.10), transparent 34%),
    linear-gradient(180deg, #080706, #050505);
  overflow: hidden;
}
.wellness-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 34px);
}
.wellness-category {
  position: relative;
  min-height: clamp(330px, 34vw, 430px);
  overflow: hidden;
  border: 0;
  background: #080706;
}
.wellness-category-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transform: translateZ(0);
  transition: transform .18s linear, filter .18s linear;
  will-change: transform, filter;
}
.wellness-body { background-image: url('bienestar-card-body.png'); }
.wellness-face { background-image: url('bienestar-card-face.png'); }
.wellness-hair { background-image: url('bienestar-card-hair.png'); }
.wellness-category-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 34%, rgba(216,183,141,.08), transparent 42%),
    linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.32) 42%, rgba(0,0,0,.82) 100%),
    linear-gradient(90deg, rgba(0,0,0,.28), transparent 62%);
}
.wellness-category::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  z-index: 2;
  background: linear-gradient(180deg, rgba(5,5,5,0), rgba(5,5,5,.88));
  pointer-events: none;
}
.wellness-category-copy {
  position: relative;
  z-index: 4;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 3.2vw, 46px);
}
.wellness-category-copy h2 {
  font-size: clamp(1.6rem, 2vw, 2.35rem);
  line-height: 1.08;
}
.wellness-category-copy p {
  max-width: 19rem;
  margin-top: 12px;
  color: rgba(239,231,220,.72);
  line-height: 1.7;
  font-size: .95rem;
}
.wellness-line-icon,
.wellness-value-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(216,183,141,.72);
  border-radius: 999px;
  display: inline-block;
  position: relative;
  opacity: .92;
}
.wellness-line-icon::before,
.wellness-value-icon::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(216,183,141,.82);
  border-radius: 42% 58% 46% 54%;
  transform: rotate(-28deg);
}
.wellness-line-icon.bottle::before {
  inset: 12px 18px 10px;
  border-radius: 6px 6px 10px 10px;
}
.wellness-line-icon.drops::before {
  inset: 11px 16px 13px;
  border-radius: 50% 50% 54% 54%;
  transform: rotate(32deg);
}
.wellness-products {
  overflow: hidden;
  border-top: 0;
  border-bottom: 0;
  background:
    radial-gradient(circle at 28% 46%, rgba(159,121,82,.12), transparent 36%),
    #050505;
}
.wellness-products-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, 1fr) minmax(410px, .95fr);
  align-items: stretch;
  min-height: clamp(430px, 45vw, 560px);
}
.wellness-products-media {
  position: relative;
  min-height: clamp(380px, 44vw, 560px);
  overflow: hidden;
  background-image: url('bienestar-products.png');
  background-size: cover;
  background-position: 48% center;
  contain: paint;
  transition: filter .7s var(--ease), opacity .7s var(--ease);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 76%, rgba(0,0,0,.28) 92%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 76%, rgba(0,0,0,.28) 92%, transparent 100%);
}
.wellness-products-media::after,
.wellness-wow-media::after,
.wellness-collection-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.22), rgba(0,0,0,.04), rgba(0,0,0,.42)),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.36));
  animation: wellnessVeil 8s ease-in-out infinite alternate;
}
.wellness-products-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 6vw, 86px);
  background:
    linear-gradient(90deg, rgba(5,5,5,.58), rgba(5,5,5,.98) 16%, rgba(12,8,6,.98)),
    radial-gradient(circle at 18% 20%, rgba(159,121,82,.14), transparent 32%);
  margin-left: clamp(-64px, -4vw, -34px);
}
.wellness-products-copy h2 {
  max-width: 13ch;
  margin-top: 18px;
  font-size: clamp(2.4rem, 3.2vw, 4.35rem);
  line-height: 1.03;
}
.wellness-products-copy p {
  max-width: 37rem;
  margin-top: 22px;
  color: rgba(239,231,220,.72);
  line-height: 1.82;
}
.wellness-checks {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(239,231,220,.78);
}
.wellness-checks li {
  position: relative;
  padding-left: 34px;
}
.wellness-checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .18em;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(216,183,141,.68);
  border-radius: 999px;
  box-shadow: inset 0 0 0 5px rgba(216,183,141,.06);
}
.wellness-wow {
  position: relative;
  overflow: hidden;
  border-bottom: 0;
  background:
    radial-gradient(circle at 78% 50%, rgba(159,121,82,.13), transparent 36%),
    #050505;
}
.wellness-wow-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, .55fr) minmax(560px, 1fr);
  min-height: clamp(280px, 32vw, 430px);
}
.wellness-wow-copy {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 80px) clamp(26px, 3vw, 42px);
  background: linear-gradient(90deg, rgba(5,5,5,.98), rgba(5,5,5,.88), rgba(5,5,5,0));
}
.wellness-wow-copy h2 {
  max-width: 15ch;
  font-size: clamp(2.3rem, 3vw, 4.1rem);
  line-height: 1.05;
}
.wellness-wow-copy p {
  max-width: 20rem;
  margin-top: 20px;
  color: rgba(239,231,220,.72);
}
.wellness-wow-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(280px, 32vw, 430px);
  background-image: url('bienestar-wow-water.png');
  background-size: cover;
  background-position: 65% center;
  contain: paint;
  transition: filter .7s var(--ease), opacity .7s var(--ease);
  margin-left: clamp(-96px, -6vw, -42px);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.34) 10%, #000 26%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.34) 10%, #000 26%, #000 100%);
}
.water-lines {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}
.water-lines span {
  position: absolute;
  top: -10%;
  width: 2px;
  height: 58%;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(245,235,220,.5), rgba(255,255,255,0));
  filter: blur(1px);
  opacity: .35;
  animation: waterFall 3.8s ease-in-out infinite;
}
.water-lines span:nth-child(1) { left: 18%; animation-delay: 0s; }
.water-lines span:nth-child(2) { left: 31%; animation-delay: .8s; height: 70%; }
.water-lines span:nth-child(3) { left: 47%; animation-delay: 1.5s; }
.water-lines span:nth-child(4) { left: 63%; animation-delay: 2.1s; height: 76%; }
.wellness-values {
  padding: clamp(54px, 6vw, 86px) 0;
  border-bottom: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(159,121,82,.11), transparent 34%),
    #070605;
}
.wellness-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 76px);
}
.wellness-value h3 {
  max-width: 12ch;
  margin-top: 24px;
  font-size: clamp(1.35rem, 1.6vw, 2rem);
  line-height: 1.08;
}
.wellness-value p {
  max-width: 16rem;
  margin-top: 12px;
  color: rgba(239,231,220,.66);
  line-height: 1.7;
}
.wellness-value-icon {
  border: 0;
  border-radius: 0;
}
.wellness-value-icon::before {
  inset: 5px 16px 13px;
}
.wellness-value-icon.lab::before {
  inset: 10px 15px 8px;
  border-radius: 6px 6px 14px 14px;
  transform: rotate(0deg);
}
.wellness-value-icon.drop::before {
  inset: 9px 17px 12px;
  transform: rotate(28deg);
}
.wellness-value-icon.heart::before {
  inset: 11px;
  border-radius: 50% 50% 48% 48%;
  transform: rotate(45deg);
}
.wellness-collection {
  overflow: hidden;
  background: #050505;
  border-bottom: 0;
}
.wellness-collection-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, .65fr) minmax(560px, 1fr);
  min-height: clamp(300px, 31vw, 430px);
}
.wellness-collection-copy {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 6vw, 78px) clamp(24px, 3vw, 42px);
  background: linear-gradient(90deg, rgba(5,5,5,.98), rgba(5,5,5,.82), rgba(5,5,5,0));
}
.wellness-collection-copy h2 {
  max-width: 16ch;
  font-size: clamp(2.25rem, 3vw, 4rem);
  line-height: 1.05;
}
.wellness-collection-copy p {
  margin-top: 18px;
  color: rgba(239,231,220,.72);
}
.wellness-collection-copy .btn {
  align-self: flex-start;
  margin-top: 30px;
  border: 0;
  padding: 0;
  min-height: auto;
}
.wellness-collection-media {
  position: relative;
  min-height: clamp(300px, 31vw, 430px);
  overflow: hidden;
  background-image: url('bienestar-collection.png');
  background-size: cover;
  background-position: center;
  contain: paint;
  transition: filter .7s var(--ease), opacity .7s var(--ease);
  margin-left: clamp(-88px, -5vw, -38px);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.34) 10%, #000 28%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.34) 10%, #000 28%, #000 100%);
}
.wellness-home-brands {
  padding: 34px 0 40px;
  background: #070605;
}
.wellness-brand-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  text-align: center;
}
.wellness-brand-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: clamp(18px, 4vw, 68px);
}
.wellness-brand-list .brand-word {
  color: rgba(239,231,220,.8);
  text-align: center;
}
.wellness-brand-list .brand-word + .brand-word {
  border-left: 1px solid rgba(238,219,194,.18);
}
.clairex-brand {
  text-transform: none;
  letter-spacing: .08em;
}
.telera-brand {
  text-transform: none;
  letter-spacing: .08em;
}
.page-bienestar .wellness-category-copy h2,
.page-bienestar .wellness-products-copy h2,
.page-bienestar .wellness-wow-copy h2,
.page-bienestar .wellness-collection-copy h2,
.page-bienestar .wellness-value h3 {
  --text-float-y: -5px;
  animation: textFloat 9s ease-in-out infinite alternate;
}
.page-bienestar .wellness-category-copy p,
.page-bienestar .wellness-products-copy p,
.page-bienestar .wellness-wow-copy p,
.page-bienestar .wellness-collection-copy p,
.page-bienestar .wellness-value p {
  --text-subtle-y: -2px;
  animation: textFloatSubtle 10.5s ease-in-out infinite alternate .3s;
}
.page-bienestar main > section {
  transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease);
}
.page-bienestar main > section.scroll-far {
  opacity: .7;
  transform: translateY(18px);
  filter: brightness(.9);
}
.page-bienestar main > section.scroll-near {
  opacity: 1;
  transform: translateY(0);
  filter: brightness(1);
}
.page-bienestar main > section.scroll-near .wellness-hero-media::before,
.page-bienestar main > section.scroll-near .wellness-category-image::before,
.page-bienestar main > section.scroll-near .wellness-products-media::before,
.page-bienestar main > section.scroll-near .wellness-wow-media::before,
.page-bienestar main > section.scroll-near .wellness-collection-media::before {
  animation-duration: 7.2s;
}
.page-bienestar main > section.scroll-near .ambient-motion {
  opacity: .9;
  animation-duration: 5.8s;
}
.page-bienestar .wellness-products-media .ambient-motion,
.page-bienestar .wellness-wow-media .ambient-motion,
.page-bienestar .wellness-collection-media .ambient-motion,
.page-bienestar .wellness-category-image .ambient-motion {
  opacity: .74;
  animation-duration: 6.6s;
}
@keyframes wellnessImageDrift {
  0% {
    transform: scale(1.045) translate3d(-22px, 10px, 0);
    filter: brightness(.9) contrast(1.04) saturate(.92);
  }
  42% {
    filter: brightness(1.06) contrast(1.08) saturate(.98);
  }
  100% {
    transform: scale(1.12) translate3d(24px, -14px, 0);
    filter: brightness(.98) contrast(1.12) saturate(.9);
  }
}
@keyframes wellnessVeil {
  from { opacity: .72; }
  to { opacity: .96; }
}
@keyframes waterFall {
  0%, 100% { transform: translate3d(0, -18%, 0) scaleY(.65); opacity: .08; }
  45% { opacity: .52; }
  80% { transform: translate3d(8px, 78%, 0) scaleY(1.1); opacity: .22; }
}
@media (max-width: 980px) {
  .wellness-hero-grid,
  .wellness-products-grid,
  .wellness-wow-grid,
  .wellness-collection-grid {
    grid-template-columns: 1fr;
  }
  .wellness-products-media,
  .wellness-wow-media,
  .wellness-collection-media {
    margin-left: 0;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
  }
  .wellness-products-copy,
  .wellness-wow-copy,
  .wellness-collection-copy {
    margin-left: 0;
    background:
      linear-gradient(180deg, rgba(5,5,5,.68), rgba(5,5,5,.98) 18%, rgba(8,6,5,.98));
  }
  .wellness-hero,
  .wellness-hero-grid,
  .wellness-hero-copy {
    min-height: auto;
  }
  .wellness-hero-copy {
    padding: 58px 24px 34px;
  }
  .wellness-hero-copy h1 {
    font-size: clamp(3rem, 9vw, 4.6rem);
  }
  .wellness-hero-media {
    min-height: 430px;
    background-position: 68% center;
  }
  .wellness-category-grid,
  .wellness-values-grid {
    grid-template-columns: 1fr 1fr;
  }
  .wellness-products-copy {
    padding: 42px 24px 54px;
  }
  .wellness-brand-list {
    grid-template-columns: 1fr;
  }
  .wellness-brand-list .brand-word + .brand-word {
    border-left: 0;
    border-top: 1px solid rgba(238,219,194,.14);
    padding-top: 18px;
  }
}
@media (max-width: 720px) {
  .wellness-hero-copy h1 {
    font-size: clamp(2.65rem, 12vw, 3.75rem);
  }
  .wellness-hero-media {
    min-height: 360px;
  }
  .wellness-category-grid,
  .wellness-values-grid {
    grid-template-columns: 1fr;
  }
  .wellness-category {
    min-height: 360px;
  }
  .wellness-products-media,
  .wellness-wow-media,
  .wellness-collection-media {
    min-height: 300px;
  }
  .wellness-products-copy h2,
  .wellness-wow-copy h2,
  .wellness-collection-copy h2 {
    font-size: clamp(2.2rem, 10vw, 3.25rem);
  }
}

/* Cafe: La Telera cinematic page */
.page-cafe .site-header {
  position: sticky;
  background: linear-gradient(180deg, rgba(5,5,5,.92), rgba(5,5,5,.56));
}
.coffee-hero {
  position: relative;
  min-height: clamp(560px, 66vh, 720px);
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 34%, rgba(159,121,82,.18), transparent 34%),
    linear-gradient(90deg, #050505 0%, #0b0806 48%, #050505 100%);
}
.coffee-hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(560px, 1.18fr);
  min-height: clamp(560px, 66vh, 720px);
  align-items: stretch;
}
.coffee-hero-copy,
.coffee-story-copy,
.coffee-origin-copy,
.coffee-human-copy {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.coffee-hero-copy {
  padding: clamp(78px, 10vh, 124px) 0 clamp(56px, 7vh, 86px) clamp(22px, 3vw, 42px);
}
.coffee-hero-copy h1 {
  margin-top: 18px;
  max-width: 640px;
  font-size: clamp(3.45rem, 4.45vw, 5.65rem);
  line-height: 1.03;
}
.coffee-hero-copy h1 span { display: block; }
.coffee-hero-copy .lead {
  max-width: 31rem;
  margin-top: 28px;
  color: rgba(239,231,220,.72);
}
.coffee-text-link {
  margin-top: 30px;
  align-self: flex-start;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  font-weight: 700;
  text-decoration: none;
}
.coffee-text-link::before {
  content: '';
  display: inline-block;
  width: 54px;
  height: 1px;
  margin-right: 16px;
  vertical-align: middle;
  background: rgba(216,183,141,.72);
}
.coffee-hero-media,
.coffee-story-media,
.coffee-origin-media,
.coffee-human-media,
.coffee-wow-media,
.coffee-process-photo,
.coffee-season-photo {
  position: relative;
  overflow: hidden;
  contain: paint;
  background-size: cover;
  background-position: center;
}
.coffee-hero-media {
  min-height: clamp(560px, 66vh, 720px);
  background-image: url('cafe-hero-pour.jpg');
  background-position: 52% center;
}
.coffee-hero-media::before,
.coffee-story-media::before,
.coffee-origin-media::before,
.coffee-human-media::before,
.coffee-wow-media::before,
.coffee-process-photo::before,
.coffee-season-photo::before {
  content: '';
  position: absolute;
  inset: -5%;
  background: inherit;
  background-size: cover;
  background-position: inherit;
  animation: coffeeImageDrift 10.8s var(--ease) infinite alternate;
  will-change: transform, filter;
}
.coffee-hero-media::after,
.coffee-story-media::after,
.coffee-origin-media::after,
.coffee-human-media::after,
.coffee-wow-media::after,
.coffee-process-photo::after,
.coffee-season-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 46% 40%, rgba(216,183,141,.16), transparent 34%),
    linear-gradient(90deg, rgba(5,5,5,.62), rgba(5,5,5,.2) 34%, rgba(5,5,5,.16)),
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.48));
  animation: coffeeVeil 7.8s ease-in-out infinite alternate;
}
.coffee-scene-logo {
  position: absolute;
  right: clamp(26px, 4vw, 62px);
  top: clamp(68px, 12vh, 112px);
  z-index: 6;
  width: clamp(86px, 8vw, 138px);
  height: clamp(86px, 8vw, 138px);
  object-fit: cover;
  border-radius: 999px;
  border: 1px solid rgba(244,236,224,.58);
  box-shadow: 0 24px 80px rgba(0,0,0,.58), 0 0 46px rgba(216,183,141,.22);
  opacity: .96;
  animation: coffeeLogoFloat 6.8s ease-in-out infinite alternate;
}
.coffee-scene-logo.side-logo {
  top: clamp(34px, 7vh, 72px);
  right: clamp(26px, 5vw, 84px);
}
.coffee-light {
  position: absolute;
  inset: -20%;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(circle at 54% 36%, rgba(246,214,170,.2), transparent 24%),
    linear-gradient(115deg, transparent 12%, rgba(255,236,214,.1), transparent 56%);
  mix-blend-mode: screen;
  animation: ambientSweep 6.8s ease-in-out infinite alternate;
}
.coffee-steam {
  z-index: 5;
  opacity: .92;
  pointer-events: none;
}
.coffee-steam span {
  width: 4px;
  background: linear-gradient(180deg, rgba(244,236,224,0), rgba(244,236,224,.64), rgba(244,236,224,0));
  filter: blur(4px);
  animation-name: steamPhoto;
  animation-duration: 7.6s;
}
.hero-steam { left: 33%; bottom: 31%; width: 20%; height: 38%; }
.coffee-story {
  overflow: hidden;
  background: #050505;
}
.coffee-story-grid,
.coffee-origin-grid,
.coffee-human-grid {
  display: grid;
  grid-template-columns: minmax(360px, .62fr) minmax(620px, 1fr);
  align-items: stretch;
  min-height: clamp(460px, 46vw, 620px);
}
.coffee-story-copy,
.coffee-origin-copy,
.coffee-human-copy {
  padding: clamp(54px, 7vw, 94px) clamp(24px, 4vw, 64px);
  background:
    linear-gradient(90deg, rgba(5,5,5,.98), rgba(5,5,5,.9), rgba(5,5,5,0));
}
.coffee-story-copy h2,
.coffee-origin-copy h2,
.coffee-human-copy h2 {
  max-width: 15ch;
  margin-top: 18px;
  font-size: clamp(2.55rem, 3.35vw, 4.55rem);
  line-height: 1.04;
}
.coffee-story-copy p,
.coffee-origin-copy p,
.coffee-human-copy p,
.coffee-section-head p,
.coffee-value p,
.coffee-season-card p,
.coffee-process-copy p {
  color: rgba(239,231,220,.72);
  line-height: 1.78;
}
.coffee-story-copy p,
.coffee-origin-copy p,
.coffee-human-copy p {
  max-width: 36rem;
  margin-top: 22px;
}
.coffee-story-media {
  min-height: clamp(420px, 46vw, 620px);
  margin-left: clamp(-82px, -5vw, -38px);
  background-image: url('cafe-teapot-table.jpg');
  background-position: 45% center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.34) 10%, #000 28%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.34) 10%, #000 28%, #000 100%);
}
.coffee-video-trigger {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .2em;
  font: inherit;
  font-size: .73rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}
.coffee-video-trigger img {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(216,183,141,.54);
  box-shadow: 0 0 32px rgba(216,183,141,.12);
}
.coffee-video-trigger span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}
.coffee-video-trigger:hover {
  color: var(--accent);
  transform: translate3d(0, -2px, 0);
}
.coffee-origin {
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 22%, rgba(92,103,62,.14), transparent 30%),
    #070605;
}
.coffee-origin-grid {
  grid-template-columns: minmax(620px, 1fr) minmax(360px, .62fr);
}
.coffee-origin-media {
  min-height: clamp(430px, 44vw, 600px);
  background-image: url('cafe-origin-landscape.jpg');
  background-position: center;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 76%, rgba(0,0,0,.28) 92%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 76%, rgba(0,0,0,.28) 92%, transparent 100%);
}
.coffee-origin-copy {
  margin-left: clamp(-82px, -5vw, -38px);
  background:
    linear-gradient(90deg, rgba(5,5,5,0), rgba(5,5,5,.9) 18%, rgba(5,5,5,.98));
}
.wind-ribbon {
  position: absolute;
  z-index: 4;
  inset: 12% -12% auto;
  height: 42%;
  background: linear-gradient(115deg, transparent 16%, rgba(244,236,224,.1), transparent 62%);
  filter: blur(10px);
  opacity: .4;
  animation: windDrift 7.5s ease-in-out infinite alternate;
  pointer-events: none;
}
.coffee-processes,
.coffee-season,
.coffee-values {
  padding: clamp(42px, 5vw, 72px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(159,121,82,.11), transparent 36%),
    #070605;
}
.coffee-section-head {
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(360px, 1fr);
  gap: clamp(28px, 8vw, 110px);
  align-items: end;
  margin-bottom: clamp(30px, 4vw, 54px);
}
.coffee-section-head h2 {
  max-width: 14ch;
  margin-top: 18px;
  font-size: clamp(2.5rem, 3.4vw, 4.5rem);
  line-height: 1.04;
}
.coffee-section-head p {
  max-width: 42rem;
}
.coffee-process-grid,
.coffee-season-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.3vw, 34px);
}
.coffee-process-card,
.coffee-season-card {
  position: relative;
  overflow: hidden;
  background: #080706;
}
.coffee-process-photo {
  min-height: clamp(250px, 22vw, 330px);
}
.process-lavado { background-image: url('cafe-process-lavado.jpg'); }
.process-honey { background-image: url('cafe-process-honey.jpg'); }
.process-natural { background-image: url('cafe-process-natural.jpg'); }
.coffee-process-copy,
.coffee-season-card {
  padding: clamp(24px, 3vw, 38px);
}
.coffee-process-copy h3,
.coffee-season-card h3,
.coffee-value h3 {
  font-size: clamp(1.45rem, 1.8vw, 2.25rem);
  line-height: 1.08;
}
.coffee-process-copy p,
.coffee-season-card p,
.coffee-value p {
  margin-top: 12px;
}
.coffee-season {
  margin-top: -1px;
  padding-top: clamp(36px, 4vw, 58px);
  background:
    radial-gradient(circle at 70% 18%, rgba(159,121,82,.12), transparent 36%),
    #050505;
}
.coffee-season-photo {
  min-height: clamp(250px, 23vw, 340px);
  margin: calc(clamp(24px, 3vw, 38px) * -1) calc(clamp(24px, 3vw, 38px) * -1) 24px;
}
.season-one { background-image: url('cafe-season-castillo.jpg'); }
.season-two { background-image: url('cafe-season-sudan.jpg'); }
.season-three { background-image: url('cafe-season-honey.jpg'); }
.coffee-wow {
  position: relative;
  min-height: clamp(360px, 44vh, 520px);
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #050505;
}
.coffee-wow-media {
  position: absolute;
  inset: 0;
  background-image: url('mt-wow-coffee.png');
  background-position: 50% 56%;
}
.coffee-wow-media::after {
  background:
    radial-gradient(circle at 50% 48%, rgba(216,123,57,.2), transparent 32%),
    linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.54));
}
.coffee-bubbles {
  position: absolute;
  inset: 0;
  z-index: 4;
  background:
    radial-gradient(circle at 28% 60%, rgba(216,123,57,.22) 0 1px, transparent 3px),
    radial-gradient(circle at 52% 48%, rgba(244,236,224,.18) 0 1px, transparent 4px),
    radial-gradient(circle at 68% 58%, rgba(216,123,57,.18) 0 1px, transparent 3px);
  background-size: 110px 70px, 140px 80px, 90px 60px;
  animation: bubbleDrift 5.8s ease-in-out infinite alternate;
  pointer-events: none;
}
.wow-steam { left: 47%; bottom: 28%; width: 18%; height: 36%; }
.coffee-wow-copy {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 24px;
}
.coffee-wow-copy h2 {
  font-size: clamp(2.35rem, 4vw, 5rem);
  line-height: 1.05;
  text-shadow: 0 18px 70px rgba(0,0,0,.72);
}
.coffee-video-float {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto 18px;
  padding: 9px 16px 9px 10px;
  border: 1px solid rgba(216,183,141,.38);
  border-radius: 999px;
  background: rgba(7,5,4,.44);
  box-shadow: 0 20px 70px rgba(0,0,0,.42), inset 0 0 24px rgba(216,183,141,.08);
  backdrop-filter: blur(10px);
  animation: coffeeVideoCue 4.8s ease-in-out infinite alternate;
}
.coffee-video-float img {
  width: 56px;
  height: 56px;
}
.coffee-video-float span {
  font-size: .72rem;
  white-space: nowrap;
  letter-spacing: .18em;
}
.coffee-human {
  overflow: hidden;
  background: #050505;
}
.coffee-human-media {
  min-height: clamp(430px, 44vw, 600px);
  margin-left: clamp(-82px, -5vw, -38px);
  background-image: url('cafe-origin-landscape.jpg');
  background-position: 63% 62%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.34) 10%, #000 28%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.34) 10%, #000 28%, #000 100%);
}
.coffee-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 86px);
}
.coffee-value h3 {
  max-width: 12ch;
}
.coffee-home-brands {
  padding: 34px 0 40px;
  background: #070605;
}
.coffee-modal-open {
  overflow: hidden;
}
.coffee-video-modal[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none;
}
.coffee-video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  opacity: 1;
  transition: opacity .35s var(--ease);
}
.coffee-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3,3,3,.76);
  backdrop-filter: blur(18px);
}
.coffee-modal-panel {
  position: relative;
  z-index: 2;
  width: min(94vw, 880px);
  max-height: 88vh;
  overflow: hidden;
  border: 1px solid rgba(238,219,194,.18);
  background: linear-gradient(180deg, rgba(14,10,8,.98), rgba(5,5,5,.98));
  box-shadow: 0 38px 120px rgba(0,0,0,.62);
}
.coffee-modal-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(238,219,194,.12);
}
.coffee-modal-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  font-weight: 700;
}
.coffee-modal-brand img {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: cover;
}
.coffee-modal-close {
  border: 1px solid rgba(238,219,194,.18);
  background: rgba(255,255,255,.03);
  color: var(--text);
  padding: 10px 14px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .68rem;
  cursor: pointer;
}
.coffee-modal-video {
  display: block;
  width: 100%;
  max-height: calc(88vh - 68px);
  background: #000;
}
.page-cafe .coffee-hero-copy h1 span,
.page-cafe .coffee-hero-copy .lead,
.page-cafe .coffee-text-link,
.page-cafe .coffee-story-copy h2,
.page-cafe .coffee-story-copy p,
.page-cafe .coffee-origin-copy h2,
.page-cafe .coffee-origin-copy p,
.page-cafe .coffee-section-head h2,
.page-cafe .coffee-section-head p,
.page-cafe .coffee-process-copy h3,
.page-cafe .coffee-process-copy p,
.page-cafe .coffee-season-card h3,
.page-cafe .coffee-season-card p,
.page-cafe .coffee-wow-copy h2,
.page-cafe .coffee-human-copy h2,
.page-cafe .coffee-human-copy p,
.page-cafe .coffee-value h3,
.page-cafe .coffee-value p {
  --text-float-y: -5px;
  animation: textFloat 9.2s ease-in-out infinite alternate;
}
.page-cafe main > section {
  transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease);
}
.page-cafe main > section.scroll-far {
  opacity: .72;
  transform: translateY(18px);
  filter: brightness(.9);
}
.page-cafe main > section.scroll-near {
  opacity: 1;
  transform: translateY(0);
  filter: brightness(1);
}
@keyframes coffeeImageDrift {
  0% { transform: scale(1.045) translate3d(-18px, 9px, 0); filter: brightness(.86) contrast(1.07) saturate(.82); }
  45% { filter: brightness(1.04) contrast(1.1) saturate(.9); }
  100% { transform: scale(1.12) translate3d(22px, -12px, 0); filter: brightness(.96) contrast(1.14) saturate(.84); }
}
@keyframes coffeeVeil {
  from { opacity: .76; }
  to { opacity: .98; }
}
@keyframes windDrift {
  from { transform: translate3d(-8%, 2%, 0) rotate(-2deg); opacity: .2; }
  to { transform: translate3d(10%, -2%, 0) rotate(2deg); opacity: .56; }
}
@keyframes bubbleDrift {
  from { transform: translate3d(-1%, 1%, 0) scale(1); opacity: .35; }
  to { transform: translate3d(2%, -2%, 0) scale(1.08); opacity: .7; }
}
@keyframes coffeeLogoFloat {
  from { transform: translate3d(0, 0, 0) scale(1); filter: brightness(.92); }
  to { transform: translate3d(-8px, -12px, 0) scale(1.04); filter: brightness(1.08); }
}
@keyframes coffeeVideoCue {
  from { transform: translate3d(0, -3px, 0); box-shadow: 0 18px 58px rgba(0,0,0,.45), inset 0 0 18px rgba(216,183,141,.06); }
  to { transform: translate3d(0, 5px, 0); box-shadow: 0 24px 86px rgba(0,0,0,.55), 0 0 32px rgba(216,183,141,.14), inset 0 0 28px rgba(216,183,141,.11); }
}
@media (max-width: 980px) {
  .coffee-hero-grid,
  .coffee-story-grid,
  .coffee-origin-grid,
  .coffee-human-grid,
  .coffee-section-head {
    grid-template-columns: 1fr;
  }
  .coffee-hero,
  .coffee-hero-grid,
  .coffee-hero-copy {
    min-height: auto;
  }
  .coffee-hero-copy {
    padding: 58px 24px 34px;
  }
  .coffee-hero-copy h1 {
    font-size: clamp(3rem, 9vw, 4.6rem);
  }
  .coffee-hero-media,
  .coffee-story-media,
  .coffee-origin-media,
  .coffee-human-media {
    min-height: 430px;
    margin-left: 0;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
  }
  .coffee-story-copy,
  .coffee-origin-copy,
  .coffee-human-copy {
    margin-left: 0;
    background: linear-gradient(180deg, rgba(5,5,5,.68), rgba(5,5,5,.98) 18%, rgba(8,6,5,.98));
  }
  .coffee-process-grid,
  .coffee-season-grid,
  .coffee-values-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .coffee-hero-copy h1 {
    font-size: clamp(2.65rem, 12vw, 3.75rem);
  }
  .coffee-hero-media,
  .coffee-story-media,
  .coffee-origin-media,
  .coffee-human-media {
    min-height: 360px;
  }
  .coffee-process-grid,
  .coffee-season-grid,
  .coffee-values-grid {
    grid-template-columns: 1fr;
  }
  .coffee-section-head h2,
  .coffee-story-copy h2,
  .coffee-origin-copy h2,
  .coffee-human-copy h2 {
    font-size: clamp(2.25rem, 10vw, 3.35rem);
  }
  .coffee-modal-panel {
    width: 96vw;
  }
}
