:root {
  --ink: #17201c;
  --ink-soft: #42504a;
  --paper: #f2eee5;
  --paper-light: #fbfaf6;
  --line: rgba(23, 32, 28, .18);
  --accent: #df4d28;
  --accent-dark: #a93118;
  --white: #fff;
  --shell: min(1220px, calc(100vw - 64px));
  --header: 72px;
  --nav: 54px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + var(--nav) + 18px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.is-lightbox-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  transform: translateY(-160%);
}

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

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

.topbar {
  position: sticky;
  z-index: 40;
  top: 0;
  height: var(--header);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(23, 32, 28, .98);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  line-height: 1;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.55);
  font-weight: 900;
  letter-spacing: -.04em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 14px;
  letter-spacing: .1em;
}

.brand small {
  margin-top: 6px;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-link {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  color: var(--white);
}

.print-button,
.outline-button {
  min-height: 44px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
}

.print-button {
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--accent);
  color: var(--white);
}

.print-button:hover {
  background: #f05b33;
}

.print-button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.work-nav {
  position: sticky;
  z-index: 35;
  top: var(--header);
  height: var(--nav);
  background: var(--paper-light);
  border-bottom: 1px solid var(--line);
}

.work-nav-inner {
  width: var(--shell);
  height: 100%;
  margin: auto;
  display: flex;
  align-items: stretch;
}

.work-nav a {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.work-nav a + a {
  border-left: 1px solid var(--line);
}

.work-nav a::after {
  position: absolute;
  right: 16%;
  bottom: -1px;
  left: 16%;
  height: 3px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transform: scaleX(.25);
  transition: opacity .2s ease, transform .2s ease;
}

.work-nav a.is-active {
  color: var(--ink);
}

.work-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.work-nav span {
  color: var(--accent);
  font-size: 10px;
  letter-spacing: .08em;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header) - var(--nav));
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--ink);
  color: var(--white);
}

.hero > img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > img {
  object-fit: cover;
  object-position: center 58%;
  animation: hero-in 1.1s cubic-bezier(.2,.7,.2,1) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9,15,12,.83) 0%, rgba(9,15,12,.52) 40%, rgba(9,15,12,.06) 73%),
    linear-gradient(0deg, rgba(9,15,12,.72) 0%, transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(660px, calc(100% - 64px));
  margin: 0 0 clamp(94px, 12vh, 145px) max(32px, calc((100vw - 1220px) / 2));
  animation: copy-in .8s .15s cubic-bezier(.2,.7,.2,1) both;
}

.eyebrow {
  margin: 0 0 17px;
  color: #ffd4c8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2em;
}

.eyebrow.dark {
  color: var(--accent-dark);
}

.hero h1 {
  max-width: 640px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 7.2vw, 106px);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .88;
}

.hero-copy {
  max-width: 520px;
  margin: 27px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(16px, 1.6vw, 20px);
}

.hero-action {
  width: fit-content;
  margin-top: 31px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 8px;
}

.hero-action svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.hero-foot {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 25px;
  left: 32px;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.summary {
  padding-block: clamp(90px, 11vw, 150px);
}

.section-intro {
  max-width: 660px;
  margin-bottom: 56px;
}

.section-intro h2,
.work-heading h2,
.print-panel h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: .98;
}

.section-intro h2 {
  font-size: clamp(43px, 6vw, 72px);
}

.section-intro > p:last-child {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.summary-list {
  border-top: 1px solid var(--ink);
}

.summary-list a {
  min-height: 112px;
  display: grid;
  grid-template-columns: 60px 1fr auto 36px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: color .2s ease, padding .2s ease;
}

.summary-list a:hover {
  padding-inline: 12px 4px;
  color: var(--accent-dark);
}

.summary-no {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
}

.summary-name {
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 750;
}

.summary-list strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 53px);
  font-weight: 500;
  letter-spacing: -.04em;
}

.summary-list small {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
}

.summary-arrow {
  font-size: 21px;
  text-align: right;
}

.summary-print {
  margin-top: 46px;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
}

.summary-print strong,
.summary-print span {
  display: block;
}

.summary-print strong {
  font-size: 18px;
}

.summary-print span {
  margin-top: 5px;
  color: var(--ink-soft);
}

.outline-button {
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  text-decoration: none;
}

.outline-button:hover {
  background: var(--ink);
  color: var(--white);
}

.summary-print-actions,
.print-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.work-section {
  padding-block: clamp(90px, 11vw, 150px);
  border-top: 1px solid var(--line);
}

.work-section:nth-of-type(even) {
  background: var(--paper-light);
}

.work-heading {
  margin-bottom: clamp(48px, 7vw, 90px);
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  align-items: start;
}

.work-number {
  padding-top: 8px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
}

.work-heading h2 {
  font-size: clamp(45px, 6.7vw, 86px);
}

.work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  gap: clamp(45px, 7vw, 92px);
  align-items: start;
}

.work-grid.reverse .photo-column {
  order: 2;
}

.photo-main,
.photo-strip button {
  position: relative;
  padding: 0;
  overflow: hidden;
  display: block;
  background: #d8d4ca;
  border: 0;
  cursor: zoom-in;
}

.photo-main {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.photo-main.portrait {
  aspect-ratio: 4 / 5;
}

.photo-main img,
.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}

.photo-main:hover img,
.photo-strip button:hover img {
  transform: scale(1.025);
}

.photo-main > span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 9px 12px;
  background: rgba(23,32,28,.88);
  color: var(--white);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .04em;
}

.photo-strip {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.photo-strip.two {
  grid-template-columns: repeat(2, 1fr);
}

.photo-strip button {
  aspect-ratio: 4 / 3;
}

.scope {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.48;
}

.primary-measure {
  margin: 42px 0 36px;
  padding-bottom: 31px;
  border-bottom: 3px solid var(--ink);
}

.primary-measure strong,
.primary-measure span {
  display: block;
}

.primary-measure strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(66px, 8.4vw, 112px);
  font-weight: 500;
  letter-spacing: -.07em;
  line-height: .8;
}

.primary-measure span {
  margin-top: 21px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.measure-list {
  margin: 0;
}

.measure-list > div {
  padding: 13px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.measure-list dt {
  color: var(--ink-soft);
}

.measure-list dd {
  margin: 0;
  font-weight: 850;
  text-align: right;
}

.plain-steps {
  margin-top: 39px;
}

.plain-steps h3 {
  margin: 0 0 16px;
  font-size: 17px;
}

.plain-steps ol,
.plain-steps ul {
  margin: 0;
  padding-left: 22px;
}

.plain-steps li {
  padding: 5px 0 5px 7px;
}

.measure-note {
  margin: 33px 0 0;
  padding: 18px 0 0 20px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  font-size: 14px;
}

.roof-shape {
  margin: 28px 0;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 90px 1fr 1fr;
  align-items: center;
  gap: 22px;
  border-block: 1px solid var(--line);
}

.roof-shape strong,
.roof-shape span {
  display: block;
}

.roof-shape strong {
  font-size: 14px;
}

.roof-shape span {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 12px;
}

.gable-icon {
  width: 78px;
  height: 34px;
  display: flex;
  align-items: flex-end;
}

.gable-icon i {
  width: 39px;
  height: 28px;
  display: block;
  border-top: 5px solid var(--accent);
}

.gable-icon i:first-child {
  transform: skewY(-27deg);
}

.gable-icon i:last-child {
  transform: skewY(27deg);
}

.offer-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.offer-pair section {
  padding: 24px;
  background: var(--paper-light);
}

.offer-pair span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
}

.offer-pair h3 {
  margin: 22px 0 8px;
  font-size: 17px;
}

.offer-pair p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.pit-diagram {
  min-height: 260px;
  margin: 26px 0 34px;
  padding: 20px;
  position: relative;
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 18px 18px;
  border: 1px solid var(--line);
}

.pit-box,
.rail-box {
  position: absolute;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink);
  color: var(--white);
}

.pit-box span,
.rail-box span {
  color: #ffb9a5;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
}

.pit-box strong,
.rail-box strong {
  margin-top: 7px;
  font-size: 13px;
}

.pit-box small,
.rail-box small {
  margin-top: 3px;
  color: rgba(255,255,255,.62);
}

.pit-one {
  top: 30px;
  right: 32px;
  width: 42%;
  height: 112px;
}

.pit-two {
  right: 20px;
  bottom: 20px;
  width: 29%;
  height: 82px;
}

.rail-box {
  top: 50px;
  bottom: 36px;
  left: 26px;
  width: 28%;
  background: var(--accent-dark);
}

.print-panel {
  padding-block: clamp(90px, 11vw, 145px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 90px;
  border-bottom: 1px solid var(--line);
}

.print-panel h2 {
  font-size: clamp(48px, 6.3vw, 82px);
}

.print-panel-copy p {
  max-width: 480px;
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-size: 18px;
}

.print-button.large {
  min-height: 54px;
  padding-inline: 26px;
}

.quote-form {
  padding-block: 72px 100px;
}

.quote-form header {
  max-width: 700px;
}

.quote-form h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 500;
  letter-spacing: -.05em;
  line-height: 1;
}

.quote-form header > p:last-child {
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.quote-fields {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.quote-fields span,
.quote-notes span,
.quote-signatures span {
  display: block;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.quote-fields i,
.quote-notes i,
.quote-signatures i {
  height: 44px;
  display: block;
  border-bottom: 1px solid var(--ink);
}

.quote-form table {
  width: 100%;
  margin-top: 54px;
  border-collapse: collapse;
  font-size: 14px;
}

.quote-form th,
.quote-form td {
  height: 52px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  text-align: left;
}

.quote-form th {
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.quote-form th:first-child,
.quote-form td:first-child {
  width: 68px;
  color: var(--accent-dark);
  font-weight: 900;
}

.quote-form th:last-child,
.quote-form td:last-child {
  width: 230px;
}

.quote-total td {
  height: 62px;
  font-weight: 900;
}

.quote-terms {
  margin-top: 36px;
}

.quote-notes {
  margin-top: 42px;
}

.quote-notes i {
  height: 38px;
}

.quote-signatures {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.quote-signatures i {
  height: 82px;
}

footer {
  padding-block: 50px;
  background: var(--ink);
  color: var(--white);
}

footer .section-shell {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 50px;
  align-items: start;
}

footer strong {
  font-size: 12px;
  letter-spacing: .12em;
}

footer p {
  max-width: 650px;
  margin: 0;
  color: rgba(255,255,255,.6);
  font-size: 13px;
}

footer a {
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.2,1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  background: rgba(9, 13, 11, .97);
  color: var(--white);
  border: 0;
}

.lightbox::backdrop {
  background: rgba(9, 13, 11, .97);
}

.lightbox[open] {
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  place-items: center;
}

.lightbox figure {
  width: min(1100px, calc(100vw - 200px));
  height: calc(100vh - 80px);
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox figure img {
  max-width: 100%;
  max-height: calc(100% - 52px);
  object-fit: contain;
}

.lightbox figcaption {
  min-height: 44px;
  padding-top: 14px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  width: 48px;
  height: 48px;
  padding: 0;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
  cursor: pointer;
}

.lightbox-close {
  position: fixed;
  z-index: 2;
  top: 20px;
  right: 20px;
  font-size: 28px;
}

.lightbox-nav {
  font-size: 22px;
}

@keyframes hero-in {
  from { opacity: .4; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes copy-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}

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

  .topbar {
    padding-inline: 18px;
  }

  .text-link {
    display: none;
  }

  .work-nav {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .work-nav-inner {
    width: max-content;
    min-width: 100%;
  }

  .work-nav a {
    min-width: 140px;
    padding-inline: 14px;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-left: 18px;
  }

  .hero-foot {
    right: 18px;
    left: 18px;
  }

  .hero-foot span:nth-child(2) {
    display: none;
  }

  .summary-list a {
    min-height: 100px;
    grid-template-columns: 40px 1fr auto;
  }

  .summary-list strong {
    grid-column: 2 / 4;
    padding-bottom: 20px;
  }

  .summary-arrow {
    display: none;
  }

  .work-grid,
  .print-panel {
    grid-template-columns: 1fr;
  }

  .work-grid.reverse .photo-column {
    order: 0;
  }

  .work-heading {
    grid-template-columns: 42px 1fr;
  }

  .print-panel {
    gap: 38px;
  }

  .quote-fields {
    grid-template-columns: 1fr 1fr;
  }

  footer .section-shell {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 560px) {
  :root {
    --header: 66px;
    --nav: 50px;
  }

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

  .brand strong {
    font-size: 12px;
  }

  .brand small {
    font-size: 9px;
  }

  .print-button {
    min-width: 44px;
    padding-inline: 12px;
    font-size: 0;
  }

  .print-button svg {
    width: 20px;
  }

  .print-button.large {
    font-size: 14px;
  }

  .hero {
    min-height: calc(100svh - var(--header) - var(--nav));
  }

  .hero > img {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(9,15,12,.76), rgba(9,15,12,.18)),
      linear-gradient(0deg, rgba(9,15,12,.84) 0%, rgba(9,15,12,.15) 74%);
  }

  .hero-content {
    margin-bottom: 100px;
  }

  .hero h1 {
    font-size: clamp(52px, 16vw, 72px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .summary {
    padding-block: 78px;
  }

  .summary-list a {
    gap: 10px;
  }

  .summary-name {
    font-size: 16px;
  }

  .summary-print {
    align-items: stretch;
    flex-direction: column;
  }

  .summary-print-actions,
  .print-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .work-section {
    padding-block: 78px;
  }

  .work-heading {
    margin-bottom: 42px;
  }

  .work-heading h2 {
    font-size: clamp(39px, 12vw, 58px);
  }

  .photo-strip {
    gap: 6px;
  }

  .primary-measure strong {
    font-size: clamp(64px, 20vw, 92px);
  }

  .measure-list > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .measure-list dd {
    text-align: left;
  }

  .roof-shape {
    grid-template-columns: 70px 1fr;
  }

  .roof-shape > div:last-child {
    grid-column: 2;
  }

  .offer-pair {
    grid-template-columns: 1fr;
  }

  .pit-diagram {
    min-height: 300px;
  }

  .pit-one {
    width: 55%;
  }

  .pit-two {
    width: 44%;
  }

  .rail-box {
    width: 34%;
  }

  .quote-fields {
    grid-template-columns: 1fr;
  }

  .lightbox[open] {
    grid-template-columns: 56px 1fr 56px;
  }

  .lightbox figure {
    width: calc(100vw - 112px);
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@page {
  size: A4 portrait;
  margin: 10mm 11mm 12mm;
}

@media print {
  :root {
    --paper: #fff;
    --paper-light: #fff;
    --shell: 100%;
  }

  html {
    scroll-padding: 0;
  }

  body {
    background: #fff;
    color: #111;
    font-size: 10pt;
  }

  .topbar,
  .work-nav,
  .skip-link,
  .hero-action,
  .summary-print,
  .print-panel,
  footer,
  .download-button,
  .photo-main > span,
  .lightbox {
    display: none !important;
  }

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

  .hero {
    min-height: 275mm;
    page-break-after: always;
  }

  .hero > img,
  .hero-content {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .hero-content {
    width: 155mm;
    margin: 0 0 28mm 8mm;
  }

  .hero h1 {
    font-size: 54pt;
  }

  .hero-copy {
    font-size: 13pt;
  }

  .hero-foot {
    right: 8mm;
    bottom: 8mm;
    left: 8mm;
  }

  .summary {
    padding: 8mm 0 0;
    page-break-after: always;
  }

  .section-intro {
    margin-bottom: 8mm;
  }

  .section-intro h2 {
    font-size: 31pt;
  }

  .summary-list a {
    min-height: 27mm;
    grid-template-columns: 12mm 1fr auto;
    break-inside: avoid;
  }

  .summary-list strong {
    font-size: 24pt;
  }

  .summary-arrow {
    display: none;
  }

  .work-section {
    padding: 5mm 0 0;
    background: #fff !important;
    border: 0;
    break-before: page;
  }

  .work-heading {
    margin-bottom: 7mm;
    grid-template-columns: 13mm 1fr;
  }

  .work-heading h2 {
    font-size: 31pt;
  }

  .work-grid {
    display: block;
  }

  .photo-column {
    margin-bottom: 7mm;
  }

  .photo-main,
  .photo-main.portrait {
    height: 72mm;
    aspect-ratio: auto;
  }

  .photo-strip {
    display: none;
  }

  .scope {
    font-size: 12pt;
  }

  .primary-measure {
    margin: 7mm 0 5mm;
    padding-bottom: 4mm;
  }

  .primary-measure strong {
    font-size: 47pt;
  }

  .primary-measure span {
    margin-top: 3mm;
  }

  .measure-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 8mm;
  }

  .measure-list > div {
    padding: 2.5mm 0;
  }

  .plain-steps {
    margin-top: 6mm;
  }

  .plain-steps li {
    padding-block: 1mm;
  }

  .measure-note {
    margin-top: 5mm;
    padding-top: 3mm;
  }

  /* Çatı sayfasında alt ölçü notuna fiziksel yazıcılar için güvenli pay bırak. */
  .work-roof .work-heading {
    margin-bottom: 4mm;
  }

  .work-roof .photo-column {
    margin-bottom: 4mm;
  }

  .work-roof .photo-main {
    height: 62mm;
  }

  .work-roof .scope {
    font-size: 10.5pt;
    line-height: 1.4;
  }

  .work-roof .primary-measure {
    margin: 4mm 0 3mm;
    padding-bottom: 3mm;
  }

  .work-roof .primary-measure strong {
    font-size: 43pt;
  }

  .work-roof .primary-measure span {
    margin-top: 2mm;
  }

  .work-roof .roof-shape {
    margin: 3mm 0;
    padding: 3mm 0;
  }

  .work-roof .offer-pair section {
    padding: 3.5mm;
  }

  .work-roof .offer-pair h3 {
    margin: 3mm 0 1mm;
  }

  .work-roof .offer-pair p {
    font-size: 9pt;
    line-height: 1.4;
  }

  .work-roof .measure-note {
    margin-top: 3mm;
    padding-top: 2.5mm;
    font-size: 9pt;
    line-height: 1.4;
  }

  .roof-shape,
  .offer-pair,
  .pit-diagram {
    break-inside: avoid;
  }

  .pit-diagram {
    min-height: 60mm;
  }

  .work-pit .work-heading {
    margin-bottom: 4mm;
  }

  .work-pit .photo-main {
    height: 54mm;
  }

  .work-pit .photo-column {
    margin-bottom: 4mm;
  }

  .work-pit .primary-measure {
    margin: 4mm 0 3mm;
  }

  .work-pit .pit-diagram {
    min-height: 45mm;
    margin: 4mm 0;
  }

  .work-pit .plain-steps {
    margin-top: 4mm;
  }

  .work-pit .measure-note {
    margin-top: 3mm;
  }

  .quote-form {
    padding: 7mm 0 0;
    display: block;
    break-before: page;
  }

  .quote-form h2 {
    font-size: 31pt;
  }

  .quote-form header > p:last-child {
    margin-top: 3mm;
  }

  .quote-fields {
    margin-top: 7mm;
    grid-template-columns: repeat(4, 1fr);
    gap: 7mm;
  }

  .quote-fields i {
    height: 10mm;
  }

  .quote-form table {
    margin-top: 9mm;
    font-size: 9pt;
  }

  .quote-form th,
  .quote-form td {
    height: 12mm;
    padding: 2mm 3mm;
  }

  .quote-form th:last-child,
  .quote-form td:last-child {
    width: 45mm;
  }

  .quote-total td {
    height: 14mm;
  }

  .quote-terms {
    margin-top: 7mm;
  }

  .quote-notes {
    margin-top: 7mm;
  }

  .quote-notes i {
    height: 8mm;
  }

  .quote-signatures {
    margin-top: 8mm;
    gap: 20mm;
  }

  .quote-signatures i {
    height: 17mm;
  }
}
