:root {
  --ink: #151515;
  --muted: #66615d;
  --paper: #fffaf1;
  --surface: #ffffff;
  --gold: #ffd10a;
  --orange: #f58216;
  --peach: #ffa37d;
  --line: rgba(21, 21, 21, 0.14);
  --shadow: 0 24px 80px rgba(21, 21, 21, 0.16);
  --soft-shadow: 0 18px 52px rgba(58, 35, 12, 0.12);
  --radius: 8px;
  --max-width: 1180px;
  --wide-width: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 209, 10, 0.08), transparent 460px),
    var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(255, 250, 241, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.has-shadow {
  background: rgba(255, 250, 241, 0.96);
  box-shadow: 0 12px 36px rgba(21, 21, 21, 0.08);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 20px);
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  min-height: calc(92vh - 78px);
  padding: clamp(48px, 7vw, 92px) clamp(20px, 5vw, 64px) 80px;
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(255, 209, 10, 0.95), rgba(245, 130, 22, 0.86) 48%, rgba(255, 250, 241, 0.98) 48%),
    var(--paper);
}

.hero::before {
  position: absolute;
  top: 28px;
  right: 8vw;
  width: 170px;
  height: 170px;
  content: "";
  border: 2px solid rgba(21, 21, 21, 0.16);
  border-radius: 50%;
}

.hero::after {
  position: absolute;
  right: 22vw;
  bottom: 72px;
  width: 120px;
  height: 120px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 9.2vw, 8.15rem);
}

h2 {
  max-width: 880px;
  font-size: clamp(2.35rem, 6vw, 5.2rem);
}

h3 {
  margin: 0 0 10px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 600;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 8px 8px 0 var(--ink);
}

.button-primary {
  background: var(--ink);
  color: #fff;
}

.button-secondary {
  background: var(--surface);
}

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

.hero-photo-card {
  position: relative;
  padding: clamp(10px, 2vw, 16px);
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  isolation: isolate;
}

.hero-photo-card::before {
  position: absolute;
  inset: 28px -16px -16px 34px;
  z-index: -1;
  content: "";
  background: var(--peach);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
}

.hero-photo-card img {
  aspect-ratio: 4 / 5;
  width: min(100%, 420px);
  border-radius: var(--radius);
  object-fit: cover;
}

.photo-note {
  position: absolute;
  right: 0;
  bottom: 24px;
  left: 42px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(21, 21, 21, 0.88);
  border-radius: var(--radius) 0 0 var(--radius);
}

.photo-note span,
.photo-note strong {
  display: block;
}

.photo-note span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.photo-note strong {
  margin-top: 2px;
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.15;
}

.hero-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 28px;
  padding: 16px clamp(20px, 5vw, 64px);
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.credibility-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(var(--max-width), calc(100% - 40px));
  margin: clamp(26px, 4vw, 42px) auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.credibility-bar div {
  min-height: 118px;
  padding: clamp(18px, 3vw, 24px);
  background: rgba(255, 255, 255, 0.82);
}

.credibility-bar strong {
  display: block;
  color: var(--orange);
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.credibility-bar span {
  display: block;
  max-width: 210px;
  margin-top: 10px;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.25;
}

.section {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 84px) 0;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: clamp(28px, 5vw, 52px);
}

.section-note {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.services-grid,
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.video-card,
.about-panel,
.form-embed,
.testimonial-card,
.project-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.video-card:hover,
.about-panel:hover,
.form-embed:hover,
.testimonial-card:hover,
.project-card:hover {
  border-color: rgba(245, 130, 22, 0.38);
  box-shadow: 0 24px 68px rgba(58, 35, 12, 0.18);
  transform: translateY(-6px);
}

.service-card {
  min-height: 260px;
  padding: 24px;
}

.service-number {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--orange);
  font-family: "Anton", Impact, sans-serif;
  font-size: 2rem;
}

.service-card p,
.video-card p,
.about p,
.site-footer p,
.form-instructions p {
  margin: 0;
  color: var(--muted);
}

.video-card {
  overflow: hidden;
}

.video-placeholder {
  display: grid;
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 245px;
  place-items: center;
  padding: 20px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(rgba(21, 21, 21, 0.2), rgba(21, 21, 21, 0.55)),
    repeating-linear-gradient(135deg, #1f1f1f 0 18px, #2c2c2c 18px 36px);
  text-align: center;
  transition: filter 220ms ease, transform 220ms ease;
}

.video-card:hover .video-placeholder {
  filter: saturate(1.12) contrast(1.05);
  transform: scale(1.015);
}

.video-placeholder iframe,
.video-placeholder video {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
  border: 0;
  border-radius: 0;
  object-fit: contain;
}

.video-placeholder:has(iframe),
.video-placeholder:has(video) {
  display: block;
  min-height: 0;
  padding: 0;
  background: #111;
}

.video-placeholder:has(iframe) > span,
.video-placeholder:has(iframe) > small,
.video-placeholder:has(video) > span,
.video-placeholder:has(video) > small {
  display: none;
}

.video-placeholder span {
  display: block;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.video-placeholder small {
  display: block;
  max-width: 280px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.video-card h3,
.video-card p {
  padding-right: 20px;
  padding-left: 20px;
}

.video-card h3 {
  padding-top: 20px;
}

.video-card p {
  padding-bottom: 22px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-grid figure {
  position: relative;
  min-height: 240px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ddd;
  box-shadow: var(--soft-shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.gallery-grid figure:hover {
  box-shadow: 0 24px 68px rgba(58, 35, 12, 0.18);
  transform: translateY(-5px);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.06);
}

.gallery-grid figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(21, 21, 21, 0.82);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.about-copy p + p {
  margin-top: 18px;
}

.about-panel {
  padding: 26px;
  border-top: 8px solid var(--orange);
}

.about-panel ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.about-panel li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.founder {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
}

.founder-portrait {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.founder-portrait::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(21, 21, 21, 0.34));
  pointer-events: none;
}

.founder-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 260ms ease;
}

.founder-portrait:hover img {
  transform: scale(1.04);
}
.portrait-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink);
  border-top: 2px solid var(--ink);
}

.portrait-stats div {
  padding: 14px 12px;
  background: var(--surface);
  text-align: center;
}

.portrait-stats strong {
  display: block;
  color: var(--orange);
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1;
}

.portrait-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.founder-copy p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
}

.testimonial-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card,
.project-card {
  padding: clamp(22px, 3vw, 30px);
}

.testimonial-card {
  display: grid;
  align-content: space-between;
  min-height: 270px;
  background:
    linear-gradient(145deg, rgba(255, 209, 10, 0.12), rgba(255, 255, 255, 0.96) 42%),
    var(--surface);
}

.testimonial-card p {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 700;
  line-height: 1.45;
}

.testimonial-card strong,
.testimonial-card span,
.project-card span {
  display: block;
}

.testimonial-card strong {
  font-size: 0.98rem;
}

.testimonial-card span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.project-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(21, 21, 21, 0.9), rgba(21, 21, 21, 0.72)),
    linear-gradient(135deg, var(--orange), var(--gold));
  color: #fff;
}

.project-card::after {
  position: absolute;
  right: -42px;
  bottom: -46px;
  width: 160px;
  height: 160px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.project-card span {
  width: max-content;
  max-width: 100%;
  margin-bottom: 70px;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--gold);
  border-radius: var(--radius);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.inquiry {
  width: min(980px, calc(100% - 40px));
}

.form-embed {
  min-height: 360px;
  padding: clamp(24px, 5vw, 44px);
  border: 2px dashed rgba(21, 21, 21, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 209, 10, 0.14), rgba(255, 255, 255, 0.92) 38%),
    var(--surface);
}

.form-instructions {
  max-width: 760px;
}

.form-instructions h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max-width), calc(100% - 40px));
  margin: clamp(10px, 3vw, 34px) auto clamp(54px, 7vw, 84px);
  padding: clamp(26px, 5vw, 44px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(245, 130, 22, 0.92), rgba(21, 21, 21, 0.96)),
    var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-banner h2 {
  max-width: 720px;
  font-size: clamp(2rem, 5vw, 4.6rem);
}

.cta-banner .eyebrow {
  color: var(--gold);
}

.cta-banner .button-primary {
  flex: 0 0 auto;
  color: var(--ink);
  background: #fff;
}

code {
  padding: 2px 6px;
  background: rgba(245, 130, 22, 0.14);
  border-radius: 5px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 34px;
  padding: clamp(38px, 6vw, 64px) clamp(20px, 5vw, 64px);
  color: #fff;
  background: var(--ink);
}

.footer-brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

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

.footer-links h2 {
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

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

.copyright {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}

@media (min-width: 1500px) {
  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 480px);
    gap: 92px;
    padding-right: max(64px, calc((100vw - var(--wide-width)) / 2));
    padding-left: max(64px, calc((100vw - var(--wide-width)) / 2));
  }

  .section,
  .credibility-bar,
  .cta-banner {
    width: min(var(--wide-width), calc(100% - 96px));
  }

  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .inquiry {
    width: min(1040px, calc(100% - 96px));
  }

  .gallery-grid figure,
  .gallery-grid img {
    min-height: 280px;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero,
  .about,
  .founder {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    max-width: 420px;
  }

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

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

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

@media (max-width: 760px) {
  .site-header {
    align-items: center;
  }

  .brand span {
    max-width: 170px;
    line-height: 1.15;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 14px;
    left: 14px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding: 13px 10px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    padding-top: 48px;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .services-grid,
  .video-grid,
  .gallery-grid,
  .credibility-bar,
  .testimonial-grid,
  .project-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    align-items: stretch;
    flex-direction: column;
  }

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

@media (max-width: 460px) {
  .portrait-stats {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero-strip {
    gap: 18px;
    font-size: 0.78rem;
  }

  .photo-note {
    left: 22px;
  }

  h1 {
    font-size: clamp(2.75rem, 17vw, 4.45rem);
  }
}

