:root {
  --ink: #25282a;
  --slate: #343b3f;
  --slate-light: #4b5558;
  --muted: #767a7b;
  --accent: #b48652;
  --accent-light: #d8b98d;
  --paper: #f3f0eb;
  --white: #ffffff;
  --line: rgba(37, 40, 42, 0.18);
  --light-line: rgba(255, 255, 255, 0.22);
  --shell: min(1180px, calc(100% - 40px));
  --shadow: 0 22px 60px rgba(37, 40, 42, 0.12);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

a {
  color: inherit;
}

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

button,
select,
textarea {
  border-radius: 0;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--accent);
  color: var(--ink);
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.preview-bar {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 20px;
  background: var(--ink);
  color: var(--paper);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.preview-bar span:last-child {
  color: var(--accent-light);
  text-align: right;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 240, 235, 0.95);
  backdrop-filter: blur(14px);
}

.header-inner {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  flex: 0 0 auto;
}

.brand-name {
  display: flex;
  flex-direction: column;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.25;
  text-transform: uppercase;
}

.brand-name strong {
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: none;
}

.brand-name span {
  color: var(--muted);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-toggle-icon {
  display: grid;
  width: 24px;
  gap: 6px;
}

.menu-toggle-icon span {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 160ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.primary-nav {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  left: 0;
  display: none;
  padding: 14px 20px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.primary-nav.is-open {
  display: grid;
  gap: 2px;
}

.nav-link,
.header-phone {
  text-decoration: none;
}

.nav-link {
  padding: 10px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-current {
  color: var(--ink);
}

.nav-link.is-current::after {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
  vertical-align: 2px;
}

.header-phone {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.header-phone span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.header-phone strong {
  color: var(--ink);
  font-size: 18px;
  letter-spacing: 0.02em;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 0;
  background:
    linear-gradient(90deg, rgba(180, 134, 82, 0.08) 1px, transparent 1px) 0 0 / 76px 76px,
    linear-gradient(rgba(180, 134, 82, 0.08) 1px, transparent 1px) 0 0 / 76px 76px,
    var(--paper);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(180deg, rgba(52, 59, 63, 0.04), transparent 72%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 52px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding-top: 4px;
}

.eyebrow,
.section-number,
.card-kicker,
.section-intro .section-number,
.hero-footnote-label,
.drawing-label,
.fact-index,
.service-card-top,
.contact-action-label,
.address-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 330px;
  margin: 0 0 26px;
  color: var(--muted);
}

.eyebrow-mark {
  display: inline-block;
  width: 36px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--accent);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.55rem, 13vw, 7.8rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.hero h1 em {
  display: block;
  color: var(--accent);
  font-style: normal;
}

.hero-lead {
  max-width: 600px;
  margin: 30px 0 0;
  color: var(--slate);
  font-size: clamp(1.03rem, 2vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  padding: 14px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--slate);
}

.button-text {
  min-height: auto;
  padding: 10px 0;
  border-bottom-color: var(--accent);
  color: var(--ink);
}

.button-text:hover,
.button-text:focus-visible {
  color: var(--accent);
}

.hero-footnote {
  display: flex;
  max-width: 530px;
  align-items: baseline;
  gap: 18px;
  margin-top: 56px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.hero-footnote-label {
  flex: 0 0 auto;
  color: var(--ink);
}

.hero-visual-wrap {
  position: relative;
  padding-bottom: 36px;
}

.hero-visual {
  position: relative;
  margin: 0;
  padding: 15px 15px 18px;
  background: var(--slate);
  box-shadow: 18px 18px 0 rgba(180, 134, 82, 0.35);
}

.hero-visual::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04));
  content: "";
  pointer-events: none;
}

.hero-visual-topline,
.drawing-label {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--accent-light);
}

.hero-visual img {
  width: 100%;
  margin: 14px auto 2px;
}

.hero-visual figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 12px;
}

.caption-rule {
  width: 34px;
  height: 1px;
  background: var(--accent);
}

.hero-contact-card {
  position: relative;
  z-index: 2;
  width: calc(100% - 34px);
  margin: -18px 0 0 auto;
  padding: 18px 19px 16px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(37, 40, 42, 0.14);
}

.card-kicker {
  display: block;
  margin-bottom: 13px;
  color: var(--accent);
}

.hero-contact-card a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
}

.hero-contact-card a span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-contact-card a strong {
  max-width: 80%;
  color: var(--ink);
  font-size: 14px;
  overflow-wrap: anywhere;
  text-align: right;
}

.hero-signals {
  position: relative;
  display: grid;
  border-top: 1px solid var(--line);
  margin-top: 70px;
}

.signal {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.signal span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.signal strong {
  font-size: 13px;
  letter-spacing: 0.01em;
}

.section-light,
.section-paper,
.section-dark,
.section-ink {
  position: relative;
  overflow: hidden;
}

.about {
  padding: 92px 0 105px;
  background: var(--white);
}

.section-intro {
  display: grid;
  gap: 22px;
}

.section-number {
  margin: 0;
  color: var(--accent);
}

.section-intro h2,
.approach h2,
.hours h2,
.contact h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.25rem, 6vw, 4.75rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.97;
}

.section-deck {
  max-width: 550px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.about-grid {
  display: grid;
  gap: 42px;
  margin-top: 76px;
}

.about-statement {
  position: relative;
  align-self: start;
  padding: 28px 22px 28px 0;
  border-top: 2px solid var(--accent);
}

.statement-label {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.statement-text {
  max-width: 400px;
  margin: 0;
  color: var(--slate);
  font-size: clamp(1.45rem, 4vw, 2.3rem);
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.statement-line {
  display: block;
  width: 50px;
  height: 1px;
  margin-top: 30px;
  background: var(--accent);
}

.about-copy {
  max-width: 590px;
  color: var(--slate);
  font-size: 1.04rem;
}

.about-copy p {
  margin: 0 0 20px;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-facts {
  display: grid;
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid var(--line);
}

.fact-block {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.fact-index {
  grid-row: span 2;
  padding-top: 3px;
  color: var(--accent);
}

.fact-block strong {
  font-size: 1.08rem;
  line-height: 1.3;
}

.fact-block > span:last-child {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.fact-block-featured {
  background: var(--paper);
  padding-inline: 14px;
}

.section-dark {
  padding: 90px 0 94px;
  background: var(--slate);
  color: var(--white);
}

.section-intro-dark .section-deck {
  color: rgba(255, 255, 255, 0.68);
}

.service-grid {
  display: grid;
  gap: 2px;
  margin-top: 64px;
}

.service-card {
  display: flex;
  min-height: 372px;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 22px 26px;
  background: var(--slate-light);
}

.service-card-accent {
  background: var(--accent);
  color: var(--ink);
}

.service-card-top {
  display: flex;
  width: 100%;
  justify-content: space-between;
  color: var(--accent-light);
}

.service-card-accent .service-card-top {
  color: rgba(37, 40, 42, 0.64);
}

.service-arrow {
  font-size: 20px;
  font-weight: 400;
  line-height: 0.8;
}

.service-card h3 {
  margin: auto 0 22px;
  font-size: clamp(2.5rem, 8vw, 4.7rem);
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.service-card h3 em {
  color: var(--accent-light);
  font-style: normal;
}

.service-card-accent h3 em {
  color: var(--white);
}

.service-card p {
  max-width: 430px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  line-height: 1.58;
}

.service-card-accent p {
  color: rgba(37, 40, 42, 0.78);
}

.service-link,
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

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

.service-card-accent .service-link {
  color: var(--ink);
}

.service-link:hover,
.service-link:focus-visible,
.inline-link:hover,
.inline-link:focus-visible {
  color: var(--accent-light);
}

.service-card-accent .service-link:hover,
.service-card-accent .service-link:focus-visible {
  color: var(--white);
}

.service-bottom-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 720px;
  margin: 42px 0 0;
}

.note-mark {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
}

.service-bottom-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.service-bottom-note a {
  color: var(--white);
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}

.section-paper {
  padding: 76px 0 88px;
  background: var(--paper);
}

.approach-grid {
  display: grid;
  gap: 52px;
  align-items: center;
}

.approach-visual {
  padding: 16px;
  background: #ebe5db;
}

.drawing-label {
  color: var(--muted);
}

.approach-visual img {
  width: 100%;
  margin: 16px auto 6px;
}

.drawing-caption {
  max-width: 360px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.approach-copy .section-number {
  margin-bottom: 20px;
}

.approach-copy > p:not(.section-number) {
  max-width: 550px;
  margin: 28px 0 0;
  color: var(--slate);
  font-size: 1.03rem;
  line-height: 1.65;
}

.process-list {
  display: grid;
  gap: 0;
  max-width: 580px;
  margin: 34px 0 30px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  display: flex;
  align-items: baseline;
  gap: 17px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.process-list li span {
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.process-list li strong {
  font-size: 14px;
}

.inline-link {
  color: var(--ink);
}

.hours {
  padding: 88px 0 96px;
  background: var(--white);
}

.hours-grid {
  display: grid;
  gap: 50px;
}

.hours h2 {
  max-width: 610px;
  margin-top: 19px;
}

.hours-lead {
  max-width: 460px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.hours-panel {
  align-self: start;
  border-top: 2px solid var(--accent);
}

.hours-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.hours-row span {
  color: var(--muted);
  font-size: 13px;
}

.hours-row strong {
  font-size: 14px;
  text-align: right;
}

.hours-address {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 26px;
}

.address-label {
  color: var(--accent);
}

.hours-address address {
  color: var(--slate);
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
}

.section-ink {
  padding: 90px 0 94px;
  background: var(--ink);
  color: var(--white);
}

.contact-grid {
  display: grid;
  gap: 54px;
}

.contact h2 {
  max-width: 560px;
  margin-top: 20px;
}

.contact-lead {
  max-width: 510px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

.contact-actions {
  max-width: 520px;
  margin-top: 50px;
}

.contact-action {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  gap: 14px;
  align-items: baseline;
  padding: 16px 0;
  border-top: 1px solid var(--light-line);
  color: var(--white);
  text-decoration: none;
}

.contact-action:last-child {
  border-bottom: 1px solid var(--light-line);
}

.contact-action-label {
  color: var(--accent-light);
}

.contact-action strong {
  font-size: clamp(1rem, 3vw, 1.25rem);
  overflow-wrap: anywhere;
}

.contact-action-arrow {
  color: var(--accent);
  font-size: 19px;
}

.inquiry-preview {
  padding: 26px 20px 24px;
  background: var(--slate);
  box-shadow: 16px 16px 0 rgba(180, 134, 82, 0.65);
}

.form-heading {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--light-line);
}

.form-heading h3 {
  margin: 0;
  font-size: clamp(1.7rem, 5vw, 2.55rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.form-note {
  margin: 16px 0 22px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.55;
}

.inquiry-form {
  display: grid;
  gap: 18px;
}

.field-group {
  display: grid;
  gap: 7px;
}

.field-group label {
  color: var(--accent-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.field-group select,
.field-group textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.32);
  padding: 12px 13px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 14px;
}

.field-group select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--accent-light) 50%), linear-gradient(135deg, var(--accent-light) 50%, transparent 50%);
  background-position: calc(100% - 17px) 50%, calc(100% - 12px) 50%;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.field-group option {
  background: var(--slate);
  color: var(--white);
}

.field-group textarea {
  min-height: 108px;
  resize: vertical;
}

.field-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.button-light {
  justify-self: start;
  margin-top: 2px;
  background: var(--accent);
  color: var(--ink);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--accent-light);
}

.form-status {
  min-height: 1.5em;
  margin: -2px 0 0;
  color: var(--accent-light);
  font-size: 12px;
}

.site-footer {
  padding: 28px 0 34px;
  background: var(--ink);
  color: var(--white);
}

.footer-inner {
  display: grid;
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--light-line);
  padding-top: 24px;
}

.brand-footer {
  color: var(--white);
}

.brand-footer .brand-name span {
  color: rgba(255, 255, 255, 0.56);
}

.footer-note,
.footer-preview {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.footer-preview {
  color: var(--accent-light);
  font-weight: 700;
  letter-spacing: 0.04em;
}

@media (min-width: 720px) {
  :root {
    --shell: min(1180px, calc(100% - 80px));
  }

  .menu-toggle {
    display: none;
  }

  .site-header {
    top: 32px;
  }

  .primary-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: clamp(14px, 2.2vw, 30px);
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-link {
    padding: 8px 0;
    font-size: 10px;
  }

  .header-phone {
    gap: 2px;
    margin: 0 0 0 4px;
    padding: 0 0 0 18px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .header-phone strong {
    font-size: 14px;
  }

  .hero {
    padding-top: 104px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.91fr) minmax(360px, 0.74fr);
    gap: 70px;
    align-items: center;
  }

  .hero-visual-wrap {
    padding: 32px 0 32px 18px;
  }

  .hero-contact-card {
    width: calc(100% - 60px);
    margin-top: -32px;
    margin-right: -18px;
  }

  .hero-signals {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 84px;
  }

  .signal {
    min-height: 82px;
    padding-right: 18px;
  }

  .signal + .signal {
    padding-left: 24px;
    border-left: 1px solid var(--line);
  }

  .section-intro {
    grid-template-columns: 0.24fr 1fr;
    gap: 36px;
  }

  .about-grid {
    grid-template-columns: 0.82fr 1fr;
    gap: 82px;
  }

  .about-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .fact-block {
    min-height: 142px;
    padding: 20px 18px;
  }

  .fact-block + .fact-block {
    border-left: 1px solid var(--line);
  }

  .fact-block-featured {
    padding-inline: 18px;
  }

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

  .service-card {
    min-height: 420px;
    padding: 28px 30px 32px;
  }

  .approach-grid {
    grid-template-columns: 0.9fr 1fr;
    gap: 86px;
  }

  .approach-visual {
    padding: 22px;
  }

  .hours-grid {
    grid-template-columns: 0.9fr 1fr;
    gap: 100px;
    align-items: start;
  }

  .contact-grid {
    grid-template-columns: 0.9fr 1fr;
    gap: 84px;
    align-items: start;
  }

  .inquiry-preview {
    padding: 30px 28px 28px;
  }

  .footer-inner {
    grid-template-columns: auto 1fr auto;
    gap: 34px;
  }
}

@media (min-width: 1040px) {
  .header-inner {
    min-height: 86px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(450px, 0.72fr);
    gap: 92px;
  }

  .hero-visual-wrap {
    padding-left: 34px;
  }

  .hero-contact-card {
    margin-right: -34px;
  }

  .about {
    padding-top: 128px;
    padding-bottom: 136px;
  }

  .about-grid {
    margin-top: 102px;
  }

  .about-facts {
    margin-top: 104px;
  }

  .section-dark {
    padding-top: 124px;
    padding-bottom: 124px;
  }

  .service-grid {
    margin-top: 84px;
  }

  .service-card {
    padding: 32px 36px 38px;
  }

  .section-paper {
    padding: 116px 0 128px;
  }

  .hours {
    padding: 120px 0 128px;
  }

  .section-ink {
    padding: 124px 0 128px;
  }
}

@media (max-width: 420px) {
  .preview-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    padding-block: 7px;
  }

  .preview-bar span:last-child {
    text-align: left;
  }

  .site-header {
    top: 47px;
  }

  .hero {
    padding-top: 57px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 17vw, 4.6rem);
  }

  .hero-footnote {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .hours-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .hours-row strong {
    text-align: left;
  }

  .hours-address {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-action {
    grid-template-columns: 52px 1fr auto;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
