:root {
  --paper: #f4f0e6;
  --ink: #1b1a17;
  --muted: #6e675c;
  --green: #1e3b2f;
  --green-dark: #12251e;
  --brass: #c08a2e;
  --line: #d8d0c0;
  --font-display: "Bricolage Grotesque", "Segoe UI", Arial, sans-serif;
  --font-body: "Work Sans", "Segoe UI", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", Consolas, monospace;
  --maxw: 1120px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 56px;
  --space-10: 88px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

a {
  color: var(--green);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover { color: var(--brass); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--green);
  color: var(--paper);
  padding: 10px 16px;
  z-index: 100;
}

.skip-link:focus {
  left: 0;
  color: var(--paper);
}

:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 2px;
}

.forge-banner {
  background: var(--ink);
  color: #cfc9ba;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
}

.forge-banner a {
  color: var(--brass);
}

/* Header */
.site-header {
  border-bottom: 2px solid var(--green);
  position: sticky;
  top: 0;
  background: var(--paper);
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  margin-right: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--green);
  color: var(--brass);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  border: 1px solid var(--green);
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.01em;
  line-height: 1;
}

.brand-text em {
  display: block;
  font-style: normal;
  font-weight: 500;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

.site-nav {
  display: flex;
  gap: 2px;
}

.nav-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 10px;
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
  color: var(--green);
  border-bottom-color: var(--brass);
}

.nav-link.active {
  border-bottom-color: var(--green);
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease;
}

.btn-primary {
  background: var(--green);
  color: var(--paper);
  border-color: var(--green);
}

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--paper);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn-light {
  background: var(--paper);
  color: var(--green);
  border-color: var(--paper);
}

.btn-light:hover {
  background: var(--brass);
  color: var(--ink);
  border-color: var(--brass);
}

.btn-ghost-light {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--paper);
}

.nav-phone {
  font-family: var(--font-mono);
  font-size: 13.5px;
  padding: 9px 14px;
  border: 2px solid var(--green);
  color: var(--green);
  background: transparent;
}

.nav-phone:hover {
  background: var(--green);
  color: var(--paper);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
}

/* Hero */
.hero {
  background: var(--green);
  color: var(--paper);
  padding: var(--space-10) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-8);
  align-items: center;
}

.label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: var(--space-4);
}

.hero .label {
  color: var(--brass);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(42px, 6.5vw, 76px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
}

.hero h1 em {
  font-style: italic;
  color: var(--brass);
}

.lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: var(--space-6);
}

.hero .lede {
  color: rgba(244, 240, 230, 0.85);
}

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

.hero-figure {
  position: relative;
}

.hero-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--brass);
}

/* Appointment ticket */
.ticket {
  position: relative;
  border: 2px dashed var(--brass);
  background: var(--paper);
  color: var(--ink);
  padding: 26px 22px 20px;
  margin-top: var(--space-8);
}

.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
}

.ticket::before { left: -12px; }
.ticket::after { right: -12px; }

.ticket-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.ticket-head em {
  font-style: normal;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 11.5px;
  color: var(--muted);
}

.ticket dl {
  margin: 14px 0;
}

.ticket dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px dotted var(--line);
}

.ticket dt {
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.ticket dd {
  font-weight: 600;
  font-size: 14px;
}

.ticket-price {
  font-size: 19px;
  color: var(--muted);
}

.ticket-price strong {
  color: var(--green);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
}

.ticket-foot {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}

/* Price board */
.board {
  background: var(--green-dark);
  color: var(--paper);
  border: 1px solid var(--brass);
  padding: var(--space-8) var(--space-6);
}

.board .label {
  color: var(--brass);
}

.board h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  margin-bottom: var(--space-6);
}

.menu-board {
  list-style: none;
  border-top: 1px solid rgba(244, 240, 230, 0.25);
}

.menu-board li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(244, 240, 230, 0.18);
}

.menu-board .cut {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
}

.menu-board .cut small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: rgba(244, 240, 230, 0.65);
}

.menu-board .dots {
  flex: 1;
  border-bottom: 2px dotted rgba(244, 240, 230, 0.35);
  transform: translateY(-3px);
}

.menu-board .price {
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--brass);
  white-space: nowrap;
}

/* Sections */
.section {
  padding: var(--space-10) 0;
}

.section-head {
  margin-bottom: var(--space-8);
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.02em;
}

.section-head .label {
  margin-bottom: 10px;
}

/* Cuts gallery */
.cuts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.cut-card {
  border: 1px solid var(--ink);
  background: #fff;
}

.cut-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid var(--ink);
  filter: saturate(0.9);
}

.cut-card figcaption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  padding: 12px 14px;
}

.cut-card .cut-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
}

.cut-card .cut-time {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  white-space: nowrap;
}

/* Reviews */
.reviews {
  border-top: 2px solid var(--ink);
}

.reviews blockquote {
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--line);
}

.reviews blockquote p {
  font-size: 19px;
  font-weight: 500;
  max-width: 64ch;
  margin-bottom: 8px;
}

.reviews cite {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

/* Hours band */
.hours-band {
  background: var(--brass);
  color: var(--ink);
  padding: var(--space-8) 0;
}

.hours-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.hours-inner .label {
  color: var(--green-dark);
}

.hours-inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1;
}

.hours-inner p {
  font-family: var(--font-mono);
  font-size: 13px;
  max-width: 40ch;
}

/* Page hero (inner pages) */
.page-hero {
  padding: var(--space-10) 0 var(--space-8);
  border-bottom: 2px solid var(--green);
  margin-bottom: var(--space-10);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
}

.page-hero .lede {
  max-width: 56ch;
  margin-bottom: 0;
}

/* Price rows (services page) */
.price-rows {
  list-style: none;
  border-top: 2px solid var(--ink);
}

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

.price-rows .serv {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
}

.price-rows .serv small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--muted);
}

.price-rows .dots {
  flex: 1;
  border-bottom: 2px dotted var(--line);
  transform: translateY(-4px);
}

.price-rows .price {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--muted);
  white-space: nowrap;
}

.price-rows .book {
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

/* Story / steps */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}

.story-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--ink);
}

.story-grid h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  margin: var(--space-4) 0;
}

.story-grid p {
  color: var(--muted);
  margin-bottom: 12px;
  max-width: 52ch;
}

.steps {
  list-style: none;
  border-top: 2px solid var(--ink);
}

.steps li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: var(--space-6);
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--line);
}

.step-num {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--brass);
}

.steps h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  margin-bottom: 5px;
}

.steps p {
  color: var(--muted);
  max-width: 52ch;
}

/* Forms */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-8);
  align-items: start;
}

.form-card {
  border: 2px solid var(--ink);
  background: #fff;
  padding: var(--space-6);
}

.form-card h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  margin-bottom: var(--space-6);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--space-4);
}

.field {
  display: block;
  font-weight: 700;
  font-size: 13.5px;
  margin-bottom: var(--space-4);
}

.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  font: inherit;
  font-weight: 400;
  font-size: 15px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  padding: 11px 12px;
  color: var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid var(--brass);
  outline-offset: 0;
  border-color: var(--green);
}

.field-full {
  grid-column: 1 / -1;
}

.btn-block {
  width: 100%;
  margin-top: 6px;
}

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

.form-success {
  border: 2px dashed var(--green);
  padding: var(--space-6);
}

.info-stack {
  display: grid;
  gap: var(--space-4);
}

.info-card {
  border: 1px solid var(--line);
  border-left: 3px solid var(--brass);
  background: #fff;
  padding: 18px 20px;
}

.info-card h3 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.info-card p {
  color: var(--muted);
  font-size: 14.5px;
}

.info-link {
  font-size: 19px;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
}

.info-link:hover {
  color: var(--brass);
}

.map {
  width: 100%;
  height: 420px;
  border: 2px solid var(--green);
  background: var(--paper);
}

/* Footer */
.site-footer {
  background: var(--green-dark);
  color: rgba(244, 240, 230, 0.8);
  padding: var(--space-8) 0 0;
  font-size: 15px;
}

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

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

.site-footer .brand-mark {
  background: var(--brass);
  color: var(--ink);
  border-color: var(--brass);
}

.site-footer .brand-text em {
  color: rgba(244, 240, 230, 0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-8);
}

.footer-brand p {
  max-width: 34ch;
  margin-top: 12px;
}

.footer-meta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: rgba(244, 240, 230, 0.55);
  margin-top: 8px;
}

.footer-col h3 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 240, 230, 0.6);
  margin-bottom: 14px;
}

.footer-col a,
.footer-col span {
  display: block;
  text-decoration: none;
  padding: 4px 0;
  color: rgba(244, 240, 230, 0.85);
}

.footer-col a:hover {
  color: var(--brass);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(244, 240, 230, 0.2);
  padding-top: 16px;
  padding-bottom: 16px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: rgba(244, 240, 230, 0.55);
}

@media (max-width: 900px) {
  .hero-grid,
  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .ticket {
    max-width: 420px;
  }

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

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

@media (max-width: 720px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 2px solid var(--green);
    flex-direction: column;
    padding: 12px var(--space-6) 20px;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-phone {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .header-inner {
    position: relative;
  }

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

  .steps li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .price-rows li {
    flex-wrap: wrap;
    gap: 6px 12px;
  }

  .price-rows .dots {
    order: 3;
    flex-basis: 100%;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

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

  .btn {
    transition: none;
  }
}
