@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

:root {
  --black: #111316;
  --charcoal: #1b1e22;
  --panel: #25292e;
  --light: #f2f2ed;
  --white: #fff;
  --accent: #f5b800;
  --orange: #f26a21;
  --blue: #1b5fd1;
  --muted: #9ea4ac;
  --line: rgba(255, 255, 255, .14);
  --darkline: #d8d9d5;
  --radius: 0;
  --header: 82px;
  --shadow: 0 24px 80px rgba(0, 0, 0, .22)
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  overflow-x: clip
}

body {
  margin: 0;
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--black);
  background: var(--light);
  overflow-x: clip;
  word-break: keep-all
}

body.locked {
  overflow: hidden
}

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

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

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

button {
  cursor: pointer
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto
}

.container-wide {
  width: min(1460px, calc(100% - 48px));
  margin-inline: auto
}

.section {
  padding: 140px 0
}

.section-label {
  margin: 0 0 22px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .2em;
  color: #4f5660
}

.section-label.light {
  color: var(--accent)
}

h1,
h2,
h3,
p {
  margin-top: 0
}

h2 {
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 1.08;
  letter-spacing: -.045em;
  margin-bottom: 28px
}

h2 em {
  font-style: normal;
  color: var(--accent)
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 3000;
  background: var(--accent);
  padding: 12px 18px;
  font-weight: 800
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  color: #fff;
  transition: background .3s, border-color .3s
}

.site-header.scrolled {
  background: rgba(17, 19, 22, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.header-inner {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: max-content
}

.brand-symbol {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor
}

.brand-symbol i {
  position: absolute;
  width: 4px;
  height: 21px;
  background: var(--accent);
  transform: skew(-22deg)
}

.brand-symbol i:first-child {
  margin-left: -12px
}

.brand-symbol i:last-child {
  margin-left: 12px
}

.brand-copy {
  display: flex;
  flex-direction: column
}

.brand-copy strong {
  font-size: 19px;
  line-height: 1.1
}

.brand-copy small {
  font-size: 9px;
  letter-spacing: .17em;
  margin-top: 4px
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 20px;
  font-weight: 500
}

.desktop-nav a {
  position: relative;
  padding: 10px 0
}

.desktop-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: .3s
}

.desktop-nav a:hover:after {
  width: 100%
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px
}

.phone-link {
  font-weight: 800;
  font-size:20px;
}

.header-cta {
  background: var(--accent);
  color: #111;
  padding: 13px 19px;
  font-weight: 900
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 9px
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 6px 0
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .62);
  z-index: 1200
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: min(410px, 90vw);
  height: 100dvh;
  background: var(--charcoal);
  color: #fff;
  z-index: 1300;
  padding: 24px 28px;
  transform: translateX(101%);
  transition: .35s ease;
  display: flex;
  flex-direction: column
}

.mobile-menu.open {
  transform: none
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  font-size: 12px;
  letter-spacing: .2em
}

.mobile-menu-head button {
  border: 0;
  background: none;
  color: #fff;
  font-size: 34px
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding-top: 25px
}

.mobile-menu nav a {
  font-size: 25px;
  font-weight: 800;
  padding: 16px 0;
  border-bottom: 1px solid var(--line)
}

.mobile-menu-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto
}

.mobile-menu-contact a {
  background: var(--accent);
  color: #111;
  text-align: center;
  padding: 15px 8px;
  font-weight: 900
}

.mobile-menu-contact a:last-child {
  background: #fff
}

.hero {
  position: relative;
  min-height: 100svh;
  background: #101214;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden
}

.hero-media,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 10s ease-out both
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(10, 12, 14, .92) 0%, rgba(10, 12, 14, .68) 48%, rgba(10, 12, 14, .28) 100%), linear-gradient(0deg, rgba(0, 0, 0, .48), transparent 50%)
}

.hero-grid {
  background-image: linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 25vw 25vw;
  mask-image: linear-gradient(90deg, #000, transparent 80%)
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 70px
}

.hero-label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
  color: var(--accent);
  margin-bottom: 28px
}

.hero h1 {
  font-size: clamp(54px, 7.3vw, 112px);
  line-height: .98;
  letter-spacing: -.058em;
  max-width: 1120px;
  margin-bottom: 34px
}

.hero h1 span {
  color: var(--accent)
}

.hero-desc {
  font-size: clamp(16px, 1.55vw, 22px);
  line-height: 1.7;
  color: rgba(255, 255, 255, .8)
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 38px
}

.btn {
  min-height: 56px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-weight: 900;
  transition: .25s
}

.btn-accent {
  background: var(--accent);
  color: #111
}

.btn-accent:hover {
  background: #ffd02e;
  transform: translateY(-2px)
}

.btn-outline {
  border-color: rgba(255, 255, 255, .55);
  color: #fff
}

.btn-outline:hover {
  background: #fff;
  color: #111
}

.btn-dark {
  background: #111;
  color: #fff
}

.text-link {
  margin-left: 14px;
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, .45);
  padding: 10px 0
}

.text-link span {
  color: var(--accent)
}

.hero-facts {
  display: flex;
  gap: 24px;
  margin-top: 60px
}

.hero-facts span {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, .74);
  display: flex;
  align-items: center;
  gap: 9px
}

.hero-facts span:before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent)
}

.hero-side-note {
  position: absolute;
  right: 34px;
  top: 50%;
  z-index: 2;
  display: flex;
  gap: 16px;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
  font-size: 10px;
  letter-spacing: .2em
}

.hero-side-note b {
  color: var(--accent)
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  left: 42px;
  bottom: 28px;
  font-size: 9px;
  letter-spacing: .18em;
  display: flex;
  align-items: center;
  gap: 12px
}

.scroll-cue span {
  width: 42px;
  height: 1px;
  background: var(--accent);
  position: relative
}

.scroll-cue span:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  right: 0;
  top: -3px;
  transform: rotate(-45deg)
}

.standard {
  background: var(--light)
}

.standard-layout {
  display: grid;
  grid-template-columns: .55fr 1.1fr 1fr;
  gap: 48px;
  align-items: start
}

.giant-number {
  font-size: clamp(110px, 16vw, 240px);
  font-weight: 900;
  line-height: .75;
  letter-spacing: -.08em;
  color: #d9d9d3
}

.standard-copy {
  padding-top: 10px
}

.standard-copy h2 {
  font-size: clamp(43px, 5vw, 70px)
}

.standard-copy>p {
  font-size: 17px;
  line-height: 1.8;
  color: #555b62
}

.standard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 34px
}

.standard-tags span {
  border: 1px solid #c9cbc7;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 750;
  background: #fff
}

.standard-image {
  margin: 0;
  position: relative;
  min-height: 620px;
  overflow: hidden
}

.standard-image img {
  width: 100%;
  height: 620px;
  object-fit: cover
}

.standard-image figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--black);
  color: #fff;
  padding: 23px 26px;
  display: flex;
  flex-direction: column;
  width: min(330px, 90%)
}

.standard-image figcaption b {
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--accent);
  margin-bottom: 8px
}

.standard-image figcaption span {
  font-size: 14px
}

.services {
  background: var(--black);
  color: #fff;
  padding: 130px 0 0
}

.services-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  margin-bottom: 70px
}

.services-head h2 {
  font-size: clamp(43px, 5vw, 72px);
  margin-bottom: 0
}

.services-head>p {
  max-width: 470px;
  color: var(--muted);
  line-height: 1.7
}

.service-panels {
  display: flex;
  height: 680px;
  border-top: 1px solid var(--line)
}

.service-panel {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border-right: 1px solid var(--line);
  cursor: pointer;
  transition: flex .65s cubic-bezier(.2, .7, .2, 1)
}

.service-panel.active {
  flex: 2.35
}

.service-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.7) brightness(.72);
  transition: transform .8s, filter .5s
}

.service-panel.active img {
  transform: scale(1.04);
  filter: saturate(.9) brightness(.8)
}

.panel-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 10, 12, .94), rgba(8, 10, 12, .1) 70%)
}

.panel-content {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 38px
}

.panel-content>span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em
}

.panel-content h3 {
  font-size: clamp(24px, 2.7vw, 42px);
  margin: 12px 0 14px
}

.panel-content p,
.panel-content a {
  opacity: 0;
  transform: translateY(12px);
  transition: .35s;
  pointer-events: none
}

.panel-content p {
  max-width: 540px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.65
}

.panel-content a {
  display: inline-block;
  margin-top: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--accent);
  font-weight: 800;
  color: var(--accent)
}

.service-panel.active .panel-content p,
.service-panel.active .panel-content a {
  opacity: 1;
  transform: none;
  pointer-events: auto
}

.process {
  background: #fff
}

.process-heading {
  margin-bottom: 90px
}

.process-story {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(420px, .72fr);
  gap: 100px;
  align-items: start
}

.process-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: calc(var(--header) + 24px);
  height: auto;
  align-self: start;
  z-index: 2
}

.process-photo {
  position: relative;
  height: min(570px, calc(100vh - var(--header) - 145px));
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow)
}

.process-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 63%, rgba(2, 8, 17, .72))
}

.process-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .24s ease, transform .5s ease
}

.process-photo.changing img {
  opacity: 0;
  transform: scale(1.03)
}

.process-photo span {
  position: absolute;
  z-index: 2;
  left: 26px;
  bottom: 22px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em
}

.process-index {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 20px;
  color: var(--blue)
}

.process-index b {
  font-size: 55px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.06em
}

.process-index span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 800
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none
}

.process-step {
  min-height: 300px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 28px;
  opacity: .34;
  transition: opacity .3s ease, transform .3s ease
}

.process-step:last-child {
  border-bottom: 1px solid var(--line)
}

.process-step.active {
  opacity: 1;
  transform: translateX(-8px)
}

.process-step>span {
  color: var(--blue);
  font-weight: 900;
  font-size: 20px
}

.process-step h3 {
  margin: 0 0 18px;
  font-size: 37px;
  line-height: 1.15;
  letter-spacing: -.045em
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8
}

.cases {
  background: var(--charcoal);
  color: #fff
}

.cases-head {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px
}

.cases-head h2 {
  margin: 0
}

.cases-head>p {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.7
}

.compare-wrap {
  display: grid;
  grid-template-columns: 2fr .5fr;
  gap: 36px
}

.compare {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000
}

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

.compare-before {
  position: absolute;
  inset: 0
}

.compare-after {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 var(--position))
}

.compare-after img {
  position: absolute;
  inset: 0
}

.compare input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5
}

.compare-line {
  position: absolute;
  left: var(--position);
  top: 0;
  bottom: 0;
  width: 2px;
  background: #fff;
  transform: translateX(-1px);
  z-index: 4;
  pointer-events: none
}

.compare-line span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: var(--accent);
  color: #111;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 22px
}

.compare-label {
  position: absolute;
  top: 18px;
  z-index: 3;
  background: rgba(0, 0, 0, .7);
  padding: 8px 11px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em
}

.before-label {
  left: 18px
}

.after-label {
  right: 18px
}

.case-meta {
  border-top: 3px solid var(--accent);
  padding-top: 26px
}

.case-meta>span {
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--accent);
  font-weight: 900
}

.case-meta h3 {
  font-size: 30px;
  margin: 17px 0
}

.case-meta p {
  color: var(--muted);
  line-height: 1.7
}

.case-meta ul {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid var(--line)
}

.case-meta li {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: #c5c9cd
}

.case-meta b {
  color: #fff
}

.proof {
  background: var(--accent);
  padding: 65px 0
}

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

.proof-grid>div {
  padding: 8px 32px;
  border-right: 1px solid rgba(0, 0, 0, .25)
}

.proof-grid>div:first-child {
  padding-left: 0
}

.proof-grid>div:last-child {
  border-right: 0
}

.proof strong {
  display: block;
  font-size: clamp(22px, 2.5vw, 36px);
  line-height: 1.05;
  letter-spacing: -.04em
}

.proof span {
  display: block;
  margin-top: 13px;
  font-size: 13px;
  font-weight: 700
}

.strengths {
  background: var(--light)
}

.strengths-head {
  margin-bottom: 70px
}

.strength-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px
}

.strength-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: #222;
  color: #fff
}

.strength-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.5) saturate(.7);
  transition: .7s
}

.strength-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, .94), transparent 75%)
}

.strength-card:hover img {
  transform: scale(1.05);
  filter: brightness(.62)
}

.strength-card>div {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 32px
}

.strength-card span {
  font-size: 11px;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: .16em
}

.strength-card h3 {
  font-size: 34px;
  margin: 12px 0
}

.strength-card p {
  color: rgba(255, 255, 255, .7);
  line-height: 1.65;
  max-width: 510px
}

.estimate-guide {
  background: var(--black);
  color: #fff
}

.estimate-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center
}

.estimate-layout h2 {
  font-size: clamp(42px, 5vw, 68px)
}

.estimate-layout>div>p:not(.section-label) {
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px
}

.estimate-layout .btn {
  margin-top: 20px
}

.estimate-layout ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.estimate-layout li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 21px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  font-weight: 750
}

.estimate-layout li span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900
}

.gallery {
  background: #fff;
  overflow: hidden
}

.gallery-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 55px
}

.gallery-head h2 {
  margin: 0
}

.gallery-head p:last-child {
  color: #666;
  line-height: 1.7
}

.marquee {
  width: 100%;
  overflow: hidden
}

.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 36s linear infinite
}

.marquee:hover .marquee-track {
  animation-play-state: paused
}

.marquee figure {
  width: min(430px, 78vw);
  margin: 0;
  position: relative;
  flex: none
}

.marquee img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover
}

.marquee figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--black);
  color: #fff;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 800
}

.faq {
  background: var(--light)
}

.faq-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px
}

.faq-heading {
  position: sticky;
  top: 120px;
  align-self: start
}

.faq-heading h2 {
  font-size: clamp(40px, 4.6vw, 66px)
}

.faq-heading p {
  color: #666;
  line-height: 1.7
}

.faq-heading>a {
  display: inline-block;
  margin-top: 20px;
  font-size: 25px;
  font-weight: 900;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 7px
}

.accordion article {
  border-top: 1px solid #c9cbc7
}

.accordion article:last-child {
  border-bottom: 1px solid #c9cbc7
}

.accordion h3 {
  margin: 0
}

.accordion button {
  width: 100%;
  border: 0;
  background: none;
  padding: 27px 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 20px;
  font-weight: 800
}

.accordion button i {
  position: relative;
  width: 24px;
  height: 24px
}

.accordion button i:before,
.accordion button i:after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 11px;
  height: 2px;
  background: #111;
  transition: .25s
}

.accordion button i:after {
  transform: rotate(90deg)
}

.accordion button[aria-expanded=true] i:after {
  transform: rotate(0)
}

.answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s
}

.answer p {
  overflow: hidden;
  margin: 0;
  color: #60666c;
  line-height: 1.75
}

.accordion article.open .answer {
  grid-template-rows: 1fr
}

.accordion article.open .answer p {
  padding: 0 40px 30px 2px
}

.contact {
  position: relative;
  color: #fff;
  padding: 140px 0
}

.contact-bg,
.contact-shade {
  position: absolute;
  inset: 0
}

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.contact-shade {
  background: linear-gradient(90deg, rgba(10, 12, 14, .94), rgba(10, 12, 14, .66))
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 90px;
  align-items: start
}

.contact-copy h2 {
  font-size: clamp(46px, 5.5vw, 78px)
}

.contact-copy>p:not(.section-label) {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .72)
}

.direct-links {
  margin-top: 50px;
  border-top: 1px solid var(--line)
}

.direct-links a {
  display: flex;
  flex-direction: column;
  padding: 19px 0;
  border-bottom: 1px solid var(--line)
}

.direct-links small {
  color: var(--accent);
  font-size: 10px;
  letter-spacing: .18em;
  font-weight: 900
}

.direct-links strong {
  font-size: 23px;
  margin-top: 7px
}

.contact-form {
  background: #fff;
  color: #111;
  padding: 34px;
  box-shadow: var(--shadow)
}

.form-head {
  margin-bottom: 26px
}

.form-head>span {
  font-size: 10px;
  color: #c78f00;
  font-weight: 900;
  letter-spacing: .18em
}

.form-head h3 {
  font-size: 31px;
  margin: 8px 0
}

.form-head p {
  color: #777;
  font-size: 13px
}

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

.field {
  margin-bottom: 14px
}

.field label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d8d9d6;
  background: #f7f7f4;
  padding: 13px 14px;
  outline: none;
  transition: .2s
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #b68300;
  box-shadow: 0 0 0 3px rgba(245, 184, 0, .18)
}

.field.invalid input,
.field.invalid select {
  border-color: #d93838
}

.error {
  min-height: 14px;
  color: #c92e2e;
  font-size: 11px;
  margin: 5px 0 0
}

.agree {
  margin: 4px 0 18px
}

.agree label {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12px
}

.agree input {
  margin-top: 2px
}

.agree button {
  border: 0;
  background: none;
  padding: 5px 0;
  color: #755600;
  text-decoration: underline;
  font-size: 12px
}

.submit-btn {
  width: 100%
}

.form-note {
  font-size: 11px;
  line-height: 1.5;
  color: #777;
  margin: 12px 0 0
}

.form-result {
  margin-top: 12px;
  background: #f3f0df;
  padding: 12px;
  color: #5e4a00;
  font-size: 13px
}

.footer {
  background: #090b0d;
  color: #bbb;
  padding: 62px 0 95px
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 30px
}

.footer-brand {
  color: #fff
}

.footer-call {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 13px
}

.footer-call strong {
  color: var(--accent);
  font-size: 24px
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding-top: 25px;
  font-size: 12px;
  line-height: 1.7
}

.footer-bottom p {
  margin: 3px 0
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  z-index: 1900
}

.privacy-modal {
  position: fixed;
  z-index: 2000;
  left: 50%;
  top: 50%;
  width: min(590px, calc(100% - 32px));
  max-height: 86dvh;
  overflow: auto;
  background: #fff;
  padding: 30px;
  transform: translate(-50%, -45%) scale(.97);
  opacity: 0;
  visibility: hidden;
  transition: .25s
}

.privacy-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1)
}

.modal-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 18px
}

.modal-head h2 {
  font-size: 23px;
  margin: 0
}

.modal-head button {
  border: 0;
  background: none;
  font-size: 32px
}

.modal-body {
  font-size: 14px;
  line-height: 1.7;
  color: #5f646a;
  padding: 15px 0
}

.modal-body strong {
  color: #111
}

.modal-confirm {
  width: 100%
}

.floating-cta {
  display: none
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s, transform .8s
}

.reveal.visible {
  opacity: 1;
  transform: none
}

@keyframes heroZoom {
  from {
    transform: scale(1.08)
  }

  to {
    transform: scale(1)
  }
}

@keyframes marquee {
  to {
    transform: translateX(calc(-50% - 9px))
  }
}

@media(max-width:1100px) {

  .desktop-nav,
  .phone-link,
  .header-cta {
    display: none
  }

  .menu-toggle {
    display: block
  }

  .standard-layout {
    grid-template-columns: .4fr 1fr
  }

  .standard-image {
    grid-column: 2
  }

  .service-panels {
    height: 610px
  }

  .process-story {
    gap: 55px
  }

  .compare-wrap {
    grid-template-columns: 1fr
  }

  .case-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 30px
  }

  .case-meta ul {
    grid-column: 2;
    grid-row: 1/4;
    margin-top: 0
  }

  .estimate-layout,
  .faq-layout,
  .contact-layout {
    gap: 60px
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 0
  }

  .proof-grid>div:nth-child(2) {
    border-right: 0
  }

  .proof-grid>div:nth-child(3) {
    padding-left: 0
  }
}

@media(max-width:800px) {
  :root {
    --header: 70px
  }

  .container,
  .container-wide {
    width: min(100% - 32px, 1180px)
  }

  .section {
    padding: 90px 0
  }

  .hero {
    min-height: 780px
  }

  .hero-content {
    padding-top: 70px
  }

  .hero h1 {
    font-size: clamp(48px, 13vw, 68px)
  }

  .hero-desc br {
    display: none
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 310px
  }

  .text-link {
    margin-left: 0;
    width: max-content
  }

  .hero-facts {
    flex-direction: column;
    gap: 11px;
    margin-top: 35px
  }

  .hero-side-note,
  .scroll-cue {
    display: none
  }

  .standard-layout {
    grid-template-columns: 1fr
  }

  .giant-number {
    font-size: 120px
  }

  .standard-image {
    grid-column: auto;
    min-height: 480px
  }

  .standard-image img {
    height: 480px
  }

  .services {
    padding-top: 90px
  }

  .services-head {
    display: block;
    margin-bottom: 45px
  }

  .services-head>p {
    margin-top: 25px
  }

  .service-panels {
    display: block;
    height: auto;
    padding: 0 16px 70px
  }

  .service-panel {
    height: 130px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    transition: height .5s
  }

  .service-panel.active {
    height: 480px
  }

  .panel-content {
    left: 22px;
    right: 22px;
    bottom: 24px
  }

  .panel-content h3 {
    font-size: 29px
  }

  .process-heading {
    margin-bottom: 50px
  }

  .process-story {
    display: block
  }

  .process-sticky {
    position: relative;
    top: auto;
    height: auto;
    margin-bottom: 35px
  }

  .process-photo {
    height: 420px
  }

  .process-steps {
    height: auto;
    overflow: visible;
    border-bottom: 0
  }

  .process-step {
    position: relative;
    inset: auto;
    min-height: auto;
    padding: 35px 0;
    opacity: .4;
    visibility: visible;
    transform: none;
    border-top: 1px solid #d9dad6
  }

  .process-step.active {
    opacity: 1;
    transform: none
  }

  .process-step:last-child {
    border-bottom: 1px solid #d9dad6
  }

  .cases-head,
  .gallery-head {
    display: block
  }

  .cases-head>p,
  .gallery-head p:last-child {
    margin-top: 25px
  }

  .compare-wrap {
    gap: 24px
  }

  .case-meta {
    display: block
  }

  .case-meta ul {
    margin-top: 25px
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr
  }

  .proof-grid>div {
    padding: 10px 18px
  }

  .strength-cards {
    grid-template-columns: 1fr
  }

  .estimate-layout {
    grid-template-columns: 1fr
  }

  .gallery-head {
    margin-bottom: 38px
  }

  .faq-layout {
    grid-template-columns: 1fr
  }

  .faq-heading {
    position: relative;
    top: auto
  }

  .contact-layout {
    grid-template-columns: 1fr
  }

  .contact-form {
    padding: 26px
  }

  .footer-top,
  .footer-bottom {
    display: block
  }

  .footer-call {
    margin-top: 25px;
    display: block
  }

  .footer-call strong {
    display: block;
    margin-top: 6px
  }

  .footer-bottom>p {
    margin-top: 25px
  }

  .floating-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    display: grid;
    grid-template-columns: 1fr 1fr 1.25fr;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, .18);
    padding: 7px max(7px, env(safe-area-inset-right)) calc(7px + env(safe-area-inset-bottom)) max(7px, env(safe-area-inset-left))
  }

  .floating-cta a {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 900;
    border-right: 1px solid #ddd
  }

  .floating-cta a:last-child {
    background: var(--accent);
    color: #111;
    border-right: 0
  }

  .footer {
    padding-bottom: 120px
  }
}

@media(max-width:520px) {
  h2 {
    font-size: 40px
  }

  .hero {
    min-height: 730px
  }

  .hero h1 {
    font-size: 45px
  }

  .hero-label {
    letter-spacing: .14em
  }

  .standard-copy h2,
  .services-head h2,
  .process-heading h2,
  .cases-head h2,
  .strengths-head h2,
  .estimate-layout h2,
  .gallery-head h2,
  .faq-heading h2,
  .contact-copy h2 {
    font-size: 39px
  }

  .standard-image,
  .standard-image img {
    height: 420px;
    min-height: 420px
  }

  .service-panel.active {
    height: 430px
  }

  .process-sticky {
    height: 420px
  }

  .process-photo {
    height: 345px
  }

  .process-step {
    grid-template-columns: 45px 1fr
  }

  .process-step h3 {
    font-size: 28px
  }

  .proof-grid {
    grid-template-columns: 1fr
  }

  .proof-grid>div {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .22);
    padding: 22px 0
  }

  .proof-grid>div:last-child {
    border-bottom: 0
  }

  .strength-card {
    min-height: 410px
  }

  .strength-card>div {
    left: 24px;
    right: 24px
  }

  .strength-card h3 {
    font-size: 29px
  }

  .field-row {
    grid-template-columns: 1fr
  }

  .contact-form {
    padding: 22px
  }

  .direct-links strong {
    font-size: 19px
  }

  .accordion button {
    font-size: 17px;
    padding: 22px 0
  }

  .footer-call strong {
    font-size: 21px
  }

  .mobile-menu {
    padding: 20px
  }

  .mobile-menu nav a {
    font-size: 22px
  }
}

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

  .hero-media img,
  .marquee-track {
    animation: none
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none
  }

  .service-panel,
  .service-panel img,
  .process-photo img,
  .answer,
  .privacy-modal,
  .mobile-menu {
    transition: none
  }
}


/* 2026-07-21: favicon/OG integration, hero title motion, mobile process refinement */
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .08em
}

.hero-title-line {
  display: block;
  overflow: hidden;
  padding: .06em .04em .08em 0;
  margin-bottom: -.08em
}

.hero-title-line>span {
  display: block;
  transform: translateY(112%);
  opacity: 0;
  filter: blur(8px);
  animation: heroTitleReveal .9s cubic-bezier(.16, 1, .3, 1) forwards
}

.hero-title-line-light>span {
  animation-delay: .2s
}

.hero-title-line-accent {
  position: relative;
  color: var(--accent)
}

.hero-title-line-accent>span {
  animation-delay: .42s
}

.hero-title-line-accent:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(460px, 32vw);
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  animation: heroTitleLine .8s cubic-bezier(.16, 1, .3, 1) .95s forwards
}

@keyframes heroTitleReveal {
  to {
    transform: translateY(0);
    opacity: 1;
    filter: blur(0)
  }
}

@keyframes heroTitleLine {
  to {
    transform: scaleX(1)
  }
}

@media(max-width:800px) {
  .process {
    overflow: visible
  }

  .process-story {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: visible
  }

  .process-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: calc(var(--header) + 8px);
    z-index: 20;
    margin: 0 -16px 22px;
    padding: 0 16px 12px;
    background: linear-gradient(#fff 82%, rgba(255, 255, 255, .92) 92%, rgba(255, 255, 255, 0));
    height: auto
  }

  .process-photo {
    height: clamp(220px, 38vh, 320px);
    min-height: 220px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .16)
  }

  .process-index {
    position: absolute;
    right: 28px;
    bottom: 22px;
    z-index: 3;
    margin: 0;
    padding: 8px 12px;
    background: rgba(17, 19, 22, .82);
    backdrop-filter: blur(8px);
    color: var(--accent)
  }

  .process-index b {
    font-size: 34px
  }

  .process-index span {
    font-size: 13px;
    color: #fff
  }

  .process-steps {
    position: relative;
    z-index: 1;
    padding-top: 6px
  }

  .process-step {
    min-height: 42vh;
    padding: 46px 0 56px;
    grid-template-columns: 48px 1fr;
    align-content: center;
    opacity: .28;
    transition: opacity .3s ease, transform .3s ease
  }

  .process-step.active {
    opacity: 1;
    transform: translateX(0)
  }

  .process-step h3 {
    font-size: clamp(29px, 8vw, 38px);
    margin-bottom: 14px
  }

  .process-step p {
    font-size: 16px;
    line-height: 1.75
  }
}

@media(max-width:520px) {
  .hero-title {
    gap: .12em
  }

  .hero-title-line-accent:after {
    height: 3px;
    width: 120px
  }

  .process-sticky {
    height: auto;
    margin-left: -16px;
    margin-right: -16px
  }

  .process-photo {
    height: 230px;
    min-height: 230px
  }

  .process-step {
    min-height: 380px;
    padding: 42px 0 52px
  }
}

@media(prefers-reduced-motion:reduce) {
  .hero-title-line>span {
    transform: none;
    opacity: 1;
    filter: none;
    animation: none
  }

  .hero-title-line-accent:after {
    transform: scaleX(1);
    animation: none
  }
}

.hero .hero-title-line-light,
.hero .hero-title-line-light>span {
  color: #fff
}