:root {
  --black: #000;
  --ink: #050505;
  --charcoal: #0b0b0b;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --gold: #c49b5c;
  --gold-2: #d4af37;
  --silver: #b4b4b4;
  --white: #f5f5f5;
  --muted: rgba(245, 245, 245, 0.72);
  --line: rgba(212, 175, 55, 0.18);
  --line-soft: rgba(255, 255, 255, 0.09);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
  --max: 1180px;
  --header: 124px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% -10%, rgba(212, 175, 55, 0.13), transparent 30rem),
    linear-gradient(180deg, #000 0%, #050505 46%, #000 100%);
  color: var(--white);
  font-family: "Manrope", "Inter", "Montserrat", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--gold-2);
  color: #080808;
  border-radius: 4px;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.82));
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
  transition: height 180ms ease, background 180ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.52), transparent);
}

.site-header.is-scrolled {
  height: 108px;
  background: rgba(0, 0, 0, 0.92);
}

.nav {
  position: relative;
  z-index: 20;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 530px;
  min-width: 530px;
  height: 106px;
  overflow: hidden;
}

.brand img {
  display: block !important;
  width: 390px !important;
  max-width: none !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: left center !important;
  transform: scale(1.34);
  transform-origin: left center;
  pointer-events: none;
}

.brand-fallback,
.brand-mark,
.brand-line,
.brand-fallback strong,
.brand-fallback small {
  display: none !important;
}

.nav-panel {
  position: relative;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  color: rgba(245, 245, 245, 0.74);
  font-size: 14px;
  font-weight: 800;
  pointer-events: auto;
}

.nav-panel a {
  position: relative;
  z-index: 81;
  pointer-events: auto;
  transition: color 160ms ease;
}

.nav-panel a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: var(--gold-2);
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.nav-panel a:hover,
.nav-panel a:focus-visible,
.nav-panel a.is-active {
  color: #fff;
}

.nav-panel a:hover::after,
.nav-panel a:focus-visible::after,
.nav-panel a.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  min-width: 166px;
  padding: 14px 20px;
  color: #070707 !important;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  box-shadow: 0 18px 42px rgba(196, 155, 92, 0.17);
}

.nav-cta::after {
  display: none;
}

.nav-toggle {
  position: relative;
  z-index: 100;
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 4px;
  padding: 0;
  pointer-events: auto;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 7px auto;
  background: var(--white);
  transition: transform 160ms ease;
}

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

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

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

h1,
h2 {
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(56px, 9vw, 126px);
  line-height: 0.92;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1;
}

h3 {
  margin-bottom: 14px;
  font-size: 21px;
  line-height: 1.28;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-2), transparent);
}

/* Heroes */
.hero,
.page-hero {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero {
  min-height: 100svh;
  padding: 220px 0 92px;
}

.page-hero {
  min-height: 64svh;
  padding: 210px 0 96px;
  align-items: end;
  border-bottom: 1px solid var(--line-soft);
  background: #030303;
}

.hero-bg,
.hero-overlay,
.page-hero-bg,
.page-hero::after {
  position: absolute;
  inset: 0;
}

.hero-bg,
.page-hero-bg {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.68) 48%, rgba(0, 0, 0, 0.42)),
    radial-gradient(circle at 76% 35%, rgba(196, 155, 92, 0.18), transparent 34%),
    url("/images/hero-office.jpg") center / cover no-repeat,
    linear-gradient(135deg, #030303, #151515 48%, #050505);
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.02);
}

.hero-overlay,
.page-hero::after {
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), #000 96%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 118px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 0.72fr);
  gap: clamp(38px, 6vw, 90px);
  align-items: center;
}

.hero-content {
  max-width: 920px;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  padding: 24px 0;
}

.page-hero h1 {
  max-width: 1040px;
  padding-top: 10px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.98;
  text-transform: none;
}

.hero h1 {
  margin-bottom: 30px;
  padding-top: 10px;
  font-size: clamp(72px, 9.4vw, 148px);
  line-height: 0.95;
  text-transform: uppercase;
}

.hero-copy,
.page-hero p:not(.eyebrow) {
  max-width: 790px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(19px, 1.6vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
  margin-bottom: 0;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.hero-image-frame {
  position: relative;
  min-height: clamp(430px, 42vw, 620px);
  border: 1px solid rgba(212, 175, 55, 0.26);
  background: #070707;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.58);
  overflow: hidden;
}

.hero-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 42%);
  pointer-events: none;
}

.hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(212, 175, 55, 0.22);
  pointer-events: none;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 80% center;
  filter: saturate(0.9) contrast(1.08) brightness(0.86);
  transform: scale(1.02);
}

/* Buttons */
.btn,
.nav-cta,
.contact-form .btn {
  appearance: none;
  text-decoration: none !important;
}

.btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  min-height: 58px;
  padding: 17px 26px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease;
}

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

.btn-primary {
  color: #070707;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 50px rgba(196, 155, 92, 0.18);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

/* Panels and Cards */
.hero-panel,
.service-card,
.process-step,
.insight-card,
.work-card,
.value-card,
.package-card,
.case-card,
.article-card,
.testimonial-card,
.contact-form {
  border: 1px solid rgba(212, 175, 55, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    linear-gradient(180deg, rgba(196, 155, 92, 0.045), transparent 44%);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel {
  min-height: 326px;
  padding: 34px;
}

.panel-kicker,
.service-card span,
.process-step span,
.work-card span,
.insight-card span,
.value-card span,
.package-card span,
.case-card span,
.article-card span,
.testimonial-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.panel-kicker {
  color: rgba(245, 245, 245, 0.78);
}

.signal-list {
  display: grid;
  gap: 18px;
}

.signal-list div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 16px;
  align-items: start;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

.signal-list strong {
  display: inline-block;
  min-width: 88px;
  color: #fff;
}

.signal-list span,
.service-card p,
.process-step p,
.value-card p,
.package-card p,
.case-card p,
.article-card p,
.section-heading p:not(.eyebrow),
.why-copy,
.contact-intro p:not(.eyebrow) {
  color: var(--muted);
}

.service-card,
.process-step,
.insight-card,
.value-card,
.package-card,
.article-card,
.work-card,
.case-card,
.testimonial-card {
  position: relative;
  overflow: hidden;
}

.service-card::before,
.process-step::before,
.insight-card::before,
.value-card::before,
.package-card::before,
.article-card::before,
.work-card::before,
.case-card::before,
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.7), transparent);
  opacity: 0.65;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.34);
}

/* Sections */
.section {
  padding: clamp(82px, 10vw, 142px) 0;
}

.section-tight {
  padding: 36px 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 50px;
}

.stats {
  margin-top: 0;
  border-block: 1px solid var(--line-soft);
  background: #050505;
}

.stat-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  border-inline: 1px solid var(--line-soft);
}

.stat {
  padding: 32px 24px;
  background: #050505;
}

.stat strong {
  display: block;
  color: var(--gold-2);
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 9px;
  color: var(--silver);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-strip {
  background: linear-gradient(90deg, rgba(196, 155, 92, 0.08), rgba(255, 255, 255, 0.018));
}

.strip-inner {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(245, 245, 245, 0.72);
}

.strip-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.strip-tags span,
.case-card li {
  padding: 8px 11px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.025);
  color: var(--silver);
  font-size: 12px;
}

.card-grid,
.process-grid,
.values-grid,
.package-grid,
.insight-grid,
.article-grid {
  display: grid !important;
  gap: 16px;
}

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

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

.service-card,
.process-step,
.insight-card,
.value-card,
.package-card,
.article-card {
  min-height: 260px;
  padding: 30px;
}

.service-card {
  min-height: 300px;
}

.service-card h3,
.process-step h3,
.insight-card h3,
.value-card h3,
.package-card h3 {
  font-size: 23px;
}

.service-card p,
.process-step p,
.insight-card p,
.value-card p,
.package-card p {
  font-size: 15.5px;
}

.split-section,
.proof-section {
  background:
    linear-gradient(180deg, #040404, #0b0b0b),
    radial-gradient(circle at 16% 20%, rgba(196, 155, 92, 0.08), transparent 28%);
  border-block: 1px solid var(--line-soft);
}

.split-grid,
.work-grid,
.proof-grid,
.contact-grid {
  display: grid !important;
  grid-template-columns: 0.86fr 1fr;
  gap: clamp(36px, 8vw, 110px);
  align-items: start;
}

.proof-grid,
.contact-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  align-items: center;
}

.split-grid .section-heading,
.proof-grid .section-heading {
  margin-bottom: 0;
}

.why-copy {
  font-size: 19px;
}

.process-grid {
  border-top: 1px solid var(--line);
}

.process-step {
  border-left: 0;
}

.work-section {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at 85% 45%, rgba(212, 175, 55, 0.12), transparent 28%),
    #050505;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  color: var(--gold-2);
  font-weight: 900;
  border-bottom: 1px solid rgba(212, 175, 55, 0.45);
}

.work-preview,
.case-grid,
.service-list {
  display: grid;
  gap: 16px;
}

.work-card {
  min-height: 236px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.work-card h3 {
  max-width: 560px;
  margin-bottom: 0;
  font-size: clamp(22px, 3vw, 34px);
}

.case-card {
  min-height: 340px;
  padding: clamp(30px, 5vw, 54px);
}

.case-card h2,
.article-card h2 {
  max-width: 850px;
  font-size: clamp(30px, 4vw, 56px);
  text-transform: none;
}

.case-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.service-list {
  gap: 1px;
  border: 1px solid var(--line-soft);
  background: var(--line-soft);
}

.service-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: clamp(22px, 5vw, 70px);
  padding: clamp(30px, 5vw, 58px);
  background: #050505;
}

.service-row > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.service-row h2 {
  font-size: clamp(30px, 4vw, 54px);
}

.testimonial-card {
  padding: clamp(28px, 4vw, 42px);
}

.testimonial-card p {
  margin-bottom: 26px;
  color: var(--white);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.22;
}

.cta-section {
  padding: clamp(82px, 10vw, 132px) 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.6)),
    radial-gradient(circle at 50% 0%, rgba(196, 155, 92, 0.18), transparent 38%),
    #070707;
  border-block: 1px solid var(--line);
}

.cta-inner {
  max-width: 920px;
  text-align: center;
}

.cta-inner p:not(.eyebrow) {
  max-width: 660px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 18px;
}

/* Contact */
.contact-section {
  position: relative;
  z-index: 2;
}

.contact-intro h2 {
  font-size: clamp(34px, 5vw, 62px);
}

.contact-note {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}

.contact-note strong,
.contact-note a {
  display: block;
}

.contact-note strong {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-note a {
  margin-top: 8px;
  color: var(--white);
  font-weight: 900;
}

.contact-form {
  display: grid !important;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border-color: rgba(212, 175, 55, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.018)),
    linear-gradient(180deg, rgba(196, 155, 92, 0.045), transparent 48%);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  position: relative;
  z-index: 20;
  isolation: isolate;
}

.contact-form .form-field {
  display: grid;
  gap: 8px;
  position: relative;
  z-index: 30;
}

.contact-form label,
.contact-form .form-field label {
  display: grid !important;
  gap: 8px;
  color: var(--silver);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.54);
  color: #fff;
  border-radius: 4px;
  padding: 15px 14px;
  outline: none;
  position: relative;
  z-index: 30;
  pointer-events: auto !important;
  touch-action: manipulation;
  -webkit-user-select: text;
  user-select: text;
}

.contact-form select option {
  background: #090909;
  color: var(--white);
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(212, 175, 55, 0.58);
}

.contact-form .btn {
  width: fit-content;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 30;
}

.form-status {
  padding: 14px 16px;
  border: 1px solid var(--line-soft);
  color: var(--white);
  font-weight: 800;
}

.form-status.success {
  border-color: rgba(196, 155, 92, 0.36);
  background: rgba(196, 155, 92, 0.1);
}

.form-status.error {
  background: rgba(255, 255, 255, 0.06);
}

.hidden-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Footer */
.site-footer {
  padding: 52px 0;
  background: #000;
}

.footer-grid {
  display: flex !important;
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold-2);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer p {
  margin-bottom: 4px;
  color: var(--silver);
}

.footer-links {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: rgba(245, 245, 245, 0.7);
  font-size: 13px;
  font-weight: 800;
}

/* Animation */
.reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 640ms ease, transform 640ms ease;
  }

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

/* Responsive */
@media (max-width: 1120px) {
  .brand {
    width: 320px;
    min-width: 320px;
    height: 94px;
  }

  .brand img {
    width: 320px !important;
    transform: scale(1.3);
  }

  .nav-panel {
    gap: 18px;
    font-size: 13px;
  }

  .nav-cta {
    min-width: 150px;
  }

  .hero-grid,
  .split-grid,
  .work-grid,
  .proof-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 720px;
  }

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

  .strip-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .strip-tags {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  :root {
    --header: 92px;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header,
  .site-header.is-scrolled {
    height: 92px;
    overflow: visible;
  }

  .brand {
    width: 250px;
    min-width: 250px;
    height: 72px;
    overflow: hidden;
  }

  .brand img {
    width: 250px !important;
    transform: scale(1.24);
  }

  .nav-toggle {
    display: block;
  }

  body:not(.nav-open) .site-header .nav-panel {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  body.nav-open .site-header .nav-panel {
    display: grid !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .nav-panel {
    position: fixed;
    inset: 92px 14px auto;
    z-index: 999;
    gap: 4px;
    padding: 18px;
    background: rgba(5, 5, 5, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.7);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-panel a {
    display: block;
    padding: 12px 10px;
  }

  .nav-panel a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 6px;
  }

  .hero,
  .page-hero {
    min-height: auto;
    padding-top: 146px;
  }

  .hero-bg,
  .page-hero-bg {
    background-position: 64% center;
  }

  .hero-image-frame {
    min-height: 320px;
  }

  .stat-grid,
  .card-grid,
  .process-grid,
  .values-grid,
  .package-grid,
  .insight-grid,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-section {
    z-index: 10;
  }

  .contact-form {
    z-index: 20;
  }

  .contact-form .form-field,
  .contact-form label,
  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .contact-form button {
    z-index: 30;
  }
}

@media (max-width: 640px) {
  .brand {
    width: 218px;
    min-width: 218px;
    height: 66px;
  }

  .brand img {
    width: 218px !important;
    transform: scale(1.18);
  }

  h1 {
    font-size: clamp(48px, 17vw, 72px);
  }

  h2 {
    font-size: clamp(32px, 11vw, 44px);
  }

  .hero h1 {
    font-size: clamp(50px, 16vw, 78px);
  }

  .hero,
  .page-hero {
    padding-top: 136px;
  }

  .hero-copy,
  .page-hero p:not(.eyebrow),
  .why-copy,
  .cta-inner p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-panel {
    display: none;
  }

  .hero-actions,
  .btn,
  .contact-form .btn {
    width: 100%;
  }

  .hero-image-frame {
    min-height: 250px;
  }

  .stat-grid,
  .card-grid,
  .process-grid,
  .values-grid,
  .package-grid,
  .insight-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-card,
  .process-step,
  .insight-card,
  .value-card,
  .package-card,
  .article-card {
    min-height: auto;
  }

  .footer-grid {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
