:root {
  --ink: #14151a;
  --ink-soft: #23252d;
  --oxblood: #6e1f2b;
  --oxblood-dark: #551620;
  --rose: #c98d97;
  --paper: #faf8f4;
  --white: #ffffff;
  --line: #e4e0d6;
  --stone: #8f8a7c;
  --text: #454751;
  --muted: #6e7078;
  --whatsapp: #25d366;
  --shadow-sm: 0 8px 24px rgba(20, 21, 26, 0.07);
  --shadow-md: 0 18px 48px rgba(20, 21, 26, 0.12);
  --shadow-lg: 0 32px 80px rgba(20, 21, 26, 0.18);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1240px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(110, 31, 43, 0.28);
  outline-offset: 3px;
}

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

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: var(--serif);
  line-height: 1.12;
  font-weight: 600;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 5.7rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2.15rem, 4vw, 3.85rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  letter-spacing: -0.02em;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100%, 790px);
}

.text-center {
  text-align: center;
  margin-inline: auto;
}

.text-light,
.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4 {
  color: var(--white);
}

.text-light p {
  color: rgba(255, 255, 255, 0.76);
}

.muted {
  color: var(--muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--oxblood);
  font-size: 0.73rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
}

.eyebrow.on-dark {
  color: var(--rose);
}

.section-heading {
  margin-bottom: 26px;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
}

.section-intro.center {
  margin-inline: auto;
  text-align: center;
}

.section-pad {
  padding: 110px 0;
}

.section-pad-sm {
  padding: 78px 0;
}

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

.section-dark {
  color: rgba(255, 255, 255, 0.74);
  background:
    radial-gradient(circle at 92% 12%, rgba(110, 31, 43, 0.38), transparent 33%),
    var(--ink);
}

.section-rule {
  border-top: 1px solid var(--line);
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--oxblood);
  border-radius: 6px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: 96px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(228, 224, 214, 0.58);
  transition: height 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  height: 84px;
  box-shadow: 0 10px 30px rgba(20, 21, 26, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), 1380px);
  height: 100%;
  margin-inline: auto;
  gap: 26px;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  justify-content: flex-start;
  width: 154px;
  height: 88px;
}

.brand img {
  width: auto;
  height: 84px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.nav-item {
  position: relative;
}

.nav-link,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 11px;
  color: #3f414a;
  border: 0;
  background: transparent;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-link::after {
  position: absolute;
  right: 11px;
  bottom: 8px;
  left: 11px;
  height: 2px;
  content: "";
  background: var(--oxblood);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.24s ease;
}

.nav-link:hover,
.nav-link.active,
.dropdown-toggle:hover,
.dropdown-toggle.active {
  color: var(--oxblood);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.chevron {
  width: 12px;
  transition: transform 0.2s ease;
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 244px;
  padding: 10px;
  visibility: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.dropdown a {
  display: block;
  padding: 11px 13px;
  color: #4a4c54;
  border-radius: 7px;
  font-size: 0.9rem;
  font-weight: 650;
}

.dropdown a:hover,
.dropdown a.active {
  color: var(--oxblood);
  background: var(--paper);
}

.nav-item:hover > .dropdown,
.nav-item:focus-within > .dropdown,
.nav-item.open > .dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav-item.open .chevron {
  transform: rotate(180deg);
}

.nav-cta {
  flex: 0 0 auto;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-lines::before {
  top: -6px;
}

.menu-lines::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  gap: 10px;
  color: var(--white);
  background: var(--oxblood);
  border: 1px solid var(--oxblood);
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  color: var(--white);
  background: var(--oxblood-dark);
  border-color: var(--oxblood-dark);
  box-shadow: 0 12px 28px rgba(110, 31, 43, 0.22);
  transform: translateY(-2px);
}

.btn-outline {
  color: var(--ink);
  background: transparent;
  border-color: rgba(20, 21, 26, 0.3);
}

.btn-outline:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.btn-light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.btn-light:hover {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-ghost-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost-light:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-row.center {
  justify-content: center;
}

.arrow-icon {
  display: inline-block;
  font-size: 1.1em;
  transition: transform 0.22s ease;
}

.btn:hover .arrow-icon,
.text-link:hover .arrow-icon {
  transform: translateX(4px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--oxblood);
  font-size: 0.85rem;
  font-weight: 800;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 790px;
  padding: 170px 0 90px;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroScale 16s ease-out both;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(20, 21, 26, 0.94) 0%, rgba(20, 21, 26, 0.82) 40%, rgba(20, 21, 26, 0.28) 74%, rgba(20, 21, 26, 0.5) 100%),
    linear-gradient(0deg, rgba(20, 21, 26, 0.56), transparent 45%);
}

@keyframes heroScale {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 780px) 1fr;
  align-items: end;
  gap: 50px;
}

.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 25px;
  color: var(--white);
}

.hero-copy h1 span {
  color: var(--rose);
}

.hero-copy > p {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
}

.hero-note {
  align-self: end;
  padding: 24px;
  background: rgba(20, 21, 26, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.hero-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.hero-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  transform: translateX(-50%);
}

.scroll-cue::after {
  width: 4px;
  height: 8px;
  content: "";
  background: var(--rose);
  border-radius: 4px;
  animation: scrollDot 1.8s infinite;
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(-8px); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translateY(8px); }
}

.inner-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 500px;
  padding: 190px 0 85px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(110, 31, 43, 0.52), transparent 38%),
    var(--ink);
  overflow: hidden;
}

.inner-hero::before {
  position: absolute;
  top: -130px;
  right: 5%;
  width: 480px;
  height: 480px;
  content: "";
  border: 1px solid rgba(201, 141, 151, 0.2);
  border-radius: 50%;
}

.inner-hero::after {
  position: absolute;
  right: 18%;
  bottom: -240px;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.inner-hero .container {
  position: relative;
  z-index: 2;
}

.inner-hero h1 {
  max-width: 850px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
}

.inner-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.03rem, 1.7vw, 1.2rem);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--rose);
}

/* Layouts */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
}

.split.reverse .visual {
  order: 2;
}

.visual {
  position: relative;
}

.image-frame {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.image-frame.small {
  min-height: 420px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.image-frame:hover img {
  transform: scale(1.035);
}

.image-frame::after {
  position: absolute;
  inset: auto 22px 22px auto;
  width: 78px;
  height: 78px;
  content: "";
  border-right: 2px solid rgba(255, 255, 255, 0.8);
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
}

.image-badge {
  position: absolute;
  z-index: 2;
  right: -22px;
  bottom: 35px;
  max-width: 250px;
  padding: 23px 25px;
  color: var(--white);
  background: var(--oxblood);
  border-radius: 12px 0 12px 12px;
  box-shadow: var(--shadow-md);
}

.image-badge strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 1.45rem;
}

.image-badge span {
  color: rgba(255, 255, 255, 0.77);
  font-size: 0.82rem;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 22px;
}

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

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

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

.card {
  position: relative;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--oxblood);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.card:hover {
  border-color: rgba(110, 31, 43, 0.18);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.card:hover::before {
  transform: scaleX(1);
}

.card h3 {
  margin-bottom: 14px;
}

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

.card-dark {
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
  border-color: rgba(255, 255, 255, 0.08);
}

.card-dark h3 {
  color: var(--white);
}

.card-dark p {
  color: rgba(255, 255, 255, 0.68);
}

.icon-box {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  color: var(--oxblood);
  background: rgba(110, 31, 43, 0.08);
  border: 1px solid rgba(110, 31, 43, 0.12);
  border-radius: 14px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.card:hover .icon-box {
  color: var(--white);
  background: var(--oxblood);
  transform: rotate(-3deg) scale(1.04);
}

.icon-box svg,
.contact-icon svg,
.footer-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-card {
  min-height: 390px;
  padding: 40px 36px;
}

.pillar-number {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(20, 21, 26, 0.07);
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 1;
}

.pillar-card ul,
.feature-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.pillar-card li,
.feature-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  color: var(--muted);
}

.pillar-card li::before,
.feature-list li::before {
  position: absolute;
  top: 17px;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--oxblood);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(110, 31, 43, 0.08);
}

.feature-list.compact li {
  padding-top: 5px;
  padding-bottom: 5px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 45px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stat {
  padding: 28px;
  background: var(--ink);
}

.stat strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.stat span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Name story */
.name-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.name-panel {
  min-height: 350px;
  padding: 58px;
  background: var(--white);
}

.name-panel.dark {
  color: rgba(255, 255, 255, 0.74);
  background: var(--ink);
}

.name-panel.dark h3 {
  color: var(--white);
}

.name-letter {
  display: block;
  margin-bottom: 28px;
  color: var(--oxblood);
  font-family: var(--serif);
  font-size: 4.5rem;
  line-height: 0.8;
}

.name-panel.dark .name-letter {
  color: var(--rose);
}

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 42px 34px;
  counter-increment: process;
  border-top: 1px solid var(--line);
}

.process-step:not(:last-child)::after {
  position: absolute;
  z-index: 1;
  top: -5px;
  right: -5px;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--oxblood);
  border-radius: 50%;
  box-shadow: 0 0 0 7px var(--white);
}

.process-step::before {
  display: block;
  margin-bottom: 20px;
  color: var(--oxblood);
  content: "0" counter(process);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.process-step h3 {
  margin-bottom: 12px;
}

.process-step p {
  color: var(--muted);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 55px auto 0;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  content: "";
  background: var(--line);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding: 0 0 68px;
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 2;
}

.timeline-item::before {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 50%;
  width: 15px;
  height: 15px;
  content: "";
  background: var(--oxblood);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--oxblood);
  transform: translateX(-50%);
}

.timeline-content {
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.timeline-index {
  display: block;
  margin-bottom: 12px;
  color: var(--oxblood);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Image cards and insights */
.audience-card {
  position: relative;
  min-height: 430px;
  color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.audience-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.audience-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(20, 21, 26, 0.92), rgba(20, 21, 26, 0.06) 72%);
}

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

.audience-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 32px;
}

.audience-content h3 {
  margin-bottom: 9px;
  color: var(--white);
}

.audience-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.insight-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
  gap: 20px;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  padding: 9px 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 750;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--white);
  background: var(--oxblood);
  border-color: var(--oxblood);
}

.search-field {
  position: relative;
  flex: 0 1 310px;
}

.search-field input {
  width: 100%;
  height: 46px;
  padding: 10px 14px 10px 42px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 99px;
}

.search-field svg {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 17px;
  height: 17px;
  color: var(--stone);
  fill: none;
  stroke: currentColor;
  transform: translateY(-50%);
}

.insight-card {
  padding: 0;
}

.insight-image {
  height: 225px;
  overflow: hidden;
}

.insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.insight-card:hover .insight-image img {
  transform: scale(1.05);
}

.insight-body {
  padding: 28px;
}

.tag {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--oxblood);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insight-card[hidden] {
  display: none;
}

.empty-state {
  display: none;
  padding: 40px;
  text-align: center;
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
}

.empty-state.show {
  display: block;
}

/* Quote and leadership */
.quote-block {
  position: relative;
  padding: 62px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 16%, rgba(201, 141, 151, 0.24), transparent 35%),
    var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.quote-mark {
  position: absolute;
  top: 10px;
  right: 30px;
  color: rgba(255, 255, 255, 0.08);
  font-family: var(--serif);
  font-size: 11rem;
  line-height: 1;
}

.quote-block blockquote {
  position: relative;
  max-width: 850px;
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.28;
}

.quote-block cite {
  color: var(--rose);
  font-style: normal;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portrait-placeholder {
  display: grid;
  place-items: center;
  min-height: 540px;
  padding: 40px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(110, 31, 43, 0.24), transparent 27%),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.portrait-mark {
  display: grid;
  place-items: center;
  width: 190px;
  height: 190px;
  margin: 0 auto 24px;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 4.2rem;
}

.portrait-placeholder small {
  display: block;
  max-width: 300px;
  color: var(--stone);
}

/* Forms and contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 36px;
}

.contact-stack {
  display: grid;
  gap: 14px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  padding: 24px;
  gap: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.contact-icon {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  color: var(--oxblood);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.contact-card h3 {
  margin-bottom: 4px;
  font-family: var(--sans);
  font-size: 0.83rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card p,
.contact-card a {
  margin: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.contact-card a:hover {
  color: var(--oxblood);
}

.contact-form {
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input,
.field select {
  height: 52px;
  padding: 0 14px;
}

.field textarea {
  min-height: 145px;
  padding: 13px 14px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--oxblood);
  box-shadow: 0 0 0 4px rgba(110, 31, 43, 0.08);
  outline: 0;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--oxblood);
}

.checkbox-field label {
  color: var(--muted);
  font-size: 0.82rem;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.error-message {
  display: none;
  margin-top: 6px;
  color: #a31f35;
  font-size: 0.74rem;
}

.field.invalid .error-message {
  display: block;
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: #a31f35;
}

.location-panel {
  position: relative;
  min-height: 330px;
  padding: 50px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(20, 21, 26, 0.95), rgba(110, 31, 43, 0.86)),
    var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.location-panel::after {
  position: absolute;
  top: -100px;
  right: -60px;
  width: 320px;
  height: 320px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.location-panel h2 {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.location-panel p,
.location-panel .button-row {
  position: relative;
  z-index: 2;
}

.location-panel p {
  color: rgba(255, 255, 255, 0.72);
}

/* CTA */
.cta-band {
  position: relative;
  padding: 86px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 20%, rgba(201, 141, 151, 0.26), transparent 32%),
    var(--oxblood);
  overflow: hidden;
}

.cta-band::before {
  position: absolute;
  top: -210px;
  right: 9%;
  width: 470px;
  height: 470px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.cta-copy {
  max-width: 780px;
}

.cta-copy h2 {
  margin-bottom: 14px;
  color: var(--white);
}

.cta-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

/* Disclaimer */
.notice {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--oxblood);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.notice strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.65);
  background: #101116;
}

.footer-main {
  padding: 78px 0 52px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.75fr 0.9fr 1.3fr;
  gap: 46px;
}

.footer-brand-wrap {
  display: inline-flex;
  width: 150px;
  margin-bottom: 18px;
  padding: 8px;
  background: var(--white);
  border-radius: 6px;
}

.footer-tagline {
  margin-bottom: 15px;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 1.08rem;
}

.footer-about {
  max-width: 370px;
  font-size: 0.88rem;
}

.footer-title {
  margin: 12px 0 20px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  font-size: 0.87rem;
}

.footer-links a:hover {
  color: var(--rose);
}

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

.footer-contact a,
.footer-contact div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  overflow-wrap: anywhere;
}

.footer-contact a:hover {
  color: var(--rose);
}

.footer-icon {
  flex: 0 0 18px;
  width: 18px;
  margin-top: 4px;
  color: var(--rose);
}

.footer-icon svg {
  width: 17px;
  height: 17px;
}

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.76rem;
}

.footer-legal {
  max-width: 760px;
}

/* Floating actions */
.whatsapp-float,
.back-to-top {
  position: fixed;
  z-index: 950;
  right: 22px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.whatsapp-float {
  bottom: 24px;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: var(--whatsapp);
}

.whatsapp-float::before {
  position: absolute;
  inset: -5px;
  content: "";
  border: 1px solid rgba(37, 211, 102, 0.45);
  border-radius: inherit;
  animation: whatsappPulse 2.2s infinite;
}

@keyframes whatsappPulse {
  0% { opacity: 0.8; transform: scale(0.92); }
  70%, 100% { opacity: 0; transform: scale(1.25); }
}

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

.whatsapp-tooltip {
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  width: max-content;
  padding: 7px 10px;
  color: var(--white);
  background: var(--ink);
  border-radius: 5px;
  font-size: 0.73rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(7px, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.whatsapp-float:hover .whatsapp-tooltip,
.whatsapp-float:focus .whatsapp-tooltip {
  opacity: 1;
  transform: translate(0, -50%);
}

.back-to-top {
  bottom: 94px;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Modal */
.modal {
  position: fixed;
  z-index: 1500;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  background: rgba(20, 21, 26, 0.72);
  opacity: 0;
  backdrop-filter: blur(5px);
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.modal.open {
  visibility: visible;
  opacity: 1;
}

.modal-dialog {
  position: relative;
  width: min(100%, 680px);
  max-height: min(82vh, 750px);
  padding: 40px;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: translateY(16px);
  transition: transform 0.2s ease;
}

.modal.open .modal-dialog {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

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

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