:root {
  --ink: #101413;
  --charcoal: #1d1d1b;
  --gold: #c99531;
  --gold-soft: #f2d28a;
  --olive: #46523d;
  --paper: #ffffff;
  --mist: #f4f4ef;
  --line: #ded8ca;
  --muted: #606963;
  --shadow: 0 24px 70px rgba(16, 20, 19, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: 6px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 2px solid var(--gold);
  border-radius: 7px;
  background: var(--charcoal);
  color: var(--gold-soft);
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 1.08rem;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--charcoal);
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--mist);
  color: #000;
  outline: none;
}
.site-nav .nav-shop {
  background: var(--charcoal);
  color: var(--gold-soft);
  border: 1px solid rgba(201, 149, 49, 0.46);
}

.site-nav .nav-shop:hover,
.site-nav .nav-shop:focus-visible {
  background: #000;
  color: var(--gold-soft);
}


.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  padding: 10px 12px;
  font: inherit;
  font-weight: 800;
}

.menu-bars,
.menu-bars::before,
.menu-bars::after {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
}

.menu-bars {
  position: relative;
}

.menu-bars::before,
.menu-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-bars::before {
  top: -6px;
}

.menu-bars::after {
  top: 6px;
}

.hero {
  position: relative;
  min-height: clamp(620px, 86vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 9, 8, 0.88) 0%, rgba(8, 9, 8, 0.66) 38%, rgba(8, 9, 8, 0.18) 72%),
    linear-gradient(0deg, rgba(8, 9, 8, 0.82) 0%, rgba(8, 9, 8, 0) 38%);
}

.hero-content {
  position: relative;
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 clamp(64px, 9vh, 110px);
  color: var(--paper);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker {
  color: #806017;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 13px 18px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--gold);
  color: #14110b;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.button-quiet {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
}
.inline-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 6px;
  border-bottom: 2px solid var(--gold);
  color: var(--charcoal);
  font-weight: 900;
  text-decoration: none;
}

.inline-cta:hover,
.inline-cta:focus-visible {
  color: #806017;
  outline: none;
}


.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.section,
.split-section,
.contact-section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 120px) 0;
}

.intro-grid,
.split-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.intro p,
.section-heading p,
.split-copy p,
.contact-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.quick-facts {
  margin: 0;
  display: grid;
  gap: 12px;
}

.quick-facts div,
.service-card,
.process-list li,
.work-panel,
.shop-routing-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.quick-facts div {
  padding: 18px;
}

.quick-facts dt {
  color: #806017;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 6px 0 0;
  font-weight: 800;
}

.services,
.work {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.section-heading h2 {
  max-width: 720px;
}

.section-heading p {
  max-width: 360px;
  margin-bottom: 8px;
}

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

.service-card {
  min-height: 240px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 6px;
  background: var(--mist);
  color: #806017;
  font-weight: 900;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.split-section {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1160px) / 2));
  background: var(--charcoal);
  color: var(--paper);
}

.split-copy p {
  color: rgba(255, 255, 255, 0.72);
}

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

.process-list li {
  display: grid;
  gap: 7px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.process-list strong {
  color: var(--gold-soft);
  font-size: 1.1rem;
}

.process-list span {
  color: rgba(255, 255, 255, 0.78);
}

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

.work-panel {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  color: var(--paper);
  overflow: hidden;
}

.work-panel span {
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-panel strong {
  max-width: 300px;
  font-size: 1.35rem;
  line-height: 1.18;
}

.panel-gold {
  background: linear-gradient(145deg, #7b5a18, #c99531 58%, #f1d590);
  color: #14110b;
}

.panel-ink {
  background: linear-gradient(145deg, #101413, #2d302d 64%, #606963);
}

.panel-stone {
  background: linear-gradient(145deg, #46523d, #7c8a71 64%, #d8dacd);
  color: #0e1610;
}

.contact-section {
  align-items: stretch;
}

.contact-copy {
  padding-top: 16px;
}

.contact-methods a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid var(--gold);
  color: var(--charcoal);
  font-weight: 900;
  text-decoration: none;
}

.shop-routing-panel {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: clamp(18px, 4vw, 30px);
  box-shadow: var(--shadow);
}

.button-dark {
  background: var(--charcoal);
  color: var(--gold-soft);
}

.routing-note {
  display: grid;
  gap: 6px;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.routing-note strong {
  color: var(--ink);
  font-size: 1.15rem;
}

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

label {
  display: grid;
  gap: 7px;
  color: #2e332f;
  font-size: 0.9rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfc8b9;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(201, 149, 49, 0.25);
}

.site-footer {
  padding: 34px clamp(18px, 4vw, 54px);
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.site-footer p {
  margin: 5px 0;
}

.site-footer a {
  color: var(--gold-soft);
}


.topic-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.topic-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--charcoal);
  font-weight: 900;
  padding: 10px 13px;
  text-decoration: none;
}

.topic-links a:hover,
.topic-links a:focus-visible {
  border-color: var(--gold);
  background: var(--mist);
  color: #806017;
  outline: none;
}

.service-page-hero {
  position: relative;
  min-height: clamp(520px, 76vh, 720px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal);
}

.service-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 8, 0.9) 0%, rgba(8, 9, 8, 0.64) 44%, rgba(8, 9, 8, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 9, 8, 0.75) 0%, rgba(8, 9, 8, 0) 42%);
}

.service-page-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-page-copy {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 clamp(54px, 8vh, 96px);
  color: var(--paper);
}

.service-page-copy h1 {
  max-width: 820px;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.service-page-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.service-page-main {
  padding-top: clamp(60px, 8vw, 90px);
}

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

.detail-card {
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 24px;
}

.detail-card h3 {
  margin-bottom: 14px;
}

.detail-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.detail-card li + li {
  margin-top: 8px;
}

.admin-subpanel {
  display: grid;
  gap: 18px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.admin-subpanel .section-kicker {
  margin-bottom: 8px;
}

.toggle-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
  cursor: pointer;
}

.toggle-row input {
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}

.toggle-row span {
  display: grid;
  gap: 5px;
}

.toggle-row small {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}
@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px 18px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 50px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .hero {
    min-height: 650px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(8, 9, 8, 0.92) 0%, rgba(8, 9, 8, 0.54) 58%, rgba(8, 9, 8, 0.25) 100%);
  }

  .intro-grid,
  .split-section,
  .contact-section,
  .section-heading {
    grid-template-columns: 1fr;
    display: grid;
  }

  .section-heading {
    align-items: start;
  }

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

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding-inline: 14px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    display: none;
  }

  .menu-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    width: min(100% - 28px, 820px);
  }

  .hero-actions,
  .contact-methods {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .service-grid,
  .work-grid,
  .field-pair,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .topic-links a {
    width: 100%;
  }

  .service-page-copy {
    width: min(100% - 28px, 900px);
  }

  .service-card,
  .work-panel {
    min-height: auto;
  }
}
.admin-body {
  min-height: 100vh;
  background: linear-gradient(135deg, #f4f4ef 0%, #ffffff 54%, #eee4cf 100%);
}

.admin-shell {
  width: min(980px, calc(100% - 28px));
  margin: 0 auto;
  padding: clamp(24px, 5vw, 54px) 0;
}

.admin-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.admin-headerline,
.admin-title-row,
.signed-in-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-headerline {
  padding: 18px clamp(18px, 4vw, 34px);
  border-bottom: 1px solid var(--line);
}

.admin-title-row {
  padding: clamp(22px, 4vw, 34px) clamp(18px, 4vw, 34px) 8px;
}

.admin-title-row h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.admin-home-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid var(--gold);
  color: var(--charcoal);
  font-weight: 900;
  text-decoration: none;
}

.admin-logout {
  min-width: 112px;
  border-color: var(--line);
  color: var(--charcoal);
  background: var(--paper);
  box-shadow: none;
}

.admin-status {
  margin: 14px clamp(18px, 4vw, 34px) 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--olive);
  border-radius: 8px;
  color: var(--muted);
  background: var(--mist);
}

.admin-status[data-status="success"] {
  border-left-color: #157347;
  color: #0f5132;
  background: #edf8f2;
}

.admin-status[data-status="error"] {
  border-left-color: #b42318;
  color: #842029;
  background: #fff1f0;
}

.admin-panel {
  padding: clamp(18px, 4vw, 34px);
}

.admin-panel h2 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.admin-panel p,
.signed-in-row {
  color: var(--muted);
}

.admin-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}
.break-glass-panel {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.break-glass-panel summary {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  color: var(--charcoal);
  font-weight: 900;
  cursor: pointer;
}

.break-glass-panel summary:focus-visible {
  outline: 3px solid rgba(201, 149, 49, 0.25);
  outline-offset: 4px;
}

.break-glass-panel p {
  max-width: 620px;
  margin: 8px 0 0;
}

.field-trio {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(80px, 0.4fr) minmax(110px, 0.6fr);
  gap: 14px;
}

.contact-preview {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.contact-preview span {
  color: #806017;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-preview strong,
.contact-preview pre {
  margin: 0;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  white-space: pre-wrap;
}

[hidden] {
  display: none !important;
}

@media (max-width: 620px) {
  .admin-headerline,
  .admin-title-row,
  .signed-in-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-logout,
  .admin-home-link {
    width: 100%;
  }

  .field-trio {
    grid-template-columns: 1fr;
  }
}

