:root {
  --red: #c70018;
  --red-deep: #65000b;
  --gold: #d6b557;
  --gold-soft: #f4e4b4;
  --ink: #12100d;
  --charcoal: #1d1a16;
  --graphite: #2b2823;
  --muted: #6f6a61;
  --line: #ded6c6;
  --paper: #f8f3e8;
  --surface: #fffdf8;
  --white: #ffffff;
  --shadow: 0 26px 70px rgba(33, 24, 13, 0.11);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 18px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(100% - 40px, var(--max));
  min-height: 72px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(18, 16, 13, 0.76);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  transform: translateX(-50%);
}

.site-header.is-scrolled {
  background: rgba(18, 16, 13, 0.94);
  border-color: rgba(214, 181, 87, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 130px;
}

.brand img {
  width: 132px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.79rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.site-nav .nav-cta {
  margin-left: 8px;
  background: var(--gold);
  color: #211605;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible,
.site-nav .nav-cta.is-active {
  background: #e4c66e;
  color: #211605;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--gold);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: #211605;
}

.hero {
  position: relative;
  display: grid;
  min-height: 96vh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 12, 8, 0.94) 0%, rgba(16, 12, 8, 0.74) 46%, rgba(16, 12, 8, 0.18) 100%),
    linear-gradient(0deg, rgba(16, 12, 8, 0.94) 0%, rgba(16, 12, 8, 0.04) 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 168px 0 72px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.solutions .eyebrow {
  color: var(--gold);
}

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

h1,
h2 {
  font-family: "Source Serif 4", Georgia, serif;
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 7.6vw, 7.2rem);
  font-weight: 800;
}

h2 {
  max-width: 860px;
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4.8vw, 4.85rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
  line-height: 1.22;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-bottom: 50px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--red);
  color: var(--white);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button.outline-dark {
  border-color: rgba(18, 16, 13, 0.22);
  background: transparent;
  color: var(--ink);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 168px));
  gap: 1px;
  width: fit-content;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.14);
}

.hero-proof div {
  padding: 18px 20px;
  background: rgba(18, 16, 13, 0.58);
  backdrop-filter: blur(14px);
}

.hero-proof dt {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
}

.hero-proof dd {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
}

.section {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 104px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 54px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading.compact {
  display: block;
  max-width: 790px;
}

.intro-grid,
.story-section,
.operation,
.proof,
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.intro-copy,
.story-copy p:not(.eyebrow),
.contact-copy p,
.page-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.gain-panel,
.proof-grid,
.link-grid,
.product-grid {
  display: grid;
  gap: 16px;
}

.gain-panel {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.link-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.gain-panel div,
.proof-grid div,
.link-card,
.product-card,
.lead-form,
.milestone-list div,
.timeline.wide div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: var(--shadow);
}

.gain-panel div,
.proof-grid div,
.link-card {
  padding: 26px;
}

.gain-panel span,
.link-card span,
.timeline span,
.milestone-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.gain-panel strong,
.proof-grid strong,
.milestone-list strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.02rem;
  font-weight: 900;
}

.gain-panel p,
.proof-grid p,
.product-card p,
.tab-panel p,
.timeline p,
.link-card p,
.milestone-list p {
  color: var(--muted);
}

.site-map-section {
  padding-top: 32px;
}

.link-card {
  min-height: 270px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.link-card:hover,
.link-card:focus-visible {
  border-color: rgba(199, 0, 24, 0.4);
  transform: translateY(-3px);
}

.link-card h3 {
  font-size: 1.22rem;
}

.products-preview,
.values-section,
.product-strategy {
  padding-top: 42px;
}

.product-card {
  overflow: hidden;
  background: var(--surface);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.04;
  object-fit: cover;
  background: #f2efe8;
}

.product-card div {
  padding: 24px;
}

.product-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--red-deep);
  font-weight: 900;
}

.product-grid.expanded .product-card img {
  aspect-ratio: 1;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.solutions {
  width: 100%;
  max-width: none;
  padding: 104px max(20px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(101, 0, 11, 0.22), rgba(214, 181, 87, 0.06)),
    var(--charcoal);
  color: var(--white);
}

.page-solutions {
  margin-top: 0;
}

.solutions .tab-panel p,
.solutions .check-list {
  color: rgba(255, 255, 255, 0.72);
}

.tabs {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.tab-list {
  display: grid;
  gap: 10px;
  align-content: start;
}

.tab-button {
  min-height: 62px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.74);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.tab-button.is-active {
  border-color: var(--gold);
  background: var(--gold);
  color: #211605;
}

.tab-panel {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 36px;
  min-height: 334px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.tab-panel[hidden] {
  display: none;
}

.panel-kicker {
  color: var(--gold) !important;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tab-panel h3 {
  max-width: 690px;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 4.35rem);
  line-height: 1;
}

.check-list {
  display: grid;
  gap: 12px;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 14px 14px 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.operation-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.operation-media img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  border-radius: 6px;
}

.operation-media .collage-large {
  grid-row: span 2;
}

.timeline {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.timeline div {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.timeline span {
  grid-row: span 2;
  margin: 0;
}

.timeline h3 {
  margin-bottom: 6px;
}

.timeline p {
  margin-bottom: 0;
}

.timeline.wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.timeline.wide div {
  padding: 24px;
  border-top: 1px solid var(--line);
}

.quote-block {
  padding: 38px;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--white);
  box-shadow: var(--shadow);
}

.quote-block p {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.85rem, 3vw, 3.1rem);
  line-height: 1.05;
}

.quote-block span {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 800;
}

.contact {
  width: 100%;
  max-width: none;
  padding: 104px max(20px, calc((100vw - var(--max)) / 2));
  background: #eee4cf;
}

.cta-band {
  align-items: center;
}

.cta-actions {
  justify-content: flex-end;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  font-weight: 900;
}

.contact-lines a {
  color: var(--red-deep);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--graphite);
  font-size: 0.88rem;
  font-weight: 900;
}

.lead-form .full {
  grid-column: 1 / -1;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #d6ccba;
  border-radius: 8px;
  padding: 12px 13px;
  background: #fffefa;
  color: var(--ink);
  outline: none;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(199, 0, 24, 0.1);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 54px;
  align-items: center;
  width: min(100% - 40px, var(--max));
  min-height: 640px;
  margin: 0 auto;
  padding: 158px 0 82px;
}

.page-hero h1 {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(3rem, 6.2vw, 5.95rem);
}

.page-hero > img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-hero > img[src*="logo"] {
  object-fit: contain;
  padding: 28px;
  background: var(--charcoal);
}

.split-red {
  width: 100%;
  max-width: none;
  padding: 158px max(20px, calc((100vw - var(--max)) / 2)) 82px;
  background: linear-gradient(135deg, #f8f3e8 0%, #fbf8ef 58%, #ead7a4 100%);
}

.contact-hero {
  min-height: 560px;
}

.page-contact {
  padding-top: 82px;
}

.milestone-list {
  display: grid;
  gap: 14px;
}

.milestone-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 16px;
  padding: 24px;
}

.milestone-list span {
  grid-row: span 2;
  margin: 0;
}

.milestone-list p {
  margin: 0;
}

.site-footer {
  padding: 74px max(24px, calc((100vw - var(--max)) / 2)) 110px;
  background: #252523;
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.55fr;
  gap: 86px;
  align-items: start;
}

.footer-brand img {
  width: 230px;
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 300px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
  font-weight: 700;
}

.social-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: var(--gold);
}

.social-link::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid var(--gold);
  border-radius: 6px;
}

.social-link::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.social-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.footer-info,
.footer-menu {
  display: grid;
  gap: 14px;
}

.footer-info h2,
.footer-menu h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
}

.footer-info p,
.footer-info a,
.footer-menu a {
  margin: 0;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}

.footer-info a:hover,
.footer-menu a:hover,
.social-link:hover {
  color: var(--gold);
}

.footer-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 6px;
}

.footer-phones a {
  position: relative;
  padding-left: 20px;
}

.footer-phones a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ee6b2f;
  transform: translateY(-50%);
}

@media (max-width: 980px) {
  .site-header {
    top: 12px;
    width: min(100% - 24px, var(--max));
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    padding: 10px;
    border: 1px solid rgba(214, 181, 87, 0.18);
    border-radius: 8px;
    background: rgba(18, 16, 13, 0.98);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a,
  .site-nav .nav-cta {
    margin: 0;
    justify-content: flex-start;
  }

  .section-heading,
  .intro-grid,
  .story-section,
  .operation,
  .proof,
  .contact,
  .tabs,
  .tab-panel,
  .page-hero,
  .link-grid,
  .product-grid,
  .timeline.wide {
    grid-template-columns: 1fr;
  }

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

  .section,
  .solutions,
  .contact {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .hero {
    min-height: 850px;
  }

  .hero-content {
    width: min(100% - 32px, var(--max));
    padding-top: 138px;
  }

  .hero-proof {
    width: 100%;
  }

  .section-heading {
    gap: 18px;
  }

  .tab-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tab-button {
    text-align: center;
  }

  .page-hero,
  .split-red {
    min-height: auto;
    padding-top: 132px;
    padding-bottom: 64px;
  }

  .page-hero > img {
    max-height: 360px;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 116px;
  }

  .hero {
    min-height: 790px;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .page-hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.85rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-proof,
  .proof-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .tab-list {
    grid-template-columns: 1fr;
  }

  .tab-panel,
  .quote-block,
  .lead-form,
  .link-card {
    padding: 22px;
  }

  .operation-media {
    grid-template-columns: 1fr 1fr;
  }

  .operation-media img {
    min-height: 150px;
  }

  .timeline div {
    grid-template-columns: 44px 1fr;
  }

  .milestone-list div {
    grid-template-columns: 44px 1fr;
    padding: 18px;
  }
}

/* Premium direction v2: cleaner, more executive, less decorative. */
:root {
  --red: #b40018;
  --red-deep: #64000d;
  --gold: #c9aa52;
  --ink: #11110f;
  --charcoal: #171613;
  --graphite: #292824;
  --muted: #6b6861;
  --line: #e5dfd2;
  --paper: #f7f5ef;
  --surface: #ffffff;
  --shadow: 0 18px 54px rgba(26, 24, 18, 0.08);
}

body {
  background: var(--paper);
  color: var(--ink);
}

.site-header {
  top: 20px;
  min-height: 66px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(17, 17, 15, 0.82);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.18);
}

.brand img {
  width: 118px;
}

.site-nav a {
  min-height: 40px;
  padding: 10px 12px;
  font-size: 0.76rem;
}

.site-nav .nav-cta {
  background: var(--surface);
  color: var(--ink);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible,
.site-nav .nav-cta.is-active {
  background: var(--gold);
  color: var(--ink);
}

.hero {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 30%, rgba(201, 170, 82, 0.16), transparent 32%),
    linear-gradient(135deg, #11110f 0%, #181612 48%, #262017 100%);
}

.hero-media img {
  opacity: 0.18;
  filter: grayscale(0.75) saturate(0.65) contrast(1.06);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.96) 0%, rgba(17, 17, 15, 0.78) 50%, rgba(17, 17, 15, 0.42) 100%),
    linear-gradient(0deg, rgba(17, 17, 15, 0.92) 0%, rgba(17, 17, 15, 0.04) 62%);
}

.hero-content {
  width: min(100% - 48px, var(--max));
  padding: 156px 0 72px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.74fr);
  gap: 64px;
  align-items: end;
}

.hero-main {
  max-width: 760px;
}

.eyebrow {
  margin-bottom: 18px;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2 {
  font-family: Inter, system-ui, sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.3rem, 6.6vw, 6.7rem);
  line-height: 0.91;
}

h2 {
  max-width: 820px;
  font-size: clamp(2.25rem, 4.15vw, 4.55rem);
  line-height: 0.96;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
}

.button {
  min-height: 50px;
  border-radius: 6px;
  font-size: 0.86rem;
}

.button.primary {
  background: var(--red);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.hero-proof {
  grid-template-columns: repeat(3, minmax(0, 150px));
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof div {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.045);
}

.hero-proof dt {
  font-size: 1.55rem;
}

.hero-panel {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.panel-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.panel-heading span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.panel-heading strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.04rem;
}

.hero-product-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.hero-product-stack img {
  width: 100%;
  min-height: 158px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--surface);
}

.hero-product-stack img:first-child {
  grid-row: span 2;
  min-height: 326px;
}

.panel-metrics {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
}

.panel-metrics div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  padding: 13px 14px;
  background: rgba(15, 14, 12, 0.52);
}

.panel-metrics span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-metrics strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
}

.section {
  width: min(100% - 48px, var(--max));
  padding: 112px 0;
}

.section-heading {
  grid-template-columns: 0.58fr 1.42fr;
  gap: 64px;
}

.intro-grid,
.story-section,
.operation,
.proof,
.contact {
  gap: 64px;
}

.gain-panel div,
.proof-grid div,
.link-card,
.product-card,
.lead-form,
.milestone-list div,
.timeline.wide div {
  border-color: var(--line);
  background: var(--surface);
  box-shadow: none;
}

.gain-panel div,
.proof-grid div,
.link-card {
  padding: 28px;
}

.gain-panel span,
.link-card span,
.timeline span,
.milestone-list span {
  background: #f2ead7;
  color: var(--red-deep);
}

.link-card {
  min-height: 244px;
}

.link-card:hover,
.link-card:focus-visible {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.product-card img {
  aspect-ratio: 1.12;
}

.solutions {
  background:
    linear-gradient(135deg, rgba(180, 0, 24, 0.14), rgba(201, 170, 82, 0.05)),
    #151411;
}

.tab-panel {
  background: rgba(255, 255, 255, 0.055);
}

.tab-panel h3 {
  font-family: Inter, system-ui, sans-serif;
  letter-spacing: -0.03em;
  font-size: clamp(2rem, 3.6vw, 4rem);
}

.quote-block {
  background:
    linear-gradient(135deg, rgba(180, 0, 24, 0.18), transparent 48%),
    var(--charcoal);
}

.proof {
  background:
    linear-gradient(135deg, rgba(201, 170, 82, 0.18), rgba(180, 0, 24, 0.055)),
    #ead8c2;
  box-shadow: 0 0 0 100vmax #ead8c2;
  clip-path: inset(0 -100vmax);
}

.proof .proof-grid div {
  background: rgba(255, 252, 246, 0.92);
  border-color: rgba(76, 54, 35, 0.14);
}

.quote-block p {
  font-family: Inter, system-ui, sans-serif;
  letter-spacing: -0.03em;
}

.contact {
  background: #ebe4d6;
}

.page-hero {
  width: min(100% - 48px, var(--max));
}

.page-hero h1 {
  font-family: Inter, system-ui, sans-serif;
  letter-spacing: -0.035em;
}

.site-footer {
  background: #12110f;
}

@media (max-width: 980px) {
  .site-header {
    width: min(100% - 24px, var(--max));
  }

  .hero {
    min-height: 980px;
  }

  .hero-content {
    width: min(100% - 32px, var(--max));
    padding-top: 132px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero-panel {
    max-width: 620px;
  }

  .section-heading,
  .intro-grid,
  .story-section,
  .operation,
  .proof,
  .contact,
  .tabs,
  .tab-panel,
  .page-hero,
  .link-grid,
  .product-grid,
  .timeline.wide {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 18px;
  }

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

  .section,
  .page-hero {
    width: min(100% - 32px, var(--max));
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-bottom: 54px;
  }

  h1 {
    font-size: clamp(2.65rem, 13.4vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10.4vw, 3.15rem);
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    padding: 14px;
  }

  .hero-product-stack img,
  .hero-product-stack img:first-child {
    min-height: 138px;
  }

  .panel-metrics div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .section {
    padding-top: 78px;
    padding-bottom: 78px;
  }
}

.product-card img[src*="cutout"],
.hero-product-stack img[src*="cutout"],
.operation-media img[src*="cutout"],
.page-hero > img[src*="cutout"] {
  object-fit: contain;
  padding: 18px;
  background:
    linear-gradient(rgba(247, 245, 239, 0.78), rgba(247, 245, 239, 0.78)),
    url("assets/logo-stickers-bg.jpg") center / cover;
}

.hero-product-stack img[src*="cutout"] {
  padding: 12px;
}

.operation-media img[src*="cutout"] {
  background:
    linear-gradient(rgba(247, 245, 239, 0.74), rgba(247, 245, 239, 0.74)),
    url("assets/logo-stickers-bg.jpg") center / cover;
}

.product-card img[src*="cutout"] {
  aspect-ratio: 1.12;
}

.image-proof-section {
  padding-top: 44px;
}

.image-proof-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.image-proof-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.image-proof-card img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
}

.image-proof-card.large img {
  aspect-ratio: 1.62;
}

.image-proof-card div {
  padding: 24px;
}

.image-proof-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.image-proof-card p {
  color: var(--muted);
}

.editorial-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
  padding-top: 54px;
  border-top: 1px solid var(--line);
}

.text-stack {
  display: grid;
  gap: 18px;
}

.text-stack p {
  color: var(--muted);
  font-size: 1.06rem;
}

.legacy-grid,
.detail-grid,
.decision-list {
  display: grid;
  gap: 16px;
}

.legacy-grid,
.detail-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.legacy-grid div,
.detail-grid article,
.decision-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.legacy-grid div,
.detail-grid article {
  padding: 26px;
}

.legacy-grid span,
.image-proof-card span {
  letter-spacing: 0.06em;
}

.legacy-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legacy-grid strong,
.detail-grid strong,
.decision-list strong {
  display: block;
  margin-bottom: 10px;
  font-weight: 900;
}

.legacy-grid p,
.detail-grid p,
.decision-list p {
  margin: 0;
  color: var(--muted);
}

.decision-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.decision-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 16px;
  padding: 24px;
}

.decision-list span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f2ead7;
  color: var(--red-deep);
  font-size: 0.78rem;
  font-weight: 900;
}

.closing-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.closing-cta h2 {
  max-width: 860px;
}

.media-showcase,
.video-section,
.home-media-strip {
  padding-top: 54px;
  border-top: 1px solid var(--line);
}

.media-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr;
  gap: 16px;
}

.media-card,
.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.media-card.tall {
  grid-row: span 2;
}

.media-card img {
  width: 100%;
  aspect-ratio: 1.05;
  object-fit: cover;
}

.media-card.tall img {
  height: 100%;
  min-height: 560px;
}

.media-card div,
.video-card div {
  padding: 22px;
}

.media-card span,
.video-card span {
  display: inline-flex;
  margin-bottom: 9px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.media-card strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.25;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--charcoal);
}

.video-card p {
  color: var(--muted);
}

.media-strip-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 16px;
}

.media-strip-grid img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 8px;
}

.media-strip-grid img:first-child {
  height: 500px;
}

.brand-wall-image {
  object-fit: cover !important;
  padding: 0 !important;
  background: none !important;
}

.bread-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1.56;
  isolation: isolate;
}

.bread-frame .brand-wall-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.bread-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: -42px;
  background: url("assets/bread-frame.png") center / 100% 100% no-repeat;
  filter: drop-shadow(0 24px 28px rgba(29, 22, 12, 0.18));
  pointer-events: none;
}

.bread-frame::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 18px;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(255, 246, 220, 0.45);
  pointer-events: none;
}

.history-frame-image {
  border-radius: 34px !important;
  box-shadow: 0 28px 58px rgba(31, 24, 14, 0.16);
}

.contact-frame-image {
  border-radius: 34px !important;
  box-shadow: 0 28px 58px rgba(31, 24, 14, 0.16);
}

.signup-section {
  width: min(100% - 48px, var(--max));
  padding-top: 64px;
}

.signup-panel {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  padding: 42px;
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.96) 0%, rgba(17, 17, 15, 0.88) 48%, rgba(17, 17, 15, 0.66) 100%),
    url("assets/media/fundo-paes-franceses.jpg") center / cover;
  color: var(--white);
}

.signup-copy h2 {
  color: var(--white);
  max-width: 680px;
}

.signup-copy p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.72);
}

.signup-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.signup-points span {
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
}

.signup-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.signup-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
}

.signup-form input,
.signup-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  outline: none;
}

.signup-form button {
  grid-column: 1 / -1;
}

@media (max-width: 980px) {
  .image-proof-grid {
    grid-template-columns: 1fr;
  }

  .editorial-split,
  .legacy-grid,
  .detail-grid,
  .decision-list,
  .closing-cta {
    grid-template-columns: 1fr;
  }

  .closing-cta .button {
    width: fit-content;
  }

  .media-grid,
  .video-grid,
  .media-strip-grid {
    grid-template-columns: 1fr;
  }

  .media-card.tall {
    grid-row: auto;
  }

  .media-card.tall img,
  .media-strip-grid img,
  .media-strip-grid img:first-child {
    height: auto;
    min-height: 0;
    aspect-ratio: 1;
  }

  .signup-panel,
  .signup-form {
    grid-template-columns: 1fr;
  }

  .signup-panel {
    padding: 28px;
  }

  .bread-frame {
    overflow: hidden;
    border-radius: 8px;
  }

  .bread-frame::before {
    inset: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .site-footer {
    padding-top: 58px;
    padding-bottom: 70px;
  }

  .footer-brand img {
    width: 190px;
  }
}

@media (max-width: 620px) {
  .signup-section {
    width: min(100% - 28px, var(--max));
    padding-top: 54px;
  }

  .signup-panel {
    padding: 22px;
  }

  .signup-copy h2 {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }

  .signup-form {
    padding: 16px;
  }

  .signup-points span {
    width: 100%;
  }

  .bread-frame {
    aspect-ratio: 1.18;
  }

  .bread-frame::before {
    inset: 0;
  }

  .bread-frame::after {
    inset: 14px;
  }

  .footer-info h2,
  .footer-menu h2 {
    font-size: 1.7rem;
  }

  .footer-phones {
    display: grid;
    gap: 12px;
  }
}

/* Refinamento v3: correções de layout, escala tipográfica e conversão. */

/* Seções de fundo escuro/colorido voltam a ocupar a largura total da tela.
   O bloco v2 restringia .section a 1180px e zerava o padding lateral,
   quebrando o full-bleed de .solutions, .contact e .split-red. */
.solutions,
.contact {
  width: 100%;
  max-width: none;
  padding: 112px max(24px, calc((100vw - var(--max)) / 2));
}

.split-red {
  width: 100%;
  max-width: none;
  padding: 158px max(24px, calc((100vw - var(--max)) / 2)) 82px;
}

.page-contact {
  padding-top: 82px;
}

/* Escala tipográfica mais contida: presença sem virar parede de texto. */
h1 {
  font-size: clamp(2.9rem, 4.8vw, 4.9rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(1.95rem, 3.1vw, 3.15rem);
  line-height: 1.05;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 4.4vw, 4.5rem);
}

.tab-panel h3 {
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  line-height: 1.1;
}

.quote-block p {
  font-size: clamp(1.55rem, 2.3vw, 2.35rem);
  line-height: 1.2;
}

/* Pesos calibrados: extrabold apenas em títulos, o resto respira. */
.site-nav a {
  font-weight: 700;
}

.button {
  font-weight: 800;
}

.eyebrow,
.panel-kicker {
  font-weight: 800;
  letter-spacing: 0.08em;
}

.footer-info p,
.footer-info a,
.footer-menu a {
  font-weight: 600;
}

.footer-phones a::before {
  background: var(--gold);
}

/* Botão flutuante de WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 34px rgba(18, 60, 30, 0.32);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(18, 60, 30, 0.38);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 980px) {
  .solutions,
  .contact {
    padding: 78px 16px;
  }

  .split-red {
    padding: 132px 16px 64px;
  }

  .page-contact {
    padding-top: 64px;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.3rem, 9.4vw, 3rem);
  }

  h2 {
    font-size: clamp(1.7rem, 7.4vw, 2.35rem);
  }

  .page-hero h1 {
    font-size: clamp(2.2rem, 9vw, 2.9rem);
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

/* Cores de seção: fundo uniforme na prova, faixa champagne na trajetória
   e fechamento escuro nos CTAs finais. */
.proof {
  background: #ead8c2;
}

.story-section {
  background: #f1e7d3;
  box-shadow: 0 0 0 100vmax #f1e7d3;
  clip-path: inset(0 -100vmax);
}

.closing-cta {
  border-top: 0;
  background: var(--charcoal);
  box-shadow: 0 0 0 100vmax var(--charcoal);
  clip-path: inset(0 -100vmax);
  color: var(--white);
}

.closing-cta h2 {
  color: var(--white);
}

.closing-cta .eyebrow {
  color: var(--gold);
}
