:root {
  --paper: #f3f0e8;
  --paper-2: #e8e2d4;
  --white: #fbf8f1;
  --ink: #101216;
  --ink-2: #2c3038;
  --muted: #6a655c;
  --line: #d8d0c0;
  --line-strong: #c4bba8;
  --accent: #0f5c4c;
  --accent-2: #0c473b;
  --gold: #b8954a;
  --gold-soft: #c9a36a;
  --dark: #0c0e12;
  --dark-2: #16191f;
  --on-dark: #efe8d8;
  --on-dark-muted: #b7b0a3;
  --danger: #8b3a2a;
  --radius: 14px;
  --header-h: 76px;
  --wrap: 1180px;
  --font-serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --font-sans: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 20px 50px -28px rgba(16, 18, 22, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16.5px;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

button {
  cursor: pointer;
  background: none;
  border: none;
}

::selection {
  background: var(--accent);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--ink);
  color: var(--white);
  padding: 8px 12px;
  z-index: 100;
}

.skip:focus {
  top: 12px;
}

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

.wrap-wide {
  width: min(calc(100% - 40px), 1280px);
  margin-inline: auto;
}

.kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

h1,
.display {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 3.6vw, 3.15rem);
}

h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: -0.025em;
}

p {
  margin: 0;
}

.lede {
  font-size: 1.08rem;
  color: var(--ink-2);
  max-width: 62ch;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(243, 240, 232, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled,
.site-header.solid {
  border-bottom-color: var(--line);
  background: rgba(243, 240, 232, 0.94);
}

.site-header.on-dark {
  background: rgba(12, 14, 18, 0.72);
  color: var(--on-dark);
}

.site-header.on-dark.is-scrolled {
  background: rgba(12, 14, 18, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - 40px), var(--wrap));
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand svg {
  width: 34px;
  height: 34px;
  color: var(--accent);
}

.on-dark .brand svg {
  color: var(--gold-soft);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-text em {
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--font-mono);
}

.on-dark .brand-text em {
  color: var(--on-dark-muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
}

.on-dark .nav a {
  color: var(--on-dark);
}

.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.25s var(--ease);
}

.nav a:not(.btn):hover::after,
.nav a.active:not(.btn)::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  position: relative;
}

.on-dark .nav-toggle {
  border-color: rgba(239, 232, 216, 0.22);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 11px;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  content: "";
}

.nav-toggle span {
  top: 20px;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

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

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--accent);
}

.on-dark .nav .btn-primary {
  background: var(--paper);
  color: var(--ink);
}

.on-dark .nav .btn-primary:hover {
  background: var(--gold-soft);
  color: var(--dark);
}

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--ink);
  background: transparent;
}

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

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

.btn-outline-light {
  border-color: rgba(239, 232, 216, 0.28);
  color: var(--on-dark);
}

.btn-outline-light:hover {
  background: var(--on-dark);
  color: var(--dark);
}

.btn-sm {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.86rem;
}

.hero {
  position: relative;
  background: var(--dark);
  color: var(--on-dark);
  overflow: hidden;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at 70% 40%, black 20%, transparent 72%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -80px;
  top: -80px;
  background: radial-gradient(circle, rgba(15, 92, 76, 0.38), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding: 72px 0 64px;
}

.hero-copy .kicker {
  margin-bottom: 18px;
}

.hero h1 {
  color: var(--on-dark);
  max-width: 12ch;
}

.hero .identity {
  margin: 18px 0 22px;
  color: var(--on-dark-muted);
  font-size: 0.98rem;
}

.hero .identity strong {
  color: var(--on-dark);
  font-weight: 600;
}

.hero .lede {
  color: #d5cfc3;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(239, 232, 216, 0.1);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}

.arch {
  position: relative;
  min-height: 420px;
}

.arch svg {
  width: 100%;
  height: auto;
}

.stats {
  background: var(--dark-2);
  color: var(--on-dark);
  border-top: 1px solid rgba(239, 232, 216, 0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 28px 0;
}

.stat {
  padding: 8px 18px;
  border-right: 1px solid rgba(239, 232, 216, 0.08);
}

.stat:last-child {
  border-right: none;
}

.stat b {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--gold-soft);
}

.stat span {
  color: var(--on-dark-muted);
  font-size: 0.86rem;
}

.marquee-wrap {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  padding: 18px 0;
}

.marquee {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 42s linear infinite;
}

.marquee span {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 22px;
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  padding: 96px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  margin-bottom: 48px;
  align-items: start;
}

.section-index {
  font-family: var(--font-mono);
  color: var(--gold);
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  padding-top: 10px;
}

.section-head p {
  margin-top: 14px;
  color: var(--muted);
  max-width: 58ch;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}

.about-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.about-points li {
  list-style: none;
  padding-left: 18px;
  position: relative;
  color: var(--ink-2);
}

.about-points {
  padding: 0;
  margin-left: 0;
}

.about-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  border: 1px solid var(--accent);
  position: absolute;
  left: 0;
  top: 0.55em;
  transform: rotate(45deg);
}

.fact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.fact-card + .fact-card {
  margin-top: 16px;
}

.fact-card h3 {
  margin-bottom: 8px;
}

.fact-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.fact-list span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  font-size: 0.92rem;
}

.fact-list b {
  font-weight: 600;
}

.build-grid,
.services-grid,
.industries,
.skills,
.products {
  display: grid;
  gap: 16px;
}

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

.build-card,
.service-card,
.skill-card,
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.build-card:hover,
.service-card:hover,
.project-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.build-card .icon,
.service-card .icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--accent);
}

.build-card p,
.service-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.project-list {
  display: grid;
  gap: 22px;
}

.project-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.project-visual {
  min-height: 220px;
  position: relative;
  background: var(--dark);
  overflow: hidden;
}

.project-visual span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.pv-1 { background: radial-gradient(circle at 20% 20%, #1b6b5a, transparent 42%), linear-gradient(160deg, #12151b, #0c0e12); }
.pv-2 { background: radial-gradient(circle at 80% 30%, #3a5a8a, transparent 40%), linear-gradient(160deg, #12151b, #0c0e12); }
.pv-3 { background: radial-gradient(circle at 50% 80%, #8a6a32, transparent 40%), linear-gradient(160deg, #12151b, #0c0e12); }
.pv-4 { background: radial-gradient(circle at 30% 70%, #5a3a6a, transparent 42%), linear-gradient(160deg, #12151b, #0c0e12); }
.pv-5 { background: radial-gradient(circle at 70% 20%, #2a6a8a, transparent 42%), linear-gradient(160deg, #12151b, #0c0e12); }
.pv-6 { background: radial-gradient(circle at 40% 40%, #6a3a32, transparent 42%), linear-gradient(160deg, #12151b, #0c0e12); }
.pv-7 { background: radial-gradient(circle at 60% 60%, #326a4a, transparent 42%), linear-gradient(160deg, #12151b, #0c0e12); }
.pv-8 { background: radial-gradient(circle at 20% 80%, #4a6a8a, transparent 42%), linear-gradient(160deg, #12151b, #0c0e12); }

.nodes,
.nodes::before,
.nodes::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(201, 163, 106, 0.35);
  border-radius: 50%;
}

.nodes {
  width: 86px;
  height: 86px;
  top: 36px;
  left: 40px;
}

.nodes::before {
  width: 18px;
  height: 18px;
  top: 34px;
  left: 34px;
  background: var(--accent);
}

.nodes::after {
  width: 140px;
  height: 1px;
  top: 42px;
  left: 86px;
  border: 0;
  background: linear-gradient(90deg, var(--gold-soft), transparent);
  border-radius: 0;
}

.project-body {
  padding: 28px 30px 26px;
}

.project-body .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 14px;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--muted);
}

.project-body p {
  color: var(--ink-2);
}

.project-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

.project-meta h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 6px;
}

.project-meta p,
.feature-list {
  font-size: 0.92rem;
  color: var(--ink-2);
}

.feature-list {
  margin: 0;
  padding-left: 16px;
}

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

.industry {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 16px;
  background: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

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

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

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

.chips span {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.82rem;
  color: var(--ink-2);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  min-height: 170px;
}

.step b {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.step h3 {
  margin: 14px 0 8px;
  font-size: 1.02rem;
}

.step p {
  color: var(--muted);
  font-size: 0.9rem;
}

.principles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.principles span {
  border-bottom: 1px solid var(--line-strong);
  padding: 4px 0;
  font-size: 0.92rem;
  color: var(--ink-2);
}

.company-band {
  background: var(--dark);
  color: var(--on-dark);
}

.company-band h2,
.company-band h3 {
  color: var(--on-dark);
}

.company-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
}

.meaning {
  display: grid;
  gap: 16px;
}

.meaning article {
  border-top: 1px solid rgba(239, 232, 216, 0.12);
  padding-top: 16px;
}

.meaning h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.meaning p {
  color: var(--on-dark-muted);
}

.freelance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.page-hero {
  padding: 72px 0 28px;
}

.page-hero h1 {
  max-width: 16ch;
}

.page-hero .lede {
  margin-top: 16px;
}

.timeline {
  display: grid;
  gap: 18px;
}

.job {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.job .role {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.contact-card,
.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.contact-list a,
.contact-list p {
  display: block;
}

.contact-list small {
  display: block;
  color: var(--muted);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
  margin-bottom: 4px;
}

.form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field span {
  font-size: 0.86rem;
  font-weight: 600;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
  background: var(--white);
}

.form-note {
  font-size: 0.86rem;
  color: var(--muted);
}

.form-success {
  display: none;
  background: #e7f0e8;
  border: 1px solid #b7d0bc;
  color: var(--accent-2);
  padding: 12px 14px;
  border-radius: 10px;
}

.form-success.show {
  display: block;
}

.form-error {
  display: none;
  background: #f7e8e4;
  border: 1px solid #e0b8ae;
  color: var(--danger);
  padding: 12px 14px;
  border-radius: 10px;
}

.form-error.show {
  display: block;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.cta-band {
  padding: 72px 0;
}

.cta-box {
  background: var(--ink);
  color: var(--on-dark);
  border-radius: 24px;
  padding: 48px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
}

.cta-box h2 {
  color: var(--on-dark);
  max-width: 14ch;
}

.cta-box p {
  margin-top: 12px;
  color: var(--on-dark-muted);
  max-width: 48ch;
}

.site-footer {
  background: var(--dark);
  color: var(--on-dark-muted);
  padding: 56px 0 28px;
  border-top: 1px solid rgba(239, 232, 216, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(239, 232, 216, 0.08);
}

.site-footer h3,
.site-footer strong {
  color: var(--on-dark);
}

.site-footer a:hover {
  color: var(--on-dark);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 18px;
  font-size: 0.86rem;
}

.note {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 8px;
}

.social-block {
  background: var(--white);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  padding: 24px;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .company-grid,
  .contact-grid,
  .project-card,
  .cta-box,
  .section-head,
  .footer-grid,
  .freelance-grid {
    grid-template-columns: 1fr;
  }

  .section-index {
    padding-top: 0;
  }

  .stats-grid,
  .build-grid,
  .process,
  .industries,
  .skills,
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .arch {
    min-height: 0;
    max-width: 420px;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 16px auto;
    background: var(--white);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    color: var(--ink) !important;
    padding: 10px 8px;
  }

  .nav .btn {
    margin-top: 8px;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .wrap,
  .wrap-wide,
  .header-inner {
    width: min(calc(100% - 28px), var(--wrap));
  }

  .section {
    padding: 72px 0;
  }

  .stats-grid,
  .build-grid,
  .process,
  .industries,
  .skills,
  .services-grid,
  .project-meta {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(239, 232, 216, 0.08);
    padding: 16px 0;
  }

  .hero-grid {
    padding: 48px 0 40px;
  }

  .cta-box,
  .project-body,
  .form,
  .contact-card {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee { animation: none; }
  .btn:hover,
  .project-card:hover,
  .service-card:hover,
  .build-card:hover {
    transform: none;
  }
}
