/* Fonts, self-hosted (SIL Open Font License). The fallback faces are Arial/Georgia (and
   Roboto/Noto Serif on Android) resized to take the same space, so nothing jumps while the
   real fonts load. Sizes come from comparing both fonts on this site's own text. */

@font-face {
  font-family: "Source Sans 3";
  src: url("/fonts/source-sans-3.woff2") format("woff2");
  font-weight: 200 900;
  font-display: swap;
}
@font-face {
  font-family: "Source Serif 4";
  src: url("/fonts/source-serif-4.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Source Sans 3 Fallback";
  src: local("Arial");
  font-weight: 400;
  size-adjust: 92.71%;
  ascent-override: 110.45%;
  descent-override: 43.14%;
  line-gap-override: 0.00%;
}
@font-face {
  font-family: "Source Sans 3 Fallback";
  src: local("Arial Bold");
  font-weight: 600;
  size-adjust: 89.30%;
  ascent-override: 114.67%;
  descent-override: 44.79%;
  line-gap-override: 0.00%;
}
@font-face {
  font-family: "Source Sans 3 Fallback";
  src: local("Arial Bold");
  font-weight: 700;
  size-adjust: 91.81%;
  ascent-override: 111.54%;
  descent-override: 43.57%;
  line-gap-override: 0.00%;
}
@font-face {
  font-family: "Source Sans 3 Fallback Android";
  src: local("Roboto");
  font-weight: 400;
  size-adjust: 93.47%;
  ascent-override: 109.55%;
  descent-override: 42.79%;
  line-gap-override: 0.00%;
}
@font-face {
  font-family: "Source Sans 3 Fallback Android";
  src: local("Roboto Medium");
  font-weight: 600;
  size-adjust: 95.05%;
  ascent-override: 107.74%;
  descent-override: 42.09%;
  line-gap-override: 0.00%;
}
@font-face {
  font-family: "Source Sans 3 Fallback Android";
  src: local("Roboto Bold");
  font-weight: 700;
  size-adjust: 97.35%;
  ascent-override: 105.19%;
  descent-override: 41.09%;
  line-gap-override: 0.00%;
}
@font-face {
  font-family: "Source Serif 4 Fallback";
  src: local("Georgia Bold");
  font-weight: 600;
  size-adjust: 82.69%;
  ascent-override: 125.28%;
  descent-override: 40.51%;
  line-gap-override: 0.00%;
}
@font-face {
  font-family: "Source Serif 4 Fallback Android";
  src: local("Noto Serif Bold");
  font-weight: 600;
  size-adjust: 83.72%;
  ascent-override: 123.74%;
  descent-override: 40.01%;
  line-gap-override: 0.00%;
}

:root {
  --ink: #0e0d0b;
  --ink-2: #171512;
  --line-dark: #2c2924;
  --field-line: #3d3830;
  --white: #ffffff;
  --gray: #f3f3f1;
  --line-light: #d9d9d4;
  --text-dark: #1b1b1a;
  --muted-dark: #57574f;
  --text-light: #efebe4;
  --muted-light: #aaa59c;
  --accent: #c98a5f;
  --accent-hover: #d89d72;
  --accent-text: #8a522e;
  --error: #f0a58a;
  --serif: "Source Serif 4", "Source Serif 4 Fallback", "Source Serif 4 Fallback Android", Georgia, serif;
  --sans: "Source Sans 3", "Source Sans 3 Fallback", "Source Sans 3 Fallback Android", Arial, sans-serif;
  --radius: 2px;
  --container: 1160px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --header-h: 72px;
  --check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 12.5l5 5L20 6.5' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

@media (max-width: 720px) {
  :root { --header-h: 64px; }
}

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

[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);  /* jump links land flush under the sticky header */
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

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

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
p, figure, blockquote, dl, dd { margin: 0; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
p { text-wrap: pretty; }

.container {
  width: min(100% - 2 * var(--gutter), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 100;
  padding: .75rem 1rem;
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

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

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s, border-color .2s, color .2s;
}
.btn-primary { background: var(--accent); color: var(--ink); }
.btn-primary:hover { background: var(--accent-hover); }
.btn-primary:disabled { opacity: .6; cursor: progress; }
.btn-outline { border-color: var(--accent); background: transparent; color: var(--text-light); }
.btn-outline:hover { background: rgba(201, 138, 95, .12); }
.btn-sm { min-height: 2.6rem; padding: 0 1.1rem; font-size: .95rem; }

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  min-height: 44px;
  color: var(--text-light);
  text-decoration: none;
}
.logo { display: block; width: auto; height: 52px; }
.site-footer .logo { height: 46px; }
@media (max-width: 720px) {
  .logo { height: 44px; }
}

.site-nav { display: flex; gap: 1.75rem; margin-left: auto; }
.site-nav a {
  font-weight: 600;
  color: var(--muted-light);
  text-decoration: none;
  transition: color .2s;
}
.site-nav a:hover { color: var(--text-light); }

.header-actions { display: flex; align-items: center; gap: 1.25rem; }
.header-phone {
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 960px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: .5rem var(--gutter) 1.5rem;
    background: var(--ink);
    border-bottom: 1px solid var(--line-dark);
  }
  .nav-open .site-nav { display: flex; }
  .site-nav a { padding: .9rem 0; font-size: 1.1rem; color: var(--text-light); }
  .header-actions { margin-left: auto; }
  .header-phone { display: none; }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 560px) {
  .header-actions .btn { display: none; }
}

/* Sections */

.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--light { background: var(--white); color: var(--text-dark); }
.section--gray { background: var(--gray); color: var(--text-dark); }
.section--dark { background: var(--ink); color: var(--text-light); }

.section-title { margin-bottom: clamp(1.5rem, 4vw, 2.5rem); font-size: clamp(2rem, 4vw, 2.9rem); }
.section-intro { max-width: 40rem; margin: -.75rem 0 2rem; font-size: 1.15rem; color: var(--muted-light); }
.section--light .section-intro, .section--gray .section-intro { color: var(--muted-dark); }

/* Check lists */

.checklist {
  display: grid;
  gap: .6rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.checklist li { display: flex; align-items: flex-start; gap: .6rem; font-weight: 600; }
.checklist li::before {
  content: "";
  flex: none;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: .3em;
  background: var(--accent);
  -webkit-mask: var(--check) center / contain no-repeat;
  mask: var(--check) center / contain no-repeat;
}

/* Hero */

.hero { padding-block: clamp(2rem, 7vw, 5.5rem); background: var(--ink); }

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.hero h1 { font-size: clamp(2.1rem, 5.2vw, 4.1rem); }

.lede {
  max-width: 34rem;
  margin-top: 1rem;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--muted-light);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.75rem; }
.hero-points { grid-template-columns: repeat(2, max-content); margin-top: 2rem; }
.hero-grid .hero-photo { justify-self: end; max-width: 380px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-grid .hero-photo { display: none; }
  /* Phones and tablets: one of his job photos behind the text, dimmed so the text stays readable */
  .hero {
    --hero-dim: linear-gradient(rgba(14, 13, 11, .65), rgba(14, 13, 11, .65));
    background-color: var(--ink);
    background-image: var(--hero-dim), url("/photos/wood-siding-garden-640.webp");  /* dimmed, so the light version is plenty */
    background-position: center;
    background-size: cover;
  }
  .hero .lede { color: var(--text-light); }
}

/* The sticky call/estimate bar covers these on phones, so the hero shows the key facts instead */
@media (max-width: 720px) {
  .hero-actions { display: none; }
  .hero-points { margin-top: 1.4rem; }
  /* Fill exactly one screen above the bar so nothing peeks in half-cut */
  .hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - var(--header-h) - 3.5rem);
    min-height: calc(100svh - var(--header-h) - 3.5rem);
  }
}

@media (max-width: 560px) {
  .hero-points { grid-template-columns: 1fr; }
}

/* Services */

.service-panel {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border-radius: var(--radius);
  background: var(--gray);
  color: var(--text-dark);
}
.service-panel + .service-panel { margin-top: 1.25rem; }
.service-panel--dark { background: var(--ink); color: var(--text-light); }
.service-panel h3 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.service-panel-copy p { margin: .75rem 0 1.5rem; color: var(--muted-dark); }
.service-panel-copy p:last-child { margin-bottom: 0; }
.service-panel--dark .service-panel-copy p { color: var(--muted-light); }
.service-panel .btn-outline { border-color: var(--text-dark); color: var(--text-dark); }
.service-panel .btn-outline:hover { background: rgba(0, 0, 0, .05); }
.service-panel--dark .btn-outline { border-color: var(--accent); color: var(--text-light); }
.service-panel--dark .btn-outline:hover { background: rgba(201, 138, 95, .12); }
.service-panel .checklist li::before { background: var(--accent-text); }
.service-panel--dark .checklist li::before { background: var(--accent); }

.service-list { grid-template-columns: repeat(2, 1fr); align-content: start; gap: .85rem 2rem; }

@media (max-width: 1100px) {
  .service-panel { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .service-list { grid-template-columns: 1fr; }
  .service-list--short { grid-template-columns: repeat(2, 1fr); }
}

/* Photos */

.hero-photo,
.about-photo,
.gallery img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--ink-2);
}

/* Our work */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.gallery-item { display: block; cursor: zoom-in; }
.gallery-item:hover img { opacity: .9; }

@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); gap: .5rem; } }

.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.lightbox[open] { display: flex; align-items: center; justify-content: center; }
.lightbox::backdrop { background: rgba(0, 0, 0, .9); }
.lightbox img { max-width: min(100vw - 2rem, 1080px); max-height: calc(100vh - 7rem); width: auto; height: auto; }
.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  min-height: 44px;
  padding: 0 1.1rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--text-light);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about-photo { max-width: 420px; }
.about-copy .section-title { margin-bottom: 1.25rem; }
.about-copy p { max-width: 38rem; color: var(--muted-dark); }
.about-copy p + p { margin-top: 1rem; }

@media (max-width: 700px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: none; aspect-ratio: 1; }
}

/* Estimate form */

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.form-card {
  padding: clamp(1.25rem, 4vw, 2.25rem);
  border: 1px solid var(--line-dark);
  background: var(--ink-2);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem 1.25rem;
}
.field { display: flex; flex-direction: column; gap: .4rem; min-width: 0; }
.field--full { grid-column: 1 / -1; }

label { font-size: 1rem; font-weight: 600; }
.optional { font-weight: 400; color: var(--muted-light); }

input, textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid var(--field-line);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--text-light);
  font: inherit;
  transition: border-color .2s, box-shadow .2s;
}
textarea { min-height: 8.5rem; resize: vertical; }
input::placeholder, textarea::placeholder { color: #7d776c; }
input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 138, 95, .2);
}
[aria-invalid="true"], [aria-invalid="true"]:focus { border-color: #e07a5f; }
[aria-invalid="true"]:focus { box-shadow: 0 0 0 3px rgba(224, 122, 95, .2); }

.hint { font-size: .95rem; color: var(--muted-light); }
.field-error { font-size: .95rem; color: var(--error); }

.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 1.75rem;
}
.form-status.is-error { color: var(--error); }

.form-success h3 { font-size: 2rem; }
.form-success p { margin-top: .75rem; color: var(--muted-light); }
.form-success a { color: var(--accent-hover); }
.form-success:focus { outline: none; }

.contact-info dl { display: grid; gap: 1.4rem; }
.contact-info dt { font-weight: 700; color: var(--accent); }
.contact-info dd { margin-top: .15rem; font-size: 1.2rem; font-weight: 600; }
.contact-info a { display: inline-block; padding-block: .45rem; margin-block: -.45rem; text-decoration: none; }
.contact-info a:hover { color: var(--accent-hover); }

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

/* Footer */

.site-footer {
  padding-block: 3rem 2.25rem;
  background: #090807;
  color: var(--muted-light);
  font-size: 1rem;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem 3rem;
}
.footer-brand p { max-width: 22rem; margin-top: .75rem; }
.footer-contact a {
  display: inline-block;
  padding-block: .45rem;
  margin-block: -.45rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
}
.footer-contact p { margin-top: .35rem; }
.footer-nav { display: flex; flex-direction: column; }
.footer-nav a { padding-block: .5rem; text-decoration: none; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem 1rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-dark);
  font-size: .9rem;
}

/* Sticky call / estimate bar on phones */

.mobile-cta { display: none; }

@media (max-width: 720px) {
  body { padding-bottom: 3.5rem; }
  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line-dark);
  }
  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
  }
  .mobile-cta-call { background: var(--ink); color: var(--text-light); }
  .mobile-cta-estimate { background: var(--accent); color: var(--ink); }
}

/* Thank-you, 404 and error pages */

.simple-page { display: flex; flex-direction: column; min-height: 100vh; }
.simple-page .site-header { position: static; }
.simple-main {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  padding-block: 5rem;
}
.simple-main h1 { font-size: clamp(2.4rem, 6vw, 3.6rem); }
.simple-main p { max-width: 36rem; color: var(--muted-light); }
.simple-main ul { margin: 0; color: var(--error); }
.simple-main .btn { align-self: flex-start; margin-top: .75rem; }

/* Draft review page (/questions) */

.draft-badge {
  margin-left: auto;
  padding: .3rem .65rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: .9rem;
  font-weight: 700;
  white-space: nowrap;
}

.review-container { width: min(100% - 2 * var(--gutter), 760px); margin-inline: auto; }
.review-intro { margin-bottom: clamp(2.5rem, 6vw, 3.5rem); }
.review-intro h1 { font-size: clamp(2.3rem, 6vw, 3.6rem); }
.review-intro .btn { margin-top: 1.75rem; }

.review-alert {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid #6b3b2a;
  background: rgba(224, 122, 95, .08);
  color: var(--error);
}

.review-form { display: grid; gap: 1.25rem; }

.q {
  min-width: 0;
  margin: 0;
  padding: clamp(1.25rem, 3.5vw, 1.75rem);
  border: 1px solid var(--line-dark);
  background: var(--ink-2);
}
.q-title {
  display: flex;
  align-items: baseline;
  gap: .8rem;
  padding: 0;
  font-size: 1.15rem;
  font-weight: 700;
}
legend.q-title { float: left; width: 100%; }
legend.q-title + * { clear: both; }
.q-num {
  flex: none;
  min-width: 1.4rem;
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--accent);
}
.q-help { margin-top: .5rem; color: var(--muted-light); }
.q > input, .q > textarea { margin-top: 1rem; }

input[type="radio"], input[type="checkbox"] {
  flex: none;
  width: 1.1rem;
  height: 1.1rem;
  margin: 0;
  padding: 0;
  accent-color: var(--accent);
}

.choices { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem; margin-top: 1rem; }
.choices--stack { grid-template-columns: 1fr; }
.choices--days { grid-template-columns: repeat(7, 1fr); }
.choice {
  position: relative;
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .75rem 1rem;
  border: 1px solid var(--field-line);
  font-weight: 600;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: border-color .2s, background-color .2s;
}
.choice:hover { border-color: rgba(201, 138, 95, .6); }
.choice:has(input:checked) { border-color: var(--accent); background: rgba(201, 138, 95, .1); }
.choice:has(input:focus-visible) { outline: 2px solid var(--accent); outline-offset: 2px; }
.choice input:focus-visible { outline: none; }
/* Day chips show just the day; the checkbox stays for keyboards and screen readers */
.choices--days .choice { justify-content: center; padding: .8rem .25rem; }
.choices--days input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.choices--days .choice:has(input:checked) { border-color: transparent; background: var(--accent); color: var(--ink); }

.sub-label { display: block; margin-top: 1.25rem; }
.sub-label + input, .sub-label + textarea { margin-top: .5rem; }

.upload { position: relative; display: inline-flex; margin-top: 1rem; }
.upload input {
  position: absolute;
  inset: 0;
  width: 100%;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}
.upload:focus-within .btn { outline: 2px solid var(--accent); outline-offset: 3px; }
.upload input:disabled { cursor: not-allowed; }

.upload-list { display: grid; gap: .4rem; margin: 1rem 0 0; padding: 0; list-style: none; font-size: 1rem; }
.upload-list:empty { display: none; }
.upload-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem .8rem;
  border: 1px solid var(--line-dark);
  background: var(--ink);
}
.upload-list .name { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.upload-list .state { flex: none; color: var(--muted-light); }
.upload-list .is-ok .state { color: var(--accent-hover); }
.upload-list .is-error .state { color: var(--error); }

.review-submit { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin-top: .75rem; }

.review-done { padding: clamp(1.5rem, 4vw, 2.5rem); border: 1px solid var(--line-dark); background: var(--ink-2); }
.review-done:focus { outline: none; }
.review-done h2 { font-size: clamp(2rem, 5vw, 2.6rem); }
.review-done p { margin: .75rem 0 1.5rem; color: var(--muted-light); }

/* Phones: full-width buttons, single-column footer, 4-across day chips */

@media (max-width: 560px) {
  .service-panel .btn,
  .form-footer .btn,
  .review-intro .btn,
  .review-submit .btn,
  .review-done .btn,
  .simple-main .btn { width: 100%; }
  .upload { display: flex; }
  .upload .btn { width: 100%; }

  .footer-grid { flex-direction: column; gap: 1.5rem; }
  .footer-nav { flex-direction: row; flex-wrap: wrap; column-gap: 1.75rem; }

  .choices--days { grid-template-columns: repeat(4, 1fr); }
}
