:root {
  --site-bg: #0f1011;
  --site-bg-soft: #171819;
  --site-panel: #1d1f20;
  --site-panel-2: #242628;
  --site-panel-3: #2a2c2e;
  --site-surface: #f4ede0;
  --site-surface-2: #efe4d2;
  --site-ink: #f7f3eb;
  --site-ink-dark: #141516;
  --site-copy: rgba(247, 243, 235, 0.72);
  --site-copy-strong: rgba(247, 243, 235, 0.88);
  --site-copy-dark: #5b5c5f;
  --site-copy-dark-strong: #232426;
  --site-accent: #d8a64c;
  --site-accent-2: #b98732;
  --site-line: rgba(255, 255, 255, 0.1);
  --site-line-soft: rgba(255, 255, 255, 0.06);
  --site-line-dark: rgba(20, 21, 22, 0.12);
  --site-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  --site-radius-xl: 2rem;
  --site-radius-lg: 1.4rem;
  --site-radius-md: 1rem;
  --site-radius-sm: 0.7rem;
  --site-max: 78rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--site-bg);
  color: var(--site-ink);
  font-family: "Rubik", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(216, 166, 76, 0.08), transparent 22%),
    radial-gradient(circle at 88% 10%, rgba(216, 166, 76, 0.05), transparent 18%);
  content: "";
}

.site-topbar {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-bottom: 1px solid var(--site-line);
  background:
    linear-gradient(90deg, rgba(216, 166, 76, 0.2), rgba(15, 16, 17, 0.92) 24%, rgba(15, 16, 17, 0.92) 76%, rgba(216, 166, 76, 0.14)),
    #101112;
}

.site-topbar__track {
  display: flex;
  gap: 2.25rem;
  width: max-content;
  padding: 0.72rem 0;
  animation: marquee 28s linear infinite;
}

.site-topbar__track span {
  position: relative;
  color: rgba(247, 243, 235, 0.86);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-topbar__track span:nth-child(4n + 2) {
  color: rgba(216, 166, 76, 0.96);
}

.site-topbar__track span:nth-child(4n + 3) {
  color: rgba(247, 243, 235, 0.54);
}

.site-topbar__track span::after {
  margin-left: 2.25rem;
  color: rgba(216, 166, 76, 0.4);
  content: "+";
}

.site-watermarks {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.site-watermark {
  position: absolute;
  white-space: nowrap;
  user-select: none;
}

.site-watermark--primary {
  left: 1.5rem;
  top: 6.5rem;
  font-family: "League Spartan", "Rubik", sans-serif;
  font-size: clamp(4.5rem, 11vw, 10rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  color: rgba(247, 243, 235, 0.05);
}

.site-watermark--secondary {
  right: 1.5rem;
  bottom: 2rem;
  font-family: "Rubik", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(216, 166, 76, 0.12);
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

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

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

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

button {
  cursor: pointer;
}

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

.section {
  padding: clamp(3.75rem, 6vw, 5.6rem) 0;
}

.section--dark {
  background: var(--site-bg);
}

.section--light {
  background: var(--site-surface);
  color: var(--site-ink-dark);
}

.section--light .section-kicker,
.section--light .section-text,
.section--light .body-copy,
.section--light .card-copy,
.section--light .mini-copy,
.section--light .project-card__meta,
.section--light .contact-copy,
.section--light .check-list,
.section--light .process-card p,
.section--light .footer-mini,
.section--light .project-card p,
.section--light .stat-card p,
.section--light .quote-card p,
.section--light .region-note,
.section--light .field label {
  color: var(--site-copy-dark);
}

.section--light .section-title,
.section--light .display,
.section--light .page-title,
.section--light .card-title,
.section--light .price-value,
.section--light .metric-value,
.section--light .site-wordmark__name {
  color: var(--site-ink-dark);
}

.section-kicker,
.hero-kicker,
.eyebrow,
.price-label,
.mini-label,
.process-number,
.contact-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  color: var(--site-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker::before,
.hero-kicker::before,
.eyebrow::before {
  width: 0.85rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.display,
.page-title,
.section-title,
.card-title,
.footer-title,
.site-wordmark__name,
.hero-showcase__title,
.price-value,
.footer-cta__title {
  margin: 0;
  font-family: "League Spartan", "Rubik", sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.display {
  max-width: 9ch;
  font-size: clamp(3.75rem, 9vw, 7rem);
}

.page-title,
.section-title {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}

.card-title,
.hero-showcase__title {
  font-size: clamp(1.45rem, 2.4vw, 2.3rem);
}

.lead,
.section-text,
.body-copy,
.card-copy,
.mini-copy,
.contact-copy,
.project-card__meta,
.quote-card p,
.process-card p,
.footer-copy,
.footer-mini {
  margin: 0;
  color: var(--site-copy);
  line-height: 1.8;
}

.lead {
  max-width: 41rem;
  font-size: 1.06rem;
}

.button-row,
.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.82rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  background: var(--site-accent);
  border-color: var(--site-accent);
  color: #151515;
}

.button-primary:hover {
  background: #e0b86d;
  border-color: #e0b86d;
}

.button-secondary {
  background: transparent;
  border-color: var(--site-line);
  color: var(--site-ink);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.section--light .button-secondary {
  border-color: rgba(20, 21, 22, 0.14);
  color: var(--site-ink-dark);
}

.section--light .button-secondary:hover {
  border-color: rgba(20, 21, 22, 0.28);
  background: rgba(20, 21, 22, 0.04);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.7rem 0 0;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--site-line);
  background: rgba(17, 18, 19, 0.85);
  backdrop-filter: blur(16px);
}

.site-page.is-scrolled .header-inner,
.gateway-page.is-scrolled .header-inner {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.site-wordmark {
  display: inline-flex;
  align-items: center;
}

.site-wordmark__mark {
  display: none;
}

.site-wordmark__name {
  display: block;
  color: var(--site-ink);
  font-size: 1.5rem;
}

.site-wordmark__tag {
  display: block;
  margin-top: 0.25rem;
  color: rgba(247, 243, 235, 0.58);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.site-nav a,
.nav-note {
  color: rgba(247, 243, 235, 0.82);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--site-accent);
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.menu-toggle {
  display: none;
  min-height: 3rem;
  padding: 0 1rem;
  border: 1px solid var(--site-line);
  background: transparent;
  color: var(--site-ink);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-section {
  padding: clamp(1.6rem, 3vw, 2.4rem) 0 clamp(3rem, 5vw, 4.2rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  gap: clamp(1.4rem, 4vw, 2.4rem);
  align-items: end;
}

.hero-copy {
  display: grid;
  gap: 1.3rem;
}

.hero-lead {
  max-width: 40rem;
}

.hero-showcase {
  position: relative;
  display: grid;
  gap: 1rem;
}

.hero-showcase__media {
  min-height: 32rem;
  overflow: hidden;
  border: 1px solid var(--site-line);
  background: var(--site-panel);
  box-shadow: var(--site-shadow);
}

.hero-showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-showcase__panel {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border: 1px solid var(--site-line);
  background: var(--site-panel);
}

.hero-showcase__title {
  max-width: 12ch;
}

.hero-section--focus {
  position: relative;
  overflow: hidden;
  padding-top: clamp(2.4rem, 5vw, 4rem);
  padding-bottom: clamp(3.5rem, 6vw, 5.2rem);
}

.hero-section--focus::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 16%, rgba(216, 166, 76, 0.18), transparent 24%),
    radial-gradient(circle at 78% 18%, rgba(193, 128, 52, 0.12), transparent 20%),
    radial-gradient(circle at 62% 76%, rgba(216, 166, 76, 0.08), transparent 18%);
  content: "";
}

.hero-focus {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(20rem, 0.98fr);
  gap: clamp(1.5rem, 4vw, 2.8rem);
  align-items: center;
}

.hero-focus__copy {
  display: grid;
  gap: 1.35rem;
}

.hero-focus__title {
  max-width: 10.5ch;
}

.hero-focus__lead {
  max-width: 39rem;
}

.hero-focus__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  padding-top: 0.5rem;
}

.hero-focus__stat {
  display: grid;
  gap: 0.7rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(216, 166, 76, 0.18);
  background:
    linear-gradient(180deg, rgba(216, 166, 76, 0.08), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.02);
}

.hero-focus__stat strong {
  color: var(--site-ink);
  font-size: 0.98rem;
  line-height: 1.55;
}

.hero-focus__visual {
  position: relative;
  display: grid;
  gap: 1rem;
}

.hero-focus__frame {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  border: 1px solid rgba(216, 166, 76, 0.18);
  background: var(--site-panel);
  box-shadow: var(--site-shadow);
}

.hero-focus__frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 16, 17, 0.04), rgba(15, 16, 17, 0.2));
  content: "";
}

.hero-focus__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-focus__badge {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  display: grid;
  gap: 0.7rem;
  width: min(100% - 2.4rem, 20rem);
  padding: 1rem 1.05rem;
  border: 1px solid rgba(216, 166, 76, 0.18);
  background: rgba(20, 21, 22, 0.86);
  backdrop-filter: blur(14px);
}

.hero-focus__badge .body-copy {
  color: rgba(247, 243, 235, 0.84);
  line-height: 1.7;
}

.hero-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.hero-note {
  padding: 1rem;
  border: 1px solid var(--site-line);
  background: rgba(255, 255, 255, 0.02);
}

.hero-note strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--site-ink);
  font-size: 0.98rem;
  font-weight: 600;
}

.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--site-line);
  border-bottom: 1px solid var(--site-line);
  background: #121314;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 1.1rem 0;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  color: rgba(247, 243, 235, 0.84);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 48rem;
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(18rem, 1.08fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.about-media {
  position: relative;
  display: grid;
  gap: 1rem;
}

.about-media__primary,
.about-media__secondary,
.media-card {
  overflow: hidden;
  border: 1px solid var(--site-line-dark);
  background: #e8ddcb;
}

.section--dark .about-media__primary,
.section--dark .about-media__secondary,
.section--dark .media-card {
  border-color: var(--site-line);
  background: var(--site-panel);
}

.about-media__primary {
  min-height: 25rem;
}

.about-media__secondary {
  position: absolute;
  right: -0.4rem;
  bottom: -2.2rem;
  width: min(44%, 16rem);
  min-height: 14rem;
  box-shadow: var(--site-shadow);
}

.about-media img,
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  left: 1.1rem;
  top: 1.1rem;
  display: grid;
  gap: 0.45rem;
  width: min(14rem, 72%);
  padding: 1rem;
  background: rgba(20, 21, 22, 0.88);
  border: 1px solid var(--site-line);
  box-shadow: var(--site-shadow);
}

.about-badge strong {
  color: var(--site-accent);
  font-size: 2rem;
  font-family: "League Spartan", "Rubik", sans-serif;
  font-weight: 700;
}

.check-list,
.project-points,
.price-list,
.aside-list,
.contact-points {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.project-points li,
.price-list li,
.aside-list li,
.contact-points li {
  position: relative;
  padding-left: 1.2rem;
  line-height: 1.75;
}

.check-list li::before,
.project-points li::before,
.price-list li::before,
.aside-list li::before,
.contact-points li::before {
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--site-accent);
  content: "";
}

.section--dark .check-list li,
.section--dark .project-points li,
.section--dark .price-list li,
.section--dark .aside-list li,
.section--dark .contact-points li {
  color: var(--site-copy);
}

.section--light .check-list li,
.section--light .project-points li,
.section--light .price-list li,
.section--light .aside-list li,
.section--light .contact-points li {
  color: var(--site-copy-dark);
}

.service-grid,
.project-grid,
.pricing-grid,
.benefit-grid,
.process-grid,
.quote-grid,
.contact-grid,
.contact-box-grid {
  display: grid;
  gap: 1.2rem;
}

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

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

.service-card,
.project-card,
.pricing-card,
.benefit-card,
.process-card,
.quote-card,
.contact-card,
.form-card,
.feature-panel,
.stat-card,
.founder-card {
  display: grid;
  gap: 1rem;
  padding: 1.55rem;
  border: 1px solid var(--site-line);
  background: var(--site-panel);
}

.section--light .service-card,
.section--light .project-card,
.section--light .pricing-card,
.section--light .benefit-card,
.section--light .process-card,
.section--light .quote-card,
.section--light .contact-card,
.section--light .form-card,
.section--light .feature-panel,
.section--light .stat-card,
.section--light .founder-card {
  border-color: var(--site-line-dark);
  background: rgba(255, 255, 255, 0.44);
}

.service-card__top,
.project-card__top,
.pricing-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.service-icon,
.project-index,
.metric-value,
.process-number,
.region-index {
  color: var(--site-accent);
  font-family: "League Spartan", "Rubik", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.service-card__link,
.project-card__link {
  color: var(--site-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.project-card__media {
  min-height: 14rem;
  overflow: hidden;
  border: 1px solid var(--site-line);
  background: var(--site-panel-2);
}

.section--light .project-card__media {
  border-color: var(--site-line-dark);
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-tag {
  color: var(--site-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

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

.metric-value {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

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

.pricing-card {
  align-content: start;
}

.pricing-card--featured {
  background:
    linear-gradient(180deg, rgba(216, 166, 76, 0.18) 0%, rgba(29, 31, 32, 1) 100%),
    var(--site-panel);
}

.section--light .pricing-card--featured {
  background:
    linear-gradient(180deg, rgba(216, 166, 76, 0.22) 0%, rgba(255, 255, 255, 0.6) 100%),
    rgba(255, 255, 255, 0.7);
}

.price-value {
  font-size: clamp(2.3rem, 4vw, 3.55rem);
}

.price-label {
  font-size: 0.72rem;
}

.inner-hero {
  padding: clamp(2.8rem, 5vw, 4.2rem) 0 clamp(2.4rem, 4vw, 3.3rem);
}

.inner-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.8fr);
  gap: clamp(1.4rem, 4vw, 2.6rem);
  align-items: start;
}

.breadcrumb {
  display: inline-flex;
  gap: 0.5rem;
  color: rgba(247, 243, 235, 0.58);
  font-size: 0.88rem;
}

.section--light .breadcrumb {
  color: var(--site-copy-dark);
}

.founder-layout,
.contact-layout,
.quote-layout,
.projects-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1.1fr);
  gap: clamp(1.5rem, 4vw, 2.6rem);
  align-items: start;
}

.founder-portrait,
.region-card__media,
.gateway-aside__media {
  overflow: hidden;
  border: 1px solid var(--site-line-dark);
  background: #e8ddcb;
  min-height: 20rem;
}

.section--dark .founder-portrait {
  border-color: var(--site-line);
  background: var(--site-panel);
}

.founder-portrait img,
.region-card__media img,
.gateway-aside__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-note {
  display: grid;
  gap: 0.8rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--site-line-dark);
  background: rgba(255, 255, 255, 0.5);
}

.section--dark .founder-note {
  border-color: var(--site-line);
  background: rgba(255, 255, 255, 0.04);
}

.contact-layout {
  grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
}

.contact-box-grid {
  display: grid;
  gap: 1rem;
}

.contact-box strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--site-ink);
}

.section--light .contact-box strong {
  color: var(--site-ink-dark);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

.field {
  display: grid;
  gap: 0.5rem;
}

.field label {
  color: rgba(247, 243, 235, 0.72);
  font-size: 0.9rem;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--site-line);
  border-radius: 0;
  background: #111213;
  color: var(--site-ink);
  transition: border-color 180ms ease, background-color 180ms ease;
}

.section--light .field input,
.section--light .field select,
.section--light .field textarea {
  border-color: var(--site-line-dark);
  background: rgba(255, 255, 255, 0.78);
  color: var(--site-ink-dark);
}

.field textarea {
  min-height: 11.5rem;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(247, 243, 235, 0.45);
}

.section--light .field input::placeholder,
.section--light .field textarea::placeholder {
  color: rgba(20, 21, 22, 0.4);
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.button:focus-visible,
.menu-toggle:focus-visible,
.site-nav a:focus-visible,
.footer-links a:focus-visible {
  outline: none;
  border-color: var(--site-accent);
}

.form-status {
  display: none;
  padding: 0.9rem 1rem;
  border: 1px solid transparent;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  border-color: rgba(109, 174, 114, 0.4);
  background: rgba(109, 174, 114, 0.12);
  color: #d0f2d4;
}

.form-status.is-error {
  border-color: rgba(215, 98, 98, 0.38);
  background: rgba(215, 98, 98, 0.12);
  color: #ffd6d6;
}

.hero-note span,
.stat-card p,
.founder-note p,
.contact-box p {
  color: var(--site-copy);
  line-height: 1.7;
}

.section--light .hero-note span,
.section--light .stat-card p,
.section--light .founder-note p,
.section--light .contact-box p {
  color: var(--site-copy-dark);
}

.founder-note strong,
.contact-card strong {
  color: var(--site-ink);
}

.section--light .founder-note strong,
.section--light .contact-card strong {
  color: var(--site-ink-dark);
}

.footer-cta {
  padding: clamp(2.1rem, 4vw, 3rem);
  border: 1px solid var(--site-line);
  background:
    linear-gradient(135deg, rgba(216, 166, 76, 0.12) 0%, rgba(255, 255, 255, 0.02) 55%),
    var(--site-panel);
}

.footer-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
}

.footer-cta__title {
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  max-width: 14ch;
  line-height: 1.02;
}

.site-footer {
  padding: 0 0 2rem;
}

.footer-main {
  display: grid;
  gap: 2rem;
  margin-top: 1rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--site-line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(0, 0.63fr));
  gap: 1.6rem;
}

.footer-title {
  font-size: 1.2rem;
  line-height: 1;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--site-copy);
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--site-line);
  color: rgba(247, 243, 235, 0.56);
  font-size: 0.9rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

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

@media (max-width: 1080px) {
  .hero-grid,
  .hero-focus,
  .split-intro,
  .feature-layout,
  .inner-hero__grid,
  .founder-layout,
  .contact-layout,
  .projects-layout {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 860px) {
  .header-inner {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 0.8rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--site-line);
    background: rgba(16, 17, 18, 0.96);
  }

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

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-grid,
  .project-grid,
  .pricing-grid,
  .metric-grid,
  .footer-grid,
  .hero-focus__stats,
  .hero-note-grid,
  .form-grid,
  .benefit-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .footer-cta__grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.25rem, var(--site-max));
  }

  .hero-section,
  .inner-hero {
    padding-top: 2rem;
  }

  .hero-focus__frame {
    min-height: 23rem;
  }

  .hero-focus__badge {
    position: static;
    width: 100%;
  }

  .about-media__secondary {
    position: static;
    width: 100%;
    min-height: 12rem;
  }

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

  .site-topbar__track {
    padding: 0.58rem 0;
  }

  .site-watermark--primary {
    top: 5.4rem;
    left: 0.7rem;
    font-size: clamp(2.8rem, 15vw, 4.8rem);
  }

  .site-watermark--secondary {
    right: 0.7rem;
    bottom: 1rem;
    font-size: clamp(1.5rem, 9vw, 2.4rem);
  }
}
