/* ==========================================================================
   Crosscut Lawn Co. — "Mow Lines"
   --------------------------------------------------------------------------
   A concept site by RedHorseWebDev. Crosscut is a fictional business.

   The whole look comes from a freshly cut lawn: alternating bands of two
   greens, the way a mower leaves them. Cream and near-black carry the text;
   lime is the single accent and only ever sits on black or green, never on
   cream, where it would fail contrast.

   One look, no dark mode — like a truck livery, the brand is the colours.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  color-scheme: light;

  --cream:   #f3efe1;
  --cream-2: #e8e1cb;
  --ink:     #121510;
  --ink-2:   #3a4035;
  --ink-3:   #5f6657;

  --green:   #2c8a3b;
  --green-d: #22722f;   /* the darker stripe */
  --green-l: #36a148;   /* the lighter stripe */
  --green-x: #185a24;   /* text-safe green on cream */
  --lime:    #d8f24e;

  --line: rgba(18, 21, 16, 0.14);
  --line-strong: #121510;

  --display: "Anton", Impact, "Arial Narrow Bold", sans-serif;
  --body: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1180px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --radius: 4px;

  /* Mow stripes. Vertical for bands, angled for the hero, like a yard seen
     from the street. */
  --stripes: repeating-linear-gradient(90deg,
               var(--green) 0 64px, var(--green-d) 64px 128px);
  --stripes-angle: repeating-linear-gradient(-68deg,
               var(--green) 0 78px, var(--green-d) 78px 156px);
}

/* ---------- 2. Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;              /* Anton has one weight; bold would smear it */
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
  /* In em, so the gap scales with the type -- but kept small, because at
     hero sizes half an em is a hole in the page. */
  margin: 0 0 0.3em;
}
p { margin: 0 0 1em; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--lime); color: var(--ink); padding: 0.6rem 1rem; z-index: 100;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }

:focus-visible { outline: 3px solid var(--lime); outline-offset: 2px; }
.on-cream :focus-visible, .field :focus-visible { outline-color: var(--green-x); }

.kicker {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

/* ---------- 3. Concept disclosure ----------
   First thing on every page. Crosscut is not a real company, and nobody
   should leave this site believing otherwise. */
.concept-bar {
  background: var(--lime);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
}
.concept-bar .wrap {
  display: flex; flex-wrap: wrap; gap: 0.25rem 1rem;
  align-items: center; justify-content: center;
  min-height: 36px; padding-top: 0.35rem; padding-bottom: 0.35rem;
  text-align: center;
}
.concept-bar a { font-weight: 800; text-underline-offset: 3px; }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 48px;
  padding: 0.7rem 1.3rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--lime);
  font: 700 0.95rem/1 var(--body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease, color 0.12s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--cream { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost-light { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn--block { width: 100%; }
.btn__arrow { font-size: 1.1em; }

/* ---------- 5. Header ---------- */
.masthead {
  position: sticky; top: 0; z-index: 30;
  background: var(--cream);
  border-bottom: 2px solid var(--ink);
}
.masthead .wrap {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 74px;
}
.brand {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none; color: var(--ink);
  margin-right: auto;
}
/* The mark is a crosscut: two stripe directions laid over each other. */
.brand__mark {
  width: 38px; height: 38px; flex: none;
  border: 2px solid var(--ink);
  background:
    repeating-linear-gradient(90deg, rgba(18,21,16,0.18) 0 6px, transparent 6px 12px),
    repeating-linear-gradient(0deg, var(--green) 0 6px, var(--green-d) 6px 12px);
}
.brand__name {
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.brand__name small {
  display: block;
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--ink-3);
  margin-top: 0.15rem;
}
.nav { display: flex; gap: 1.4rem; }
.nav a {
  font-weight: 700; font-size: 0.9rem; text-decoration: none;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 0.3rem 0;
  border-bottom: 3px solid transparent;
}
.nav a:hover { border-bottom-color: var(--green); }
.nav a[aria-current="page"] { border-bottom-color: var(--ink); }

/* ---------- 6. Hero ---------- */
.hero {
  background: var(--stripes-angle);
  color: var(--cream);
  border-bottom: 2px solid var(--ink);
}
.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-top: clamp(3rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 8vw, 6rem);
}
.hero .kicker { color: var(--lime); }
.hero h1 {
  font-size: clamp(3.4rem, 9vw, 7.2rem);
  margin-bottom: 0.18em;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.18);
}
.hero h1 em { font-style: normal; color: var(--lime); }
.hero__lede { font-size: 1.12rem; max-width: 34ch; color: #f7f4e8; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }
.hero__facts {
  display: flex; flex-wrap: wrap; gap: 0.4rem 1.4rem;
  margin: 1.8rem 0 0; padding: 0; list-style: none;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.hero__facts li::before { content: "/ "; color: var(--lime); }

/* ---------- 7. Instant estimate ---------- */
.estimate {
  background: var(--cream);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--ink);
  padding: 1.5rem;
}
.estimate h2 { font-size: 2rem; margin-bottom: 0.2rem; }
.estimate__sub { font-size: 0.92rem; color: var(--ink-2); margin-bottom: 1.1rem; }
.choice { border: 0; margin: 0 0 1rem; padding: 0; }
.choice legend {
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 0.45rem; padding: 0;
}
.segs { display: grid; gap: 0.4rem; }
.segs--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.segs--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.seg { position: relative; }
.seg input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.seg span {
  display: flex; flex-direction: column; justify-content: center;
  min-height: 56px; padding: 0.45rem 0.5rem;
  border: 2px solid var(--ink); border-radius: var(--radius);
  background: var(--cream);
  font-weight: 800; font-size: 0.9rem; line-height: 1.15; text-align: center;
  transition: background 0.12s ease, color 0.12s ease;
}
.seg small { font-weight: 600; font-size: 0.72rem; color: var(--ink-3); margin-top: 0.15rem; }
.seg input:hover + span { background: var(--cream-2); }
.seg input:checked + span { background: var(--ink); color: var(--lime); }
.seg input:checked + span small { color: #c9d0bd; }
.seg input:focus-visible + span { outline: 3px solid var(--green-x); outline-offset: 2px; }

.quote {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  border-top: 2px solid var(--ink);
  margin-top: 0.4rem; padding-top: 0.9rem;
}
.quote__label { font-size: 0.74rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.quote__price { font-family: var(--display); font-size: 2.6rem; line-height: 1; }
.quote__per { font-size: 0.85rem; font-weight: 700; color: var(--ink-2); }
.quote__note { font-size: 0.78rem; color: var(--ink-3); margin: 0.35rem 0 1rem; }

/* ---------- 8. Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--ink { background: var(--ink); color: var(--cream); }
.section--band { background: var(--stripes); color: var(--cream); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.section-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 1rem; margin-bottom: 2.2rem; }
.section-head h2 { font-size: clamp(2.4rem, 5.5vw, 4rem); margin: 0; }
.section-head p { max-width: 42ch; margin: 0; color: var(--ink-2); }
.section--ink .section-head p { color: #c9cebe; }

/* Services */
.services { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; }
.service {
  display: flex; flex-direction: column;
  border: 2px solid var(--ink); border-radius: var(--radius);
  background: var(--cream);
  text-decoration: none; color: var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.service:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--ink); }
.service__band { height: 16px; background: var(--stripes); border-bottom: 2px solid var(--ink); }
.service__body { padding: 1.3rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.service__no { font-size: 0.74rem; font-weight: 800; letter-spacing: 0.14em; color: var(--green-x); }
.service h3 { font-size: 2rem; margin: 0.35rem 0 0.6rem; }
.service p { color: var(--ink-2); font-size: 0.97rem; }
.service__when { margin-top: auto; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.service__go { margin-top: 0.5rem; font-weight: 800; }

/* Availability teaser */
.avail-teaser {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.avail-teaser h2 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
.avail-teaser p { color: #d4d9c9; max-width: 44ch; }
.next-slot {
  border: 2px solid var(--lime); border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}
.next-slot__label { font-size: 0.74rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lime); }
.next-slot__when { font-family: var(--display); font-size: clamp(2rem, 4.5vw, 2.8rem); text-transform: uppercase; line-height: 1; margin: 0.5rem 0 0.3rem; }
.next-slot__detail { color: #d4d9c9; margin-bottom: 1.2rem; }
.btn--lime { background: var(--lime); color: var(--ink); border-color: var(--lime); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; counter-reset: step; padding: 0; margin: 0; list-style: none; }
.steps li { border-top: 4px solid var(--ink); padding-top: 1rem; }
.steps li::before {
  counter-increment: step; content: "0" counter(step);
  display: block; font-family: var(--display); font-size: 2.6rem; line-height: 1; color: var(--green-x);
}
.steps h3 { font-size: 1.6rem; margin: 0.6rem 0 0.4rem; }
.steps p { color: var(--ink-2); margin: 0; }

/* Service area */
.area { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 2rem; align-items: start; }
.area h2 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
.towns { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; padding: 0; margin: 0; }
.towns li {
  border: 2px solid var(--ink); border-radius: 999px;
  padding: 0.35rem 0.9rem; font-weight: 700; font-size: 0.92rem;
  background: var(--cream);
}

/* CTA band */
.cta { text-align: center; }
.cta h2 { font-size: clamp(2.8rem, 7vw, 5rem); text-shadow: 0 3px 0 rgba(0,0,0,0.18); }
.cta p { font-size: 1.1rem; max-width: 40ch; margin: 0 auto 1.6rem; }
.cta .hero__actions { justify-content: center; }

/* ---------- 9. Service pages ---------- */
.page-hero { background: var(--stripes-angle); color: var(--cream); border-bottom: 2px solid var(--ink); }
.page-hero .wrap { padding-top: clamp(2.8rem, 7vw, 4.5rem); padding-bottom: clamp(2.8rem, 7vw, 4.5rem); }
.page-hero .kicker { color: var(--lime); }
.page-hero h1 { font-size: clamp(3rem, 8vw, 5.8rem); max-width: 14ch; text-shadow: 0 3px 0 rgba(0,0,0,0.18); }
.page-hero p { font-size: 1.1rem; max-width: 46ch; color: #f7f4e8; }

.sheet { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.sheet h2 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); }
.ticks { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: 0.75rem; }
.ticks li { position: relative; padding-left: 2.1rem; font-size: 1.02rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 0.25em;
  width: 1.3rem; height: 1.3rem; border: 2px solid var(--ink);
  /* A tiny mown patch, at a stripe width that reads at this size. */
  background: repeating-linear-gradient(90deg, var(--green) 0 4px, var(--green-d) 4px 8px);
}
.ticks strong { display: block; }
.ticks span { color: var(--ink-2); font-size: 0.95rem; }

.sidecard {
  border: 2px solid var(--ink); border-radius: var(--radius);
  background: var(--cream); box-shadow: 8px 8px 0 var(--ink);
  padding: 1.4rem;
  position: sticky; top: 96px;
}
.sidecard dl { margin: 0 0 1.2rem; }
.sidecard dt { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.sidecard dd { margin: 0.1rem 0 0.9rem; font-weight: 700; font-size: 1.05rem; }
.sidecard dd:last-child { margin-bottom: 0; }

/* ---------- 10. Contact ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.form { display: grid; gap: 1rem; }
.field label { display: block; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.35rem; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px;
  padding: 0.65rem 0.8rem;
  border: 2px solid var(--ink); border-radius: var(--radius);
  background: #fbf9f2; color: var(--ink);
  font: 500 1rem/1.4 var(--body);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid var(--green-x); outline-offset: 1px; }
.field-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1rem; }
.notice {
  border: 2px solid var(--ink); border-left-width: 8px; border-radius: var(--radius);
  background: var(--lime); color: var(--ink);
  padding: 0.9rem 1rem; font-weight: 600;
}
.notice[hidden] { display: none; }
.dial { margin: 0; }
.dial dt { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.dial dd { margin: 0.15rem 0 1.1rem; font-family: var(--display); font-size: 1.7rem; text-transform: uppercase; line-height: 1.05; }
.dial dd a { text-decoration: none; }
.dial dd small { display: block; font-family: var(--body); font-size: 0.85rem; text-transform: none; color: var(--ink-2); margin-top: 0.2rem; }

/* ---------- 11. Footer ---------- */
.foot { background: var(--ink); color: #c9cebe; padding: 2.8rem 0 2rem; font-size: 0.92rem; }
.foot__grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem 3rem; }
.foot .brand { color: var(--cream); }
.foot .brand__name small { color: #9aa28f; }
.foot__nav { display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; list-style: none; margin: 0; padding: 0; }
.foot__nav a { text-decoration: none; font-weight: 700; color: var(--cream); }
.foot__nav a:hover { color: var(--lime); }
.foot__concept {
  margin-top: 2rem; padding-top: 1.2rem;
  border-top: 1px solid rgba(243, 239, 225, 0.18);
  font-size: 0.85rem;
}
.foot__concept a { color: var(--lime); font-weight: 700; }

/* ---------- 12. Availability dialog ---------- */
.avail {
  width: min(960px, calc(100vw - 1.5rem));
  max-height: calc(100vh - 1.5rem);
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
}
.avail::backdrop { background: rgba(18, 21, 16, 0.62); }
.avail__head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.9rem 1.2rem;
  background: var(--stripes);
  color: var(--cream);
  border-bottom: 2px solid var(--ink);
}
.avail__head h2 { font-size: 2rem; margin: 0; text-shadow: 0 2px 0 rgba(0,0,0,0.2); }
.avail__close {
  width: 44px; height: 44px; flex: none;
  border: 2px solid var(--ink); border-radius: var(--radius);
  background: var(--cream); color: var(--ink);
  font-size: 1.5rem; line-height: 1; cursor: pointer;
}
.avail__body {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 0; overflow: auto; max-height: calc(100vh - 7rem);
}
.cal { padding: 1.1rem 1.2rem 1.2rem; border-right: 2px solid var(--ink); }
.cal__nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.7rem; }
.cal__month { font-family: var(--display); font-size: 1.6rem; text-transform: uppercase; }
.cal__arrow {
  width: 44px; height: 44px;
  border: 2px solid var(--ink); border-radius: var(--radius);
  background: var(--cream); font-size: 1.2rem; font-weight: 800; cursor: pointer;
}
.cal__arrow:disabled { opacity: 0.3; cursor: default; }
.cal__grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 4px; }
.cal__dow { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-align: center; color: var(--ink-3); padding-bottom: 0.2rem; }
.day {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  aspect-ratio: 1 / 1; min-height: 44px;
  border: 2px solid var(--ink); border-radius: var(--radius);
  background: var(--cream); color: var(--ink);
  font: 800 1rem/1 var(--body);
  cursor: pointer; padding: 0;
}
.day__meta { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.02em; margin-top: 0.2rem; color: var(--ink-3); }
.day--open { background: #fbf9f2; }
.day--open:hover { background: var(--cream-2); }
.day--full { background: repeating-linear-gradient(-45deg, var(--cream-2) 0 5px, var(--cream) 5px 10px); color: var(--ink-3); }
.day--off, .day:disabled { border-color: transparent; background: transparent; color: #b3b8a8; cursor: default; }
.day--pad { visibility: hidden; }
.day[aria-pressed="true"] { background: var(--ink); color: var(--lime); }
.day[aria-pressed="true"] .day__meta { color: #c9d0bd; }
.day--mine::after {
  content: ""; position: absolute; top: 4px; right: 4px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 2px var(--cream);
}
.cal__key { display: flex; flex-wrap: wrap; gap: 0.3rem 1rem; margin-top: 0.8rem; font-size: 0.78rem; color: var(--ink-2); }
.cal__key span::before { content: ""; display: inline-block; width: 11px; height: 11px; border: 1.5px solid var(--ink); margin-right: 0.35rem; vertical-align: -1px; }
.cal__key .k-open::before { background: #fbf9f2; }
.cal__key .k-full::before { background: repeating-linear-gradient(-45deg, var(--cream-2) 0 3px, var(--cream) 3px 6px); }
.cal__key .k-mine::before { border-radius: 50%; background: var(--green); border-color: var(--green); }

.slots { padding: 1.1rem 1.2rem 1.2rem; }
.slots__date { font-family: var(--display); font-size: 1.6rem; text-transform: uppercase; line-height: 1.05; margin: 0 0 0.2rem; }
.slots__hint { color: var(--ink-2); font-size: 0.92rem; margin: 0 0 0.9rem; }
.slot-list { list-style: none; padding: 0; margin: 0 0 1rem; display: grid; gap: 0.5rem; }
.slot {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 0.8rem;
  min-height: 56px; padding: 0.55rem 0.8rem;
  border: 2px solid var(--ink); border-radius: var(--radius);
  background: #fbf9f2; color: var(--ink);
  font: 700 0.98rem/1.2 var(--body); text-align: left; cursor: pointer;
}
.slot small { display: block; font-weight: 600; font-size: 0.8rem; color: var(--ink-3); }
.slot__state { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; }
.slot:hover:not(:disabled) { background: var(--cream-2); }
.slot[aria-pressed="true"] { background: var(--ink); color: var(--lime); }
.slot[aria-pressed="true"] small { color: #c9d0bd; }
.slot:disabled { cursor: default; background: repeating-linear-gradient(-45deg, var(--cream-2) 0 5px, var(--cream) 5px 10px); color: var(--ink-3); }
.slot--mine, .slot--mine:disabled { background: var(--green); color: var(--cream); border-color: var(--ink); }
.slot--mine small { color: #e3efd9; }

.book { border-top: 2px solid var(--ink); padding-top: 1rem; display: grid; gap: 0.8rem; }
.book[hidden] { display: none; }
.book .field input, .book .field select { min-height: 44px; }
.book__season { font-size: 0.82rem; color: var(--ink-2); margin: -0.3rem 0 0; }

.mine { border-top: 2px solid var(--ink); padding: 1rem 1.2rem 1.2rem; }
.mine[hidden] { display: none; }
.mine h3 { font-size: 1.4rem; margin: 0 0 0.6rem; }
.mine ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.45rem; }
.mine li { display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; border: 2px solid var(--ink); border-radius: var(--radius); padding: 0.45rem 0.45rem 0.45rem 0.8rem; background: #fbf9f2; font-size: 0.92rem; }
.mine li strong { display: block; }
.mine button { min-height: 40px; padding: 0.3rem 0.8rem; border: 2px solid var(--ink); border-radius: var(--radius); background: var(--cream); font: 700 0.82rem/1 var(--body); cursor: pointer; }

.avail__foot { padding: 0.75rem 1.2rem; background: var(--ink); color: #c9cebe; font-size: 0.82rem; }
.avail__foot strong { color: var(--lime); }
.sr-live { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- 13. Responsive ---------- */
@media (max-width: 980px) {
  .hero .wrap, .avail-teaser, .area, .sheet, .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .services, .steps { grid-template-columns: minmax(0, 1fr); }
  .sidecard { position: static; }
}
@media (max-width: 860px) {
  .masthead .wrap { flex-wrap: wrap; gap: 0.6rem 1rem; min-height: 0; padding-top: 0.6rem; padding-bottom: 0.6rem; }
  /* Nav becomes a scrollable row under the brand rather than a hidden menu:
     four links fit, and a hamburger would hide the service pages. */
  .nav { order: 3; width: 100%; overflow-x: auto; gap: 1.1rem; padding-bottom: 0.1rem; }
  .nav a { white-space: nowrap; }
  .masthead .btn { min-height: 42px; padding: 0.5rem 0.9rem; font-size: 0.82rem; }
  .avail__body { grid-template-columns: minmax(0, 1fr); }
  .cal { border-right: 0; border-bottom: 2px solid var(--ink); }
}
@media (max-width: 520px) {
  .brand__name { font-size: 1.3rem; }
  .brand__name small { display: none; }
  .segs--3 { grid-template-columns: minmax(0, 1fr); }
  .seg span { min-height: 48px; flex-direction: row; justify-content: space-between; text-align: left; padding: 0.5rem 0.8rem; }
  .seg small { margin: 0; }
  .field-row { grid-template-columns: minmax(0, 1fr); }
  .estimate { box-shadow: 5px 5px 0 var(--ink); }
  .day__meta { display: none; }
  .avail { width: 100vw; max-width: 100vw; max-height: 100dvh; height: 100dvh; margin: 0; border-radius: 0; box-shadow: none; border: 0; }
  .avail__body { max-height: calc(100dvh - 6.2rem); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; }
}
