:root {
  --ink: #141821;
  --navy: #1b2436;
  --navy-deep: #10151f;
  --gold: #c4a574;
  --gold-deep: #9d7b48;
  --paper: #f3eee4;
  --cream: #faf7f1;
  --muted: #6e675e;
  --line: rgba(196, 165, 116, 0.35);
  --shadow: 0 24px 60px rgba(16, 21, 31, 0.14);
  --shadow-soft: 0 18px 40px rgba(157, 123, 72, 0.12);
  --font-serif: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --font-sans: "Segoe UI", system-ui, -apple-system, sans-serif;
  --max: 1120px;
  --header: 4.6rem;
  --r-sm: 0.9rem;
  --r-md: 1.5rem;
  --r-lg: 2.4rem;
  --r-xl: 3.5rem;
  --pill: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--gold-deep);
}

h1,
h2,
h3,
.brand-foot,
.hero-lead {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.6rem, 8vw, 6.4rem);
  margin: 0.2rem 0 1rem;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 0 0 0.8rem;
}

h3 {
  font-size: 1.45rem;
  margin: 0 0 0.45rem;
}

p {
  margin: 0 0 1rem;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  background: var(--gold);
  color: var(--navy);
  padding: 0.6rem 1.1rem;
  border-radius: var(--pill);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--navy-deep);
  color: var(--cream);
  transition: opacity 0.55s var(--ease), visibility 0.55s var(--ease);
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.loader-inner img {
  width: 64px;
  height: 64px;
  border-radius: 1.4rem;
  animation: float 1.6s var(--ease) infinite;
}

.loader-inner p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.loader-bar {
  display: block;
  width: 7rem;
  height: 2px;
  overflow: hidden;
  border-radius: var(--pill);
  background: rgba(196, 165, 116, 0.2);
}

.loader-bar::after {
  content: "";
  display: block;
  width: 40%;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
  animation: load 0.9s ease-in-out infinite;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  pointer-events: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.05rem;
  padding: 0.75rem 1.45rem;
  border: 1px solid transparent;
  border-radius: var(--pill);
  font: 650 0.82rem/1 var(--font-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.25s ease, color 0.25s ease, box-shadow 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 10px 24px rgba(196, 165, 116, 0.28);
}

.btn-gold:hover {
  background: #d4b98a;
  color: var(--navy-deep);
}

.btn-ghost,
.btn-ghost-dark {
  background: transparent;
  border-color: var(--gold);
  color: var(--cream);
}

.btn-ghost-dark {
  color: var(--navy);
  border-color: rgba(27, 36, 54, 0.25);
}

.btn-ghost:hover {
  background: rgba(196, 165, 116, 0.14);
  color: var(--cream);
}

.btn-dark {
  background: var(--navy-deep);
  color: var(--cream);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  color: var(--cream);
  background: transparent;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}

.site-header.is-solid,
.site-header.is-open {
  background: rgba(16, 21, 31, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--cream);
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.brand small {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.86rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold);
}

.btn-nav {
  min-height: 2.5rem;
  margin-left: 0.4rem;
}

.nav-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1.1rem;
  height: 1px;
  margin: 0.28rem auto;
  background: var(--cream);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--header));
  margin-top: calc(var(--header) * -1);
  padding: calc(var(--header) + 2.5rem) 0 5.5rem;
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(900px 480px at 82% 8%, rgba(196, 165, 116, 0.22), transparent 58%),
    linear-gradient(165deg, #243044 0%, var(--navy-deep) 72%);
  border-bottom-left-radius: 4.5rem;
  border-bottom-right-radius: 4.5rem;
}

.hero-orbs span {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.hero-orbs span:first-child {
  width: 22rem;
  height: 22rem;
  top: -6rem;
  right: -4rem;
  background: radial-gradient(circle, rgba(196, 165, 116, 0.28), transparent 68%);
}

.hero-orbs span:last-child {
  width: 14rem;
  height: 14rem;
  left: -5rem;
  bottom: 12%;
  background: radial-gradient(circle, rgba(196, 165, 116, 0.16), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3rem;
  align-items: end;
}

.hero-lead {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.hero-text {
  max-width: 36rem;
  color: rgba(250, 247, 241, 0.82);
}

.hero-highlight {
  display: inline-block;
  margin: 1.4rem 0 1.8rem;
  padding: 0.95rem 1.2rem;
  border-radius: 1.4rem 1.4rem 1.4rem 0.4rem;
  background: rgba(196, 165, 116, 0.12);
  backdrop-filter: blur(8px);
}

.hero-highlight em {
  font-style: normal;
  color: var(--gold);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-panel {
  justify-self: end;
  width: min(100%, 340px);
  color: var(--gold);
}

.hero-frame {
  position: relative;
  padding: 1.4rem;
  border: 1px solid rgba(196, 165, 116, 0.35);
  border-radius: 12rem 12rem 2.4rem 2.4rem;
  background: rgba(250, 247, 241, 0.03);
  box-shadow: inset 0 0 0 10px rgba(196, 165, 116, 0.05);
}

.hero-mark {
  width: 100%;
  height: auto;
}

.hero-panel-caption {
  margin-top: 0.9rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(196, 165, 116, 0.8);
}

.wave {
  display: block;
  width: 100%;
  height: 4.2rem;
  margin-top: -4.2rem;
  color: var(--paper);
}

.wave path {
  fill: currentColor;
}

.wave-cream {
  color: var(--cream);
}

.wave-navy {
  color: var(--navy);
}

.wave-gold {
  color: var(--gold);
}

.section {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  scroll-margin-top: calc(var(--header) + 0.6rem);
}

.section-head {
  max-width: 60rem;
  margin-bottom: 2.2rem;
}

.section-head p:last-child {
  color: var(--muted);
}

.pillars {
  background: var(--paper);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.pillar-grid article {
  padding: 1.6rem 1.4rem 1.5rem;
  border-radius: 1.8rem 1.8rem 1.8rem 0.7rem;
  background: var(--cream);
  box-shadow: var(--shadow-soft);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.pillar-grid article:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px rgba(16, 21, 31, 0.1);
}

.pillar-icon {
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(196, 165, 116, 0.18);
  color: var(--gold-deep);
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

.services, .saiba-mais {
  background: var(--cream);
}

.story {
  background: var(--navy-deep);
  color: var(--cream);
}

.story .section-head {
  max-width: none;
  margin-bottom: 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.story-copy p {
  color: rgba(250, 247, 241, 0.82);
}

.story-points {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.story-points li {
  padding: 0.95rem 1.15rem;
  border-radius: 1.3rem;
  background: rgba(196, 165, 116, 0.1);
  border: 1px solid rgba(196, 165, 116, 0.18);
}

.audience {
  background: var(--paper);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.audience-grid article {
  grid-column: span 3;
  padding: 1.5rem 1.35rem;
  border-radius: 1.7rem 1.7rem 1.7rem 0.7rem;
  background: var(--cream);
  box-shadow: var(--shadow-soft);
  transition: transform 0.45s var(--ease);
}

.audience-grid article:nth-child(5):last-child {
  grid-column: 1 / span 6;
}

.audience-grid article:hover {
  transform: translateY(-6px);
}

.coverage {
  background: var(--cream);
}

.coverage-panels {
  display: grid;
  gap: 1rem;
}

.coverage-panels article {
  padding: 1.4rem 1.35rem;
  border-radius: 1.6rem;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 21, 31, 0.05);
}

.coverage-panels ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}

.coverage-panels li {
  padding-left: 1rem;
  position: relative;
}

.coverage-panels li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--gold);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.service-list, .saiba-mais-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.service-list li, .saiba-mais-list li {
  padding: 1.15rem 1.25rem;
  border-radius: 1.4rem;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 21, 31, 0.05);
  transition: transform 0.4s var(--ease);
}

.service-list li:hover, .saiba-mais-list li:hover {
  transform: translateX(6px);
}

.service-list p,
.process-grid p,
.saiba-mais-list p {
  margin: 0;
  color: var(--muted);
}

.process {
  background: var(--navy);
  color: var(--cream);
  border-radius: 3.2rem;
  margin: 0 0.8rem;
}

.process .section-head p:last-child {
  color: rgba(250, 247, 241, 0.72);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.process-grid article {
  padding: 1.2rem 1.25rem;
  border-radius: 1.5rem;
  background: rgba(250, 247, 241, 0.04);
  border: 1px solid rgba(196, 165, 116, 0.16);
  transition: transform 0.4s var(--ease), background 0.4s ease;
}

.process-grid article:hover {
  transform: translateY(-6px);
  background: rgba(196, 165, 116, 0.1);
}

.process-grid h3 {
  color: var(--gold);
}

.cta-band {
  padding: 1.5rem 0 2.5rem;
  background: transparent;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 2.2rem 2rem;
  border-radius: 2.4rem;
  background:
    radial-gradient(500px 180px at 90% 0%, rgba(255, 255, 255, 0.28), transparent 60%),
    linear-gradient(135deg, #d7b888, var(--gold-deep));
  color: var(--navy-deep);
  box-shadow: var(--shadow-soft);
}

.cta-band .eyebrow,
.cta-band p {
  color: var(--navy);
}

.cta-band p:last-child,
.cta-band h2 {
  margin-bottom: 0;
}

.credentials {
  background: var(--paper);
  border-top-left-radius: 3.2rem;
  border-top-right-radius: 3.2rem;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 0;
}

.cred-grid div {
  padding: 1.3rem 1.1rem;
  border-radius: 1.6rem;
  background: var(--cream);
  box-shadow: 0 12px 28px rgba(16, 21, 31, 0.05);
}

.cred-grid dt {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.cred-grid dd {
  margin: 0.35rem 0 0;
  font-family: var(--font-serif);
  font-size: 1.55rem;
}

.founder {
  background: var(--navy);
  color: var(--cream);
}

.founder a {
  color: var(--gold);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.founder-card {
  max-width: 36rem;
}

.founder-mark {
  display: grid;
  place-items: center;
  width: 4.4rem;
  height: 4.4rem;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.founder-role, .saiba-mais-role {
  margin-top: -0.3rem!important;
  color: var(--gold)!important;
  font-family: var(--font-serif)!important;
  font-size: 1.35rem!important;
}

.founder-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.founder-meta li {
  padding: 1rem 1.15rem;
  border-radius: 1.3rem;
  background: rgba(250, 247, 241, 0.04);
  border: 1px solid rgba(196, 165, 116, 0.16);
}

.founder-meta span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 4.5rem;
  color: var(--cream);
  background:
    radial-gradient(700px 320px at 85% 0%, rgba(196, 165, 116, 0.2), transparent 60%),
    linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-bottom-left-radius: 3.5rem;
  border-bottom-right-radius: 3.5rem;
}

.contact-page {
  background: var(--paper);
  border-top-left-radius: 3.2rem;
  border-top-right-radius: 3.2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
}

.contact-details {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.contact-details li {
  padding: 1rem 1.1rem;
  border-radius: 1.3rem;
  background: var(--cream);
  box-shadow: 0 10px 24px rgba(16, 21, 31, 0.05);
}

.contact-details span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--gold-deep);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.6rem;
  border-radius: 2rem;
  background: var(--cream);
  box-shadow: var(--shadow-soft);
}

.field,
.field-row {
  display: grid;
  gap: 0.4rem;
}

.field-row {
  grid-template-columns: 1fr 1fr;
}

label {
  font-size: 0.82rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(20, 24, 33, 0.12);
  border-radius: 1rem;
  background: #fff;
  font: inherit;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(196, 165, 116, 0.2);
}

.check {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--muted);
}

.check input {
  width: auto;
  margin-top: 0.25rem;
  accent-color: var(--gold-deep);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.form-status {
  min-height: 1.2em;
  margin: 0;
  color: var(--gold-deep);
  font-size: 0.9rem;
}

.site-footer {
  padding: 3.2rem 0 1.5rem;
  background: var(--navy-deep);
  color: rgba(250, 247, 241, 0.78);
  border-top-left-radius: 3rem;
  border-top-right-radius: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(196, 165, 116, 0.2);
}

.brand-foot {
  margin: 0 0 0.5rem;
  color: var(--cream);
  font-size: 1.6rem;
}

.footer-label {
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  width: fit-content;
  margin-bottom: 0.35rem;
  color: var(--cream);
  text-decoration: none;
}

.copyright {
  width: min(var(--max), calc(100% - 2rem));
  margin: 1.2rem auto 0;
  font-size: 0.82rem;
}

.whatsapp-fab {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 30;
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
  animation: pulse 2.8s ease-out infinite;
}

.whatsapp-fab:hover {
  color: #fff;
  transform: scale(1.06);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal="left"] {
  transform: translateX(-28px);
}

[data-reveal="right"] {
  transform: translateX(28px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-stagger] > :nth-child(1) { transition-delay: 0.05s; }
[data-stagger] > :nth-child(2) { transition-delay: 0.12s; }
[data-stagger] > :nth-child(3) { transition-delay: 0.19s; }
[data-stagger] > :nth-child(4) { transition-delay: 0.26s; }
[data-stagger] > :nth-child(5) { transition-delay: 0.33s; }
[data-stagger] > :nth-child(6) { transition-delay: 0.4s; }
[data-stagger] > :nth-child(7) { transition-delay: 0.47s; }
[data-stagger] > :nth-child(8) { transition-delay: 0.54s; }
[data-stagger] > :nth-child(9) { transition-delay: 0.61s; }
[data-stagger] > :nth-child(10) { transition-delay: 0.68s; }

body.is-ready .hero-copy > * {
  animation: rise 0.9s var(--ease) both;
}

body.is-ready .hero-copy > :nth-child(1) { animation-delay: 0.05s; }
body.is-ready .hero-copy > :nth-child(2) { animation-delay: 0.14s; }
body.is-ready .hero-copy > :nth-child(3) { animation-delay: 0.22s; }
body.is-ready .hero-copy > :nth-child(4) { animation-delay: 0.3s; }
body.is-ready .hero-copy > :nth-child(5) { animation-delay: 0.38s; }
body.is-ready .hero-copy > :nth-child(6) { animation-delay: 0.46s; }
body.is-ready .hero-panel {
  animation: rise 1s var(--ease) 0.2s both;
}

.atuacao-image {
  display: flex;
  align-items: center;
  margin-top: 10rem;
  justify-content: center;
}

/* Container que envolve a imagem */
.giovanni-image {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px; 
  background: linear-gradient(135deg, rgb(196 165 108), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255,255,255,0.1); 
  
  width: 100%;
  max-width: 380px; 
  aspect-ratio: 1 / 1; 
  overflow: hidden; 
  margin: 0 auto; 
}

.giovanni-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
 
  display: block;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes load {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 980px) {
  .hero {
    min-height: 0;
    padding-bottom: 4rem;
  }
  .hero-grid,
  .split,
  .pillar-grid,
  .story-grid,
  .audience-grid,
  .founder-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero-panel {
    display: none;
  }

  .hero,
  .page-hero {
    border-bottom-left-radius: 2.4rem;
    border-bottom-right-radius: 2.4rem;
  }

  .cta-inner,
  .cred-grid {
    align-items: flex-start;
  }

  .cred-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .audience-grid article {
    grid-column: auto;
  }

  .audience-grid article:nth-child(5):last-child {
    grid-column: 1 / -1;
    max-width: min(100%, 30rem);
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: var(--header) 0.8rem auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1.1rem 1.2rem 1.3rem;
    background: rgba(16, 21, 31, 0.96);
    border-radius: 1.4rem;
    gap: 1rem;
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .btn-nav {
    margin-left: 0;
    width: fit-content;
  }

  .hero,
  .page-hero {
    padding-top: calc(var(--header) + 0.85rem);
    padding-bottom: 3rem;
    min-height: 0;
    border-bottom-left-radius: 1.75rem;
    border-bottom-right-radius: 1.75rem;
  }

  .hero {
    margin-top: calc(var(--header) * -1);
  }

  .hero-orbs span {
    width: 11rem;
    height: 11rem;
  }

  .hero-orbs span:last-child {
    display: none;
  }

  .eyebrow {
    display: grid;
    gap: 0.2rem;
    font-size: 0.68rem;
    letter-spacing: 0.07em;
    line-height: 1.45;
    max-width: 100%;
  }

  .hero-lead {
    font-size: 1.12rem;
    line-height: 1.3;
    margin-bottom: 0.4rem;
  }

  .hero-text {
    font-size: 0.98rem;
    margin-bottom: 0.75rem;
  }

  .hero-highlight {
    display: block;
    width: 100%;
    margin: 0.85rem 0 1.15rem;
    padding: 0.8rem 0.95rem;
    font-size: 0.95rem;
    line-height: 1.45;
    border-radius: 1.1rem;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    gap: 0.65rem;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 2.85rem;
    padding-inline: 1rem;
    letter-spacing: 0.06em;
  }

  .hero-grid,
  .split,
  .pillar-grid,
  .story-grid,
  .audience-grid,
  .founder-grid,
  .process-grid,
  .cred-grid,
  .contact-grid,
  .footer-grid,
  .field-row,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    display: grid;
  }

  .audience-grid article:nth-child(5):last-child {
    grid-column: 1;
    max-width: none;
    justify-self: stretch;
  }

  .process {
    margin: 0 0.5rem;
    border-radius: 2rem;
  }

  h1 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
    line-height: 1.02;
    margin: 0.1rem 0 0.65rem;
    overflow-wrap: break-word;
    word-break: normal;
    letter-spacing: -0.03em;
  }

  .wave {
    height: 2.2rem;
    margin-top: -2.2rem;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand strong {
    font-size: 1.18rem;
  }

  .whatsapp-fab {
    width: 3.15rem;
    height: 3.15rem;
    right: 0.9rem;
    bottom: 0.9rem;
  }

  .container {
    width: min(var(--max), calc(100% - 1.5rem));
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 1.58rem;
  }

  .hero-lead {
    font-size: 1.02rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
