:root {
  --paper: #f2eee4;
  --paper-deep: #dfd5c2;
  --ink: #171717;
  --muted: #625f58;
  --line: rgba(23, 23, 23, 0.18);
  --navy: #163946;
  --green: #315447;
  --red: #8c2f25;
  --gold: #a17637;
  --white: #fffaf0;
  --shadow: 0 18px 60px rgba(23, 23, 23, 0.13);
  --radius: 6px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(255, 250, 240, 0.78), rgba(255, 250, 240, 0.78)),
    repeating-linear-gradient(0deg, rgba(23, 23, 23, 0.018) 0, rgba(23, 23, 23, 0.018) 1px, transparent 1px, transparent 5px),
    var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

a[href^="tel:"]:not(.button),
a[href^="mailto:"]:not(.button) {
  text-decoration: none !important;
  text-decoration-line: none !important;
  -webkit-text-decoration-line: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(242, 238, 228, 0.94);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  width: clamp(172px, 18vw, 250px);
  height: auto;
  max-height: 54px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
  background: var(--white);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.13rem;
  font-weight: 700;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  min-height: 40px;
  padding: 9px 12px;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
}

.hero.short {
  min-height: 48vh;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.44) 39%, rgba(0, 0, 0, 0.08) 72%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.44), transparent 52%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 58px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 250, 240, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: 4.25rem;
  font-weight: 700;
}

h2 {
  font-size: 2.35rem;
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

.hero-lede {
  max-width: 650px;
  margin-top: 18px;
  color: rgba(255, 250, 240, 0.88);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
button.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button.light {
  border-color: rgba(255, 250, 240, 0.72);
  background: rgba(255, 250, 240, 0.9);
  color: var(--ink);
}

.button.ghost {
  background: transparent;
  color: var(--ink);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.section {
  padding: 82px 0;
}

.section.tight {
  padding: 52px 0;
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  gap: 44px;
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.section-head p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.72fr);
  gap: 48px;
  align-items: center;
}

.copy-stack {
  display: grid;
  gap: 20px;
}

.copy-stack p {
  color: var(--muted);
}

.image-frame {
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.image-frame img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  padding: 10px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.service-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 250, 240, 0.72);
  color: var(--ink);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(23, 23, 23, 0.42);
  box-shadow: var(--shadow);
}

.service-card img {
  height: 230px;
  object-fit: cover;
  filter: contrast(1.03);
}

.service-card img.service-card-image-full {
  object-fit: contain;
  background: #e7decc;
}

.service-card-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.service-card-body p {
  color: var(--muted);
}

.status {
  width: max-content;
  max-width: 100%;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.status.soon {
  color: var(--red);
}

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

.band .section-head {
  border-bottom-color: rgba(255, 250, 240, 0.18);
}

.band p,
.band .section-head p {
  color: rgba(255, 250, 240, 0.72);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  background: rgba(255, 250, 240, 0.18);
}

.process-item {
  min-height: 190px;
  padding: 22px;
  background: var(--ink);
}

.process-number {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
}

.detail-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  padding: 16px 0 16px 20px;
  border-top: 1px solid var(--line);
  position: relative;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25px;
  width: 8px;
  height: 8px;
  background: var(--gold);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.feature {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.66);
}

.feature p {
  margin-top: 8px;
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin-top: 34px;
}

.gallery .image-frame img {
  min-height: 330px;
}

.gallery-stack {
  display: grid;
  gap: 18px;
}

.gallery-stack .image-frame img {
  min-height: 156px;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.service-row {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.68);
}

.service-row p {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 46px;
  align-items: stretch;
}

.contact-panel,
.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.78);
  height: 100%;
}

.contact-panel {
  padding: 24px;
}

.contact-method {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.contact-method:first-of-type {
  border-top: 0;
}

.contact-method strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.contact-method span {
  color: var(--muted);
}

.contact-method a {
  width: max-content;
  max-width: 100%;
  color: var(--ink);
  font-weight: 700;
  border-bottom: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
  text-decoration-line: none !important;
  -webkit-text-decoration-line: none !important;
}

.contact-method a:hover,
.contact-method a:focus-visible {
  color: var(--gold);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.form-panel {
  padding: 24px;
}

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

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

label {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(23, 23, 23, 0.28);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
  background: rgba(23, 23, 23, 0.94);
  color: var(--white);
}

.footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.footer a {
  color: rgba(255, 250, 240, 0.78);
  text-decoration: none;
}

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

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 8px;
  color: rgba(255, 250, 240, 0.88);
}

.footer-contact a {
  color: rgba(255, 250, 240, 0.88);
  text-decoration: none;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--white);
}

.footer-contact span {
  color: rgba(255, 250, 240, 0.88);
}

.page-kicker {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.service-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.service-nav a {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.74);
  color: var(--muted);
  text-decoration: none;
}

.service-nav a[aria-current="page"],
.service-nav a:hover,
.service-nav a:focus-visible {
  color: var(--ink);
  border-color: var(--gold);
}

@media (max-width: 920px) {
  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section-head,
  .split,
  .contact-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .feature-strip,
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  .nav {
    min-height: 64px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    border-bottom: 0;
    border-left: 3px solid transparent;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav-links a[aria-current="page"] {
    border-left-color: var(--gold);
  }

  .brand-tag {
    display: none;
  }

  .hero,
  .hero.short {
    min-height: 62vh;
  }

  .hero-content {
    padding: 76px 0 42px;
  }

  h1 {
    font-size: 2.45rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .section {
    padding: 58px 0;
  }

  .service-grid,
  .feature-strip,
  .process,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 220px;
  }

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