:root {
  --blue: #0755a5;
  --blue-dark: #063665;
  --blue-deep: #04284d;
  --sky: #d8edff;
  --sun: #ffd756;
  --sun-soft: #fff0ad;
  --cream: #fff9eb;
  --paper: #f5f1e8;
  --ink: #142433;
  --muted: #65717c;
  --line: rgba(20, 36, 51, 0.18);
  --shell: min(1240px, calc(100vw - 72px));
  --serif: "Gowun Batang", Georgia, serif;
  --sans: "IBM Plex Sans KR", "Apple SD Gothic Neo", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(rgba(20, 36, 51, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 36px;
  font-family: var(--sans);
  word-break: keep-all;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

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

a:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 18px;
  color: #fff;
  background: var(--blue-deep);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;
  padding: 0 42px;
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  min-height: 44px;
}

.brand-symbol {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.brand-symbol::before {
  position: absolute;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--sun);
  content: "";
}

.brand-symbol span {
  position: absolute;
  right: 2px;
  bottom: 7px;
  width: 8px;
  height: 8px;
  background: var(--cream);
  clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 18px;
  letter-spacing: -0.04em;
}

.brand-copy small {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
}

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

.site-nav a,
.header-cta {
  transition: opacity 160ms ease;
}

.site-nav a:hover,
.header-cta:hover {
  opacity: 0.7;
}

.header-cta {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 20px;
  color: var(--blue-deep);
  background: var(--sun);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  min-height: 920px;
  overflow: hidden;
  color: var(--cream);
  background:
    radial-gradient(circle at 74% 36%, rgba(86, 171, 255, 0.25), transparent 22%),
    linear-gradient(140deg, var(--blue-deep), var(--blue) 63%, #0b68bb);
}

.hero::after {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  pointer-events: none;
  content: "";
}

.hero-rays {
  position: absolute;
  top: 88px;
  right: 0;
  width: 52vw;
  height: 720px;
  opacity: 0.32;
  background: repeating-conic-gradient(from 226deg at 62% 44%, rgba(255, 255, 255, 0.32) 0deg 5deg, transparent 5deg 16deg);
  clip-path: polygon(36% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(660px, 52vw);
  margin: 210px 0 190px max(48px, calc((100vw - 1240px) / 2));
}

.hero-kicker,
.section-kicker,
.final-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--sky);
}

.hero-kicker::before {
  display: block;
  width: 44px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero h1 {
  margin: 30px 0 30px;
  font-family: var(--serif);
  font-size: clamp(76px, 8.1vw, 126px);
  line-height: 0.96;
  letter-spacing: -0.085em;
}

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

.hero-lead {
  max-width: 530px;
  margin: 0;
  color: rgba(255, 249, 235, 0.82);
  font-size: 17px;
  line-height: 1.8;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.button-sun {
  color: var(--blue-deep);
  background: var(--sun);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.14);
}

.text-link {
  display: grid;
  gap: 4px;
  min-height: 48px;
  align-content: center;
}

.text-link span {
  border-bottom: 1px solid rgba(255, 255, 255, 0.52);
  font-size: 15px;
  font-weight: 600;
}

.text-link small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.hero-orbit {
  position: absolute;
  z-index: 2;
  top: 172px;
  right: max(42px, calc((100vw - 1240px) / 2));
  display: grid;
  width: min(41vw, 520px);
  aspect-ratio: 1;
  place-items: center;
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  content: "";
}

.hero-orbit::after {
  inset: 45px;
  border-style: dashed;
}

.sun-disc {
  position: relative;
  display: grid;
  width: 76%;
  aspect-ratio: 1;
  place-items: center;
  color: var(--blue-deep);
  background:
    radial-gradient(circle at 34% 27%, #fff7cb 0 5%, transparent 6%),
    radial-gradient(circle at 50% 50%, var(--sun-soft), var(--sun));
  border-radius: 50%;
  box-shadow: 0 0 90px rgba(255, 215, 86, 0.28);
}

.sun-disc::before {
  position: absolute;
  inset: 23px;
  border: 1px solid rgba(4, 40, 77, 0.22);
  border-radius: 50%;
  content: "";
}

.sun-message {
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
}

.sun-message small {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.sun-message strong {
  margin: -12px 0 -22px;
  font-family: var(--serif);
  font-size: 150px;
  line-height: 1;
  letter-spacing: -0.08em;
}

.sun-message span {
  font-size: 14px;
  font-weight: 700;
}

.spark {
  position: absolute;
  color: #fff;
}

.spark-one {
  top: 18%;
  right: 12%;
  font-size: 26px;
}

.spark-two {
  bottom: 23%;
  left: 13%;
  font-size: 14px;
}

.orbit-note {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  color: var(--blue-deep);
  background: var(--cream);
  border-radius: 999px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.orbit-note span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--cream);
  background: var(--blue);
  border-radius: 50%;
  font-size: 9px;
}

.orbit-note p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}

.orbit-note-top {
  top: 8%;
  left: -4%;
}

.orbit-note-bottom {
  right: -4%;
  bottom: 13%;
}

.hero-foot {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 150px 150px 150px 1fr;
  align-items: stretch;
  min-height: 112px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-foot > div {
  display: grid;
  padding: 22px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-foot strong {
  color: var(--sun);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.hero-foot span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
}

.hero-foot > p {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0 max(48px, calc((100vw - 1240px) / 2));
  font-size: 13px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--sun);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 215, 86, 0.15);
}

.intro {
  padding-block: 138px 128px;
}

.section-index {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
}

.section-index span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}

.section-index p {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr 0.56fr;
  column-gap: 90px;
  margin-top: 58px;
}

.section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 26px;
  color: var(--blue);
}

.display-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 5.2vw, 76px);
  line-height: 1.15;
  letter-spacing: -0.07em;
}

.intro-description {
  align-self: end;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.promise-lines {
  margin-top: 92px;
  border-top: 1px solid var(--line);
}

.promise-line {
  display: grid;
  grid-template-columns: 72px 0.8fr 1fr 44px;
  align-items: center;
  min-height: 118px;
  border-bottom: 1px solid var(--line);
}

.promise-number {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}

.promise-line h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -0.05em;
}

.promise-line p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.line-symbol {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  justify-self: end;
  color: var(--blue);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.services {
  padding-block: 128px 0;
  color: var(--cream);
  background: var(--blue-dark);
}

.services-heading {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  align-items: start;
  padding-bottom: 74px;
}

.services .section-index,
.services .section-kicker {
  color: var(--sun);
}

.service-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.service-row {
  display: grid;
  grid-template-columns: minmax(72px, 0.3fr) 0.9fr 1fr 80px;
  align-items: center;
  min-height: 182px;
  padding-inline: max(48px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: color 220ms ease, background 220ms ease;
}

.service-row:hover {
  color: var(--blue-deep);
  background: var(--sun);
}

.service-count {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
}

.service-name small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  transition: color 220ms ease;
}

.service-row:hover .service-name small {
  color: rgba(4, 40, 77, 0.6);
}

.service-name h3 {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: 34px;
  letter-spacing: -0.06em;
}

.service-row > p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.8;
  transition: color 220ms ease;
}

.service-row:hover > p {
  color: rgba(4, 40, 77, 0.7);
}

.service-arrow {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  justify-self: end;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 20px;
}

.works {
  padding-block: 142px 150px;
}

.works-heading {
  display: grid;
  grid-template-columns: 0.46fr 1fr 0.52fr;
  align-items: end;
  margin-bottom: 70px;
}

.works-note {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.works-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 60px 28px;
  align-items: start;
}

.work {
  margin: 0;
}

.work img {
  width: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.02);
}

.work-wide img {
  aspect-ratio: 4 / 3;
}

.work-tall {
  margin-top: 88px;
}

.work-tall img {
  aspect-ratio: 3 / 4;
}

.work figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  margin-top: 13px;
}

.work figcaption span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.work figcaption strong {
  font-size: 14px;
}

.reviews {
  position: relative;
  overflow: hidden;
  color: var(--cream);
  background: var(--blue-deep);
}

.reviews::before {
  position: absolute;
  top: -260px;
  left: -140px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.025), 0 0 0 180px rgba(255, 255, 255, 0.018);
  content: "";
}

.reviews-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 90px;
  padding-block: 136px;
}

.section-index-light {
  color: var(--sun);
}

.reviews-title-wrap .section-kicker {
  margin-top: 66px;
  color: var(--sky);
}

.reviews-title-wrap .display-title {
  font-size: clamp(48px, 5.5vw, 78px);
}

.reviews-title-wrap em {
  color: var(--sun);
  font-style: normal;
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 48px;
  margin-top: 46px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.46);
  font-size: 13px;
  font-weight: 600;
}

.review-list {
  border-top: 1px solid rgba(255, 255, 255, 0.23);
}

.review {
  position: relative;
  margin: 0;
  padding: 34px 0 30px 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.23);
}

.review-mark {
  position: absolute;
  top: 26px;
  left: 0;
  color: var(--sun);
  font-family: var(--serif);
  font-size: 54px;
  line-height: 1;
}

.review p {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.7;
  letter-spacing: -0.04em;
}

.review footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 23px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.review footer strong {
  color: var(--sun);
  font-size: 15px;
}

.process {
  padding-block: 138px 145px;
}

.process-heading {
  display: grid;
  grid-template-columns: 0.46fr 1fr;
  margin-bottom: 72px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  min-height: 294px;
  padding: 28px 28px 32px;
  border-right: 1px solid var(--line);
}

.process-list li:last-child {
  border-right: 0;
}

.process-list li > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}

.process-list li > div {
  display: grid;
  align-content: end;
  min-height: 205px;
}

.process-list h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -0.05em;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.price-note {
  display: grid;
  grid-template-columns: 0.55fr 0.8fr 1.2fr;
  align-items: center;
  min-height: 102px;
  margin-top: 36px;
  padding: 0 32px;
  color: var(--blue-deep);
  background: var(--sun);
  border-radius: 2px;
}

.price-note p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.price-note strong {
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: -0.05em;
}

.price-note span {
  color: rgba(4, 40, 77, 0.7);
  font-size: 12px;
  line-height: 1.6;
}

.final-cta {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  color: var(--blue-deep);
  background: var(--sun);
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  border: 1px solid rgba(4, 40, 77, 0.2);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  top: -420px;
  right: -200px;
  width: 980px;
  height: 980px;
}

.final-cta::after {
  right: 130px;
  bottom: -460px;
  width: 780px;
  height: 780px;
}

.final-glow {
  position: absolute;
  top: 110px;
  right: 13%;
  width: 230px;
  height: 230px;
  background: rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 100px rgba(255, 255, 255, 0.55);
}

.final-glow::before,
.final-glow::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  content: "";
}

.final-glow::before {
  width: 320px;
  height: 1px;
}

.final-glow::after {
  width: 1px;
  height: 320px;
}

.final-content {
  position: relative;
  z-index: 2;
  padding-block: 116px 106px;
}

.final-kicker {
  color: rgba(4, 40, 77, 0.65);
}

.final-content h2 {
  max-width: 850px;
  margin: 34px 0 30px;
  font-family: var(--serif);
  font-size: clamp(70px, 7.6vw, 112px);
  line-height: 1.02;
  letter-spacing: -0.08em;
}

.final-copy {
  max-width: 520px;
  margin: 0;
  color: rgba(4, 40, 77, 0.72);
  font-size: 16px;
  line-height: 1.7;
}

.final-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
}

.button-blue {
  min-width: 250px;
  color: var(--cream);
  background: var(--blue-deep);
  box-shadow: 0 18px 40px rgba(4, 40, 77, 0.18);
}

.final-phone {
  display: grid;
  min-height: 58px;
  align-content: center;
}

.final-phone small {
  color: rgba(4, 40, 77, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.final-phone strong {
  font-size: 22px;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.8fr 1fr auto;
  gap: 50px;
  min-height: 250px;
  padding: 58px max(48px, calc((100vw - 1240px) / 2));
  color: rgba(255, 255, 255, 0.65);
  background: var(--blue-deep);
  font-size: 12px;
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 7px;
}

.footer-brand strong {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 25px;
}

.footer-info p {
  margin: 0 0 8px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-inline: 4px;
}

.footer-note {
  grid-column: 1 / -1;
  align-self: end;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.mobile-contact {
  display: none;
}

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

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.21, 0.8, 0.35, 1), transform 700ms cubic-bezier(0.21, 0.8, 0.35, 1);
}

.js-enabled .reveal.is-visible,
[data-capture="true"] .reveal {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 48px, 900px);
  }

  .site-header {
    padding-inline: 24px;
  }

  .site-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero {
    min-height: 1030px;
  }

  .hero-copy {
    width: min(620px, calc(100vw - 48px));
    margin: 178px 24px 0;
  }

  .hero-orbit {
    top: auto;
    right: 50%;
    bottom: 132px;
    width: min(430px, 62vw);
    transform: translateX(50%);
  }

  .hero-foot {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .hero-foot > p {
    display: none;
  }

  .hero-foot > div {
    place-items: center;
  }

  .works-heading {
    grid-template-columns: 0.35fr 1fr;
  }

  .works-note {
    grid-column: 2;
    margin-top: 24px;
  }

  .reviews-inner {
    grid-template-columns: 1fr;
  }

  .review-list {
    max-width: 700px;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .process-list li:nth-child(2) {
    border-right: 0;
  }

  .process-list li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100vw - 36px);
  }

  body {
    padding-bottom: 74px;
  }

  .site-header {
    min-height: 72px;
    padding-inline: 18px;
  }

  .brand-symbol {
    width: 34px;
    height: 34px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 930px;
  }

  .hero-rays {
    top: 70px;
    width: 100vw;
    height: 500px;
    clip-path: none;
  }

  .hero-copy {
    width: auto;
    margin: 133px 18px 0;
  }

  .hero h1 {
    margin-block: 22px;
    font-size: clamp(54px, 16vw, 74px);
    line-height: 1.02;
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.75;
  }

  .hero-actions {
    display: grid;
    gap: 16px;
    margin-top: 28px;
  }

  .button {
    min-height: 54px;
  }

  .text-link {
    width: max-content;
  }

  .hero-orbit {
    bottom: 122px;
    width: 350px;
    max-width: 90vw;
  }

  .sun-message strong {
    font-size: 112px;
  }

  .orbit-note-top {
    left: 0;
  }

  .orbit-note-bottom {
    right: 0;
  }

  .hero-foot {
    min-height: 92px;
  }

  .hero-foot > div {
    padding: 17px 8px;
  }

  .hero-foot strong {
    font-size: 25px;
  }

  .intro,
  .works,
  .process {
    padding-block: 86px;
  }

  .intro-content {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 42px;
  }

  .display-title {
    font-size: clamp(38px, 11vw, 54px);
    line-height: 1.18;
  }

  .intro-description {
    font-size: 14px;
  }

  .promise-lines {
    margin-top: 58px;
  }

  .promise-line {
    grid-template-columns: 42px 1fr 36px;
    min-height: 132px;
    padding-block: 20px;
  }

  .promise-line h3 {
    font-size: 24px;
  }

  .promise-line p {
    grid-column: 2 / -1;
    margin-top: 8px;
    font-size: 12px;
  }

  .line-symbol {
    grid-column: 3;
    grid-row: 1;
  }

  .services {
    padding-top: 88px;
  }

  .services-heading,
  .process-heading {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .services-heading {
    padding-bottom: 54px;
  }

  .service-row {
    grid-template-columns: 44px 1fr 44px;
    min-height: 190px;
    padding: 28px 18px;
  }

  .service-name h3 {
    font-size: 28px;
  }

  .service-row > p {
    grid-column: 2 / -1;
    margin-top: 18px;
    font-size: 12px;
  }

  .service-arrow {
    width: 40px;
    height: 40px;
  }

  .works-heading {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 48px;
  }

  .works-note {
    grid-column: 1;
    margin-top: 0;
  }

  .works-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .work-tall {
    margin-top: 0;
  }

  .work-tall img {
    aspect-ratio: 4 / 5;
  }

  .work figcaption {
    display: grid;
    gap: 8px;
  }

  .reviews-inner {
    gap: 70px;
    padding-block: 90px;
  }

  .reviews-title-wrap .section-kicker {
    margin-top: 48px;
  }

  .review {
    padding-left: 42px;
  }

  .review p {
    font-size: 18px;
  }

  .review-mark {
    font-size: 44px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    display: grid;
    grid-template-columns: 38px 1fr;
    min-height: 178px;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-list li:last-child {
    border-bottom: 0;
  }

  .process-list li > div {
    min-height: 0;
  }

  .price-note {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px;
  }

  .price-note strong {
    font-size: 26px;
  }

  .final-cta {
    min-height: 650px;
  }

  .final-content {
    padding-block: 84px;
  }

  .final-content h2 {
    margin-block: 28px;
    font-size: clamp(54px, 15vw, 74px);
  }

  .final-copy {
    font-size: 14px;
  }

  .final-actions {
    display: grid;
    gap: 22px;
    margin-top: 36px;
  }

  .button-blue {
    min-width: 0;
    width: 100%;
  }

  .final-glow {
    top: 48px;
    right: -60px;
    width: 150px;
    height: 150px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 44px 18px 34px;
  }

  .footer-note {
    grid-column: 1;
  }

  .mobile-contact {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 8px;
    padding: 8px max(10px, env(safe-area-inset-left)) calc(8px + env(safe-area-inset-bottom));
    background: rgba(255, 249, 235, 0.96);
    border-top: 1px solid rgba(20, 36, 51, 0.12);
    backdrop-filter: blur(14px);
  }

  .mobile-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
  }

  .mobile-phone {
    color: var(--blue-deep);
    border: 1px solid rgba(4, 40, 77, 0.24);
  }

  .mobile-profile {
    color: var(--cream);
    background: var(--blue);
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 52px;
  }

  .hero-orbit {
    width: 320px;
  }

  .orbit-note {
    padding-inline: 12px;
  }

  .mobile-contact a {
    font-size: 12px;
  }
}

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

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

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