:root {
  --clay: #b1502e;
  --clay-bright: #c96339;
  --gold: #b8842f;
  --gold-bright: #cc9a3e;
  --ink: #241811;
  --ink-soft: #4a382b;
  --sand: #f6ecda;
  --surface: #fdf6e9;
  --surface-raised: #fffaf0;
  --line: #d9c5a0;
  --hide: #171210;
  --hide-surface: #211812;
  --paper-shadow: 0 1px 0 rgba(36,24,17,0.08);
  --radius-tag: 6px;
  --serif-display: 'Sancreek', Georgia, 'Rockwell', serif;
  --sans: 'Libre Franklin', 'Segoe UI', system-ui, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --clay: #cc6a3f;
    --clay-bright: #e17a4a;
    --gold: #d9a94e;
    --gold-bright: #e6bb63;
    --ink: #f1e4cc;
    --ink-soft: #cdb99a;
    --sand: #171210;
    --surface: #211812;
    --surface-raised: #2a1f17;
    --line: #4a382b;
    --paper-shadow: 0 1px 0 rgba(0,0,0,0.4);
  }
}
:root[data-theme="dark"] {
  --clay: #cc6a3f;
  --clay-bright: #e17a4a;
  --gold: #d9a94e;
  --gold-bright: #e6bb63;
  --ink: #f1e4cc;
  --ink-soft: #cdb99a;
  --sand: #171210;
  --surface: #211812;
  --surface-raised: #2a1f17;
  --line: #4a382b;
  --paper-shadow: 0 1px 0 rgba(0,0,0,0.4);
}
:root[data-theme="light"] {
  --clay: #b1502e;
  --clay-bright: #c96339;
  --gold: #b8842f;
  --gold-bright: #cc9a3e;
  --ink: #241811;
  --ink-soft: #4a382b;
  --sand: #f6ecda;
  --surface: #fdf6e9;
  --surface-raised: #fffaf0;
  --line: #d9c5a0;
  --hide: #171210;
  --hide-surface: #211812;
  --paper-shadow: 0 1px 0 rgba(36,24,17,0.08);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; }
img, svg { max-width: 100%; display: block; }
h1, h2, h3 { text-wrap: balance; margin: 0; }
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 2px;
}

/* ---------- utility bar ---------- */
.utility {
  background: var(--hide);
  color: #ecdcc0;
  font-size: 13.5px;
}
.utility .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 9px;
  padding-bottom: 9px;
}
.utility-left { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.utility-left span { display: inline-flex; align-items: center; gap: 7px; color: #d8c6a6; }
.utility-left svg { width: 14px; height: 14px; flex: none; }
.utility a.tel {
  color: #f4e5c5;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.utility-social { display: flex; gap: 12px; }
.utility-social a { color: #c9b592; display: flex; }
.utility-social a:hover { color: var(--gold-bright); }
.utility-social svg { width: 16px; height: 16px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(204,106,63,0.35), transparent 60%),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.16) 0 2px, transparent 2px 34px),
    linear-gradient(180deg, #241811 0%, #1a120c 100%);
  color: #f4e8cf;
  padding: 56px 0 64px;
  border-bottom: 6px solid var(--clay);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold-bright);
}
.hero h1 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 74px);
  line-height: 1.18;
  letter-spacing: 0.01em;
  color: #fbf1dc;
  text-shadow: 0 2px 0 rgba(0,0,0,0.5), 0 0 46px rgba(204,106,63,0.25);
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-bright);
}
.hero-tag {
  margin: 18px 0 22px;
  font-size: 19px;
  color: #e7d6b4;
  max-width: 46ch;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: var(--radius-tag);
  font-weight: 700;
  font-size: 15.5px;
  text-decoration: none;
  border: 2px solid transparent;
  letter-spacing: 0.01em;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--clay-bright);
  color: #fff6e8;
  box-shadow: 0 5px 0 #7c3517;
}
.btn-primary:hover { background: #d97a4c; }
.btn-ghost {
  border-color: #6b5843;
  color: #f0e2c4;
}
.btn-ghost:hover { border-color: var(--gold-bright); color: var(--gold-bright); }

.hero-stats {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(230,200,150,0.2);
  padding-top: 22px;
}
.hero-stats div strong {
  display: block;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 22px;
  color: #fbf1dc;
  font-variant-numeric: tabular-nums;
}
.hero-stats div span {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b39d7c;
}

/* badge */
.badge-wrap { display: flex; justify-content: center; }
.badge-wrap img { width: min(100%, 300px); height: auto; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)); }

/* wordmark sign */
.hero-wordmark { width: min(100%, 280px); height: auto; margin-bottom: 24px; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.45)); }

/* ---------- about ---------- */
.about {
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}
.section-title {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 18px;
}
.about p { font-size: 17px; color: var(--ink-soft); max-width: 60ch; }
.about p + p { margin-top: 14px; }
.rule {
  border: none;
  border-top: 3px double var(--line);
  margin: 40px 0;
}
.about-card {
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px 28px;
  box-shadow: var(--paper-shadow);
}
.about-card h3 {
  font-family: var(--sans);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14.5px;
  color: var(--clay);
  margin-bottom: 10px;
}
.about-card p { font-size: 15.5px; margin: 0; color: var(--ink-soft); }
.about-card .msg-btn {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--clay);
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 2px solid var(--clay);
  padding-bottom: 2px;
}
.about-card .msg-btn svg { width: 16px; height: 16px; }

/* ---------- services ---------- */
.services { padding: 60px 0 68px; background: var(--surface); border-bottom: 1px solid var(--line); }
.services-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 34px; flex-wrap: wrap; }
.services-head p { color: var(--ink-soft); max-width: 42ch; font-size: 15.5px; margin: 10px 0 0; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  position: relative;
  background: var(--surface-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-tag);
  padding: 24px 22px 22px;
  box-shadow: var(--paper-shadow);
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sand);
  border: 1.5px solid var(--line);
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.25);
}
.svc-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--clay) 14%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.svc-icon svg { width: 22px; height: 22px; stroke: var(--clay); }
.svc-card h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--ink);
}
.svc-card p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }

/* ---------- mobile service band ---------- */
.mobile-band {
  padding: 56px 0;
}
.mobile-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  background: var(--hide);
  color: #ecdcc0;
  border-radius: 14px;
  padding: 40px 44px;
  background-image: radial-gradient(ellipse 600px 300px at 90% 10%, rgba(204,106,63,0.22), transparent 60%);
}
.card-key { width: 108px; height: 108px; flex: none; }
.mobile-inner h3 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.35;
  color: #fbf1dc;
  margin-bottom: 10px;
}
.mobile-inner p { margin: 0; color: #d8c6a6; font-size: 16px; max-width: 62ch; }
.mobile-inner .tel-inline {
  color: var(--gold-bright);
  font-weight: 800;
  text-decoration: none;
  font-variant-numeric: tabular-nums;
}

/* ---------- final CTA ---------- */
.cta-band {
  background: linear-gradient(180deg, #1a120c, #120c08);
  color: #f4e8cf;
  text-align: center;
  padding: 58px 24px 64px;
  border-top: 1px solid rgba(230,200,150,0.15);
  border-bottom: 6px solid var(--gold);
}
.cta-band .eyebrow { justify-content: center; }
.cta-band .eyebrow::before { display: none; }
.cta-band .eyebrow::after {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold-bright);
}
.cta-phone {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(38px, 7vw, 64px);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  color: #fbf1dc;
  text-decoration: none;
  display: inline-block;
  margin: 10px 0 26px;
}
.cta-phone:hover { color: var(--gold-bright); }
.cta-band .btn-primary { box-shadow: 0 5px 0 #8a6420; background: var(--gold); }
.cta-band .btn-primary:hover { background: var(--gold-bright); }

/* ---------- footer ---------- */
footer { background: var(--sand); padding: 46px 0 30px; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.foot-brand { margin-bottom: 14px; }
.foot-brand img { width: 200px; height: auto; }
footer h4 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clay);
  margin: 0 0 14px;
}
footer address, footer p { font-style: normal; color: var(--ink-soft); font-size: 15px; margin: 0 0 8px; }
footer .foot-social { display: flex; gap: 12px; margin-top: 4px; }
footer .foot-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
  text-decoration: none;
}
footer .foot-social a:hover { border-color: var(--clay); color: var(--clay); }
footer .foot-social svg { width: 16px; height: 16px; }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 22px;
  font-size: 13px;
  color: var(--ink-soft);
}

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; }
  .badge-wrap { order: -1; }
  .badge-wrap img { width: 190px; }
  .hero-wordmark { width: 220px; margin: 0 auto 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 34px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-inner { grid-template-columns: 1fr; text-align: center; padding: 34px 26px; }
  .mobile-inner .card-key { margin: 0 auto; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .svc-grid { grid-template-columns: 1fr; }
  .utility .wrap { flex-direction: column; align-items: flex-start; gap: 8px; }
  .hero { padding: 44px 0 48px; }
}

@media (prefers-reduced-motion: no-preference) {
  .btn-primary, .btn-ghost, .foot-social a, .utility-social a, .cta-phone { transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease; }
}
