:root {
  --bg: #f7f0e1;
  --bg-deep: #eadfcb;
  --paper: rgba(255, 250, 242, 0.9);
  --paper-strong: #fffaf2;
  --paper-soft: rgba(255, 252, 247, 0.68);
  --ink: #17202d;
  --muted: #5b6676;
  --muted-soft: #788191;
  --line: rgba(23, 32, 45, 0.09);
  --line-strong: rgba(23, 32, 45, 0.17);
  --accent: #16756c;
  --accent-cool: #3152c1;
  --accent-warm: #ca6c45;
  --accent-gold: #d6a545;
  --night: #161d29;
  --night-soft: #22314b;
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow-lg: 0 28px 80px rgba(17, 24, 36, 0.16);
  --shadow-md: 0 18px 48px rgba(17, 24, 36, 0.1);
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, serif;
  --font-body: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  --font-accent: "Gill Sans", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 8%, rgba(22, 117, 108, 0.1), transparent 22%),
    radial-gradient(circle at 82% 16%, rgba(49, 82, 193, 0.1), transparent 18%),
    linear-gradient(180deg, var(--bg) 0%, #f3ebdd 42%, var(--bg-deep) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 32, 45, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 45, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 72%);
  pointer-events: none;
}

::selection {
  background: rgba(22, 117, 108, 0.18);
}

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

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.88em;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: clip;
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: min(49rem, 84vh);
  background:
    radial-gradient(circle at 85% 10%, rgba(49, 82, 193, 0.34), transparent 24%),
    radial-gradient(circle at 12% 18%, rgba(22, 117, 108, 0.28), transparent 24%),
    linear-gradient(180deg, #141b25 0%, #1c2432 58%, rgba(20, 27, 37, 0.96) 76%, transparent 100%);
  pointer-events: none;
}

.site-shell::after {
  content: "";
  position: absolute;
  top: 38rem;
  left: 18%;
  width: 74%;
  height: 18rem;
  background: radial-gradient(circle, rgba(255, 250, 242, 0.46), transparent 70%);
  pointer-events: none;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  pointer-events: none;
  opacity: 0.72;
}

.ambient-one {
  top: 4rem;
  right: -4rem;
  width: 22rem;
  height: 22rem;
  background: radial-gradient(circle, rgba(202, 108, 69, 0.18), transparent 72%);
}

.ambient-two {
  top: 24rem;
  left: -8rem;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(22, 117, 108, 0.18), transparent 72%);
}

.ambient-three {
  bottom: 12rem;
  right: 10%;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(214, 165, 69, 0.18), transparent 68%);
}

.topbar,
.section,
.footer {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 1rem;
  z-index: 20;
  margin-top: 1.15rem;
  padding: 0.85rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: rgba(16, 22, 32, 0.55);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 36px rgba(10, 16, 28, 0.26);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 18px;
  font-family: var(--font-display);
  font-size: 1.28rem;
  color: #fff7ef;
  background: linear-gradient(135deg, var(--accent-cool), var(--accent));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}

.brand-copy strong {
  color: #fbf5ec;
  font-size: 0.98rem;
}

.brand-copy span:last-child {
  color: rgba(248, 242, 232, 0.62);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.nav a {
  padding: 0.62rem 0.98rem;
  border-radius: 999px;
  color: rgba(248, 242, 232, 0.72);
  font-size: 0.92rem;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a.active {
  color: #fff9f1;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.button,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button {
  color: #fff8f1;
  background: linear-gradient(135deg, var(--accent-cool), var(--accent));
  box-shadow: 0 16px 34px rgba(22, 117, 108, 0.28);
}

.button-ghost {
  color: #fff9f1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.button:hover,
.button-ghost:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #fff9f1;
  font-weight: 600;
}

.text-link::after {
  content: "+";
  font-size: 1rem;
}

.section {
  padding: clamp(4.5rem, 8vw, 6.25rem) 0;
}

section[id] {
  scroll-margin-top: 7rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 2rem;
  align-items: stretch;
  padding-top: 4.5rem;
}

.hero-copy,
.hero-panel,
.project-card,
.service-card,
.panel-card,
.process-card {
  border-radius: var(--radius-xl);
}

.hero-copy {
  position: relative;
  padding: 2.2rem 2rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(150deg, rgba(15, 21, 33, 0.9), rgba(20, 29, 44, 0.76) 58%, rgba(15, 23, 36, 0.62) 100%);
  box-shadow: 0 30px 90px rgba(9, 15, 25, 0.34);
  backdrop-filter: blur(14px);
  color: #f8f3ea;
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: auto auto -7rem -4rem;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(122, 44, 255, 0.24), transparent 68%);
  pointer-events: none;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.26), transparent 72%);
  pointer-events: none;
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.hero-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.hero-flags span {
  padding: 0.52rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(248, 242, 232, 0.82);
  font-family: var(--font-accent);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 0.95rem;
  color: var(--muted);
  font-family: var(--font-accent);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(248, 242, 232, 0.66);
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 9ch;
  color: #fff8ef;
  font-size: clamp(3.8rem, 8vw, 6.6rem);
  line-height: 0.92;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}

.lede {
  max-width: 37rem;
  margin: 1.35rem 0 0;
  color: rgba(248, 242, 232, 0.9);
  font-size: clamp(1.08rem, 2.4vw, 1.28rem);
  line-height: 1.8;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.15rem;
  margin-top: 1.95rem;
}

.hero-note {
  max-width: 31rem;
  margin: 1.4rem 0 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(158, 116, 255, 0.18);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(122, 44, 255, 0.08));
  color: rgba(248, 242, 232, 0.8);
  line-height: 1.7;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  max-width: 47rem;
  padding: 0;
  margin: 2.15rem 0 0;
  list-style: none;
}

.stat-strip li {
  position: relative;
  padding: 1.12rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(10px);
}

.stat-strip li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 999px;
}

.stat-strip li:nth-child(1)::before {
  background: linear-gradient(90deg, var(--accent), rgba(22, 117, 108, 0));
}

.stat-strip li:nth-child(2)::before {
  background: linear-gradient(90deg, var(--accent-warm), rgba(202, 108, 69, 0));
}

.stat-strip li:nth-child(3)::before {
  background: linear-gradient(90deg, var(--accent-cool), rgba(49, 82, 193, 0));
}

.stat-strip span,
.panel-kicker,
.shot-copy span,
.service-number {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.stat-strip span {
  color: rgba(248, 242, 232, 0.6);
}

.stat-strip strong {
  display: block;
  color: #fff8ef;
  font-size: 1rem;
}

.hero-panel {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(23, 32, 45, 0.08);
  background: rgba(255, 250, 242, 0.84);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(11, 18, 30, 0.24);
}

.panel-card {
  border: 1px solid rgba(23, 32, 45, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 238, 226, 0.92));
}

.panel-card-large {
  padding: 1.85rem;
}

.panel-card-large h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.04;
  margin-bottom: 0.85rem;
}

.panel-card-large p:last-child,
.panel-card-small p,
.section-heading p:last-child,
.project-copy p,
.service-card p,
.about-copy p,
.process-card p,
.contact-lead p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.panel-card-small {
  padding: 1.3rem;
}

.panel-card-small:first-child {
  background: linear-gradient(180deg, rgba(22, 117, 108, 0.08), rgba(255, 255, 255, 0.92));
}

.offset-card {
  transform: translateY(1.35rem) rotate(-1deg);
  background: linear-gradient(180deg, rgba(49, 82, 193, 0.08), rgba(255, 255, 255, 0.92));
}

.panel-card-small strong {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
}

.ticker-section {
  padding-top: 1.6rem;
}

.ticker {
  position: relative;
  overflow: hidden;
  padding: 0.95rem;
  border: 1px solid rgba(23, 32, 45, 0.08);
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.78);
  box-shadow: var(--shadow-md);
}

.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.ticker::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 250, 242, 0.98), rgba(255, 250, 242, 0));
}

.ticker::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 250, 242, 0.98), rgba(255, 250, 242, 0));
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 0.8rem;
  animation: ticker-move 22s linear infinite;
}

.ticker-track span {
  padding: 0.78rem 1rem;
  border-radius: 999px;
  background: var(--paper-strong);
  border: 1px solid rgba(23, 32, 45, 0.08);
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
}

.section-heading {
  margin-bottom: 2.3rem;
}

.heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 1.4rem 3rem;
  align-items: start;
}

.section h2 {
  color: var(--ink);
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
  line-height: 1.02;
}

.section-heading p:last-child {
  max-width: 37ch;
  font-size: 1rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: start;
}

.project-card {
  grid-column: span 4;
  padding: 1.05rem;
  border: 1px solid rgba(23, 32, 45, 0.08);
  background: rgba(255, 250, 242, 0.88);
  box-shadow: var(--shadow-md);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.project-card:hover,
.service-card:hover,
.process-card:hover,
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 78px rgba(17, 24, 36, 0.18);
}

.project-feature {
  grid-column: span 7;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(250px, 0.85fr);
  gap: 1rem;
  align-items: stretch;
  background: linear-gradient(145deg, #161d29, #212b3d);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fcf7ee;
}

.project-feature .project-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.35rem 0.25rem 0.35rem 0;
}

.project-feature .project-copy p {
  color: rgba(252, 247, 238, 0.72);
}

.project-feature .project-copy h3 {
  font-size: 2rem;
}

.project-feature .tag-row span {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(252, 247, 238, 0.78);
}

.project-wide {
  grid-column: span 7;
}

.project-tall {
  grid-column: span 5;
}

.project-note {
  grid-column: span 5;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, rgba(202, 108, 69, 0.16), rgba(255, 250, 242, 0.92));
  border-style: dashed;
}

.project-shot {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 240px;
  padding: 1rem;
  border-radius: calc(var(--radius-lg) - 4px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.project-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.84));
}

.project-shot::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  pointer-events: none;
}

.project-image {
  display: block;
  width: 100%;
  min-height: 240px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 4px);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.project-feature .project-image {
  min-height: 340px;
}

.project-tall .project-image {
  min-height: 360px;
}

.project-wide .project-image {
  min-height: 290px;
}

.shot-01 {
  min-height: 340px;
  background:
    radial-gradient(circle at 15% 22%, rgba(255, 255, 255, 0.28), transparent 24%),
    linear-gradient(145deg, rgba(11, 115, 107, 0.98), rgba(36, 75, 183, 0.95) 58%, rgba(22, 29, 41, 0.96) 100%);
}

.shot-02 {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.3), transparent 22%),
    linear-gradient(145deg, rgba(202, 108, 69, 0.95), rgba(214, 165, 69, 0.88));
}

.shot-03 {
  min-height: 360px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.24), transparent 22%),
    linear-gradient(160deg, rgba(20, 27, 37, 0.98), rgba(34, 49, 75, 0.92));
}

.shot-04 {
  min-height: 290px;
  background:
    radial-gradient(circle at 68% 16%, rgba(255, 255, 255, 0.24), transparent 20%),
    linear-gradient(145deg, rgba(20, 27, 37, 0.96), rgba(22, 117, 108, 0.92));
}

.shot-05 {
  background:
    radial-gradient(circle at 52% 22%, rgba(255, 255, 255, 0.28), transparent 24%),
    linear-gradient(145deg, rgba(214, 165, 69, 0.92), rgba(202, 108, 69, 0.96));
}

.shot-copy {
  position: relative;
  z-index: 1;
  max-width: 18rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  color: #fffdf8;
  background: rgba(20, 27, 37, 0.26);
  backdrop-filter: blur(14px);
}

.shot-copy span {
  color: rgba(255, 253, 248, 0.7);
}

.shot-copy strong {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 1.18rem;
  line-height: 1.22;
}

.shot-copy code {
  display: inline-block;
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 253, 248, 0.9);
}

.project-copy {
  padding: 1rem 0.35rem 0.25rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.tag-row span {
  padding: 0.42rem 0.74rem;
  border-radius: 999px;
  border: 1px solid rgba(23, 32, 45, 0.08);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  color: var(--muted);
}

.project-copy h3,
.service-card h3,
.process-card h3 {
  margin: 0 0 0.58rem;
  font-size: 1.36rem;
  line-height: 1.18;
}

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

.service-card {
  position: relative;
  grid-column: span 4;
  min-height: 250px;
  padding: 1.75rem;
  border: 1px solid rgba(23, 32, 45, 0.08);
  background: rgba(255, 250, 242, 0.86);
  box-shadow: var(--shadow-md);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  height: 4px;
  border-radius: 999px;
}

.service-card:nth-child(1) {
  grid-column: span 5;
  background: linear-gradient(180deg, rgba(22, 117, 108, 0.08), rgba(255, 250, 242, 0.94));
}

.service-card:nth-child(1)::before {
  background: linear-gradient(90deg, var(--accent), rgba(22, 117, 108, 0));
}

.service-card:nth-child(2) {
  grid-column: span 3;
  transform: translateY(1rem);
  background: linear-gradient(180deg, rgba(49, 82, 193, 0.08), rgba(255, 250, 242, 0.94));
}

.service-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--accent-cool), rgba(49, 82, 193, 0));
}

.service-card:nth-child(3) {
  grid-column: span 4;
  background: linear-gradient(180deg, rgba(202, 108, 69, 0.08), rgba(255, 250, 242, 0.94));
}

.service-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--accent-warm), rgba(202, 108, 69, 0));
}

.service-number {
  color: var(--accent);
}

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

.pricing-card {
  position: relative;
  grid-column: span 4;
  min-height: 220px;
  padding: 1.65rem;
  border: 1px solid rgba(23, 32, 45, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 242, 0.88);
  box-shadow: var(--shadow-md);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  height: 4px;
  border-radius: 999px;
}

.pricing-card:nth-child(1) {
  background: linear-gradient(180deg, rgba(22, 117, 108, 0.08), rgba(255, 250, 242, 0.94));
}

.pricing-card:nth-child(1)::before {
  background: linear-gradient(90deg, var(--accent), rgba(22, 117, 108, 0));
}

.pricing-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(49, 82, 193, 0.08), rgba(255, 250, 242, 0.94));
}

.pricing-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--accent-cool), rgba(49, 82, 193, 0));
}

.pricing-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(122, 44, 255, 0.08), rgba(255, 250, 242, 0.94));
}

.pricing-card:nth-child(3)::before {
  background: linear-gradient(90deg, rgba(122, 44, 255, 0.82), rgba(122, 44, 255, 0));
}

.pricing-card:nth-child(4) {
  background: linear-gradient(180deg, rgba(202, 108, 69, 0.08), rgba(255, 250, 242, 0.94));
}

.pricing-card:nth-child(4)::before {
  background: linear-gradient(90deg, var(--accent-warm), rgba(202, 108, 69, 0));
}

.pricing-card:nth-child(5) {
  background: linear-gradient(180deg, rgba(20, 27, 37, 0.08), rgba(255, 250, 242, 0.96));
}

.pricing-card:nth-child(5)::before {
  background: linear-gradient(90deg, rgba(20, 27, 37, 0.92), rgba(20, 27, 37, 0));
}

.pricing-card-wide {
  grid-column: span 6;
}

.pricing-label {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--muted);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pricing-card strong {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.65rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.pricing-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
  gap: 1.5rem;
  align-items: stretch;
}

.about-copy {
  padding: 2.35rem;
  border: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(150deg, #161d29, #22314b);
  box-shadow: 0 28px 86px rgba(15, 21, 33, 0.28);
}

.about-copy .eyebrow {
  color: rgba(248, 242, 232, 0.62);
}

.about-copy h2 {
  color: #fff8ef;
  max-width: 10ch;
}

.about-copy p {
  color: rgba(248, 242, 232, 0.78);
}

.about-copy p + p {
  margin-top: 1rem;
}

.process-stack {
  display: grid;
  gap: 1rem;
}

.process-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.45rem;
  border: 1px solid rgba(23, 32, 45, 0.08);
  background: rgba(255, 250, 242, 0.88);
  box-shadow: var(--shadow-md);
}

.process-card span {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff8ef;
  background: linear-gradient(135deg, var(--accent-cool), var(--accent));
}

.contact-section {
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 82% 18%, rgba(202, 108, 69, 0.26), transparent 22%),
    radial-gradient(circle at 12% 18%, rgba(22, 117, 108, 0.24), transparent 22%),
    linear-gradient(155deg, #171e29, #21324f 58%, #1b2534 100%);
  box-shadow: 0 30px 90px rgba(12, 18, 30, 0.28);
}

.contact-section .eyebrow {
  color: rgba(251, 247, 239, 0.6);
}

.contact-section h2 {
  color: #fff9f1;
  max-width: 13ch;
}

.contact-section .contact-lead p {
  color: rgba(251, 247, 239, 0.74);
}

.contact-lead {
  max-width: 44rem;
  margin-bottom: 1.8rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 1.25rem;
  align-items: start;
}

.contact-points {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.contact-point,
.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(16px);
}

.contact-point {
  padding: 1.15rem 1.2rem;
}

.contact-point strong {
  display: block;
  margin-bottom: 0.4rem;
  color: #fff9f1;
  font-size: 1rem;
}

.contact-point p {
  color: rgba(251, 247, 239, 0.76);
  margin: 0;
  line-height: 1.65;
}

.contact-form {
  padding: 1.35rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field span {
  color: rgba(251, 247, 239, 0.66);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(10, 16, 26, 0.34);
  color: #fff9f1;
  font: inherit;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(251, 247, 239, 0.42);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(122, 44, 255, 0.62);
  box-shadow: 0 0 0 4px rgba(122, 44, 255, 0.16);
}

.field select {
  appearance: none;
}

.field textarea {
  resize: vertical;
  min-height: 180px;
}

.field-full {
  margin-top: 1rem;
}

.contact-submit {
  margin-top: 1.1rem;
}

.form-note {
  margin: 0.9rem 0 0;
  color: rgba(251, 247, 239, 0.66);
  line-height: 1.65;
}

.success-body {
  display: grid;
  place-items: center;
}

.success-wrap {
  width: min(760px, calc(100% - 1.4rem));
  padding: 4rem 0;
}

.success-panel {
  padding: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at 82% 18%, rgba(202, 108, 69, 0.22), transparent 22%),
    radial-gradient(circle at 12% 18%, rgba(22, 117, 108, 0.22), transparent 22%),
    linear-gradient(155deg, #171e29, #21324f 58%, #1b2534 100%);
  box-shadow: 0 30px 90px rgba(12, 18, 30, 0.28);
}

.success-panel .eyebrow {
  color: rgba(251, 247, 239, 0.62);
}

.success-panel h1 {
  margin: 0;
  color: #fff9f1;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  line-height: 0.95;
}

.success-panel p:not(.eyebrow) {
  max-width: 34rem;
  margin: 1rem 0 1.6rem;
  color: rgba(251, 247, 239, 0.78);
  line-height: 1.75;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 3rem;
  color: rgba(23, 32, 45, 0.72);
  font-size: 0.92rem;
}

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

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

@keyframes ticker-move {
  from {
    transform: translateX(0);
  }

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

@media (max-width: 1100px) {
  .topbar {
    grid-template-columns: 1fr;
    justify-items: center;
    border-radius: 24px;
  }

  .hero,
  .about-section,
  .heading-row,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .project-card,
  .project-feature,
  .project-wide,
  .project-tall,
  .project-note,
  .pricing-card,
  .pricing-card-wide,
  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3) {
    grid-column: auto;
    transform: none;
  }

  .project-feature {
    grid-template-columns: 1fr;
  }

  .project-feature .project-copy {
    padding: 0.2rem 0.3rem 0.2rem;
  }

  .panel-grid,
  .service-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .offset-card {
    transform: none;
  }
}

@media (max-width: 760px) {
  .topbar,
  .section,
  .footer {
    width: min(1180px, calc(100% - 1.3rem));
  }

  .topbar {
    padding: 0.95rem;
    align-items: stretch;
  }

  .brand {
    justify-content: center;
  }

  .nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 3.2rem;
    gap: 1.5rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 4.45rem);
  }

  .hero-note,
  .stat-strip,
  .gallery,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .project-card,
  .pricing-card,
  .service-card,
  .about-copy,
  .process-card,
  .contact-section,
  .contact-point,
  .contact-form {
    border-radius: 26px;
  }

  .hero-panel,
  .contact-section {
    padding: 1rem;
  }

  .service-card,
  .pricing-card,
  .contact-point,
  .contact-form,
  .about-copy {
    padding: 1.35rem;
  }

  .project-shot,
  .project-image,
  .shot-01,
  .shot-03,
  .shot-04 {
    min-height: 240px;
  }

  .footer {
    flex-direction: column;
  }
}

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

  .ticker-track {
    animation: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
