:root {
  --black: #1C1A1A;
  --ivory: #EEE7DB;
  --wine: #4A0F17;
  --moss: #5A5F2A;
  --terracotta: #D16910;
  --gold: #D6A85C;
  --amber: #A86A3A;
  --rose: #CFA18D;
  --charcoal: #3B332D;
  --taupe: #9A9186;
  --serif: "EB Garamond", Garamond, Georgia, serif;
  --display: "Cormorant Garamond", "EB Garamond", Garamond, Georgia, serif;
  --script: "Herr Von Muellerhoff", cursive;
  --sans: "Lato", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 76px;
  padding: 0 clamp(20px, 4vw, 64px);
  color: var(--ivory);
  background: linear-gradient(180deg, rgba(28, 26, 26, 0.48), rgba(28, 26, 26, 0));
  border-bottom: 1px solid rgba(238, 231, 219, 0);
  transition: background 600ms ease, border-color 600ms ease, height 600ms ease;
}

.site-header.is-scrolled {
  height: 64px;
  background: rgba(28, 26, 26, 0.96);
  border-color: rgba(154, 145, 134, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.18em;
}

.brand img {
  width: 34px;
  height: 22px;
  object-fit: cover;
  object-position: center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.7vw, 28px);
  width: 100%;
  color: rgba(238, 231, 219, 0.76);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 360ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 420ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--ivory);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 30px;
  padding: 0;
  color: var(--ivory);
  background: transparent;
  border: 0;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 30px;
  height: 1px;
  margin-left: auto;
  background: var(--ivory);
  transition: transform 360ms ease, opacity 360ms ease;
}

.menu-toggle span + span:not(.sr-only) {
  margin-top: 9px;
  width: 22px;
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  width: 30px;
  transform: translateY(-5px) rotate(-36deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center start;
  padding: 112px clamp(28px, 8vw, 80px) 48px;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  transition: opacity 460ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu nav {
  display: grid;
  gap: 18px;
}

.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(38px, 11vw, 72px);
  line-height: 0.94;
  color: var(--ivory);
}

.mobile-menu img {
  position: absolute;
  right: clamp(24px, 8vw, 84px);
  bottom: clamp(24px, 7vw, 72px);
  width: clamp(110px, 24vw, 240px);
  opacity: 0.18;
}

.full-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

section[id] {
  scroll-margin-top: 76px;
}

#planos-digitais {
  scroll-margin-top: 90px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  color: rgba(238, 231, 219, 0.92);
  font-size: clamp(54px, 8.1vw, 116px);
  line-height: 0.94;
}

h2 {
  max-width: 920px;
  margin-bottom: 24px;
  color: rgba(238, 231, 219, 0.92);
  font-size: clamp(38px, 5.1vw, 78px);
  line-height: 1;
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(26px, 2.6vw, 46px);
  line-height: 1.04;
}

p {
  color: rgba(238, 231, 219, 0.76);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.75;
}

.hero {
  display: grid;
  align-items: end;
  padding: 0 clamp(24px, 5vw, 82px) clamp(52px, 8vw, 110px);
}

.hero-media,
.hero-media img,
.presence-media,
.presence-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img,
.presence-media img {
  object-fit: cover;
  filter: saturate(0.78) contrast(1.04) brightness(0.72);
  transform: scale(1.02);
}

.hero-media img {
  object-position: 50% 24%;
}

.cinema-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 26, 26, 0.82), rgba(28, 26, 26, 0.22) 46%, rgba(28, 26, 26, 0.68)),
    linear-gradient(180deg, rgba(28, 26, 26, 0.3), rgba(28, 26, 26, 0.72));
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 92vw);
}

.hero-copy p:last-child {
  max-width: 390px;
}

.scroll-mark {
  position: absolute;
  right: clamp(20px, 4vw, 64px);
  bottom: clamp(34px, 5vw, 68px);
  z-index: 2;
  writing-mode: vertical-rl;
  color: rgba(238, 231, 219, 0.62);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.brand-narrative {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.9fr);
  align-content: center;
  gap: clamp(32px, 7vw, 116px);
  padding: clamp(92px, 13vw, 168px) clamp(24px, 6vw, 96px);
  background:
    linear-gradient(120deg, var(--black), var(--charcoal) 82%),
    var(--black);
}

.story-heading {
  align-self: start;
  grid-row: 1 / span 2;
}

.story-heading h2 {
  max-width: 500px;
}

.story-tabs {
  grid-column: 2;
  display: flex;
  align-items: end;
  gap: clamp(24px, 5vw, 72px);
  border-bottom: 1px solid rgba(214, 168, 92, 0.2);
}

.story-tab {
  position: relative;
  padding: 0 0 18px;
  color: rgba(238, 231, 219, 0.5);
  background: transparent;
  border: 0;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1;
  cursor: pointer;
  transition: color 360ms ease;
}

.story-tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 520ms ease;
}

.story-tab.is-active {
  color: var(--ivory);
}

.story-tab.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.story-stage {
  grid-column: 2;
  min-height: 420px;
}

.story-panel {
  display: none;
  max-width: 980px;
  opacity: 0;
}

.story-panel.is-active {
  display: block;
  opacity: 1;
}

.story-panel p {
  margin-bottom: 1.05em;
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.82;
}

.story-panel[data-story-panel="historia"] {
  max-width: 1080px;
  column-count: 2;
  column-gap: clamp(34px, 6vw, 86px);
}

.story-panel[data-story-panel="historia"] p {
  break-inside: avoid;
}

.story-signature {
  margin-top: 24px;
  color: var(--gold);
  font-family: var(--script);
  font-size: clamp(52px, 7vw, 104px);
  line-height: 0.88;
}


.founder {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(36px, 8vw, 112px);
  padding: clamp(92px, 12vw, 150px) clamp(24px, 6vw, 96px);
  background: var(--ivory);
  color: var(--black);
}

.founder h2,
.services h2,
.services h3 {
  color: rgba(28, 26, 26, 0.9);
}

.founder p {
  color: rgba(28, 26, 26, 0.72);
}

.portrait-frame {
  height: min(76svh, 820px);
  min-height: 520px;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 36%;
  filter: saturate(0.9) contrast(1.02);
}

.founder-copy {
  max-width: 620px;
}

.quiet-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid rgba(74, 15, 23, 0.26);
}

.quiet-list span {
  min-width: 50%;
  padding: 18px 22px 18px 0;
  color: var(--wine);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border-bottom: 1px solid rgba(74, 15, 23, 0.18);
}

.experience {
  display: grid;
  place-items: center;
  padding: clamp(88px, 12vw, 150px) clamp(18px, 4vw, 72px);
  background: var(--black);
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.72fr 0.52fr;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
  width: min(1480px, 100%);
}

.wide-still,
.vertical-still,
.premium-still,
.premium-gallery figure,
.editorial-composition figure,
.presence-media {
  margin: 0;
}

.wide-still {
  height: min(58svh, 660px);
}

.vertical-still {
  height: min(72svh, 780px);
}

.wide-still img,
.vertical-still img,
.premium-still img,
.premium-gallery img,
.editorial-composition img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.06) brightness(0.78);
}

.wide-still img {
  object-position: 50% 50%;
}

.vertical-still img {
  object-position: 50% 48%;
}

.experience-copy {
  max-width: 460px;
  padding: 8vh 0;
}

.sports-world {
  display: grid;
  align-content: center;
  gap: clamp(24px, 3vw, 44px);
  padding: clamp(80px, 8vw, 112px) clamp(18px, 4vw, 72px) clamp(50px, 7vw, 86px);
  background:
    linear-gradient(90deg, rgba(74, 15, 23, 0.28), rgba(28, 26, 26, 0) 45%),
    var(--black);
}

.sports-world-heading {
  display: grid;
  grid-template-columns: 0.74fr 1fr;
  align-items: end;
  gap: clamp(28px, 6vw, 94px);
  width: min(1480px, 100%);
  margin: 0 auto;
}

.sports-world-heading h2 {
  max-width: 900px;
  font-size: clamp(38px, 4.1vw, 64px);
}

.sports-world-heading p:last-child {
  max-width: 520px;
}

.sports-world-tabs {
  display: flex;
  justify-content: flex-end;
  gap: clamp(24px, 4vw, 70px);
  width: min(1480px, 100%);
  margin: 0 auto;
  border-bottom: 1px solid rgba(214, 168, 92, 0.22);
}

.sport-tab {
  position: relative;
  padding: 0 0 16px;
  color: rgba(238, 231, 219, 0.48);
  background: transparent;
  border: 0;
  font-family: var(--display);
  font-size: clamp(22px, 2.1vw, 36px);
  line-height: 1.04;
  cursor: pointer;
  transition: color 420ms ease;
}

.sport-tab::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 720ms cubic-bezier(0.19, 1, 0.22, 1);
}

.sport-tab.is-active {
  color: var(--ivory);
}

.sport-tab.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.sports-slider {
  width: min(1480px, 100%);
  margin: 0 auto;
  overflow: hidden;
}

.sports-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(82vw, 1080px);
  gap: clamp(18px, 3vw, 42px);
  transition: transform 1100ms cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.sports-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(320px, 0.4fr);
  min-height: min(58svh, 620px);
  background: var(--black);
  opacity: 0.34;
  transition: opacity 720ms ease;
}

.sports-panel.is-active {
  opacity: 1;
}

.sports-panel img {
  width: 100%;
  height: 100%;
  min-height: min(58svh, 620px);
  object-fit: cover;
  background: var(--charcoal);
  filter: saturate(0.74) contrast(1.08) brightness(0.82);
}

.sports-panel:nth-child(1) img {
  object-position: 50% 46%;
}

.sports-panel:nth-child(2) img {
  object-position: 50% 52%;
}

.sports-panel:nth-child(3) img {
  object-position: 54% 50%;
}

.sports-panel:nth-child(4) img {
  object-position: 50% 54%;
}

.sports-panel div {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(26px, 3.6vw, 50px);
  background: var(--charcoal);
}

.sports-panel span {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.sports-panel h3 {
  margin: 0;
  color: var(--ivory);
  font-size: clamp(26px, 2.25vw, 38px);
  line-height: 1.05;
}

.sports-panel p {
  margin: 0;
  color: rgba(238, 231, 219, 0.72);
  line-height: 1.58;
}

.principles {
  display: grid;
  align-content: center;
  gap: clamp(42px, 8vw, 110px);
  padding: clamp(92px, 12vw, 160px) clamp(24px, 6vw, 96px);
  background:
    linear-gradient(90deg, rgba(74, 15, 23, 0.4), rgba(28, 26, 26, 0) 52%),
    var(--charcoal);
}

.principle-block h2 {
  max-width: 980px;
}

.principle-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 5vw, 78px);
}

.principle-columns article {
  border-top: 1px solid rgba(214, 168, 92, 0.24);
  padding-top: 24px;
}

.principle-columns span,
.plan-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.principle-columns h3 {
  font-size: clamp(28px, 2.9vw, 48px);
}

.services {
  min-height: auto;
  padding: clamp(92px, 12vw, 158px) clamp(18px, 4vw, 72px);
  background: var(--ivory);
  color: var(--black);
}

.services p {
  color: rgba(28, 26, 26, 0.72);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.84fr 1fr;
  align-items: end;
  gap: clamp(28px, 6vw, 90px);
  max-width: 1360px;
  margin: 0 auto clamp(48px, 7vw, 92px);
}

.section-heading h2 {
  max-width: 760px;
}

.service-tabs {
  display: flex;
  justify-content: flex-end;
  gap: 0;
  max-width: 1360px;
  margin: 0 auto clamp(38px, 6vw, 76px);
  border-bottom: 1px solid rgba(74, 15, 23, 0.22);
}

.tab-button {
  position: relative;
  max-width: 420px;
  padding: 0 0 18px;
  margin-left: clamp(24px, 5vw, 72px);
  color: rgba(28, 26, 26, 0.58);
  background: transparent;
  border: 0;
  text-align: left;
  font-family: var(--display);
  font-size: clamp(23px, 2.4vw, 38px);
  line-height: 1.04;
  cursor: pointer;
  transition: color 320ms ease;
}

.tab-button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 420ms ease;
}

.tab-button.is-active {
  color: var(--black);
}

.tab-button.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.tab-stage {
  max-width: 1360px;
  margin: 0 auto;
  overflow: hidden;
  transition: height 860ms cubic-bezier(0.19, 1, 0.22, 1);
}

.tab-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  align-items: start;
  transition: transform 980ms cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.tab-panel {
  width: 100%;
  opacity: 0.1;
  pointer-events: none;
  transition: opacity 720ms ease;
}

.tab-panel.is-active {
  opacity: 1;
  pointer-events: auto;
}

.service-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(36px, 5vw, 72px);
  padding-left: min(18vw, 260px);
}

.service-intro p {
  max-width: 460px;
  margin-bottom: 0;
}

.text-cta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 44px;
  color: var(--wine);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-bottom: 1px solid currentColor;
}

.story-tab:focus:not(:focus-visible),
.sport-tab:focus:not(:focus-visible),
.tab-button:focus:not(:focus-visible),
.text-cta:focus:not(:focus-visible) {
  outline: none;
}

.story-tab:focus-visible,
.sport-tab:focus-visible,
.tab-button:focus-visible,
.text-cta:focus-visible {
  outline: 1px solid rgba(214, 168, 92, 0.48);
  outline-offset: 6px;
}

.pricing-editorial {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(74, 15, 23, 0.24);
}

.pricing-block {
  display: grid;
  align-content: start;
  min-height: 560px;
  padding: clamp(28px, 3vw, 46px) clamp(22px, 3vw, 42px);
  border-right: 1px solid rgba(74, 15, 23, 0.16);
  border-bottom: 1px solid rgba(74, 15, 23, 0.24);
}

.pricing-block:last-child {
  border-right: 0;
}

.pricing-block h3 {
  color: var(--wine);
  font-size: clamp(34px, 3vw, 48px);
  white-space: nowrap;
}

.pricing-block h3 span {
  color: rgba(28, 26, 26, 0.58);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
}

.pricing-block ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.pricing-block li {
  position: relative;
  padding-left: 18px;
  color: rgba(28, 26, 26, 0.76);
  font-size: 13px;
  line-height: 1.5;
}

.pricing-block li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 1px;
  background: var(--amber);
}

.diagnostic {
  background: rgba(154, 145, 134, 0.13);
}

.contract-notes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 28px;
  background: rgba(74, 15, 23, 0.18);
}

.contract-notes p {
  min-height: 118px;
  margin: 0;
  padding: 22px;
  background: var(--ivory);
  color: rgba(28, 26, 26, 0.66);
  font-size: 12px;
  line-height: 1.55;
}

.premium-layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.46fr) minmax(0, 0.54fr);
  align-items: stretch;
  gap: 1px;
  min-height: min(78svh, 840px);
  background: var(--black);
  color: var(--ivory);
}

.premium-still {
  min-height: 540px;
}

.premium-copy {
  display: grid;
  align-content: center;
  gap: clamp(14px, 2vw, 24px);
  padding: clamp(38px, 5vw, 76px);
  background: var(--black);
}

.premium-copy p {
  max-width: 560px;
  color: rgba(238, 231, 219, 0.74);
  line-height: 1.72;
}

.premium-copy h3 {
  max-width: 560px;
  font-size: clamp(34px, 3.35vw, 56px);
  line-height: 1.04;
}

.premium-copy .text-cta {
  margin-top: 18px;
  color: var(--gold);
}

.premium-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 1px;
  min-height: min(72svh, 760px);
  background: rgba(214, 168, 92, 0.18);
}

.premium-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  background: var(--charcoal);
}

.premium-card-large {
  grid-row: auto;
  min-height: 210px;
}

.premium-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 26, 26, 0.04), rgba(28, 26, 26, 0.7)),
    linear-gradient(90deg, rgba(28, 26, 26, 0.28), rgba(28, 26, 26, 0));
}

.premium-gallery img {
  object-position: 50% 50%;
  transition: transform 1400ms cubic-bezier(0.19, 1, 0.22, 1);
}

.premium-card:hover img {
  transform: scale(1.025);
}

.premium-card:nth-child(1) img {
  object-position: 50% 46%;
}

.premium-card:nth-child(2) img {
  object-position: 50% 52%;
}

.premium-card:nth-child(3) img {
  object-position: 54% 50%;
}

.premium-card:nth-child(4) img {
  object-position: 50% 50%;
}

.premium-card figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 1;
  color: rgba(238, 231, 219, 0.88);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.presence {
  display: grid;
  align-items: end;
  padding: clamp(96px, 12vw, 160px) clamp(24px, 6vw, 96px);
  background: var(--black);
}

.presence-media img {
  object-position: 50% 52%;
}

.presence::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(28, 26, 26, 0.85), rgba(28, 26, 26, 0.14) 58%, rgba(28, 26, 26, 0.72)),
    linear-gradient(0deg, rgba(28, 26, 26, 0.88), rgba(28, 26, 26, 0.08) 50%);
}

.presence-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.presence-copy p:last-child {
  max-width: 560px;
}

.editorial {
  display: grid;
  align-content: start;
  gap: clamp(28px, 4vw, 48px);
  min-height: auto;
  padding: clamp(78px, 7vw, 104px) clamp(18px, 4vw, 72px) clamp(70px, 8vw, 110px);
  background: var(--charcoal);
}

.editorial-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.42fr);
  align-items: end;
  gap: clamp(28px, 6vw, 90px);
  width: min(1420px, 100%);
  margin: 0 auto;
}

.editorial-heading .eyebrow {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}

.editorial-heading h2 {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1;
}

.editorial-heading p:last-child {
  grid-column: 1;
  grid-row: 2;
  max-width: 420px;
  margin-bottom: 0;
}

.editorial-composition {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
  grid-template-rows: 0.38fr 0.62fr;
  gap: clamp(14px, 2vw, 28px);
  width: min(1420px, 100%);
  height: min(72svh, 760px);
  margin: 0 auto;
}

.editorial-composition figure {
  position: relative;
  overflow: hidden;
  background: var(--black);
  border-top: 1px solid rgba(214, 168, 92, 0.16);
  border-bottom: 1px solid rgba(214, 168, 92, 0.1);
}

.editorial-main {
  grid-column: 1;
  grid-row: 1 / 3;
  height: 100%;
}

.editorial-main img {
  object-position: 50% 44%;
}

.editorial-side {
  display: contents;
}

.editorial-side figure:nth-child(1) {
  grid-column: 2;
  grid-row: 1;
}

.editorial-side figure:nth-child(2) {
  grid-column: 2;
  grid-row: 2;
}

.editorial-side figure:nth-child(1) img {
  object-position: 50% 48%;
}

.editorial-side figure:nth-child(2) img {
  object-position: 50% 34%;
}

.contact {
  display: grid;
  align-content: center;
  min-height: 100svh;
  padding: clamp(78px, 8vw, 112px) clamp(24px, 6vw, 96px);
  background:
    linear-gradient(120deg, rgba(90, 95, 42, 0.18), rgba(28, 26, 26, 0) 44%),
    var(--black);
}

.contact-copy {
  max-width: 820px;
  margin: 0 auto clamp(20px, 3vw, 34px);
  text-align: center;
}

.contact-copy h2 {
  max-width: 780px;
  margin-right: auto;
  margin-bottom: 12px;
  margin-left: auto;
  font-size: clamp(38px, 4.4vw, 66px);
  line-height: 1;
}

.contact-copy p:not(.eyebrow) {
  max-width: 520px;
  margin-right: auto;
  margin-left: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
  width: min(1180px, 100%);
  margin: 0 auto;
}

.contact-lines {
  display: grid;
  align-self: center;
  border-top: 1px solid rgba(214, 168, 92, 0.26);
}

.contact-lines a {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  align-items: center;
  gap: clamp(14px, 2.2vw, 32px);
  min-height: 54px;
  color: rgba(238, 231, 219, 0.82);
  font-family: var(--sans);
  font-size: clamp(13px, 1.08vw, 17px);
  line-height: 1.35;
  border-bottom: 1px solid rgba(214, 168, 92, 0.18);
  transition: color 300ms ease;
}

.contact-lines span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.contact-lines strong {
  min-width: 0;
  color: rgba(238, 231, 219, 0.84);
  font-family: var(--sans);
  font-size: clamp(15px, 1.16vw, 18px);
  font-weight: 300;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.contact-lines a::after {
  content: "";
  justify-self: end;
  grid-column: 2;
  width: clamp(28px, 4vw, 54px);
  height: 1px;
  background: var(--gold);
  transform: scaleX(0.46);
  transform-origin: right;
  transition: transform 420ms ease;
}

.contact-lines a:hover,
.contact-lines a:focus-visible {
  color: var(--gold);
}

.contact-lines a:hover::after,
.contact-lines a:focus-visible::after {
  transform: scaleX(1);
}

.contact-social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px clamp(24px, 4vw, 54px);
  padding-top: 22px;
}

.contact-social a {
  display: inline-flex;
  grid-template-columns: none;
  min-height: 34px;
  color: rgba(238, 231, 219, 0.68);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-bottom: 1px solid rgba(214, 168, 92, 0.3);
}

.contact-social a::after {
  display: none;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  padding: clamp(18px, 2.8vw, 28px);
  background: rgba(59, 51, 45, 0.34);
  border-top: 1px solid rgba(214, 168, 92, 0.24);
  border-bottom: 1px solid rgba(214, 168, 92, 0.16);
}

.contact-form .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.contact-form label {
  display: grid;
  gap: 6px;
}

.contact-form label span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 34px;
  padding: 0 0 6px;
  color: var(--ivory);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(214, 168, 92, 0.24);
  border-radius: 0;
  outline: 0;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
}

.contact-form textarea {
  min-height: 64px;
  padding-top: 6px;
  resize: vertical;
}

.contact-form .form-message,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form select option {
  color: var(--black);
  background: var(--ivory);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form button {
  min-height: 38px;
  margin-top: 4px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

#pedido-contato {
  scroll-margin-top: 92px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1000ms ease, transform 1000ms ease;
}

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

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

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

  .experience-copy {
    grid-column: 1 / -1;
    grid-row: 1;
    max-width: 760px;
    padding: 0 0 20px;
  }

  .pricing-editorial,
  .contract-notes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-block:nth-child(2) {
    border-right: 0;
  }

  .pricing-block:last-child {
    border-right: 0;
  }
}

@media (max-width: 860px) {
  .site-header {
    height: 68px;
  }

  .brand span {
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .hero {
    padding-bottom: 56px;
  }

  .hero-media img {
    object-position: 50% 22%;
  }

  .cinema-overlay {
    background:
      linear-gradient(90deg, rgba(28, 26, 26, 0.8), rgba(28, 26, 26, 0.32)),
      linear-gradient(180deg, rgba(28, 26, 26, 0.2), rgba(28, 26, 26, 0.84));
  }

  .brand-narrative,
  .founder,
  .premium-layout {
    grid-template-columns: 1fr;
  }

  .story-heading,
  .story-tabs,
  .story-stage {
    grid-column: 1;
    grid-row: auto;
  }

  .story-stage {
    min-height: auto;
  }

  .story-panel[data-story-panel="historia"] {
    column-count: 1;
  }

  .portrait-frame {
    height: 70svh;
    min-height: 420px;
  }

  .experience-grid,
  .principle-columns,
  .section-heading,
  .pricing-editorial,
  .contract-notes,
  .editorial-heading,
  .editorial-composition,
  .sports-world-heading {
    grid-template-columns: 1fr;
  }

  .sports-world-tabs {
    justify-content: flex-start;
    gap: 28px;
    overflow-x: auto;
    padding-bottom: 1px;
  }

  .sport-tab {
    flex: 0 0 auto;
  }

  .sports-track {
    grid-auto-columns: min(82vw, 420px);
  }

  .sports-panel {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
  }

  .sports-panel img {
    height: auto;
    min-height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
  }

  .service-tabs {
    display: grid;
    justify-content: stretch;
  }

  .tab-button {
    max-width: none;
    margin-left: 0;
    padding: 22px 0;
  }

  .service-intro {
    align-items: flex-start;
    flex-direction: column;
    padding-left: 0;
  }

  .pricing-block,
  .pricing-block:nth-child(2) {
    min-height: auto;
    border-right: 0;
  }

  .premium-still {
    min-height: 460px;
  }

  .premium-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .premium-card,
  .premium-card-large {
    grid-row: auto;
    min-height: clamp(220px, 44vw, 360px);
  }

  .premium-copy {
    padding: clamp(34px, 7vw, 58px);
  }

  .premium-copy h3 {
    font-size: clamp(32px, 9vw, 48px);
  }

  .premium-card-large {
    grid-column: auto;
    aspect-ratio: auto;
  }

  .editorial-heading p:last-child {
    grid-column: 1;
    grid-row: auto;
    margin-bottom: 0;
  }

  .editorial-heading .eyebrow,
  .editorial-heading h2 {
    grid-column: 1;
    grid-row: auto;
  }

  .editorial-composition {
    height: auto;
    grid-template-rows: auto;
  }

  .editorial-main {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }

  .editorial-side {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(14px, 2vw, 28px);
  }

  .editorial-side figure:nth-child(1),
  .editorial-side figure:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
  }

  .editorial-side figure {
    aspect-ratio: 16 / 10;
  }

  .editorial-side figure:nth-child(1) {
    aspect-ratio: 4 / 5;
  }

  .contact {
    min-height: auto;
    padding-top: 88px;
    padding-bottom: 72px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-lines a {
    min-height: 66px;
    overflow-wrap: anywhere;
  }

  .contact-lines a {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .contact-lines a::after {
    display: none;
  }

  .contact-social {
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 34px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 18px;
  }

  .brand img {
    width: 28px;
    height: 19px;
  }

  h1 {
    font-size: clamp(46px, 14vw, 68px);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(36px, 11vw, 56px);
    line-height: 1;
  }

  p {
    font-size: 15px;
    line-height: 1.68;
  }

  .quiet-list span {
    min-width: 100%;
  }

  .wide-still,
  .vertical-still {
    height: 58svh;
  }

  .contract-notes p {
    min-height: auto;
  }

  .premium-gallery {
    grid-template-columns: 1fr;
  }

  .premium-card-large {
    grid-column: auto;
    aspect-ratio: 4 / 5;
  }

  .contact-lines a {
    font-size: 15px;
  }

  .contact-lines strong {
    font-size: 16px;
  }

  .story-tab {
    font-size: clamp(28px, 9vw, 38px);
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
