@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --paper: #fbfaf7;
  --warm: #f3eee7;
  --ink: #222222;
  --muted: #706b64;
  --faint: #a09a92;
  --line: #e2ddd5;
  --line-strong: #c8c0b6;
  --dark: #141414;
  --accent: #8d6b4c;
  --schedule-green: #2f6f46;
  --schedule-green-dark: #245638;
  --max: 1120px;
  --content-max: 1440px;
  --content-gutter: 32px;
  --page-top-space: 48px;
  --page-bottom-space: 88px;
  --header-divider-offset: 8px;
  --header-nav-y: -4px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  background: transparent;
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header::before,
.site-header::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.site-header::before {
  top: 0;
  right: 0;
  bottom: var(--header-divider-offset);
  left: 0;
  z-index: 0;
  background: rgba(251, 250, 247, 0.96);
  backdrop-filter: blur(12px);
}

.site-header::after {
  right: 0;
  bottom: var(--header-divider-offset);
  left: 0;
  z-index: 1;
  height: 1px;
  background: rgba(170, 167, 163, 0.82);
}

.header-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 46px);
  width: min(calc(100% - var(--content-gutter)), var(--content-max));
  margin: 0 auto;
  min-height: 0;
  padding: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 8px;
  text-decoration: none;
}

.brand-logo {
  width: 174px;
  height: 92px;
  object-fit: cover;
  object-position: center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  filter: none;
}

.home-page .brand-logo {
  width: 174px;
  height: 92px;
}

.brand-wordmark-image {
  width: clamp(205px, 18vw, 300px);
  height: 48px;
  object-fit: cover;
  object-position: center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  filter: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 18px 26px;
  transform: translateY(var(--header-nav-y));
}

.site-nav a {
  position: relative;
  color: #252525;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  opacity: 0;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  opacity: 1;
}

.section-frame,
.home-hero,
.pricing-section {
  width: min(calc(100% - var(--content-gutter)), var(--content-max));
  margin: 0 auto;
}

body > main.section-frame,
.pricing-section {
  padding: var(--page-top-space) 0 var(--page-bottom-space);
}

.home-hero {
  position: relative;
  min-height: 600px;
  margin-top: var(--page-top-space);
  overflow: hidden;
}

body > main.section-frame > h1:first-child {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
}

body > main.section-frame > h1:first-child + p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
}

.about-page {
  padding: var(--page-top-space) 0 var(--page-bottom-space);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1fr);
  gap: clamp(52px, 7vw, 108px);
  align-items: center;
}

.about-copy {
  max-width: 620px;
}

.about-copy h1 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(52px, 5vw, 72px);
  font-weight: 600;
  line-height: 0.98;
}

.about-lead {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
}

.about-copy p:not(.about-lead) {
  max-width: 560px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.75;
}

.about-copy .button {
  min-width: 238px;
  margin-top: 18px;
}

.about-media {
  margin: 0;
}

.about-media img {
  width: 100%;
  aspect-ratio: 1.62 / 1;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 46px rgba(28, 24, 20, 0.1);
}

.about-media figcaption {
  margin-top: 24px;
  color: rgba(141, 107, 76, 0.34);
  font-family: var(--serif);
  font-size: clamp(25px, 2.4vw, 40px);
  font-style: italic;
  line-height: 1;
  text-align: center;
}

.about-approach {
  margin-top: 70px;
  padding: 44px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.38);
}

.about-approach-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.8fr);
  gap: 42px;
  align-items: start;
}

.about-approach-intro h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.about-approach-intro p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}

.approach-item {
  min-height: 164px;
  padding: 0 32px;
  border-right: 1px solid var(--line);
}

.approach-item svg {
  width: 34px;
  height: 34px;
  margin-bottom: 26px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.approach-item h3 {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.approach-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
  padding-top: 44px;
}

.about-stats div {
  min-height: 70px;
  padding: 0 28px;
  text-align: center;
}

.about-stats div + div {
  border-left: 1px solid var(--line);
}

.about-stats strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

.about-stats span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.home-hero img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center;
}

.home-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 15, 15, 0.72), rgba(15, 15, 15, 0.18) 66%, rgba(15, 15, 15, 0.04)),
    linear-gradient(0deg, rgba(15, 15, 15, 0.14), rgba(15, 15, 15, 0.04));
}

.home-hero-copy {
  position: absolute;
  top: 50%;
  left: 44px;
  width: min(500px, calc(100% - 88px));
  color: #ffffff;
  transform: translateY(-50%);
}

.home-hero-copy h1 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 62px;
  font-weight: 600;
  line-height: 1.04;
}

.home-hero-copy p {
  max-width: 410px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 500;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 13px 24px;
  border: 1px solid var(--dark);
  background: transparent;
  color: var(--dark);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.button-light {
  border-color: rgba(255, 255, 255, 0.76);
  color: #ffffff;
}

.button-dark {
  border-color: var(--dark);
  background: var(--dark);
  color: #ffffff;
}

.button.schedule-cta {
  border-color: var(--schedule-green);
  background: var(--schedule-green);
  color: #ffffff;
}

.button.schedule-cta:hover {
  border-color: var(--schedule-green-dark);
  background: var(--schedule-green-dark);
}

.home-offers {
  padding: 56px 0 48px;
}

.home-offers h2 {
  margin: 0 0 36px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

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


.offer-card {
  display: block;
}

.offer-card a {
  display: block;
  overflow: hidden;
  text-decoration: none;
}

.offer-card img {
  width: 100%;
  aspect-ratio: 1.46 / 1;
  object-fit: cover;
  transition: transform 180ms ease;
}

.offer-card:hover img {
  transform: scale(1.025);
}

.offer-card h3 {
  margin: 17px 0 5px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.offer-card p {
  max-width: 210px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.home-editing {
  padding: 56px 0 64px;
  background: var(--warm);
}

.home-editing-inner {
  padding: 0;
}

.home-editing-head {
  margin-bottom: 34px;
}

.home-editing-head h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.home-editing-head p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}

.editing-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}

.editing-item {
  padding: 0 22px;
  border-right: 1px solid var(--line);
}

.editing-item svg {
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 20px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.editing-item h3 {
  margin: 0 0 10px;
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.25;
}

.editing-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.6;
}

.editing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 44px;
  padding: 26px 32px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(28, 24, 20, 0.06);
}

.editing-footer-info {
  display: flex;
  align-items: center;
  gap: 18px;
}

.editing-footer-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--paper);
}

.editing-footer-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 9px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.editing-footer-info strong {
  display: block;
  margin-bottom: 2px;
  font-size: 16px;
  font-weight: 800;
}

.editing-footer-info span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.home-statement {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px 0 48px;
  border-top: 1px solid var(--line);
}

.home-statement h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.02;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-transform: uppercase;
}

.portfolio-intro {
  margin-bottom: 34px;
}

.portfolio-intro h1 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
}

.portfolio-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-bottom: 42px;
}

.portfolio-filters a {
  position: relative;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.portfolio-filters a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  content: "";
  background: currentColor;
  opacity: 0;
}

.portfolio-filters a.active,
.portfolio-filters a:hover {
  color: var(--ink);
}

.portfolio-filters a.active::after,
.portfolio-filters a:hover::after {
  opacity: 1;
}

.portfolio-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 300px);
  gap: clamp(28px, 3vw, 42px);
  align-items: stretch;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.portfolio-card {
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(28, 24, 20, 0.08);
}

.portfolio-card a {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 1.86 / 1;
  object-fit: cover;
}

.portfolio-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px 28px 28px;
}

.portfolio-layout .portfolio-card-body {
  padding: 22px 24px 24px;
}

.portfolio-card h2 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  line-height: 1.02;
}

.portfolio-layout .portfolio-card h2 {
  font-size: clamp(24px, 1.8vw, 30px);
}

.portfolio-card p {
  margin: 0 0 30px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
}

.portfolio-layout .portfolio-card p {
  margin-bottom: 24px;
  font-size: 14px;
}

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

.portfolio-layout .portfolio-card span {
  font-size: 12px;
}

.portfolio-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
}

.portfolio-card .image-count {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 16px;
  white-space: nowrap;
}

.portfolio-layout .portfolio-card .image-count {
  font-size: 12px;
}

.portfolio-sidebar {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 36px 34px 34px;
  border: 1px solid rgba(226, 221, 213, 0.74);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 34px rgba(28, 24, 20, 0.07);
}

.portfolio-sidebar h2 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.portfolio-service-list {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.portfolio-service-item,
.portfolio-delivery {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
}

.portfolio-service-item {
  min-height: 34px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.portfolio-service-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--muted);
}

.portfolio-service-icon svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.portfolio-delivery {
  margin-top: auto;
  padding-top: 52px;
}

.portfolio-delivery strong {
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.portfolio-delivery div > span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.portfolio-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 54px;
  margin-top: 34px;
  padding: 30px 34px;
  background: #f5f0ea;
  box-shadow: 0 12px 30px rgba(28, 24, 20, 0.08);
}

.portfolio-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.1;
}

.project-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 44px;
}

.project-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.project-back-button,
.project-step-link {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.project-back-button {
  gap: 10px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(200, 192, 182, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(28, 24, 20, 0.05);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.project-back-button:hover,
.project-step-link:hover,
.project-nav-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 14px 28px rgba(28, 24, 20, 0.09);
  transform: translateY(-1px);
}

.project-arrow-icon,
.project-nav-card-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--dark);
  color: #ffffff;
  line-height: 1;
}

.project-arrow-icon {
  width: 26px;
  height: 26px;
  font-size: 13px;
}

.project-step-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.project-step-link {
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(226, 221, 213, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.project-hero h1 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 600;
  line-height: 0.98;
}

.project-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.project-meta {
  display: flex;
  justify-content: flex-end;
  gap: 36px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.project-gallery-item {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(28, 24, 20, 0.07);
  cursor: zoom-in;
}

.project-gallery-item img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  transition: transform 180ms ease;
}

.project-gallery-item:focus-visible {
  outline: 2px solid var(--dark);
  outline-offset: 4px;
}

.project-gallery-item:hover img {
  transform: scale(1.025);
}

.gallery-lightbox-open,
.gallery-lightbox-open body {
  overflow: hidden;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(14, 13, 12, 0.86);
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
}

.gallery-lightbox-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: min(100%, 1280px);
  max-height: calc(100svh - 56px);
}

.gallery-lightbox-stage {
  display: grid;
  min-width: 0;
  min-height: 0;
  place-items: center;
  outline: none;
}

.gallery-lightbox-image {
  width: auto;
  max-width: 100%;
  max-height: calc(100svh - 128px);
  object-fit: contain;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(251, 250, 247, 0.92);
  color: var(--ink);
  cursor: pointer;
  line-height: 1;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: #ffffff;
  transform: translateY(-1px);
}

.gallery-lightbox-close:focus-visible,
.gallery-lightbox-nav:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

.gallery-lightbox-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 44px;
  height: 44px;
  font-size: 26px;
}

.gallery-lightbox-nav {
  width: 54px;
  height: 54px;
  font-size: 42px;
}

.gallery-lightbox-prev {
  grid-column: 1;
  grid-row: 1;
}

.gallery-lightbox-next {
  grid-column: 3;
  grid-row: 1;
}

.gallery-lightbox-count {
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(251, 250, 247, 0.92);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
}

.project-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
}

.project-actions-modern {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

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

.project-nav-card {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 14px;
  border: 1px solid rgba(226, 221, 213, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(28, 24, 20, 0.05);
  text-decoration: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.project-nav-card-next {
  grid-template-columns: minmax(0, 1fr) 32px;
  text-align: right;
}

.project-nav-card-icon {
  width: 30px;
  height: 30px;
  font-size: 13px;
}

.project-nav-card small {
  display: block;
  margin-bottom: 4px;
  color: var(--faint);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.project-nav-card strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.project-back-button-center {
  justify-content: center;
  min-height: 72px;
  border-radius: 8px;
  padding: 0 18px;
}

.project-schedule-button {
  min-width: 204px;
}

.back-link {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

body > main.services-page.section-frame {
  padding-top: var(--page-top-space);
  padding-bottom: var(--page-bottom-space);
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(290px, 360px) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 68px);
  align-items: start;
}

.services-copy {
  display: flex;
  position: sticky;
  top: 124px;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 360px;
  padding: 4px 0 0;
}

.services-intro {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.services-intro h1 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(54px, 5vw, 68px);
  font-weight: 600;
  line-height: 0.98;
}

.services-intro p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
}

.services-list {
  display: grid;
  gap: 2px;
  width: 100%;
}

.service-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 22px;
  gap: 14px;
  align-items: center;
  min-height: 74px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.service-row:hover {
  border-color: var(--line-strong);
  transform: translateX(2px);
}

.service-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(200, 192, 182, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
}

.service-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-body strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.service-body span {
  display: block;
  max-width: 284px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.45;
}

.service-arrow {
  justify-self: end;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}

.services-cta {
  width: fit-content;
  min-width: 204px;
  margin-top: 44px;
}

.services-comparisons {
  width: 100%;
  padding: 0 0 4px;
}

.comparison-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.comparison-head .eyebrow {
  margin-bottom: 10px;
}

.comparison-head h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3.2vw, 46px);
  font-weight: 600;
  line-height: 1;
}

.comparison-head p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
}

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

.comparison-card {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(226, 221, 213, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 34px rgba(28, 24, 20, 0.07);
}

.comparison-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  line-height: 1;
}

.comparison-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.comparison-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1.12 / 1;
  border-radius: 6px;
  background: var(--warm);
}

.comparison-shot img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 206%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.comparison-shot-after img {
  right: 0;
  left: auto;
}

.comparison-shot figcaption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 6px 10px;
  background: rgba(20, 20, 20, 0.78);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.schedule-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1fr);
  gap: clamp(54px, 8vw, 126px);
  align-items: start;
}

.schedule-card {
  width: min(620px, 100%);
  padding: 0;
}

.schedule-card h1 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(48px, 4.8vw, 68px);
  font-weight: 600;
  line-height: 1;
}

.schedule-lead {
  max-width: 560px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.55;
}

.schedule-methods {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.schedule-method {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 76px;
  padding: 14px 18px;
  border: 1px solid rgba(226, 221, 213, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(28, 24, 20, 0.04);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.38;
  text-decoration: none;
  overflow-wrap: anywhere;
}

a.schedule-method {
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

a.schedule-method:hover {
  border-color: var(--line-strong);
  box-shadow: 0 12px 28px rgba(28, 24, 20, 0.08);
  transform: translateY(-1px);
}

.schedule-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(251, 250, 247, 0.88);
}

.schedule-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.schedule-method strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.schedule-button {
  min-width: 254px;
  margin-top: 0;
}

.schedule-map {
  overflow: hidden;
  border: 1px solid rgba(226, 221, 213, 0.9);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(28, 24, 20, 0.11);
}

.schedule-map img {
  width: 100%;
  height: clamp(500px, 52vw, 700px);
  object-fit: cover;
  object-position: center 68%;
}

.schedule-map-note {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  border-top: 1px solid var(--line);
  background: #ffffff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.schedule-map-note strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.pricing-panel {
  width: min(980px, 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--faint);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.pricing-panel h1 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 600;
  line-height: 1;
}

.section-subtitle {
  margin: 0 0 24px;
  color: var(--muted);
}

.package-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 44px;
}

.package-tab {
  min-height: 84px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.package-tab.active {
  border-color: var(--dark);
  background: var(--dark);
  color: #ffffff;
}

.quote-form {
  margin: 0;
}

.field-label,
.services-divider h2 {
  display: block;
  margin: 0 0 15px;
  color: var(--faint);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.quote-form select {
  display: block;
  width: 100%;
  min-height: 60px;
  padding: 0 50px 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  appearance: none;
  background-color: transparent;
  background-image:
    linear-gradient(45deg, transparent 50%, #777 50%),
    linear-gradient(135deg, #777 50%, transparent 50%);
  background-position:
    calc(100% - 29px) 27px,
    calc(100% - 20px) 27px;
  background-size:
    9px 9px,
    9px 9px;
  background-repeat: no-repeat;
  color: var(--ink);
}

.helper-text {
  margin: 12px 0 42px;
  color: var(--muted);
  font-size: 14px;
}

.services-divider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 11px 18px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.add-on-list {
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.add-on-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.add-on-copy {
  display: flex;
  align-items: flex-start;
  min-width: 0;
  color: var(--ink);
}

.add-on-copy small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.price {
  flex: 0 0 auto;
  font-weight: 600;
}

.quote-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

@media (max-width: 1180px) {
  .portfolio-layout {
    grid-template-columns: 1fr;
  }

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

  .portfolio-sidebar {
    min-height: 0;
  }

  .portfolio-service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
  }

  .portfolio-delivery {
    margin-top: 30px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  :root {
    --page-top-space: 36px;
    --page-bottom-space: 72px;
    --header-nav-y: 0px;
  }

  .site-header::before {
    bottom: 0;
  }

  .site-header::after {
    bottom: 0;
  }

  .section-frame,
  .home-hero,
  .pricing-section {
    width: min(calc(100% - 24px), 720px);
  }

  .header-inner {
    width: calc(100% - 24px);
    align-items: center;
    flex-direction: column;
    gap: 8px;
    padding: 4px 0 10px;
  }

  .brand-logo,
  .home-page .brand-logo {
    width: 142px;
    height: 74px;
  }

  .brand {
    gap: 6px;
  }

  .brand-wordmark-image {
    width: clamp(165px, 29vw, 225px);
    height: 38px;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding: 0 2px 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(226, 221, 213, 0.9);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 6px 16px rgba(28, 24, 20, 0.04);
    font-size: 10px;
    letter-spacing: 0.08em;
    line-height: 1;
    white-space: nowrap;
  }

  .site-nav a.active {
    border-color: var(--dark);
    background: var(--dark);
    color: #ffffff;
  }

  .site-nav a::after {
    display: none;
  }

  .home-hero,
  .home-hero img {
    min-height: 540px;
    height: 540px;
  }

  .home-hero-copy {
    left: 24px;
    width: calc(100% - 48px);
  }

  .home-hero-copy h1 {
    font-size: 48px;
  }

  .home-offers {
    padding: 44px 0 42px;
  }

  .offer-grid,
  .package-tabs {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .offer-card {
    max-width: 620px;
  }

  .offer-card img {
    aspect-ratio: 1.5 / 1;
  }

  .editing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
  }

  .editing-item {
    padding: 28px;
    border-bottom: 1px solid var(--line);
  }

  .editing-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-layout .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card img {
    aspect-ratio: 1.45 / 0.82;
  }

  .portfolio-cta {
    gap: 18px;
  }

  .about-hero,
  .about-approach-inner {
    grid-template-columns: 1fr;
  }

  .about-copy {
    max-width: 760px;
  }

  .about-media img {
    max-height: 520px;
  }

  .approach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--line);
  }

  .approach-item {
    padding: 28px;
    border-bottom: 1px solid var(--line);
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 0;
  }

  .about-stats div:nth-child(3) {
    border-left: 0;
  }

  .schedule-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .schedule-card {
    width: 100%;
  }

  .schedule-map img {
    height: 430px;
  }

  .home-statement,
  .services-divider,
  .quote-actions,
  .portfolio-cta,
  .project-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-hero,
  .project-gallery {
    grid-template-columns: 1fr;
  }

  .project-topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
    padding-bottom: 22px;
  }

  .project-step-nav {
    width: 100%;
  }

  .project-step-link {
    flex: 1;
    justify-content: center;
  }

  .project-meta {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

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

  .project-nav-cards {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .project-back-button-center {
    justify-self: stretch;
    min-height: 58px;
  }

  .project-schedule-button {
    width: 100%;
  }

  body > main.services-page.section-frame {
    padding-top: var(--page-top-space);
    padding-bottom: var(--page-bottom-space);
  }

  .services-layout {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: 0;
  }

  .services-copy {
    position: static;
    max-width: 680px;
    padding: 0;
  }

  .services-intro {
    margin-bottom: 34px;
  }

  .comparison-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .comparison-grid {
    gap: 18px;
  }

  .comparison-card h3 {
    font-size: 22px;
  }

  .pricing-panel {
    width: min(720px, 100%);
  }

  .pricing-panel h1 {
    font-size: 46px;
  }
}

@media (max-width: 560px) {
  :root {
    --page-top-space: 28px;
    --page-bottom-space: 60px;
  }

  .header-inner,
  .section-frame,
  .home-hero,
  .pricing-section {
    width: calc(100% - 18px);
  }

  .brand-logo,
  .home-page .brand-logo {
    width: 128px;
    height: 66px;
  }

  .brand {
    gap: 5px;
  }

  .brand-wordmark-image {
    width: clamp(112px, 34vw, 150px);
    height: 30px;
  }

  .site-nav a {
    min-height: 32px;
    padding: 0 10px;
    font-size: 9.5px;
  }

  body > main.section-frame,
  .pricing-section,
  .about-page {
    padding-top: 24px;
  }

  .about-copy h1 {
    font-size: 46px;
  }

  .about-lead {
    margin-bottom: 22px;
    font-size: 16px;
  }

  .about-copy p:not(.about-lead) {
    font-size: 15px;
    line-height: 1.68;
  }

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

  .about-media img {
    aspect-ratio: 1.15 / 1;
    max-height: none;
  }

  .about-media figcaption {
    margin-top: 16px;
    text-align: left;
  }

  .about-approach {
    margin-top: 46px;
    padding: 34px 0;
  }

  .approach-grid,
  .about-stats {
    grid-template-columns: 1fr;
  }

  .approach-grid,
  .approach-item,
  .about-stats div,
  .about-stats div + div,
  .about-stats div:nth-child(3) {
    border-left: 0;
  }

  .approach-item {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
  }

  .about-stats {
    gap: 0;
    padding-top: 30px;
  }

  .about-stats div {
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
  }

  .editing-grid {
    grid-template-columns: 1fr;
    border-top: 1px solid var(--line);
  }

  .editing-item {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .editing-footer {
    padding: 22px;
  }

  .editing-footer-info {
    align-items: flex-start;
  }

  .schedule-card h1 {
    font-size: 42px;
  }

  .schedule-lead {
    margin-bottom: 24px;
    font-size: 15px;
  }

  .schedule-method,
  .schedule-map-note {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 14px;
  }

  .schedule-icon {
    width: 38px;
    height: 38px;
  }

  .schedule-map img {
    height: 320px;
  }

  .schedule-button,
  .schedule-page .button {
    width: 100%;
  }

  .home-hero,
  .home-hero img {
    min-height: min(560px, calc(100svh - 122px));
    height: min(560px, calc(100svh - 122px));
  }

  .home-hero {
    margin-top: 18px;
  }

  .home-hero img {
    object-position: 54% center;
  }

  .home-hero-shade {
    background:
      linear-gradient(0deg, rgba(15, 15, 15, 0.74), rgba(15, 15, 15, 0.15) 72%, rgba(15, 15, 15, 0.08)),
      linear-gradient(90deg, rgba(15, 15, 15, 0.42), rgba(15, 15, 15, 0.08));
  }

  .home-hero-copy {
    top: auto;
    bottom: 26px;
    left: 18px;
    width: calc(100% - 36px);
    transform: none;
  }

  .home-hero-copy h1 {
    margin-bottom: 14px;
    font-size: 39px;
    line-height: 1;
  }

  .home-hero-copy p {
    margin-bottom: 22px;
    font-size: 14px;
  }

  .home-hero-copy .button,
  .editing-footer .button {
    width: 100%;
  }

  .home-offers {
    padding: 40px 0 36px;
  }

  .home-offers h2,
  .home-editing-head h2 {
    font-size: 31px;
  }

  .offer-grid {
    gap: 18px;
  }

  .offer-card {
    overflow: hidden;
    border: 1px solid rgba(226, 221, 213, 0.9);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 10px 24px rgba(28, 24, 20, 0.06);
  }

  .offer-card img {
    aspect-ratio: 1.22 / 1;
  }

  .offer-card h3,
  .offer-card p {
    margin-right: 18px;
    margin-left: 18px;
  }

  .offer-card p {
    margin-bottom: 18px;
  }

  .home-statement h2 {
    font-size: 32px;
  }

  .portfolio-intro h1 {
    font-size: 40px;
  }

  .portfolio-intro {
    margin-bottom: 24px;
  }

  .portfolio-filters {
    gap: 20px;
  }

  .portfolio-sidebar {
    padding: 26px 22px;
  }

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

  .portfolio-card-body {
    padding: 20px;
  }

  .portfolio-card h2 {
    font-size: 30px;
  }

  .portfolio-card p {
    margin-bottom: 22px;
    font-size: 16px;
  }

  .portfolio-card-meta {
    gap: 12px;
  }

  .portfolio-card .image-count,
  .portfolio-layout .portfolio-card .image-count {
    font-size: 11px;
  }

  .portfolio-cta {
    padding: 24px 20px;
    text-align: left;
  }

  .portfolio-cta .button {
    width: 100%;
  }

  .project-hero h1 {
    font-size: 42px;
  }

  .project-hero {
    gap: 18px;
    margin-bottom: 28px;
  }

  .project-gallery {
    gap: 12px;
  }

  .project-gallery-item img {
    aspect-ratio: 1.25 / 1;
  }

  .gallery-lightbox {
    align-items: start;
    overflow-y: auto;
    padding: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-lightbox-shell {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 10px;
    width: 100%;
    max-height: none;
    min-height: calc(100svh - 24px);
    padding: 54px 0 18px;
  }

  .gallery-lightbox-close {
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .gallery-lightbox-stage {
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: start;
  }

  .gallery-lightbox-image {
    width: 100%;
    max-height: none;
    height: auto;
  }

  .gallery-lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 32px;
  }

  .gallery-lightbox-prev {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
  }

  .gallery-lightbox-next {
    grid-column: 3;
    grid-row: 3;
    justify-self: end;
  }

  .gallery-lightbox-count {
    grid-column: 2;
    grid-row: 3;
    align-self: center;
  }

  .project-back-button {
    min-height: 40px;
    padding: 0 12px;
    font-size: 10px;
  }

  .project-step-nav {
    gap: 8px;
  }

  .project-step-link {
    min-height: 36px;
    padding: 0 10px;
    font-size: 10px;
  }

  .project-nav-card {
    min-height: 64px;
    padding: 12px;
  }

  .services-intro h1 {
    font-size: 46px;
  }

  .services-intro p {
    max-width: 280px;
    font-size: 14px;
  }

  .service-row {
    grid-template-columns: 42px minmax(0, 1fr) 18px;
    gap: 12px;
    min-height: 76px;
  }

  .service-icon,
  .service-icon svg {
    width: 30px;
    height: 30px;
  }

  .services-cta {
    width: 100%;
    margin-top: 34px;
  }

  .comparison-head {
    margin-bottom: 20px;
    padding-bottom: 18px;
  }

  .comparison-head h2 {
    font-size: 32px;
  }

  .comparison-head p {
    font-size: 12.5px;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .comparison-pair {
    gap: 8px;
  }

  .comparison-card {
    padding: 10px;
  }

  .comparison-card h3 {
    font-size: 21px;
  }

  .comparison-shot figcaption {
    bottom: 10px;
    left: 10px;
    min-height: 24px;
    padding: 6px 9px;
    font-size: 9px;
  }

  .add-on-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 16px;
    min-height: 0;
    padding: 18px 0;
  }

  .pricing-panel {
    padding: 22px 18px;
    border: 1px solid rgba(226, 221, 213, 0.86);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.64);
    box-shadow: 0 12px 28px rgba(28, 24, 20, 0.06);
  }

  .pricing-panel h1 {
    font-size: 42px;
  }

  .section-subtitle {
    margin-bottom: 20px;
  }

  .helper-text {
    margin-bottom: 28px;
  }

  .services-divider {
    padding-top: 26px;
  }

  .quote-actions .button {
    width: 100%;
  }

}
