:root {
  --paper: #fbfaf6;
  --white: #ffffff;
  --ink: #172b3a;
  --muted: #556571;
  --blue: #1746b6;
  --blue-deep: #123690;
  --blue-pale: #e9effa;
  --orange: #c94727;
  --orange-deep: #aa341b;
  --peach: #f3c7ac;
  --line: #ced3d5;
  --input-border: #7b8992;
  --error: #ae2d25;
  --focus: #9d351d;
  --font:
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo,
    sans-serif;
  color-scheme: light;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
}
body {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  overflow-wrap: anywhere;
}
h1,
h2,
h3,
p,
figure,
dl,
dd {
  margin: 0;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
}
img,
svg {
  display: block;
  max-width: 100%;
}
img {
  height: auto;
}
[hidden] {
  display: none !important;
}
a,
button,
input,
textarea {
  touch-action: manipulation;
}
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 5px;
}
::selection {
  background: var(--peach);
  color: var(--ink);
}
.wrap {
  width: min(1280px, calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding-block: 112px;
}
.eyebrow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.eyebrow > span:not(.eyebrow-dot) {
  font-size: 12px;
  letter-spacing: 0.09em;
  color: var(--blue);
}
.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
}
h1,
h2,
h3 {
  font-weight: 700;
  word-break: normal;
  overflow-wrap: anywhere;
}
h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.55;
  letter-spacing: -0.035em;
}
h2 em {
  font-style: normal;
  color: var(--blue);
}
h3 {
  font-size: 23px;
  line-height: 1.6;
  letter-spacing: -0.02em;
}
.arrow {
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease;
}
a:hover .arrow {
  transform: translate(3px, -3px);
}
a:active .arrow {
  transform: translate(1px, -1px);
}
.inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 10px;
  border-bottom: 1px solid currentColor;
  font-size: 15px;
  font-weight: 700;
}
.inline-link:hover {
  color: var(--orange);
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 20px 28px;
  color: var(--white);
  background: var(--orange);
  border: 0;
  border-radius: 4px;
  font-weight: 700;
  min-height: 64px;
  transition: background 0.18s ease;
}
.button:hover {
  background: var(--orange-deep);
}
.button:active {
  background: var(--orange-deep);
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 16px;
  z-index: 100;
  padding: 12px 20px;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  min-height: 100px;
  padding: 20px 40px;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: block;
  flex-shrink: 0;
}
/* Combine the supplied turtle artwork with the original Canva wordmark. */
.brand-image {
  display: flex;
  align-items: center;
  gap: 4%;
  width: 240px;
  aspect-ratio: 4.4;
}
.brand-mark,
.brand-wordmark {
  display: block;
  position: relative;
  overflow: hidden;
}
.brand-mark {
  flex: 0 0 30%;
  aspect-ratio: 1210/900;
}
.brand-wordmark {
  flex: 1;
  aspect-ratio: 706/240;
}
.brand-image img {
  position: absolute;
  max-width: none;
  height: auto;
}
.brand-mark img {
  width: 113.223140%;
  left: -5.785124%;
  top: -16.666667%;
}
.brand-wordmark img {
  width: 205.099150%;
  left: -83.852691%;
  top: -31.666667%;
}
#navigation {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 36px);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
#navigation > a {
  padding-block: 12px;
}
#navigation > a:not(.nav-contact):hover {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 8px;
}
#navigation .nav-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 15px 22px;
  border-radius: 4px;
  background: var(--orange);
  color: var(--white);
}
#navigation .nav-contact:hover {
  background: var(--orange-deep);
}
.menu-toggle {
  display: none;
}
.hero {
  padding-top: 54px;
  padding-bottom: 58px;
}
.hero-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(0, 1fr);
  gap: 36px;
  align-items: end;
  margin-top: 22px;
}
.hero h1 {
  font-size: clamp(48px, 6.15vw, 88px);
  line-height: 1.34;
  letter-spacing: -0.055em;
}
.hero h1 > span {
  color: var(--blue);
}
.hero-intro {
  padding-bottom: 10px;
  font-size: 16px;
  line-height: 2;
}
.hero-intro .inline-link {
  margin-top: 20px;
}
.hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.32fr) minmax(0, 1fr);
  gap: 40px;
  margin-top: 40px;
  align-items: end;
}
.hero-side {
  padding: 8px 8px 0;
}
.before-snapshot {
  display: block;
  transform: rotate(-3deg);
  background: var(--white);
  padding: 16px;
  border: 1px solid var(--line);
  box-shadow: 6px 7px 0 var(--blue-pale);
}
.snapshot-heading {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-bottom: 11px;
}
.snapshot-heading small {
  font-size: 12px;
  font-weight: 400;
}
.before-snapshot img {
  width: 100%;
  aspect-ratio: 1477/1108;
  object-fit: contain;
}
.snapshot-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  padding-top: 10px;
}
.snapshot-caption > span[aria-hidden] {
  font-size: 24px;
}
.before-snapshot:hover {
  border-color: var(--blue);
}
.hero-side-note {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
  margin: 24px 6px 5px;
}
.hero-photo {
  position: relative;
}
.hero-photo > img {
  width: 100%;
  aspect-ratio: 1.9;
  object-fit: cover;
  object-position: 50% 64%;
  border-radius: 48px 4px 4px 4px;
}
.hero-photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 14px;
  font-size: 13px;
}
.hero-photo figcaption > span:first-child {
  font-size: 18px;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--blue);
}
.hero-photo figcaption small {
  font-size: 12px;
  letter-spacing: 0;
  margin-left: 8px;
}
.round-contact {
  display: flex;
  width: 172px;
  height: 172px;
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 1;
  color: var(--white);
  background: var(--orange);
  border: 6px solid var(--paper);
  line-height: 1.5;
  transition: background 0.18s;
}
.round-contact > span:first-child {
  font-size: 12px;
  margin-bottom: 7px;
}
.round-contact strong {
  font-size: 22px;
  text-align: center;
}
.round-contact .arrow {
  margin-top: 7px;
}
.round-contact:hover {
  background: var(--orange-deep);
}
.promise-band {
  background: var(--blue);
  color: var(--white);
}
.promise-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 28px;
  padding-block: 28px;
}
.promise-grid p {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 15px;
}
.promise-grid p + p {
  border-left: 1px solid #7290d2;
  padding-left: 30px;
}
.promise-grid span {
  font-size: 13px;
  font-weight: 400;
  color: #dbe6ff;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  align-items: flex-end;
  margin-bottom: 56px;
}
.section-heading h2 {
  margin-top: 18px;
}
.section-heading > p {
  color: var(--muted);
  line-height: 2;
  padding-bottom: 10px;
  max-width: 390px;
}
.work-feature {
  /* Reserve room for the fixed header, comparison controls, and card padding. */
  --comparison-height: clamp(240px, calc(100svh - 280px), 570px);
  --comparison-width: calc(var(--comparison-height) * 1477 / 1108);
  padding: 32px;
  background: var(--blue-pale);
  border-radius: 8px;
}
.work-feature-title {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
}
.work-number {
  color: var(--blue);
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.065em;
}
.work-feature-title p {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}
.work-feature-title h3 {
  font-size: 27px;
}
.mobile-break {
  display: none;
}
.comparison {
  width: min(100%, var(--comparison-width));
  margin-inline: auto;
}
.comparison-images {
  position: relative;
}
.comparison[data-enhanced] .comparison-images {
  touch-action: pan-y;
  cursor: ew-resize;
  user-select: none;
}
.comparison-images img {
  width: 100%;
  height: auto;
}
.comparison-images figure {
  position: relative;
}
.comparison-images figcaption {
  display: flex;
  gap: 10px;
  position: absolute;
  top: 20px;
  padding: 7px 15px;
  font-size: 14px;
  font-weight: 700;
  background: var(--white);
  color: var(--ink);
}
.comparison-images figcaption span {
  font-weight: 400;
  letter-spacing: 0.07em;
  font-size: 12px;
}
.compare-after figcaption {
  right: 20px;
}
.compare-before figcaption {
  left: 20px;
}
.comparison-divider {
  display: none;
}
.has-js .comparison-images {
  --comparison-position: 50%;
  aspect-ratio: 1477/1108;
  width: 100%;
}
.has-js .comparison-images figure {
  position: absolute;
  inset: 0;
}
.has-js .comparison-images .compare-before {
  clip-path: inset(0 calc(100% - var(--comparison-position)) 0 0);
}
.has-js .comparison-images .comparison-divider {
  display: block;
  width: 3px;
  position: absolute;
  inset-block: 0;
  left: var(--comparison-position);
  transform: translateX(-50%);
  background: var(--white);
  pointer-events: none;
}
.comparison-divider > span {
  display: grid;
  place-content: center;
  width: 56px;
  height: 56px;
  color: var(--white);
  background: var(--blue);
  border: 3px solid var(--white);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
}
.comparison-control {
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr);
  gap: 36px;
  align-items: center;
  margin: 24px auto 0;
}
.comparison-control label {
  font-size: 15px;
  font-weight: 700;
}
.comparison-control label span {
  font-weight: 400;
  color: var(--muted);
  display: block;
  font-size: 12px;
}
.comparison-control input {
  width: 100%;
  margin: 0;
  min-height: 44px;
  accent-color: var(--blue);
  cursor: ew-resize;
}
.work-feature-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid #b7c6e4;
  margin-top: 24px;
  padding-top: 20px;
  font-size: 14px;
}
.work-feature-bottom > p {
  font-weight: 700;
}
.work-feature-bottom > div {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.work-feature-bottom a {
  text-decoration: underline;
  text-underline-offset: 5px;
  padding-block: 3px;
}
.work-feature-bottom a:hover {
  color: var(--blue);
}
.work-secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  margin-top: 64px;
}
.work-card:nth-child(2) {
  margin-top: 96px;
}
.gallery-stage {
  padding: 22px;
  background: #f0eee8;
  border-radius: 4px;
}
.gallery-stage figure {
  position: relative;
}
.gallery-stage figure:not([hidden]) + figure:not([hidden]) {
  margin-top: 24px;
}
.gallery-stage a {
  display: block;
}
.gallery-stage img {
  width: 100%;
  height: 430px;
  object-fit: contain;
}
.photo-label {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  color: var(--white);
  background: var(--blue);
  font-size: 13px;
  font-weight: 700;
}
.before-label {
  background: var(--ink);
}
.gallery-controls {
  display: flex;
  width: 100%;
  padding-top: 16px;
  gap: 10px;
}
.gallery-controls button {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--input-border);
  padding: 10px 28px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 30px;
}
.gallery-controls button[aria-pressed="true"] {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.gallery-controls button:hover {
  border-color: var(--blue);
}
.work-caption {
  margin-top: 20px;
}
.work-caption > div {
  display: flex;
  gap: 20px;
  align-items: center;
}
.work-caption .work-number {
  font-size: 38px;
}
.work-caption h3 {
  font-size: 21px;
}
.works-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 44px;
}
.works-bottom > p {
  font-size: 13px;
  color: var(--muted);
}
.services {
  background: var(--blue);
  color: var(--white);
}
.services .eyebrow > span {
  color: #dbe6ff;
}
.services .section-heading > p {
  color: #e2eaff;
}
.service-list {
  border-top: 1px solid #90a8df;
}
.service-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1.45fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: 38px 0;
  border-bottom: 1px solid #90a8df;
}
.service-index {
  color: #dbe6ff;
  font-size: 14px;
}
.service-name {
  display: flex;
  align-items: center;
  gap: 22px;
}
.service-name svg {
  width: 54px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-name h3 {
  font-size: 25px;
}
.service-row ul {
  font-size: 15px;
  line-height: 1.9;
}
.service-row li::before {
  content: "・";
}
.service-action {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}
.service-action .arrow {
  display: grid;
  place-content: center;
  color: var(--blue);
  background: var(--white);
  border-radius: 50%;
  width: 62px;
  height: 62px;
}
.services :focus-visible {
  outline-color: var(--white);
}
.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 10%;
  align-items: center;
}
.about-intro h2 {
  margin-top: 24px;
  font-size: clamp(32px, 3.4vw, 48px);
}
.about-intro > p:last-child {
  margin-top: 28px;
  max-width: 470px;
  color: var(--muted);
  line-height: 2;
}
.about-detail {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: center;
  gap: 28px 32px;
}
.experience {
  border-right: 1px solid var(--line);
  padding-right: 32px;
}
.experience dt {
  font-size: 14px;
  font-weight: 700;
}
.experience dd {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 8px;
  white-space: nowrap;
}
.experience strong {
  font-size: clamp(64px, 6vw, 84px);
  color: var(--blue);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.06em;
}
.qualifications {
  font-size: 14px;
}
.qualifications h3 {
  font-size: 14px;
  margin-bottom: 12px;
}
.qualifications li + li {
  margin-top: 4px;
}
.about-estimate {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: var(--orange);
  font-weight: 700;
  margin: 0;
  font-size: 20px;
}
.about-estimate span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 7px;
}
.area {
  background: #f0eee8;
}
.area-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 9%;
}
.area h2 {
  margin: 22px 0 28px;
  font-size: clamp(32px, 3.4vw, 48px);
}
.area-intro > p:last-child {
  font-size: 14px;
  color: var(--muted);
  margin-top: 22px;
}
.area-label {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}
.cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 460px;
}
.cities li {
  color: var(--blue);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  font-size: 17px;
  padding: 7px 20px;
  font-weight: 700;
}
.company h3 {
  font-size: 20px;
  margin-bottom: 20px;
}
.company dl > div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  padding-block: 16px;
  gap: 16px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.company dt {
  font-weight: 700;
}
.company dd {
  min-width: 0;
}
.company dd span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}
.company a {
  text-underline-offset: 4px;
}
.company a:hover {
  text-decoration: underline;
}
.contact {
  background: var(--peach);
}
.contact-heading {
  margin-bottom: 56px;
}
.contact-heading h2 {
  margin-top: 24px;
  font-size: clamp(30px, 3.7vw, 52px);
  line-height: 1.65;
}
.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 36px 9%;
  align-items: start;
}
.contact-intro {
  grid-column: 1;
  grid-row: 1;
}
.contact-inner > #contact-form {
  grid-column: 2;
  grid-row: 1/3;
}
.contact-inner > .contact-other {
  grid-column: 1;
  grid-row: 2;
  margin-top: 0;
}
.contact-intro > p:first-child {
  font-size: 16px;
  line-height: 2;
}
.estimate-note {
  margin-top: 34px;
  padding-block: 20px;
  border-block: 1px solid #b88b76;
  font-size: 26px;
  font-weight: 700;
}
.estimate-note span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  margin-top: 4px;
}
.contact-other {
  margin-top: 40px;
}
.contact-other > p:first-child {
  font-size: 14px;
  font-weight: 700;
}
.telephone {
  display: inline-block;
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.7;
}
.telephone:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.hours {
  font-size: 13px;
}
.contact .inline-link:hover {
  color: var(--blue-deep);
}
.contact-other .inline-link {
  margin-top: 20px;
}
#contact-form {
  background: var(--white);
  border-radius: 8px;
  padding: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px 20px;
  scroll-margin-top: 110px;
}
#contact-form > * {
  grid-column: 1/-1;
  min-width: 0;
}
#contact-form .field:has(#phone),
#contact-form .field:has(#city) {
  grid-column: auto;
}
.form-note {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
  margin-bottom: 6px;
}
.form-note span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}
.field label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 9px;
}
.field label span {
  font-size: 10px;
  padding: 2px 6px;
  color: var(--blue);
  background: var(--blue-pale);
}
.field label small {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
}
.field input,
.field textarea {
  display: block;
  width: 100%;
  min-width: 0;
  border: 1px solid var(--input-border);
  background: var(--white);
  border-radius: 2px;
  padding: 13px 12px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}
.field textarea {
  resize: vertical;
  min-height: 164px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #697782;
  opacity: 1;
}
.field > small {
  display: block;
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 7px;
}
.field [aria-invalid="true"] {
  border-color: var(--error);
  border-width: 2px;
}
.privacy-note {
  font-size: 12px;
  color: var(--muted);
}
#contact-form .button {
  width: 100%;
}
#contact-form .button:disabled {
  opacity: 0.7;
}
#form-status {
  padding: 14px 16px;
  border: 1px solid #d89479;
  background: #fff3ec;
  color: #753b28;
  font-size: 14px;
  line-height: 1.8;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-end;
  padding-block: 42px;
}
.site-footer .brand-image {
  width: 230px;
}
.site-footer p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}
.footer-end {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 24px;
}
.footer-end small {
  color: var(--muted);
  font-size: 12px;
}
.mobile-contact {
  display: none;
}
.thank-you {
  max-width: 880px;
  min-height: calc(100svh - 200px);
}
.thank-you h1 {
  margin: 24px 0 32px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.6;
}
.thank-you > p {
  margin-block: 20px;
}
.thank-you .button {
  margin-top: 20px;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-photo > img {
    animation: photo-arrive 0.65s ease-out both;
  }
  @keyframes photo-arrive {
    from {
      opacity: 0.65;
      transform: translateY(16px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
@media (min-width: 961px) {
  .work-feature {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(0, var(--comparison-width));
    gap: 32px 48px;
  }
  .work-feature-title {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0;
  }
  .work-feature-title .mobile-break {
    display: inline;
  }
  .work-feature > .comparison {
    grid-column: 2;
    grid-row: 1/3;
    width: 100%;
  }
  .work-feature-bottom {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
    flex-direction: column;
    gap: 16px;
    margin-top: 0;
  }
  .work-feature-bottom > div {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 1180px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .site-header {
    padding-inline: 28px;
    gap: 20px;
  }
  .site-header .brand-image {
    width: 210px;
  }
  #navigation {
    gap: 18px;
    font-size: 13px;
  }
  #navigation .nav-contact {
    padding-inline: 16px;
    gap: 16px;
  }
  .hero-heading {
    grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
    gap: 24px;
  }
  .hero h1 {
    font-size: clamp(46px, 5.7vw, 68px);
  }
  .hero-intro {
    font-size: 14px;
  }
  .hero-stage {
    gap: 28px;
    grid-template-columns: minmax(0, 0.36fr) minmax(0, 1fr);
  }
  .hero-photo > img {
    aspect-ratio: 1.6;
  }
  .round-contact {
    width: 144px;
    height: 144px;
    right: 16px;
    top: 16px;
  }
  .round-contact strong {
    font-size: 20px;
  }
  .snapshot-caption {
    font-size: 11px;
  }
  .promise-grid {
    gap: 20px;
  }
  .promise-grid p {
    gap: 10px;
    font-size: 13px;
  }
  .promise-grid p + p {
    padding-left: 20px;
  }
  .service-row {
    gap: 22px;
    grid-template-columns: 28px minmax(0, 1.3fr) minmax(0, 1fr) auto;
  }
  .service-name {
    gap: 16px;
  }
  .service-name h3 {
    font-size: 21px;
  }
  .service-name svg {
    width: 42px;
  }
  .service-row ul {
    font-size: 14px;
  }
  .about,
  .area-inner,
  .contact-inner {
    gap: 6%;
  }
  #contact-form {
    padding: 28px;
  }
  .work-secondary {
    gap: 28px;
  }
  .gallery-stage img {
    height: 340px;
  }
  .work-caption h3 {
    font-size: 19px;
  }
}
@media (max-width: 960px) {
  html {
    scroll-padding-top: 100px;
  }
  .site-header {
    min-height: 86px;
    flex-wrap: wrap;
    row-gap: 0;
  }
  .site-header .brand-image {
    width: 230px;
  }
  .navigation-panel {
    flex-basis: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding-inline: inherit;
    background: var(--white);
  }
  .site-header[data-enhanced] .navigation-panel {
    display: grid;
    grid-template-rows: 0fr;
    visibility: hidden;
    transition:
      grid-template-rows 0.36s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0.36s;
  }
  .site-header[data-enhanced] .navigation-panel[data-open] {
    grid-template-rows: 1fr;
    visibility: visible;
    transition-delay: 0s;
  }
  .site-header[data-enhanced] .navigation-inner {
    min-height: 0;
    overflow: hidden;
  }
  #navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    padding: 18px 5px 8px;
    margin-top: 18px;
    border-top: 1px solid var(--line);
  }
  .site-header[data-enhanced] #navigation {
    margin-top: 0;
    padding-bottom: 20px;
    border-top: 0;
    opacity: 0;
    transform: translateY(-8px);
    transition:
      opacity 0.24s ease,
      transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .site-header[data-enhanced] .navigation-panel[data-open] #navigation {
    opacity: 1;
    transform: translateY(0);
  }
  #navigation .nav-contact {
    justify-content: center;
  }
  .site-header[data-enhanced] .menu-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    padding: 8px 0 8px 12px;
    color: var(--ink);
    border: 0;
    background: var(--white);
    font-size: 13px;
  }
  .menu-symbol {
    position: relative;
    width: 22px;
    height: 1.5px;
    background: currentColor;
    transition: background-color 0.24s ease;
  }
  .menu-symbol::before,
  .menu-symbol::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 1.5px;
    background: currentColor;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .menu-symbol::before {
    top: -7px;
  }
  .menu-symbol::after {
    top: 7px;
  }
  .menu-toggle[aria-expanded="true"] .menu-symbol {
    background: transparent;
  }
  .menu-toggle[aria-expanded="true"] .menu-symbol::after {
    transform: translateY(-7px) rotate(-45deg);
  }
  .menu-toggle[aria-expanded="true"] .menu-symbol::before {
    transform: translateY(7px) rotate(45deg);
  }
  .hero-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero h1 {
    font-size: clamp(52px, 8vw, 76px);
  }
  .hero-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    font-size: 15px;
    padding: 0;
  }
  .hero-intro .inline-link {
    flex-shrink: 0;
    margin: 0;
  }
  .hero-stage {
    margin-top: 32px;
    gap: 24px;
  }
  .hero-side-note {
    font-size: 12px;
  }
  .before-snapshot {
    padding: 10px;
  }
  .snapshot-caption {
    font-size: 10px;
  }
  .snapshot-heading {
    font-size: 14px;
  }
  .hero-photo figcaption {
    font-size: 11px;
    gap: 8px;
  }
  .hero-photo figcaption > span:first-child {
    font-size: 14px;
  }
  .hero-photo figcaption small {
    font-size: 10px;
    margin-left: 4px;
  }
  .round-contact {
    width: 118px;
    height: 118px;
    border-width: 4px;
    right: 10px;
    top: 10px;
  }
  .round-contact > span:first-child {
    font-size: 10px;
    margin-bottom: 4px;
  }
  .round-contact strong {
    font-size: 16px;
  }
  .round-contact .arrow {
    font-size: 20px;
    margin-top: 4px;
  }
  .promise-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 12px;
  }
  .promise-grid p {
    font-size: 15px;
    padding-block: 10px;
  }
  .promise-grid p + p {
    border-left: 0;
    padding-left: 0;
    border-top: 1px solid #7290d2;
  }
  .section {
    padding-block: 80px;
  }
  .section-heading {
    gap: 28px;
    margin-bottom: 36px;
  }
  .section-heading > p {
    font-size: 14px;
  }
  .work-feature {
    padding: 24px;
  }
  .work-feature-bottom {
    flex-direction: column;
    gap: 12px;
  }
  .work-secondary {
    margin-top: 40px;
  }
  .work-card:nth-child(2) {
    margin-top: 56px;
  }
  .gallery-stage {
    padding: 14px;
  }
  .gallery-stage img {
    height: 290px;
  }
  .work-caption > div {
    gap: 14px;
    align-items: flex-start;
  }
  .work-caption h3 {
    font-size: 17px;
    padding-top: 4px;
  }
  .work-caption .work-number {
    font-size: 30px;
  }
  .service-row {
    grid-template-columns: 24px minmax(0, 1fr) 68px;
    gap: 18px;
  }
  .service-name {
    grid-column: 2;
  }
  .service-row ul {
    grid-column: 2;
  }
  .service-action {
    grid-column: 3;
    grid-row: 1/3;
  }
  .service-name h3 {
    font-size: 24px;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 32px;
    align-items: start;
  }
  .about-intro .eyebrow {
    grid-column: 1/-1;
  }
  .about-intro h2 {
    margin: 0;
    font-size: 32px;
  }
  .about-intro > p:last-child {
    margin: 0;
    font-size: 14px;
  }
  .about-detail {
    max-width: 560px;
  }
  .experience strong {
    font-size: 68px;
  }
  .area-inner {
    gap: 5%;
  }
  .company dl > div {
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 12px;
    font-size: 13px;
  }
  .cities li {
    font-size: 15px;
    padding-inline: 16px;
  }
  .contact-heading h2 {
    font-size: 36px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-inner > #contact-form {
    grid-column: 1;
    grid-row: 2;
  }
  .contact-inner > .contact-other {
    grid-column: 1;
    grid-row: 3;
  }
  .contact-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .estimate-note {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 24px;
  }
  .contact-other {
    grid-column: 1/-1;
    margin: 0;
    border-top: 1px solid #b88b76;
    padding-top: 20px;
  }
  #contact-form {
    width: 100%;
    padding: 36px;
  }
}
@media (max-width: 600px) {
  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom));
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 64px;
  }
  .site-header {
    min-height: 78px;
    padding: 13px 20px;
    column-gap: 12px;
  }
  .site-header .brand-image {
    width: 204px;
  }
  .site-header[data-enhanced] .menu-toggle {
    font-size: 11px;
    gap: 8px;
  }
  #navigation {
    grid-template-columns: 1fr;
    gap: 2px;
    font-size: 15px;
  }
  #navigation > a {
    padding: 12px 4px;
  }
  #navigation .nav-contact {
    margin-top: 8px;
  }
  .hero {
    padding-top: 30px;
    padding-bottom: 32px;
  }
  .hero > .eyebrow {
    font-size: 10px;
    letter-spacing: 0;
    gap: 7px;
  }
  .eyebrow-dot {
    width: 6px;
    height: 6px;
  }
  .hero-heading {
    margin-top: 20px;
    gap: 20px;
  }
  .hero h1 {
    font-size: clamp(34px, 9.8vw, 56px);
    letter-spacing: -0.055em;
    line-height: 1.5;
  }
  .hero-intro {
    display: block;
    font-size: 14px;
    line-height: 1.9;
  }
  .hero-intro .inline-link {
    margin-top: 12px;
    font-size: 13px;
    padding-block: 6px;
  }
  .hero-stage {
    grid-template-columns: minmax(0, 0.64fr) minmax(0, 1fr);
    gap: 20px;
    margin-top: 28px;
  }
  .hero-photo {
    grid-column: 1/-1;
    grid-row: 1;
  }
  .hero-photo > img {
    aspect-ratio: 1477/1108;
    border-radius: 28px 3px 3px 3px;
    object-fit: contain;
  }
  .hero-photo figcaption {
    font-size: 10px;
    margin-top: 10px;
  }
  .hero-side {
    grid-row: 2;
    padding: 0 4px 0 6px;
  }
  .before-snapshot {
    padding: 8px;
  }
  .snapshot-heading {
    gap: 8px;
    font-size: 11px;
    padding-bottom: 6px;
  }
  .snapshot-heading small {
    font-size: 9px;
  }
  .snapshot-caption {
    font-size: 9px;
    padding-top: 5px;
    line-height: 1.6;
  }
  .snapshot-caption > span[aria-hidden] {
    font-size: 17px;
  }
  .hero-side-note {
    display: none;
  }
  .round-contact {
    position: static;
    grid-row: 2;
    grid-column: 2;
    border: 0;
    border-radius: 6px;
    width: 100%;
    height: auto;
    min-height: 108px;
    align-self: center;
    padding: 14px;
  }
  .round-contact strong {
    font-size: 18px;
  }
  .round-contact strong br {
    display: none;
  }
  .round-contact > span:first-child {
    font-size: 11px;
  }
  .round-contact .arrow {
    font-size: 22px;
  }
  .promise-grid {
    padding-block: 10px;
  }
  .promise-grid p {
    font-size: 13px;
    padding-block: 12px;
    gap: 16px;
  }
  .promise-grid span {
    font-size: 11px;
  }
  .eyebrow {
    font-size: 12px;
    gap: 9px;
  }
  .eyebrow > span:not(.eyebrow-dot) {
    font-size: 10px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading h2 {
    margin-top: 16px;
    font-size: 35px;
  }
  .section-heading > p {
    margin-top: 20px;
    padding: 0;
    font-size: 14px;
  }
  .desktop-break {
    display: none;
  }
  .mobile-break {
    display: inline;
  }
  .work-feature {
    --comparison-width: 100%;
    padding: 16px;
    margin-inline: -4px;
  }
  .work-feature-title {
    gap: 16px;
    margin-bottom: 20px;
  }
  .work-number {
    font-size: 43px;
  }
  .work-feature-title p {
    font-size: 12px;
  }
  .work-feature-title h3 {
    font-size: 19px;
  }
  .comparison-images figcaption {
    font-size: 12px;
    top: 8px;
    padding: 4px 8px;
    gap: 0;
  }
  .comparison-images figcaption span {
    display: none;
  }
  .compare-before figcaption {
    left: 8px;
  }
  .compare-after figcaption {
    right: 8px;
  }
  .comparison-divider > span {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }
  .comparison-control {
    margin-top: 16px;
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .comparison-control label {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4px;
  }
  .comparison-control label span {
    font-size: 12px;
  }
  .work-feature-bottom {
    margin-top: 16px;
    padding-top: 16px;
    gap: 10px;
    font-size: 12px;
  }
  .work-feature-bottom > div {
    gap: 16px;
  }
  .work-secondary {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 36px;
  }
  .work-card:nth-child(2) {
    margin-top: 0;
  }
  .gallery-stage {
    padding: 18px;
  }
  .gallery-stage img {
    height: 330px;
  }
  .gallery-controls {
    padding-top: 14px;
    gap: 10px;
  }
  .gallery-controls button {
    padding-inline: 27px;
    font-size: 13px;
  }
  .work-caption {
    margin-top: 16px;
  }
  .work-caption h3 {
    font-size: 17px;
  }
  .works-bottom {
    margin-top: 28px;
    gap: 20px;
  }
  .works-bottom > p {
    font-size: 12px;
  }
  .works-bottom .inline-link {
    font-size: 13px;
  }
  .services h2 {
    font-size: 33px;
  }
  .service-row {
    grid-template-columns: 18px minmax(0, 1fr) 56px;
    gap: 12px;
    padding-block: 28px;
  }
  .service-index {
    font-size: 11px;
  }
  .service-name {
    gap: 10px;
    align-items: flex-start;
  }
  .service-name svg {
    width: 30px;
    height: 34px;
  }
  .service-name h3 {
    font-size: 19px;
  }
  .service-row ul {
    font-size: 13px;
  }
  .service-action {
    font-size: 12px;
    gap: 8px;
  }
  .service-action .arrow {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-intro {
    display: block;
  }
  .about-intro h2 {
    margin-top: 18px;
    font-size: 33px;
  }
  .about-intro > p:last-child {
    margin-top: 22px;
    font-size: 14px;
  }
  .about-detail {
    display: block;
  }
  .experience {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    border: 0;
    padding: 0 0 22px;
  }
  .experience dt {
    font-size: 13px;
  }
  .experience strong {
    font-size: 66px;
  }
  .experience dd {
    gap: 7px;
    margin: 0;
    font-size: 14px;
  }
  .qualifications {
    display: grid;
    grid-template-columns: 74px 1fr;
    padding-block: 24px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    gap: 12px;
  }
  .qualifications h3 {
    font-size: 14px;
    margin: 0;
  }
  .about-estimate {
    font-size: 19px;
    padding-top: 22px;
  }
  .about-estimate span {
    font-size: 12px;
  }
  .area-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .area h2 {
    font-size: 34px;
    margin-top: 18px;
  }
  .cities {
    gap: 8px;
  }
  .cities li {
    font-size: 16px;
    padding: 6px 17px;
  }
  .area-intro > p:last-child {
    font-size: 13px;
  }
  .company h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .company dl > div {
    grid-template-columns: 70px minmax(0, 1fr);
    padding-block: 14px;
    font-size: 13px;
  }
  .contact {
    padding-top: 48px;
  }
  .contact-heading {
    margin-bottom: 20px;
  }
  .contact-heading h2 {
    font-size: clamp(25px, 6.65vw, 36px);
    margin-top: 14px;
    line-height: 1.8;
    letter-spacing: -0.04em;
  }
  .contact-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .contact-intro {
    display: contents;
  }
  .contact-intro > p:first-child {
    order: 0;
    font-size: 14px;
  }
  .estimate-note {
    order: 1;
    font-size: 23px;
  }
  .estimate-note span {
    font-size: 12px;
  }
  #contact-form {
    order: 2;
    padding: 24px 20px;
    gap: 22px 12px;
  }
  .contact-other {
    order: 3;
    width: 100%;
    padding-top: 28px;
    margin-top: 4px;
  }
  .telephone {
    font-size: 32px;
  }
  .hours {
    font-size: 12px;
  }
  .contact-other .inline-link {
    font-size: 14px;
  }
  .form-note {
    font-size: 16px;
  }
  .form-note span {
    font-size: 12px;
  }
  #contact-form .field:has(#phone),
  #contact-form .field:has(#city) {
    grid-column: 1/-1;
  }
  .field label {
    font-size: 15px;
  }
  .field input,
  .field textarea {
    font-size: 16px;
    padding: 13px 11px;
  }
  .privacy-note {
    font-size: 11px;
  }
  #contact-form .button {
    padding: 18px;
    gap: 16px;
    font-size: 15px;
  }
  .site-footer {
    padding-block: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .site-footer .brand-image {
    width: 220px;
  }
  .site-footer p {
    font-size: 12px;
    margin-top: 12px;
  }
  .footer-end {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .footer-end .inline-link {
    flex-shrink: 0;
    font-size: 12px;
    gap: 16px;
  }
  .mobile-contact {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 8px;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    position: fixed;
    inset: auto 0 0;
    z-index: 50;
    background: var(--white);
    border-top: 1px solid var(--line);
  }
  .mobile-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 48px;
    border: 1px solid var(--blue);
    color: var(--blue);
    border-radius: 3px;
    font-size: 13px;
    font-weight: 700;
  }
  .mobile-contact a + a {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
  }
  .mobile-contact a:hover {
    background: var(--blue-pale);
  }
  .mobile-contact a + a:hover {
    background: var(--orange-deep);
  }
  .mobile-contact .arrow {
    font-size: 22px;
  }
}
@media (max-width: 360px) {
  .snapshot-heading {
    font-size: 10px;
    letter-spacing: 0;
    gap: 4px;
  }
  .snapshot-heading small {
    font-size: 8px;
  }
  .site-header {
    padding-inline: 16px;
    gap: 8px;
  }
  .site-header .brand-image {
    width: 178px;
  }
  .wrap {
    width: calc(100% - 32px);
  }
  .hero > .eyebrow {
    font-size: 9px;
    gap: 5px;
  }
  .hero h1 {
    font-size: 33px;
  }
  .hero-intro {
    font-size: 13px;
  }
  .hero-stage {
    gap: 16px;
  }
  .round-contact {
    padding-inline: 10px;
  }
  .round-contact strong {
    font-size: 16px;
  }
  .snapshot-caption {
    font-size: 8px;
  }
  .hero-photo figcaption {
    font-size: 9px;
  }
  .hero-photo figcaption > span:first-child {
    font-size: 12px;
  }
  .hero-photo figcaption small {
    display: none;
  }
  .service-name h3 {
    font-size: 17px;
  }
  .service-name svg {
    display: none;
  }
  .contact-heading h2 {
    font-size: 23px;
  }
  #contact-form {
    padding-inline: 16px;
  }
  .telephone {
    font-size: 29px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  a:hover .arrow {
    transform: none;
  }
}
