:root {
  --bg: #efeae0;
  --bg-alt: #e7e1d4;
  --ink: #101820;
  --muted: #3f4744;
  --paper: #f6f2e9;
  --copper: #8a4f2c;
  --copper-on-dark: #d7b08a;
  --line: rgba(16, 24, 32, 0.12);
  --line-strong: rgba(16, 24, 32, 0.2);
  --hero: #101820;
  --hero-ink: #f3efe6;
  --radius: 0;
  --wrap: 1080px;
  --gutter: 18px;
  --header-h: 52px;
  --cta-h: 52px;
  --display: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Figtree", "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  background: var(--bg);
  overflow-x: hidden;
  scroll-padding-top: 4.5rem;
}

body {
  margin: 0;
  color: var(--ink);
  font: 17px/1.5 var(--sans);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}

h1, h2, h3, .shop-name, .call-number, .header-call-number {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.03em;
}

h1, h2, h3, p { margin: 0; }
a { color: inherit; }
button { font: inherit; }
ul { margin: 0; padding: 0; }

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 40;
  padding: 8px 12px;
  background: var(--ink);
  color: var(--hero-ink);
  text-decoration: none;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.wrap {
  width: min(var(--wrap), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.example-banner {
  margin: 0;
  padding: 6px var(--gutter);
  background: #0c1218;
  color: rgba(243, 239, 230, 0.7);
  font-size: 0.75rem;
  line-height: 1.3;
  letter-spacing: 0;
  font-family: var(--sans);
  font-weight: 400;
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  min-height: 24px;
}
.banner-line { white-space: nowrap; }
@media (max-width: 359px) {
  .banner-line { white-space: normal; }
}
.example-banner .banner-back {
  color: rgba(243, 239, 230, 0.9);
  min-height: 0;
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  text-underline-offset: 2px;
}
html.is-embed .example-banner {
  position: static;
  justify-content: flex-start;
  min-height: 24px;
  height: 24px;
  padding: 0 var(--gutter);
  overflow: hidden;
}
html.is-embed .banner-back { display: none; }
html.is-embed .shop-footer .banner-back { display: none; }
html.is-embed .header-bar nav { display: none; }
html.is-embed .hero-note { display: none; }

.shop-header {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  min-height: var(--header-h);
}
.shop-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  line-height: 1.02;
}
.shop-name {
  font-size: 1.375rem;
  letter-spacing: -0.04em;
  font-weight: 600;
}
.shop-trade {
  font-family: var(--sans);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
}
.header-bar nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.header-bar nav a {
  min-height: var(--header-h);
  display: inline-flex;
  align-items: center;
  padding: 0 0.7rem;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--muted);
}
.header-bar nav a:hover { color: var(--ink); }
.header-call {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  line-height: 1.1;
  pointer-events: none;
}
.header-call-kicker {
  font-family: var(--sans);
  font-size: 0.6875rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  font-weight: 400;
}
.header-call-number {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  white-space: nowrap;
}

.hero {
  padding: 28px 0 32px;
  background: var(--hero);
  color: var(--hero-ink);
}
.hero-inner { max-width: 34rem; }
.hero-kicker,
.section-kicker {
  margin-bottom: 8px;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--copper);
}
.hero-kicker { color: var(--copper-on-dark); margin-bottom: 12px; }
.hero h1 {
  font-size: 2.75rem;
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 11ch;
  text-wrap: pretty;
  font-weight: 600;
}
.lede {
  margin-top: 14px;
  max-width: 28rem;
  font-size: 1.0625rem;
  line-height: 1.38;
  color: rgba(243, 239, 230, 0.88);
  letter-spacing: -0.01em;
}
.hero-actions { margin-top: 18px; }
.hero-note {
  margin-top: 14px;
  font-size: 0.75rem;
  letter-spacing: 0;
  color: rgba(243, 239, 230, 0.48);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  min-height: 48px;
  padding: 0 16px;
  border: 0;
  border-radius: 0;
  background: var(--ink);
  color: var(--hero-ink);
  text-decoration: none;
  font: 500 0.875rem/1 var(--sans);
  letter-spacing: 0;
  width: max-content;
  max-width: 100%;
  cursor: pointer;
}
.btn-hero {
  background: var(--hero-ink);
  color: var(--ink);
}
.btn-hero:hover { background: var(--hero-ink); }
.btn:hover { background: var(--ink); }
.btn:disabled {
  opacity: 1;
  cursor: not-allowed;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line-strong);
}

.block { padding: 36px 0; }
.block h2 {
  font-size: 1.75rem;
  line-height: 1.06;
  max-width: 16ch;
  letter-spacing: -0.04em;
}
.services-block,
.areas-block,
.contact-block { background: var(--bg); }

.services {
  list-style: none;
  margin-top: 16px;
}
.services li {
  padding: 10px 0;
  border: 0;
}
.services li:last-child { border: 0; }
.services h3 {
  font-size: 1.375rem;
  letter-spacing: -0.035em;
  line-height: 1.15;
}
.services p,
.areas-lead,
.contact-copy p {
  margin-top: 6px;
  color: var(--muted);
  max-width: 36rem;
  font-size: 1.0625rem;
  line-height: 1.42;
}

.areas-lead { margin-top: 12px; }
.areas {
  list-style: none;
  margin-top: 16px;
  display: block;
  border: 0;
}
.areas li {
  padding: 5px 0;
  border: 0;
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.areas li:nth-child(even) {
  padding-left: 0;
  border-left: 0;
}

.contact-grid {
  display: grid;
  gap: 32px;
}
.call-slot {
  margin-top: 20px;
  padding: 16px 0 0;
  border-top: 0;
  display: grid;
  gap: 4px;
}
.call-label,
.call-note {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  font-weight: 400;
}
.call-number {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  pointer-events: none;
}
.call-note { text-transform: none; letter-spacing: 0; }

.form { display: grid; gap: 16px; }
label span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8125rem;
  letter-spacing: 0;
  color: var(--muted);
}
input, textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.5rem 0;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}
textarea { min-height: 6.5rem; resize: vertical; }
input:disabled, textarea:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.8125rem;
}

.shop-footer {
  padding: 20px 0 28px;
  color: var(--muted);
  font-size: 0.8125rem;
  background: var(--bg);
  border-top: 1px solid var(--line);
  letter-spacing: 0;
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  align-items: center;
}
.shop-footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  text-underline-offset: 3px;
}

html.is-embed .hero { padding: 16px 0 20px; }
html.is-embed .hero h1 { font-size: 2.5rem; }
html.is-embed .lede { margin-top: 12px; }
html.is-embed .hero-actions { margin-top: 16px; }
html.is-embed .block { padding: 28px 0; }
html.is-embed .services-block { padding-top: 22px; }
html.is-embed { --wrap: 1120px; }

@media (max-width: 767px) {
  .header-call { display: none; }
  .header-bar nav { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.55rem; max-width: 10.5ch; text-wrap: wrap; }
  html.is-embed .hero { padding: 14px 0 18px; }
  html.is-embed .hero h1 { font-size: 2.35rem; max-width: 10.5ch; text-wrap: wrap; }
}

@media (max-width: 359px) {
  html.is-embed .hero { padding: 12px 0 14px; }
  html.is-embed .hero h1 { font-size: 2.05rem; max-width: 8.6ch; text-wrap: wrap; }
  html.is-embed .lede { margin-top: 10px; font-size: 1rem; line-height: 1.32; }
  html.is-embed .hero-actions { margin-top: 12px; }
  html.is-embed .btn { height: 48px; min-height: 48px; }
}

@media (min-width: 768px) {
  :root { --gutter: 24px; }
  .header-bar nav { display: flex; }
  .contact-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 48px;
    align-items: start;
  }
  html.is-embed .header-bar nav { display: none; }
}

@media (min-width: 1024px) {
  :root { --gutter: 36px; }
  .hero { padding: 40px 0 36px; }
  .hero h1 { font-size: 3.75rem; }
  .block { padding: 48px 0; }
  .block h2 { font-size: 2.125rem; }
  .call-number { font-size: 2.25rem; }
  html.is-embed .hero { padding: 24px 0 28px; }
  html.is-embed .hero h1 { font-size: 3.35rem; }
  html.is-embed .block { padding: 36px 0; }
  html.is-embed { --wrap: 1240px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
