:root {
  --bg: #0D0D0D;
  --bg2: #161616;
  --surface: #1F1F1F;
  --surface2: #2E2E2E;
  --gold: #C9A84C;
  --gold-light: #E8CC7A;
  --gold-dark: #9A7530;
  --white: #FDFBF7;
  --text: #D8D0C0;
  --muted: #9A9185;
  --cream: #F5F0E8;
  --red: #C0392B;
  --radius: 12px;
  --max: 1280px;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Raleway', Arial, sans-serif;
  --shadow: 0 24px 70px rgba(0, 0, 0, .35)
}
* {
  box-sizing: border-box
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .14;
  background-image: radial-gradient(circle at 20% 10%, rgba(201, 168, 76, .14), transparent 30%), radial-gradient(circle at 80% 70%, rgba(201, 168, 76, .08), transparent 25%);
  z-index: -1
}
img {
  max-width: 100%;
  height: auto;
  display: block
}
a {
  color: var(--gold);
  text-decoration: none
}
a:hover {
  color: var(--gold-light)
}
button, input, textarea, select {
  font: inherit
}
.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto
}
.narrow {
  max-width: 840px
}
.section {
  padding: 96px 0;
  position: relative
}
.section:nth-of-type(even) {
  background: var(--bg2)
}
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--white);
  line-height: 1.12;
  margin: 0 0 .55em;
  font-weight: 600;
  text-wrap: balance
}
h1 {
  font-size: clamp(2.8rem, 5.2vw, 5.3rem);
  letter-spacing: -.035em
}
h2 {
  font-size: clamp(2.15rem, 3.4vw, 3.7rem);
  letter-spacing: -.025em
}
h3 {
  font-size: clamp(1.35rem, 2vw, 1.85rem)
}
p {
  margin: .4em 0 1.2em
}
blockquote {
  margin: 0
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 18px
}
.eyebrow:before {
  content: "";
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light))
}
.muted {
  color: var(--muted)
}
.skip-link {
  position: absolute;
  left: -9999px
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
  background: var(--gold);
  color: #000;
  padding: 10px 14px;
  border-radius: 8px
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 13, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 168, 76, .14);
  transition: .25s
}
.site-header.scrolled {
  box-shadow: 0 15px 40px rgba(0, 0, 0, .28);
  background: rgba(13, 13, 13, .95)
}
.nav-wrap {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px
}
.brand img {
  width: 130px;
  max-height: 62px;
  object-fit: contain
}
.site-nav > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  list-style: none;
  padding: 0;
  margin: 0
}
.site-nav a, .nav-sub-toggle {
  display: block;
  padding: 13px 10px;
  color: var(--text);
  font-size: .86rem;
  font-weight: 600;
  border-radius: 8px;
  background: none;
  border: 0;
  cursor: pointer
}
.site-nav a:hover, .nav-sub-toggle:hover, .site-nav .active {
  color: var(--gold-light);
  background: rgba(201, 168, 76, .07)
}
.has-sub {
  position: relative
}
.sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 255px;
  padding: 10px;
  background: #181818;
  border: 1px solid rgba(201, 168, 76, .2);
  border-radius: 12px;
  box-shadow: var(--shadow)
}
.has-sub:hover .sub-menu, .has-sub:focus-within .sub-menu, .has-sub.open .sub-menu {
  display: block
}
.sub-menu a {
  padding: 10px 12px
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 5px
}
.menu-toggle span:not(.sr-only) {
  width: 24px;
  height: 2px;
  background: var(--white);
  display: block
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: .01em;
  transition: .22s;
  cursor: pointer
}
.btn-primary {
  background: var(--gold);
  color: var(--bg)
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--bg);
  transform: translateY(-2px)
}
.btn-secondary {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-light)
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--bg)
}
.header-cta {
  white-space: nowrap
}
.text-link {
  font-weight: 700;
  color: var(--gold-light)
}
.hero {
  padding: 86px 0 92px;
  overflow: hidden;
  background: linear-gradient(180deg, #0b0b0b, #121212)
}
.home-hero {
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  align-items: center;
  gap: 72px
}
.hero-copy {
  position: relative;
  z-index: 2
}
.hero-copy h1 {
  max-width: 900px
}
.hero-lede, .hero-body {
  font-size: clamp(1.04rem, 1.2vw, 1.2rem);
  max-width: 720px
}
.hero-body p, .hero-lede p {
  color: var(--text)
}
.hero-kicker, .section-kicker {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  color: var(--gold-light);
  letter-spacing: .01em
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px
}
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px
}
.hero-proof span {
  font-size: .76rem;
  padding: 7px 10px;
  border: 1px solid rgba(201, 168, 76, .22);
  border-radius: 99px;
  color: #bdb5aa
}
.hero-media {
  position: relative
}
.hero-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  filter: saturate(.84) contrast(1.03)
}
.home-hero .hero-image {
  aspect-ratio: 1/1.02
}
.media-frame {
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(201, 168, 76, .42);
  border-radius: var(--radius);
  z-index: -1
}
.hero-caption {
  position: absolute;
  bottom: 22px;
  left: -30px;
  max-width: 280px;
  background: rgba(13, 13, 13, .9);
  border-left: 3px solid var(--gold);
  padding: 16px 18px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.1rem;
  box-shadow: var(--shadow)
}
.page-hero {
  padding: 112px 0 74px;
  background: linear-gradient(145deg, #0d0d0d, #18150f)
}
.page-hero.simple h1 {
  max-width: 950px
}
.page-hero.simple p {
  font-size: 1.1rem;
  max-width: 720px
}
.contact-hero {
  padding-bottom: 52px
}
.section-heading {
  max-width: 820px;
  margin-bottom: 46px
}
.section-heading.center {
  text-align: center;
  margin-inline: auto
}
.section-heading.center .eyebrow {
  justify-content: center
}
.domain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px
}
.domain-card {
  display: grid;
  grid-template-columns: 44% 1fr;
  min-height: 310px;
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, .12);
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--text);
  transition: .28s
}
.domain-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, .45);
  box-shadow: var(--shadow);
  color: var(--text)
}
.domain-image {
  overflow: hidden
}
.domain-image picture, .domain-image img {
  width: 100%;
  height: 100%
}
.domain-image img {
  object-fit: cover;
  transition: transform .6s
}
.domain-card:hover img {
  transform: scale(1.04)
}
.domain-content {
  padding: 28px
}
.domain-content h2, .domain-content h3 {
  margin-top: 6px
}
.domain-content p {
  font-size: .94rem;
  line-height: 1.7
}
.card-index {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 1.15rem
}
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px
}
.method-steps {
  counter-reset: method;
  list-style: none;
  margin: 0;
  padding: 0
}
.method-steps li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  padding: 25px 0;
  border-top: 1px solid rgba(201, 168, 76, .18)
}
.method-steps strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--white)
}
.method-steps span {
  color: var(--muted)
}
.performance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}
.performance-card {
  position: relative;
  min-height: 430px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, .88)), var(--bg);
  isolation: isolate
}
.performance-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  z-index: -2;
  transition: transform .7s
}
.performance-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .92));
  z-index: -1
}
.performance-card:hover:before {
  transform: scale(1.05)
}
.performance-card span {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .75rem;
  font-weight: 700
}
.performance-card h3 {
  font-size: 2rem;
  max-width: 420px
}
.performance-card em {
  font-style: normal;
  font-weight: 700;
  color: var(--gold-light)
}
.testimonial-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 6px
}
.testimonial-track::-webkit-scrollbar {
  display: none
}
.testimonial-card {
  flex: 0 0 min(560px, 86vw);
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, .15);
  border-radius: var(--radius);
  padding: 34px;
  position: relative
}
.quote-mark {
  font-family: var(--serif);
  font-size: 5rem;
  line-height: .7;
  color: var(--gold);
  opacity: .7
}
.testimonial-card blockquote {
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--white);
  line-height: 1.65
}
.testimonial-card footer {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .08)
}
.testimonial-card footer strong {
  color: var(--gold-light)
}
.testimonial-card footer span {
  font-size: .85rem;
  color: var(--muted)
}
.slider-actions {
  display: flex;
  gap: 8px;
  margin-top: 22px
}
.slider-actions button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold-dark);
  background: transparent;
  color: var(--gold-light);
  cursor: pointer
}
.clients-section {
  background: #f2eee5 !important;
  color: #26231f
}
.clients-section h2 {
  color: #14110d
}
.clients-section p {
  color: #5d554b
}
.client-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px
}
.client-logo {
  height: 86px;
  background: #fff;
  border-radius: 8px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid #e2ddd2
}
.client-logo img {
  max-height: 52px;
  max-width: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: .25s
}
.client-logo:hover img {
  filter: none;
  opacity: 1
}
.cta-section {
  background: var(--bg) !important
}
.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  background: linear-gradient(135deg, #211d15, #131313);
  border: 1px solid rgba(201, 168, 76, .28);
  border-radius: var(--radius);
  padding: 48px
}
.cta-panel h2 {
  max-width: 850px
}
.cta-panel p {
  max-width: 760px
}
.section-toc {
  position: sticky;
  top: 84px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px max(20px, calc((100vw - var(--max))/2));
  background: rgba(22, 22, 22, .95);
  border-block: 1px solid rgba(201, 168, 76, .12);
  overflow-x: auto;
  white-space: nowrap;
  backdrop-filter: blur(10px)
}
.section-toc > span {
  font-size: .72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700
}
.section-toc > div {
  display: flex;
  gap: 8px
}
.section-toc a {
  color: #aaa196;
  font-size: .8rem;
  padding: 7px 10px;
  border-radius: 7px
}
.section-toc a:hover {
  background: rgba(201, 168, 76, .1);
  color: var(--gold-light)
}
.content-section {
  display: grid;
  grid-template-columns: 60px minmax(0, 1.05fr) minmax(280px, .75fr);
  gap: 36px;
  align-items: center
}
.content-section.reverse {
  grid-template-columns: 60px minmax(280px, .75fr) minmax(0, 1.05fr)
}
.content-section.reverse .content-copy {
  grid-column: 3
}
.content-section.reverse .content-visual {
  grid-column: 2;
  grid-row: 1
}
.section-number {
  align-self: start;
  font-family: var(--serif);
  color: var(--gold-dark);
  font-size: 1.3rem
}
.content-copy {
  max-width: 760px
}
.rich-copy p {
  color: var(--text);
  max-width: 74ch
}
.line-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 8px 0 24px;
  font-family: var(--serif);
  font-size: 1.12rem;
  color: var(--white)
}
.content-visual {
  position: relative
}
.section-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow)
}
.why-section {
  background: linear-gradient(135deg, #17130d, #101010) !important
}
.why-section .content-section {
  grid-template-columns: 60px 1fr
}
.why-section .content-visual {
  display: none
}
.quote-band {
  text-align: center;
  background: linear-gradient(135deg, #1d1911, #101010) !important
}
.quote-band blockquote {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--white);
  margin-bottom: 28px
}
.split-story {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}
.founder-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 26px;
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, .14);
  border-radius: var(--radius);
  padding: 20px;
  align-items: center
}
.founder-card picture img {
  width: 210px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 10px
}
.cards-grid, .event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}
.simple-card, .event-card {
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, .15);
  border-radius: var(--radius);
  padding: 28px
}
.empty-state {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 70px 30px;
  border: 1px dashed rgba(201, 168, 76, .3);
  border-radius: var(--radius);
  background: var(--surface)
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px
}
.filter-bar button {
  background: transparent;
  color: var(--text);
  border: 1px solid #3a352d;
  padding: 9px 14px;
  border-radius: 99px;
  cursor: pointer
}
.filter-bar button.active, .filter-bar button:hover {
  border-color: var(--gold);
  color: var(--gold-light)
}
.gallery-grid {
  columns: 4 250px;
  column-gap: 14px
}
.gallery-item {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  background: none;
  border-radius: 10px;
  overflow: hidden;
  cursor: zoom-in;
  break-inside: avoid
}
.gallery-item img {
  width: 100%;
  transition: .35s
}
.gallery-item:hover img {
  transform: scale(1.025);
  filter: brightness(.82)
}
.gallery-item span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(13, 13, 13, .82);
  color: var(--gold-light);
  padding: 4px 8px;
  border-radius: 6px;
  font-size: .72rem
}
.gallery-item[hidden] {
  display: none
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, .93);
  padding: 60px;
  display: grid;
  place-items: center
}
.lightbox[hidden] {
  display: none
}
.lightbox img {
  max-width: min(1200px, 90vw);
  max-height: 84vh;
  object-fit: contain
}
.lightbox-close {
  position: absolute;
  right: 22px;
  top: 18px;
  color: white;
  background: none;
  border: 0;
  font-size: 3rem;
  cursor: pointer
}
.blog-tools {
  max-width: 520px;
  margin-bottom: 30px
}
.blog-tools label {
  display: block;
  font-size: .8rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700
}
.blog-tools input {
  width: 100%;
  margin-top: 8px;
  background: var(--surface);
  border: 1px solid #3d382f;
  border-radius: 9px;
  padding: 13px;
  color: var(--white)
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}
.blog-card {
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, .14);
  border-radius: var(--radius);
  overflow: hidden
}
.blog-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover
}
.blog-card > div {
  padding: 24px
}
.blog-card h2 {
  font-size: 1.55rem
}
.blog-card[hidden] {
  display: none
}
.article-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 34px
}
.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 50px
}
.contact-panel {
  background: var(--surface);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 168, 76, .15)
}
.contact-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 20px 0
}
.contact-image {
  margin-top: 28px;
  border-radius: 10px
}
.contact-form {
  background: #f4efe6;
  color: #2b261f;
  padding: 38px;
  border-radius: var(--radius)
}
.contact-form h2 {
  color: #17130f
}
.contact-form .eyebrow {
  color: #8b6d27
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 16px
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  border: 1px solid #cfc5b5;
  background: #fffdfa;
  border-radius: 8px;
  padding: 12px 13px;
  color: #211d18;
  outline: none
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: #9a7530;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .18)
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}
.check {
  flex-direction: row !important;
  align-items: flex-start
}
.check input {
  width: auto;
  margin-top: 5px
}
.form-note {
  font-size: .76rem;
  color: #756b5e
}
.form-success {
  padding: 12px 14px;
  border-radius: 8px;
  background: #dcebd7;
  color: #20431f;
  margin-bottom: 18px
}
.hp {
  position: absolute !important;
  left: -9999px !important
}
.legal-copy h2 {
  font-size: 1.7rem;
  margin-top: 2em
}
.legal-note {
  padding: 18px;
  background: var(--surface);
  border-left: 3px solid var(--gold);
  color: var(--muted)
}
.site-footer {
  padding: 72px 0 24px;
  background: #080808;
  border-top: 1px solid rgba(201, 168, 76, .15)
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 42px
}
.footer-grid h2 {
  font-family: var(--sans);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold-light)
}
.footer-grid a {
  display: block;
  color: #b8b0a6;
  margin: 7px 0;
  font-size: .9rem
}
.footer-grid p {
  font-size: .9rem;
  color: #9e968b
}
.footer-logo {
  width: 160px;
  margin-bottom: 16px
}
.socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}
.socials a {
  display: inline
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  margin-top: 42px;
  border-top: 1px solid #26231f;
  font-size: .78rem;
  color: #777169
}
.whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  gap: 8px;
  align-items: center;
  background: #1f8b4c;
  color: white;
  padding: 11px 15px;
  border-radius: 99px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
  font-weight: 700;
  font-size: .83rem
}
.whatsapp:hover {
  color: white;
  transform: translateY(-2px)
}
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease
}
.reveal.visible {
  opacity: 1;
  transform: none
}
@media(max-width:1100px) {
  .header-cta {
    display: none
  }
  .nav-wrap {
    grid-template-columns: auto 1fr
  }
  .client-grid {
    grid-template-columns: repeat(6, 1fr)
  }
  .domain-card {
    grid-template-columns: 1fr
  }
  .domain-image {
    height: 220px
  }
  .content-section, .content-section.reverse {
    grid-template-columns: 45px 1fr
  }
  .content-section .content-visual, .content-section.reverse .content-visual {
    grid-column: 2;
    grid-row: auto
  }
  .content-section.reverse .content-copy {
    grid-column: 2
  }
  .cards-grid, .event-grid, .blog-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}
@media(max-width:900px) {
  .section {
    padding: 72px 0
  }
  .menu-toggle {
    display: grid;
    justify-self: end
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 83px;
    left: 0;
    right: 0;
    background: #101010;
    border-bottom: 1px solid rgba(201, 168, 76, .2);
    padding: 12px 20px 22px;
    max-height: calc(100vh - 84px);
    overflow: auto
  }
  .site-nav.open {
    display: block
  }
  .site-nav > ul {
    display: block
  }
  .site-nav a, .nav-sub-toggle {
    width: 100%;
    text-align: left;
    padding: 12px
  }
  .sub-menu {
    position: static;
    width: auto;
    margin: 4px 0 8px 16px;
    box-shadow: none;
    background: #161616
  }
  .nav-wrap {
    min-height: 84px
  }
  .hero-grid, .method-grid, .contact-grid, .split-story {
    grid-template-columns: 1fr;
    gap: 42px
  }
  .home-hero {
    min-height: auto
  }
  .home-hero .hero-media {
    max-width: 680px
  }
  .hero-caption {
    left: 18px
  }
  .domain-grid, .performance-grid, .founder-grid {
    grid-template-columns: 1fr
  }
  .client-grid {
    grid-template-columns: repeat(4, 1fr)
  }
  .cta-panel {
    grid-template-columns: 1fr
  }
  .section-toc {
    top: 84px
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
  .content-section, .content-section.reverse, .why-section .content-section {
    grid-template-columns: 34px 1fr;
    gap: 20px
  }
  .content-copy, .content-section.reverse .content-copy, .content-visual, .content-section.reverse .content-visual {
    grid-column: 2
  }
  .founder-card {
    grid-template-columns: 140px 1fr
  }
  .founder-card picture img {
    width: 140px
  }
}
@media(max-width:640px) {
  .container {
    width: min(calc(100% - 28px), var(--max))
  }
  .section {
    padding: 56px 0
  }
  .hero {
    padding: 58px 0 68px
  }
  .hero-grid {
    gap: 34px
  }
  .media-frame {
    inset: 10px -8px -8px 10px
  }
  .hero-caption {
    position: static;
    margin-top: 12px
  }
  .hero-actions .btn {
    width: 100%
  }
  .hero-proof {
    gap: 6px
  }
  .domain-card {
    min-height: 0
  }
  .domain-content {
    padding: 22px
  }
  .domain-image {
    height: 190px
  }
  .method-steps li {
    grid-template-columns: 90px 1fr;
    gap: 16px
  }
  .performance-card {
    min-height: 350px;
    padding: 24px
  }
  .client-grid {
    grid-template-columns: repeat(3, 1fr)
  }
  .client-logo {
    height: 70px;
    padding: 10px
  }
  .cta-panel {
    padding: 30px 24px
  }
  .section-toc {
    padding-inline: 14px
  }
  .content-section, .content-section.reverse, .why-section .content-section {
    grid-template-columns: 1fr
  }
  .section-number {
    display: none
  }
  .content-copy, .content-section.reverse .content-copy, .content-visual, .content-section.reverse .content-visual {
    grid-column: 1
  }
  .testimonial-card {
    padding: 26px
  }
  .field-row {
    grid-template-columns: 1fr
  }
  .contact-form {
    padding: 26px
  }
  .cards-grid, .event-grid, .blog-grid {
    grid-template-columns: 1fr
  }
  .gallery-grid {
    columns: 2 150px
  }
  .footer-grid {
    grid-template-columns: 1fr
  }
  .footer-bottom {
    flex-direction: column
  }
  .whatsapp span:last-child {
    display: none
  }
  .whatsapp {
    width: 48px;
    height: 48px;
    padding: 0;
    justify-content: center
  }
  .founder-card {
    grid-template-columns: 1fr
  }
  .founder-card picture img {
    width: 100%;
    max-width: 260px
  }
  .page-hero {
    padding: 72px 0 50px
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none
  }
  .domain-card, .btn, .performance-card:before {
    transition: none
  }
}
/* =========================================================
   CLIENT REFERENCE THEME MATCH — Dark Editorial Theatre
   Based on supplied First Drop Bootstrap visual direction.
   ========================================================= */ :root {
  --radius: 4px;
  --max: 1320px
}
body {
  background: #0d0d0d;
  color: #d8d0c0;
  font-size: 15px;
  line-height: 1.72
}
body:before {
  opacity: .22;
  background: radial-gradient(ellipse 700px 450px at 17% 8%, rgba(201, 168, 76, .08), transparent 72%), radial-gradient(ellipse 450px 330px at 82% 82%, rgba(201, 168, 76, .045), transparent 72%)
}
.container {
  width: min(calc(100% - 48px), var(--max))
}
.section {
  padding: 82px 0
}
.section:nth-of-type(even) {
  background: initial
}
h1, h2, h3, h4 {
  font-weight: 600;
  letter-spacing: -.02em
}
.section-label {
  display: inline-block;
  font: 700 10px/1.2 var(--sans);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px
}
.divider-gold {
  width: 54px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 14px 0 24px
}
.divider-gold.center {
  margin: 14px auto 24px
}
.reference-section-heading {
  max-width: 760px;
  margin-bottom: 48px
}
.reference-section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto
}
.reference-section-heading h2 {
  font-size: clamp(2.15rem, 3.5vw, 3.65rem);
  margin-bottom: 8px
}
.reference-section-heading p {
  color: #938a7e;
  max-width: 680px;
  margin-inline: auto
}
.site-header {
  position: sticky;
  background: rgba(8, 8, 8, .92);
  border-bottom: 1px solid rgba(201, 168, 76, .14);
  backdrop-filter: blur(18px)
}
.nav-wrap {
  min-height: 72px
}
.brand img {
  width: 112px;
  max-height: 50px
}
.site-nav a, .nav-sub-toggle {
  font-size: .72rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  border-radius: 0;
  padding: 12px 9px;
  color: #c8c0b5
}
.site-nav a:hover, .nav-sub-toggle:hover, .site-nav .active {
  background: none;
  color: var(--gold)
}
.header-cta {
  border-radius: 2px;
  min-height: 38px;
  padding: 9px 16px;
  text-transform: uppercase;
  font-size: .68rem;
  letter-spacing: .12em
}
.sub-menu {
  border-radius: 2px;
  background: #121212
}
.btn {
  border-radius: 2px;
  min-height: 42px;
  padding: 10px 17px;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .67rem
}
.btn-primary {
  background: var(--gold);
  color: #0d0d0d
}
.btn-secondary {
  border-color: rgba(201, 168, 76, .65);
  color: var(--gold-light)
}
/* Hero closely follows the supplied visual reference */
.reference-hero {
  position: relative;
  min-height: 760px;
  padding: 115px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0a0a
}
.reference-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(.75) contrast(1.06);
  opacity: .92
}
.reference-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .62)), radial-gradient(ellipse 70% 55% at 45% 40%, rgba(201, 168, 76, .08), transparent 70%);
  pointer-events: none
}
.reference-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(430px, .75fr);
  gap: 82px;
  align-items: center
}
.reference-hero-copy {
  max-width: 660px
}
.reference-hero-copy h1 {
  font-size: clamp(4.1rem, 7vw, 7.4rem);
  line-height: .78;
  margin: 8px 0 22px
}
.reference-hero-copy h1 span {
  display: block;
  color: #fdfbf7
}
.reference-hero-copy h1 em {
  display: block;
  color: var(--gold);
  font-weight: 500
}
.hero-tagline {
  font: italic 500 1.08rem/1.3 var(--serif);
  color: #f4ead5;
  margin: 0 0 22px
}
.reference-hero-text {
  max-width: 570px;
  color: #b9b0a4;
  font-size: .96rem
}
.reference-hero-text p {
  margin-bottom: 0
}
.reference-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 168, 76, .18)
}
.reference-stats strong {
  display: block;
  font: 600 1.55rem/1 var(--serif);
  color: var(--gold)
}
.reference-stats span {
  display: block;
  margin-top: 7px;
  font-size: .61rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8e8579
}
.reference-hero-card {
  max-width: 520px;
  justify-self: end;
  width: 100%
}
.hero-card-frame {
  position: relative;
  padding: 22px;
  background: linear-gradient(145deg, #e6d58f, #d9ba58);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .46);
  transform: rotate(.3deg)
}
.hero-card-frame:before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(41, 33, 12, .25);
  pointer-events: none
}
.reference-hero-image {
  width: 100%;
  aspect-ratio: 1.14/1;
  object-fit: cover;
  filter: saturate(.88) contrast(1.04)
}
.hero-card-caption {
  position: absolute;
  left: 26px;
  bottom: -22px;
  background: #d7b84e;
  color: #1a160d;
  padding: 13px 18px;
  font: 500 .72rem/1.35 var(--serif);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .24)
}
.hero-card-caption strong {
  font-size: .88rem
}
.hero-scroll {
  position: absolute;
  z-index: 4;
  bottom: 17px;
  left: 50%;
  transform: translateX(-50%);
  color: #777064;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .55rem
}
.hero-scroll i {
  display: block;
  width: 1px;
  height: 26px;
  background: linear-gradient(var(--gold), transparent);
  margin: 8px auto 0
}
.reference-events {
  background: #1b1b1b
}
.reference-event-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 1050px;
  margin: auto
}
.reference-event-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  background: #282828;
  border-left: 2px solid var(--gold);
  padding: 25px 28px;
  min-height: 175px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .16)
}
.event-date {
  align-self: start;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(201, 168, 76, .48);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #17130c;
  background: var(--gold-light)
}
.event-date strong {
  font: 700 1.35rem/1 var(--serif)
}
.event-date span {
  font-size: .54rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  margin-top: 4px
}
.reference-event-card h3 {
  font-size: 1.45rem;
  margin: .1rem 0 .45rem
}
.reference-event-card p {
  font-size: .82rem;
  color: #aaa196;
  margin-bottom: .35rem
}
.reference-event-card small {
  display: block;
  color: #777064;
  font-size: .69rem
}
.mini-btn {
  display: inline-block;
  margin-top: 13px;
  background: var(--gold);
  color: #111;
  padding: 7px 12px;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase
}
.mini-btn:hover {
  background: var(--gold-light);
  color: #111
}
.reference-domains {
  background: #101010
}
.reference-domain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}
.reference-domain-card {
  background: #1d1d1d;
  color: #c9c1b7;
  border: 1px solid rgba(201, 168, 76, .1);
  padding: 11px;
  transition: .35s
}
.reference-domain-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, .38);
  color: #c9c1b7;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .35)
}
.reference-domain-image {
  height: 185px;
  overflow: hidden
}
.reference-domain-image picture, .reference-domain-image img {
  width: 100%;
  height: 100%
}
.reference-domain-image img {
  object-fit: cover;
  filter: saturate(.78);
  transition: .55s
}
.reference-domain-card:hover img {
  transform: scale(1.04);
  filter: saturate(.95)
}
.reference-domain-content {
  padding: 21px 15px 17px
}
.domain-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: #2c281d;
  color: var(--gold);
  font: 600 .72rem var(--serif);
  margin-bottom: 13px
}
.reference-domain-content h3 {
  font-size: 1.32rem;
  margin-bottom: 8px
}
.reference-domain-content p {
  font-size: .78rem;
  line-height: 1.65;
  color: #8f877c;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden
}
.domain-link {
  font-size: .61rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold)
}
.trusted-strip {
  text-align: center;
  margin-top: 48px;
  padding-top: 25px;
  border-top: 1px solid rgba(201, 168, 76, .1)
}
.trusted-names {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 12px
}
.trusted-names span {
  font-size: .6rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #726b62
}
.reference-gallery-section {
  background: #050505
}
.home-mosaic {
  display: grid;
  grid-template-columns: 1.55fr .8fr .8fr;
  grid-template-rows: 190px 190px;
  gap: 9px;
  max-width: 1150px;
  margin: auto
}
.mosaic-item {
  overflow: hidden;
  background: #151515
}
.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.84) contrast(1.04);
  transition: .45s
}
.mosaic-item:hover img {
  transform: scale(1.035);
  filter: saturate(1)
}
.mosaic-1 {
  grid-row: 1/3
}
.mosaic-2 {
  grid-column: 2/4
}
.mosaic-3 {
  grid-column: 2
}
.mosaic-4 {
  grid-column: 3
}
.mosaic-5 {
  display: none
}
.reference-story-section {
  background: #202020
}
.reference-story-grid {
  display: grid;
  grid-template-columns: minmax(330px, .8fr) minmax(0, 1.2fr);
  gap: 80px;
  align-items: center
}
.story-image-wrap {
  position: relative
}
.story-image {
  width: 100%;
  aspect-ratio: 4/4.35;
  object-fit: cover;
  filter: saturate(.74) contrast(1.06);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .35)
}
.image-corner {
  position: absolute;
  width: 42px;
  height: 42px
}
.image-corner.one {
  left: -10px;
  top: -10px;
  border-left: 1px solid var(--gold);
  border-top: 1px solid var(--gold)
}
.image-corner.two {
  right: -10px;
  bottom: -10px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold)
}
.story-copy h2 {
  font-size: clamp(2.45rem, 4vw, 4.45rem);
  max-width: 720px
}
.story-copy h2 em {
  display: block;
  color: var(--gold);
  font-weight: 500
}
.story-copy p {
  color: #a59d91;
  max-width: 760px
}
.story-copy blockquote {
  font: italic 500 1.4rem/1.5 var(--serif);
  color: #eee7dc;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin: 22px 0
}
.story-pill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  margin: 24px 0
}
.story-pill-grid span {
  font-size: .67rem;
  color: #aaa196;
  position: relative;
  padding-left: 20px
}
.story-pill-grid span:before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .55rem
}
.reference-founders-section {
  background: #202020;
  border-top: 1px solid rgba(255, 255, 255, .03)
}
.reference-founder-grid {
  display: flex;
  justify-content: center;
  gap: 95px;
  flex-wrap: wrap
}
.reference-founder {
  text-align: center;
  width: 170px
}
.founder-ring {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  padding: 5px;
  border: 1px solid var(--gold);
  margin: 0 auto 16px;
  overflow: hidden;
  background: #171717;
  display: grid;
  place-items: center
}
.founder-ring picture, .founder-ring img {
  width: 100%;
  height: 100%
}
.founder-ring img {
  object-fit: cover;
  border-radius: 50%;
  filter: saturate(.75)
}
.reference-founder h3 {
  font-size: 1rem;
  margin-bottom: 5px
}
.reference-founder > span {
  font-size: .56rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold)
}
.founder-placeholder {
  font-size: 2.4rem;
  color: #756b54
}
.muted-founder {
  opacity: .62
}
.reference-gold-cta {
  background: linear-gradient(100deg, #d0a737, #f0d568 48%, #d2ad42);
  color: #17130a;
  padding: 47px 0
}
.gold-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 45px
}
.reference-gold-cta h2 {
  color: #17130a;
  font-size: clamp(2rem, 3vw, 3.15rem);
  margin-bottom: 5px
}
.reference-gold-cta p {
  color: #604d1e;
  margin: 0
}
.gold-cta-grid > div:last-child {
  display: flex;
  gap: 12px
}
.gold-dark-btn, .gold-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 18px;
  text-transform: uppercase;
  font-size: .58rem;
  letter-spacing: .13em;
  font-weight: 700
}
.gold-dark-btn {
  background: #201c12;
  color: #f0d568
}
.gold-outline-btn {
  border: 1px solid #5d4d24;
  color: #2b240f
}
.gold-dark-btn:hover {
  background: #0e0d09;
  color: #f0d568
}
.gold-outline-btn:hover {
  background: #201c12;
  color: #f0d568
}
.reference-contact-teaser {
  background: #121212
}
.contact-teaser-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  max-width: 1000px;
  margin: auto
}
.contact-teaser-grid h3 {
  font-size: 1.25rem
}
.contact-teaser-grid p {
  font-size: .84rem;
  color: #928a7e
}
.contact-teaser-grid a:not(.btn) {
  color: var(--gold-light)
}
/* Inner pages inherit a sharper editorial treatment */
.hero.hero-inner {
  background: #111;
  padding: 95px 0
}
.hero-inner .hero-image {
  border-radius: 0;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35)
}
.hero-inner .media-frame {
  border-radius: 0;
  inset: 13px -13px -13px 13px
}
.page-hero {
  background: #111;
  padding: 88px 0 58px;
  border-bottom: 1px solid rgba(201, 168, 76, .1)
}
.section-toc {
  background: rgba(16, 16, 16, .96)
}
.content-section .section-image {
  border-radius: 0
}
.testimonial-card, .simple-card, .event-card, .blog-card, .contact-panel {
  border-radius: 2px
}
.clients-section {
  background: #171717 !important;
  color: var(--text)
}
.clients-section h2 {
  color: var(--white)
}
.clients-section p {
  color: #8e867b
}
.client-logo {
  background: #efebe3;
  border-radius: 2px
}
.cta-panel {
  border-radius: 2px
}
.contact-form {
  border-radius: 2px
}
.gallery-item {
  border-radius: 0
}
.blog-card {
  background: #1b1b1b
}
.site-footer {
  background: #080808;
  padding-top: 58px
}
.footer-logo {
  width: 125px
}
.footer-grid h2 {
  font-size: .68rem;
  letter-spacing: .17em
}
.footer-grid p, .footer-grid a {
  font-size: .78rem
}
.footer-bottom {
  font-size: .67rem
}
@media(max-width:1120px) {
  .reference-hero-grid {
    grid-template-columns: 1fr 440px;
    gap: 44px
  }
  .reference-domain-grid {
    grid-template-columns: repeat(2, 1fr)
  }
  .reference-domain-image {
    height: 225px
  }
}
@media(max-width:900px) {
  .reference-hero {
    min-height: auto;
    padding: 100px 0 68px
  }
  .reference-hero-grid {
    grid-template-columns: 1fr
  }
  .reference-hero-card {
    justify-self: start;
    max-width: 640px
  }
  .reference-hero-copy h1 {
    font-size: clamp(4.1rem, 12vw, 6.4rem)
  }
  .reference-event-grid {
    grid-template-columns: 1fr
  }
  .reference-story-grid {
    grid-template-columns: 1fr;
    gap: 45px
  }
  .story-image-wrap {
    max-width: 620px
  }
  .gold-cta-grid, .contact-teaser-grid {
    grid-template-columns: 1fr
  }
  .home-mosaic {
    grid-template-columns: 1.2fr .8fr;
    grid-template-rows: 220px 220px
  }
  .mosaic-1 {
    grid-row: 1/3
  }
  .mosaic-2 {
    grid-column: 2
  }
  .mosaic-3 {
    grid-column: 2
  }
  .mosaic-4 {
    display: none
  }
}
@media(max-width:640px) {
  .container {
    width: min(calc(100% - 28px), var(--max))
  }
  .reference-hero {
    padding-top: 78px
  }
  .reference-hero-copy h1 {
    font-size: 3.65rem
  }
  .reference-stats {
    grid-template-columns: 1fr 1fr
  }
  .reference-stats div:last-child {
    grid-column: 1/3
  }
  .hero-card-frame {
    padding: 14px
  }
  .reference-domain-grid {
    grid-template-columns: 1fr
  }
  .reference-domain-image {
    height: 210px
  }
  .reference-events {
    padding-top: 58px
  }
  .reference-event-card {
    grid-template-columns: 58px 1fr;
    padding: 20px 16px;
    gap: 16px
  }
  .home-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 210px 160px 160px
  }
  .mosaic-1 {
    grid-column: 1/3;
    grid-row: 1
  }
  .mosaic-2 {
    grid-column: 1;
    grid-row: 2
  }
  .mosaic-3 {
    grid-column: 2;
    grid-row: 2
  }
  .mosaic-4 {
    display: block;
    grid-column: 1/3;
    grid-row: 3
  }
  .story-pill-grid {
    grid-template-columns: 1fr
  }
  .reference-founder-grid {
    gap: 35px
  }
  .gold-cta-grid > div:last-child {
    flex-wrap: wrap
  }
  .site-header .brand img {
    width: 98px
  }
  .reference-section-heading h2 {
    font-size: 2.4rem
  }
}
/* ===== First Drop refinement pass: Sep 2026 ===== */
/* Prevent accidental page-level horizontal overflow. */
html, body {
  max-width: 100%;
  overflow-x: hidden
}
/* Sticky page index: retain navigation without showing a horizontal scrollbar. */
.section-toc {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  white-space: normal;
  align-items: flex-start
}
.section-toc::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0
}
.section-toc > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  min-width: 0
}
.section-toc a {
  white-space: normal;
  line-height: 1.25
}
/* Long-form content must never collapse into a narrow rail. */
.content-section {
  width: min(calc(100% - 40px), var(--max));
  min-width: 0
}
.content-section > * {
  min-width: 0
}
.content-section.text-only, .content-section.text-only.reverse {
  grid-template-columns: 60px minmax(0, 900px);
  justify-content: center
}
.content-section.text-only .content-copy, .content-section.text-only.reverse .content-copy {
  grid-column: 2;
  max-width: 900px;
  width: 100%
}
.content-section.text-only .content-visual, .content-section.text-only.reverse .content-visual {
  display: none
}
.performance-detail .performance-content.has-visual, .performance-detail .performance-content.has-visual.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(340px, .92fr);
  gap: 64px
}
.performance-detail .performance-content.has-visual .content-copy {
  grid-column: 1;
  max-width: none;
  width: 100%
}
.performance-detail .performance-content.has-visual .content-visual {
  grid-column: 2;
  grid-row: 1
}
.performance-detail .performance-content.has-visual.reverse .content-copy {
  grid-column: 2
}
.performance-detail .performance-content.has-visual.reverse .content-visual {
  grid-column: 1;
  grid-row: 1
}
.performance-detail .performance-content.text-only, .performance-detail .performance-content.text-only.reverse {
  grid-template-columns: minmax(0, 920px);
  justify-content: center
}
.performance-detail .performance-content.text-only .content-copy, .performance-detail .performance-content.text-only.reverse .content-copy {
  grid-column: 1
}
.rich-copy, .rich-copy p, .content-copy {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal
}
.rich-copy p {
  max-width: 78ch
}
.cards-grid > * {
  min-width: 0
}
.simple-card p, .event-card p, .blog-card p, .domain-card p {
  overflow-wrap: anywhere
}
/* Client logo marquee */
.logo-marquee-section {
  overflow: hidden;
  padding-bottom: 82px
}
.logo-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent)
}
.logo-marquee-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: logoMarquee 42s linear infinite;
  will-change: transform
}
.logo-marquee:hover .logo-marquee-track {
  animation-play-state: paused
}
.logo-marquee .client-logo {
  flex: 0 0 170px;
  height: 92px;
  padding: 16px;
  background: #f2eee5;
  border: 1px solid rgba(201, 168, 76, .16)
}
.logo-marquee .client-logo img {
  max-width: 125px;
  max-height: 55px;
  filter: none;
  opacity: 1
}
@keyframes logoMarquee {
  to {
    transform: translateX(-50%)
  }
}
/* Scrolling gallery */
.gallery-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent)
}
.gallery-marquee-track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: galleryMarquee 38s linear infinite;
  will-change: transform
}
.gallery-marquee:hover .gallery-marquee-track {
  animation-play-state: paused
}
.gallery-marquee-item {
  position: relative;
  flex: 0 0 clamp(260px, 29vw, 440px);
  height: 310px;
  overflow: hidden;
  background: #171717;
  color: var(--white)
}
.gallery-marquee-item:nth-child(3n+2) {
  flex-basis: clamp(210px, 22vw, 340px)
}
.gallery-marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.04);
  transition: transform .65s ease, filter .4s ease
}
.gallery-marquee-item:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, .72));
  pointer-events: none
}
.gallery-marquee-item span {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 15px;
  color: var(--gold-light);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase
}
.gallery-marquee-item:hover img {
  transform: scale(1.045);
  filter: saturate(1)
}
@keyframes galleryMarquee {
  to {
    transform: translateX(-50%)
  }
}
.gallery-page-marquee {
  margin: 0 0 50px
}
/* Founder detail layout */
.founder-grid-detailed {
  grid-template-columns: 1fr;
  gap: 34px
}
.founder-grid-detailed .founder-card {
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  padding: 30px;
  gap: 38px;
  align-items: start
}
.founder-grid-detailed .founder-card picture img {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 0
}
.founder-grid-detailed .founder-card .eyebrow {
  margin-bottom: 10px
}
.founder-grid-detailed .founder-card p {
  max-width: 82ch;
  color: #c8c0b5
}
.reference-founder-grid {
  max-width: 560px;
  margin-inline: auto
}
/* More refined motion */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s cubic-bezier(.2, .65, .3, 1), transform .75s cubic-bezier(.2, .65, .3, 1)
}
.reveal.visible {
  opacity: 1;
  transform: none
}
[data-reveal-delay="1"] {
  transition-delay: .08s
}
[data-reveal-delay="2"] {
  transition-delay: .16s
}
[data-reveal-delay="3"] {
  transition-delay: .24s
}
.reference-domain-card, .simple-card, .event-card, .blog-card, .founder-card, .client-logo {
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease
}
.simple-card:hover, .event-card:hover, .blog-card:hover, .founder-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 168, 76, .36);
  box-shadow: 0 24px 54px rgba(0, 0, 0, .22)
}
/* Thank-you page */
.thank-you-page {
  min-height: 62vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 55% 40%, rgba(201, 168, 76, .1), transparent 36%), #101010
}
.thank-you-page .narrow {
  text-align: center
}
.thank-you-page .eyebrow {
  justify-content: center
}
.thank-you-page p {
  margin-inline: auto;
  max-width: 680px;
  color: #bdb5aa
}
.thank-you-page .hero-actions {
  justify-content: center
}
@media(max-width:1100px) {
  .performance-detail .performance-content.has-visual, .performance-detail .performance-content.has-visual.reverse {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr);
    gap: 40px
  }
  .content-section.text-only, .content-section.text-only.reverse {
    grid-template-columns: 45px minmax(0, 1fr)
  }
}
@media(max-width:900px) {
  .section-toc {
    display: block;
    padding-block: 10px
  }
  .section-toc > span {
    display: block;
    margin-bottom: 7px
  }
  .section-toc > div {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 3px
  }
  .section-toc > div::-webkit-scrollbar {
    display: none
  }
  .section-toc a {
    white-space: nowrap;
    flex: none
  }
  .performance-detail .performance-content.has-visual, .performance-detail .performance-content.has-visual.reverse {
    grid-template-columns: 1fr;
    gap: 28px
  }
  .performance-detail .performance-content.has-visual .content-copy, .performance-detail .performance-content.has-visual.reverse .content-copy, .performance-detail .performance-content.has-visual .content-visual, .performance-detail .performance-content.has-visual.reverse .content-visual {
    grid-column: 1;
    grid-row: auto
  }
  .content-section.text-only, .content-section.text-only.reverse {
    grid-template-columns: 34px minmax(0, 1fr)
  }
  .founder-grid-detailed .founder-card {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 26px
  }
}
@media(max-width:640px) {
  .content-section {
    width: min(calc(100% - 28px), var(--max))
  }
  .content-section.text-only, .content-section.text-only.reverse, .performance-detail .performance-content.text-only, .performance-detail .performance-content.text-only.reverse {
    grid-template-columns: 1fr
  }
  .content-section.text-only .content-copy, .content-section.text-only.reverse .content-copy {
    grid-column: 1
  }
  .logo-marquee .client-logo {
    flex-basis: 138px;
    height: 78px;
    padding: 12px
  }
  .logo-marquee .client-logo img {
    max-width: 105px;
    max-height: 46px
  }
  .gallery-marquee-item, .gallery-marquee-item:nth-child(3n+2) {
    flex-basis: 78vw;
    height: 250px
  }
  .founder-grid-detailed .founder-card {
    grid-template-columns: 1fr;
    padding: 22px;
    gap: 20px
  }
  .founder-grid-detailed .founder-card picture img {
    max-width: 100%;
    aspect-ratio: 4/5
  }
}
@media(prefers-reduced-motion:reduce) {
  .logo-marquee-track, .gallery-marquee-track {
    animation: none
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none
  }
}
/* === September 2026 visual refinement: richer depth, cleaner navigation, stronger proof === */
html, body {
  overflow-x: hidden
}
.site-nav > ul {
  gap: 0
}
.site-nav a, .nav-sub-toggle {
  font-size: .66rem;
  letter-spacing: .105em;
  padding: 10px 8px
}
.nav-sub-toggle {
  display: flex;
  align-items: center;
  gap: 0
}
.header-cta {
  font-size: .64rem;
  padding: 8px 14px;
  min-height: 36px
}
/* Impact numbers on homepage */
.reference-stats-impact {
  gap: 22px;
  margin-top: 44px;
  padding-top: 0;
  border-top: 0;
  perspective: 900px
}
.reference-stats-impact .stat-3d {
  position: relative;
  padding: 22px 18px 20px;
  border: 1px solid rgba(201, 168, 76, .24);
  background: linear-gradient(145deg, rgba(34, 30, 20, .62), rgba(15, 15, 15, .74));
  box-shadow: inset 0 1px rgba(255, 255, 255, .05), 0 14px 30px rgba(0, 0, 0, .26);
  transform: translateZ(0);
  transition: transform .4s cubic-bezier(.2, .7, .2, 1), box-shadow .4s ease, border-color .4s ease;
  overflow: hidden
}
.reference-stats-impact .stat-3d:before {
  content: "";
  position: absolute;
  inset: -35% auto auto -20%;
  width: 75%;
  height: 160%;
  background: linear-gradient(120deg, transparent, rgba(232, 204, 122, .11), transparent);
  transform: rotate(15deg);
  pointer-events: none
}
.reference-stats-impact .stat-3d:hover {
  transform: translateY(-7px) rotateX(4deg);
  border-color: rgba(232, 204, 122, .52);
  box-shadow: 0 26px 50px rgba(0, 0, 0, .42), 0 0 34px rgba(201, 168, 76, .08)
}
.reference-stats-impact strong {
  font: 600 clamp(2.8rem, 4vw, 4.5rem)/.9 var(--serif);
  letter-spacing: -.04em;
  color: var(--gold-light);
  text-shadow: 0 7px 22px rgba(201, 168, 76, .18)
}
.reference-stats-impact span {
  font-size: .62rem;
  letter-spacing: .16em;
  color: #bdb29f;
  margin-top: 11px
}
/* Client logos retain supplied brand colours */
.logo-marquee .client-logo {
  background: #f7f4ed;
  box-shadow: 0 12px 25px rgba(0, 0, 0, .18);
  transition: transform .35s ease, box-shadow .35s ease
}
.logo-marquee .client-logo:hover {
  transform: translateY(-5px) scale(1.025);
  box-shadow: 0 22px 42px rgba(0, 0, 0, .28)
}
.logo-marquee .client-logo img {
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal
}
/* Social icon buttons */
.social-icon-links {
  display: flex !important;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap
}
.social-icon-links .social-icon {
  display: grid !important;
  place-items: center;
  width: 40px;
  height: 40px;
  margin: 0 !important;
  padding: 0;
  border: 1px solid rgba(201, 168, 76, .28);
  background: #151515;
  color: var(--gold-light);
  border-radius: 50%;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease
}
.social-icon-links .social-icon:hover {
  transform: translateY(-3px) rotate(-3deg);
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
  box-shadow: 0 10px 28px rgba(201, 168, 76, .18)
}
.social-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8
}
.social-icon svg .fill {
  fill: currentColor;
  stroke: none
}
.social-icon.facebook svg, .social-icon.youtube svg {
  fill: currentColor;
  stroke: none
}
.contact-links.social-icon-links {
  margin: 18px 0 22px
}
/* 3D / layered visual treatment */
.reference-domain-grid, .reference-event-grid, .blog-grid, .cards-grid, .founder-grid {
  perspective: 1200px
}
.reference-domain-card, .reference-event-card, .blog-card, .simple-card, .founder-card {
  transform-style: preserve-3d;
  backface-visibility: hidden
}
.reference-domain-card:hover, .reference-event-card:hover, .blog-card:hover, .simple-card:hover, .founder-card:hover {
  transform: translateY(-8px) rotateX(1.5deg) rotateY(-1.2deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .42), 0 0 0 1px rgba(201, 168, 76, .18)
}
.reference-domain-image, .blog-card > img, .content-visual, .hero-card-frame {
  transform: translateZ(10px)
}
.reference-hero-card {
  perspective: 1100px
}
.hero-card-frame {
  transition: transform .25s ease;
  transform-style: preserve-3d
}
.reference-story-grid {
  perspective: 1200px
}
.story-image-wrap {
  box-shadow: 0 32px 75px rgba(0, 0, 0, .42);
  transform: translateZ(0);
  transition: transform .45s ease, box-shadow .45s ease
}
.story-image-wrap:hover {
  transform: translateY(-6px) rotateY(1.6deg);
  box-shadow: 0 42px 95px rgba(0, 0, 0, .52)
}
/* Welcome popup */
.welcome-popup[hidden] {
  display: none
}
.welcome-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 22px;
  perspective: 1300px
}
.welcome-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 3, .76);
  backdrop-filter: blur(9px);
  animation: welcomeFade .35s ease both
}
.welcome-popup-card {
  position: relative;
  z-index: 1;
  width: min(650px, calc(100vw - 38px));
  padding: clamp(34px, 6vw, 62px);
  background: radial-gradient(circle at 88% 8%, rgba(201, 168, 76, .2), transparent 28%), linear-gradient(145deg, #1b1914, #0d0d0d 64%);
  border: 1px solid rgba(232, 204, 122, .38);
  box-shadow: 0 50px 120px rgba(0, 0, 0, .7), inset 0 1px rgba(255, 255, 255, .06);
  transform-origin: 50% 70%;
  animation: welcomeStage .65s cubic-bezier(.16, .82, .2, 1) both;
  overflow: hidden
}
.welcome-popup-card:before, .welcome-popup-card:after {
  content: "";
  position: absolute;
  pointer-events: none
}
.welcome-popup-card:before {
  inset: 12px;
  border: 1px solid rgba(201, 168, 76, .12)
}
.welcome-popup-card:after {
  width: 230px;
  height: 230px;
  border: 1px solid rgba(201, 168, 76, .14);
  border-radius: 50%;
  right: -105px;
  bottom: -115px;
  box-shadow: 0 0 0 28px rgba(201, 168, 76, .025), 0 0 0 55px rgba(201, 168, 76, .018)
}
.welcome-popup-card h2 {
  font-size: clamp(2.45rem, 5vw, 4.2rem);
  line-height: .98;
  margin: 14px 0 20px;
  max-width: 580px
}
.welcome-popup-card h2 em {
  color: var(--gold);
  font-weight: 500
}
.welcome-popup-card p {
  max-width: 560px;
  color: #c5bcaf
}
.welcome-popup-card small {
  display: block;
  margin-top: 24px;
  color: #756d61;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .58rem
}
.welcome-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px
}
.welcome-close {
  position: absolute;
  z-index: 3;
  right: 18px;
  top: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, .3);
  background: #111;
  color: #e8cc7a;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  transition: .2s
}
.welcome-close:hover {
  transform: rotate(90deg);
  background: var(--gold);
  color: #111
}
@keyframes welcomeStage {
  0% {
    opacity: 0;
    transform: translateY(38px) rotateX(-12deg) scale(.94)
  }
  100% {
    opacity: 1;
    transform: none
  }
}
@keyframes welcomeFade {
  from {
    opacity: 0
  }
  to {
    opacity: 1
  }
}
/* Remove obsolete duplicate trust-strip styling from homepage if cached markup remains */
.reference-domains .trusted-strip {
  display: none !important
}
/* Keep rich content/cards readable at every breakpoint */
.content-copy, .rich-copy, .simple-card, .blog-card, .event-card, .reference-domain-content {
  min-width: 0
}
.rich-copy p, .content-copy p {
  word-break: normal;
  overflow-wrap: break-word
}
@media(max-width:1180px) {
  .site-nav a, .nav-sub-toggle {
    font-size: .62rem;
    padding-inline: 6px
  }
  .nav-wrap {
    gap: 18px
  }
}
@media(max-width:900px) {
  .site-nav a, .nav-sub-toggle {
    font-size: .72rem;
    letter-spacing: .08em
  }
  .reference-stats-impact {
    grid-template-columns: repeat(3, 1fr)
  }
  .welcome-popup-card {
    padding: 42px 30px
  }
}
@media(max-width:640px) {
  .reference-stats-impact {
    grid-template-columns: 1fr
  }
  .reference-stats-impact div:last-child {
    grid-column: auto
  }
  .reference-stats-impact strong {
    font-size: 3.15rem
  }
  .welcome-actions {
    display: grid
  }
  .welcome-actions .btn {
    width: 100%
  }
}
@media(prefers-reduced-motion:reduce) {
  .welcome-popup-card, .welcome-popup-backdrop {
    animation: none
  }
  .reference-domain-card:hover, .reference-event-card:hover, .blog-card:hover, .simple-card:hover, .founder-card:hover, .story-image-wrap:hover, .reference-stats-impact .stat-3d:hover {
    transform: none
  }
}
body.popup-open {
  overflow: hidden
}

/* First Drop Theatre legal-page styles */
.legal-page {
  padding: 110px 0;
  background: #0d0d0d;
}
.legal-content {
  max-width: 920px;
}
.legal-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: #fdfbf7;
  margin-bottom: 18px;
}
.legal-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: #e8cc7a;
  margin-top: 52px;
  margin-bottom: 18px;
}
.legal-content p,
.legal-content li {
  color: #d8d0c0;
  font-size: 1rem;
  line-height: 1.9;
}
.legal-content ul {
  padding-left: 24px;
  margin: 20px 0;
}
.legal-content li {
  margin-bottom: 10px;
}
.legal-content a {
  color: #c9a84c;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.legal-content a:hover {
  color: #e8cc7a;
}
.legal-updated {
  color: #8a7f70 !important;
  margin-bottom: 42px;
}
.legal-content .eyebrow {
  color: #c9a84c;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .legal-page { padding: 72px 0; }
  .legal-content h2 { margin-top: 38px; }
}
