/* Your shop — sample $500 site refresh
   Warm paper, one muted-teal accent. Neighborhood, not neon. */

:root {
  --paper: #f3efe6;
  --paper-2: #e8e2d6;
  --card: #fffdf8;
  --ink: #1b2422;
  --muted: #5a6662;
  --dim: #7a847f;
  --teal: #3c6d67;
  --teal-deep: #244843;
  --teal-mid: #4f827b;
  --teal-soft: #d7e5e2;
  --teal-wash: #eef4f2;
  --line: #d6cfc2;
  --line-strong: #c4bbab;
  --focus: #2b524d;
  --ok: #2f6b4f;
  --ok-wash: #e4f0e8;
  --radius: 14px;
  --wrap: 1100px;
  --header-h: 68px;
  --banner-h: 36px;
  --shadow: 0 12px 40px rgba(27, 36, 34, 0.08);
  --font: "Source Sans 3", "Source Sans Pro", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

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

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

.wrap {
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--teal-deep);
  color: #fff;
  padding: 0.5rem 0.85rem;
  z-index: 100;
}
.skip:focus { top: 0.5rem; }

/* —— Sample banner —— */
.sample-banner {
  min-height: var(--banner-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-deep);
  color: #f4f7f6;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  text-align: center;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 560;
  letter-spacing: -0.02em;
}
.brand:hover { color: var(--teal-deep); }

.mark {
  width: 28px;
  height: 28px;
  flex: none;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  background: var(--card);
  color: var(--ink);
  border-radius: 8px;
  padding: 0.4rem 0.7rem;
  font: inherit;
  font-size: 0.95rem;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.15rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.25rem 0;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--ink); }

.site-nav .nav-cta {
  background: var(--teal);
  color: #fff;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
}
.site-nav .nav-cta:hover { background: var(--teal-deep); color: #fff; }

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(var(--banner-h) + var(--header-h));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--card);
    border-bottom: 1px solid var(--line);
    padding: 0.6rem 1rem 1rem;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 0.7rem 0.2rem; border-bottom: 1px solid var(--paper-2); }
  .site-nav .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }
}

/* —— Type —— */
.kicker {
  margin: 0 0 0.55rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 560;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(2.05rem, 5vw, 3.35rem); margin: 0 0 0.75rem; }
h2 { font-size: clamp(1.55rem, 3vw, 2.15rem); margin: 0 0 0.6rem; }
h3 { font-size: 1.2rem; margin: 0 0 0.4rem; }

.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 38rem;
  margin: 0 0 1.4rem;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font-weight: 650;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn-teal {
  background: var(--teal);
  color: #fff;
}
.btn-teal:hover { background: var(--teal-deep); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--card); color: var(--ink); }

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  padding: 3.2rem 0 3.6rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 88% 10%, rgba(60, 109, 103, 0.16), transparent 60%),
    radial-gradient(700px 380px at 0% 100%, rgba(60, 109, 103, 0.08), transparent 55%),
    linear-gradient(180deg, #efe8db 0%, var(--paper) 100%);
  z-index: -2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 820px) {
  .hero { padding: 2.2rem 0 2.6rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* CSS storefront — no brand, no photo hotlink */
.facade {
  position: relative;
  aspect-ratio: 5 / 4;
  background:
    linear-gradient(#d9cfc0, #d9cfc0) 0 0 / 100% 72%,
    linear-gradient(#c9c2b3, #c9c2b3);
  background-repeat: no-repeat;
  border-radius: 6px 6px 4px 4px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.facade-sky {
  position: absolute;
  inset: 0 0 38% 0;
  background:
    linear-gradient(180deg, #c5d4d1 0%, #dce6e3 70%, #e8e2d6 100%);
}

.facade-body {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 18%;
  bottom: 10%;
  background: #e7ddd0;
  border: 1px solid #c8bba8;
  border-radius: 2px 2px 0 0;
}

.facade-awning {
  position: absolute;
  left: 7%;
  right: 7%;
  top: 14%;
  height: 16%;
  background:
    repeating-linear-gradient(
      90deg,
      var(--teal-deep) 0 14px,
      var(--teal) 14px 28px,
      #d9cfc0 28px 32px
    );
  clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%);
  box-shadow: 0 6px 0 rgba(36, 72, 67, 0.12);
}

.facade-window {
  position: absolute;
  left: 16%;
  width: 38%;
  top: 36%;
  height: 32%;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.35), transparent 40%),
    linear-gradient(#2f5550, #1e3a37);
  border: 3px solid #cfc4b2;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}

.facade-window::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(#cfc4b2, #cfc4b2) 50% 0 / 2px 100% no-repeat,
    linear-gradient(#cfc4b2, #cfc4b2) 0 50% / 100% 2px no-repeat;
}

.facade-door {
  position: absolute;
  right: 16%;
  width: 18%;
  top: 38%;
  bottom: 10%;
  background: linear-gradient(#6d4d3d, #5a3e31);
  border: 3px solid #cfc4b2;
}

.facade-door::after {
  content: "";
  position: absolute;
  right: 12%;
  top: 46%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d8c07a;
}

.facade-walk {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10%;
  background:
    repeating-linear-gradient(
      90deg,
      #d4cfc4 0 48px,
      #c9c3b6 48px 50px
    );
}

.facade-tree {
  position: absolute;
  left: 2%;
  bottom: 10%;
  width: 10%;
  height: 42%;
  background:
    radial-gradient(circle at 50% 28%, #3c6d67 0 38%, transparent 39%),
    linear-gradient(#6a4a38, #6a4a38) 46% 100% / 18% 48% no-repeat;
}

/* —— Sections —— */
section { padding: 3.4rem 0; }

.band { background: var(--teal-wash); }
.band-ink {
  background: var(--teal-deep);
  color: #e8efed;
}
.band-ink h2,
.band-ink h3 { color: #f7faf9; }
.band-ink p { color: #c5d4d0; }

.section-head { max-width: 38rem; margin-bottom: 1.8rem; }

/* cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem 1.4rem;
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset;
}

.card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal-deep);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

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

@media (max-width: 760px) {
  .cards { grid-template-columns: 1fr; }
}

/* two col */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: start;
}
@media (max-width: 760px) {
  .split { grid-template-columns: 1fr; }
}

/* hours */
.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}
.hours th,
.hours td {
  text-align: left;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.hours th { color: var(--ink); font-weight: 650; width: 42%; }
.hours td { color: var(--muted); }

/* services list */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }
}

.svc {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.35rem 1.4rem;
  border-top: 3px solid var(--teal);
}
.svc p { margin: 0; color: var(--muted); }

/* street strip graphic */
.street-strip {
  height: 140px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(#c7d3d0, #c7d3d0) 0 0 / 100% 58%,
    linear-gradient(#b8b2a4, #b8b2a4);
  background-repeat: no-repeat;
  position: relative;
  border: 1px solid var(--line);
}
.street-strip .bldg {
  position: absolute;
  bottom: 22%;
  background: #e3d8c8;
  border: 1px solid #c8bba8;
}
.street-strip .b1 { left: 6%; width: 22%; height: 58%; }
.street-strip .b2 { left: 30%; width: 28%; height: 70%; background: #d8e0dd; }
.street-strip .b3 { left: 60%; width: 18%; height: 50%; }
.street-strip .b4 { left: 80%; width: 16%; height: 62%; }
.street-strip .win {
  position: absolute;
  background: #355852;
  width: 18%;
  height: 16%;
}
.street-strip .curb {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 22%;
  background: #cfc8ba;
  box-shadow: inset 0 8px 0 #d8d2c4;
}

/* forms */
.form {
  display: grid;
  gap: 0.9rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 650;
  font-size: 0.95rem;
}

input, textarea, select {
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 0.65rem 0.75rem;
  width: 100%;
}

input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
  border-color: var(--teal);
}

textarea { min-height: 8rem; resize: vertical; }

.form-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--dim);
}

.form-status {
  display: none;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  background: var(--ok-wash);
  color: var(--ok);
  font-weight: 650;
}
.form-status.is-on { display: block; }

.aside {
  background: var(--teal-wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.35rem;
}
.aside p { margin: 0.4rem 0 0; color: var(--muted); }
.aside .phone {
  font-family: var(--display);
  font-size: 1.45rem;
  color: var(--ink);
  text-decoration: none;
  display: inline-block;
  margin-top: 0.35rem;
}

/* page hero */
.page-hero {
  padding: 2.6rem 0 1.4rem;
  background:
    linear-gradient(180deg, #efe8db, var(--paper));
}

/* footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.2rem 0 2.4rem;
  background: #ebe5d8;
  color: var(--muted);
  font-size: 0.95rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.6rem;
}
@media (max-width: 700px) {
  .foot-grid { grid-template-columns: 1fr; }
}

.foot-name {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--ink);
  margin: 0 0 0.35rem;
}

.site-footer a { color: var(--teal-deep); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0.25rem 0; }
.fine { margin-top: 1.4rem; font-size: 0.82rem; color: var(--dim); }

/* utilities */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.stack > * + * { margin-top: 0.85rem; }
