/* ==========================================================================
   Cabinet Design Studio - shared stylesheet
   Design tokens + shared chrome (nav / footer) + motion.
   Reconstructed 1:1 from scrape/01-home (source platform: Lovable / custom).
   Page-scoped rules are appended below under "page:" banner comments.
   ========================================================================== */

:root {
  --background: #f5efe6;
  --foreground: #2a2016;
  --muted: #ece3d5;
  --muted-foreground: #6d5f50;
  --card: #efe6d6;
  --border: #dccfba;
  --input: #cebfa6;

  --primary: #43301f;
  --primary-foreground: #f5efe6;

  --wood: #2d2014;
  --wood-foreground: #f1e7d6;

  --sunlit: #d9bd85;
  --secondary-foreground: #2a2016;

  --accent: #b1602e;
  --accent-foreground: #ffffff;

  --stone: #b8ab93;
  --ring: #b1602e;

  --font-sans: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;

  --shadow-soft: 0 10px 30px -18px rgba(45, 32, 20, 0.45);
  --shadow-studio: 0 30px 60px -30px rgba(45, 32, 20, 0.55);
  --maxw: 80rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }

a { color: inherit; }

h1, h2, h3 { margin: 0; font-weight: 600; letter-spacing: -0.01em; }

p { margin: 0; }

.font-display { font-family: var(--font-display); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; }

.eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* ---- Buttons ------------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.btn:hover { transform: translateY(-4px); }
.btn:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--background), 0 0 0 4px var(--ring); }
.btn svg { width: 1rem; height: 1rem; }

.btn-sunlit { background: var(--sunlit); color: var(--secondary-foreground); box-shadow: var(--shadow-studio); }
.btn-primary { background: var(--primary); color: var(--primary-foreground); box-shadow: var(--shadow-soft); }
.btn-ghost-light { border: 1px solid rgba(245,239,230,0.45); background: rgba(245,239,230,0.10); color: var(--primary-foreground); }

/* ---- Scroll progress bar (decorative) ----------------------------------- */

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--accent);
  z-index: 60;
}

/* ---- Grain overlay (decorative) ----------------------------------------- */

.grain-overlay {
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}

/* ---- Shared footer ------------------------------------------------------ */

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--wood);
  color: var(--wood-foreground);
  padding: 4rem 1.25rem;
}
.site-footer .grain-overlay { position: absolute; inset: 0; opacity: 0.2; }
.footer-inner { position: relative; }
.footer-top {
  display: grid;
  gap: 2.5rem;
  border-bottom: 1px solid rgba(241,231,214,0.2);
  padding-bottom: 3rem;
}
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-logo {
  display: flex; height: 5rem; width: 5rem;
  align-items: center; justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(241,231,214,0.2);
  background: var(--wood-foreground);
  padding: 0.5rem;
  box-shadow: var(--shadow-soft);
  flex: none;
}
.footer-logo img { height: 100%; width: 100%; object-fit: contain; }
.footer-brandname { font-family: var(--font-display); font-size: 2.25rem; line-height: 1.1; }
.footer-lede { margin-top: 1rem; max-width: 36rem; color: rgba(241,231,214,0.75); }
.footer-actions { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.footer-col-title { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--sunlit); }
.footer-contact { margin-top: 1.25rem; display: grid; gap: 1rem; font-size: 0.9rem; color: rgba(241,231,214,0.8); }
.footer-contact a, .footer-contact p { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; margin: 0; }
.footer-contact a:hover { color: var(--wood-foreground); }
.footer-contact svg, .footer-areas svg { width: 1rem; height: 1rem; color: var(--sunlit); flex: none; }
.footer-areas { margin-top: 1.25rem; display: grid; gap: 0.75rem; font-size: 0.9rem; color: rgba(241,231,214,0.8); }
.footer-areas span { display: flex; align-items: center; gap: 0.75rem; }
.footer-bottom {
  display: flex; flex-direction: column; gap: 1rem;
  padding-top: 2rem;
  font-size: 0.9rem;
  color: rgba(241,231,214,0.7);
}
.footer-bottom span { display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-bottom svg { width: 1rem; height: 1rem; color: var(--sunlit); }

@media (min-width: 640px) {
  .site-footer { padding: 4rem 2rem; }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}
@media (min-width: 1024px) {
  .site-footer { padding: 4rem 3rem; }
  .footer-top { grid-template-columns: 1.2fr 0.8fr 0.8fr; }
}

/* ---- Motion ------------------------------------------------------------- */

/* Hero video slow zoom (Ken Burns), always ends visible - pure CSS loop. */
@keyframes kenburns {
  0%   { transform: scale(1.05); }
  50%  { transform: scale(1.16); }
  100% { transform: scale(1.05); }
}
.hero-kenburns { animation: kenburns 24s ease-in-out infinite; transform-origin: center; }

/* On-load hero content lift - always ends visible. */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}
.hero-sequence { animation: riseIn 0.9s ease both; }

/* Timeline vertical fill - grows on load, always ends filled. */
@keyframes fillDown { from { transform: scaleY(0); } to { transform: scaleY(1); } }

/* Benefit number pop - always ends visible. */
@keyframes popIn { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.benefit-number { animation: popIn 0.5s ease both; }

/* Scroll reveal: elements are VISIBLE by default here. The shared script
   applies the hidden state at runtime only after its observer attaches, then
   removes it on intersection. If the script never runs, content stays visible. */
.studio-reveal { transition: opacity 0.7s ease, transform 0.7s ease; }
.stagger-sequence > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-sequence > *:nth-child(3) { transition-delay: 0.16s; }
.stagger-sequence > *:nth-child(4) { transition-delay: 0.24s; }
.stagger-sequence > *:nth-child(5) { transition-delay: 0.32s; }
.stagger-sequence > *:nth-child(6) { transition-delay: 0.40s; }
.stagger-sequence > *:nth-child(7) { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hero-kenburns { animation: none; }
}

/* ==========================================================================
   page:home
   ========================================================================== */

.page-home main { min-height: 100vh; overflow: hidden; }

/* --- Hero --- */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  min-height: 92vh;
  padding: 2rem 1.25rem;
}
.hero-video { position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover; }
.hero-tint { position: absolute; inset: 0; background: rgba(67, 48, 31, 0.60); }
.hero .grain-overlay { position: absolute; inset: 0; opacity: 0.4; }

.site-nav {
  position: absolute;
  left: 1.25rem; right: 1.25rem; top: 1.25rem;
  z-index: 10;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(245,239,230,0.25);
  padding-bottom: 1.25rem;
}
.nav-brand { display: inline-flex; align-items: center; gap: 0.75rem; color: var(--primary-foreground); text-decoration: none; }
.nav-logo {
  display: flex; height: 3.5rem; width: 3.5rem;
  align-items: center; justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(245,239,230,0.35);
  background: var(--primary-foreground);
  padding: 0.25rem;
  box-shadow: var(--shadow-soft);
  flex: none;
}
.nav-logo img { height: 100%; width: 100%; object-fit: contain; }
.nav-brandname { font-family: var(--font-display); font-size: 1.25rem; line-height: 1; }
.nav-phone { display: none; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 600; color: var(--primary-foreground); text-decoration: none; }
.nav-phone svg { width: 1rem; height: 1rem; }

.hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  padding-top: 7rem;
  padding-bottom: 1rem;
}
.hero-copy { max-width: 56rem; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(245,239,230,0.35);
  background: rgba(245,239,230,0.10);
  padding: 0.5rem 1rem;
  font-size: 0.85rem; font-weight: 600; text-transform: uppercase;
  color: var(--primary-foreground);
}
.hero-pill svg { width: 1rem; height: 1rem; }
.hero h1 {
  color: var(--primary-foreground);
  font-size: clamp(2.75rem, 8vw, 6rem);
  font-weight: 600;
  line-height: 0.95;
  text-wrap: balance;
}
.hero-sub { margin-top: 1.75rem; max-width: 42rem; font-size: 1.2rem; line-height: 1.6; color: rgba(245,239,230,0.9); }
.hero-cta { margin-top: 2.25rem; display: flex; flex-direction: column; gap: 0.75rem; }

.hero-card {
  border: 1px solid rgba(245,239,230,0.25);
  background: rgba(245,239,230,0.10);
  padding: 1.5rem;
  color: var(--primary-foreground);
  box-shadow: var(--shadow-soft);
}
.hero-card-label { font-size: 0.85rem; text-transform: uppercase; }
.hero-card-grid { margin-top: 1.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.hero-card-item { border-left: 1px solid rgba(245,239,230,0.3); padding-left: 0.75rem; }
.hero-card-item svg { width: 1.25rem; height: 1.25rem; color: var(--sunlit); margin-bottom: 0.75rem; }
.hero-card-item p { font-family: var(--font-display); font-size: 1.5rem; }

@media (min-width: 640px) {
  .hero { padding: 2rem 2rem; }
  .hero-cta { flex-direction: row; }
  .nav-phone { display: flex; }
}
@media (min-width: 1024px) {
  .hero { padding: 2rem 3rem; }
  .site-nav { left: 3rem; right: 3rem; }
  .hero-inner { grid-template-columns: 1.15fr 0.85fr; align-items: end; }
}

/* --- Generic section --- */
.section { padding: 6rem 1.25rem; }
.section.bg-card { background: var(--card); }
.section.bg-muted { background: var(--muted); }
.section.bg-primary { background: var(--primary); color: var(--primary-foreground); }
.section-head { display: flex; flex-direction: column; gap: 1.5rem; }
.section-head h2 { font-size: clamp(2.25rem, 5vw, 3.75rem); line-height: 1.1; }
.section-head .lede { max-width: 28rem; line-height: 1.6; color: var(--muted-foreground); }
.section.bg-primary .lede { color: rgba(245,239,230,0.85); }

@media (min-width: 640px) { .section { padding: 6rem 2rem; } }
@media (min-width: 1024px) {
  .section { padding: 6rem 3rem; }
  .section-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}

/* --- About --- */
.about-grid { display: grid; gap: 3rem; max-width: var(--maxw); margin: 0 auto; }
.about-media { position: relative; }
.about-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  min-height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow-studio);
}
.about-badge {
  position: absolute; bottom: -2rem; right: 1.5rem;
  background: var(--wood); color: var(--wood-foreground);
  padding: 1.5rem; box-shadow: var(--shadow-studio);
}
.about-badge .num { font-size: 2.25rem; font-weight: 700; }
.about-badge p:last-child { margin-top: 0.25rem; font-size: 0.85rem; text-transform: uppercase; }
.about-body h2 { font-size: clamp(2rem, 4vw, 2.25rem); line-height: 1.2; text-wrap: balance; }
.about-body p.lead { margin-top: 1.5rem; font-size: 1.15rem; line-height: 1.6; color: var(--muted-foreground); }
.about-stats { margin-top: 2.5rem; display: grid; gap: 1rem; }
.about-stat { border-top: 1px solid var(--border); padding-top: 1.25rem; }
.about-stat .num { font-family: var(--font-display); font-size: 2.25rem; font-weight: 600; color: var(--primary); }
.about-stat p:last-child { margin-top: 0.5rem; font-size: 0.85rem; text-transform: uppercase; color: var(--muted-foreground); }

@media (min-width: 640px) { .about-stats { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1.18fr 0.82fr; align-items: center; }
  .about-body { padding-left: 2.5rem; }
  .about-media img { min-height: 640px; }
}

/* --- Services --- */
.cards-grid { margin-top: 3rem; display: grid; gap: 1.5rem; max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.service-card { overflow: hidden; background: var(--background); box-shadow: var(--shadow-soft); transition: transform 0.3s ease; }
.service-card:hover { transform: translateY(-8px); }
.service-card .thumb { overflow: hidden; padding: 0.75rem; padding-bottom: 0; }
.service-card .thumb img { height: 13rem; width: 100%; object-fit: cover; transition: transform 0.7s ease; }
.service-card:hover .thumb img { transform: scale(1.05); }
.service-card .body { padding: 1.75rem; }
.service-icon { display: flex; height: 3rem; width: 3rem; align-items: center; justify-content: center; background: rgba(177,96,46,0.10); color: var(--accent); }
.service-icon svg { width: 1.5rem; height: 1.5rem; transition: transform 0.3s ease; }
.service-card:hover .service-icon svg { transform: scale(1.1); }
.service-card h3 { margin-top: 2rem; font-size: 1.5rem; }
.service-card .body p { margin-top: 1rem; line-height: 1.6; color: var(--muted-foreground); }

.showcase-card { position: relative; overflow: hidden; background: var(--stone); box-shadow: var(--shadow-studio); min-height: 24rem; }
.showcase-card img { height: 100%; min-height: 20rem; width: 100%; object-fit: cover; }
.showcase-card .tint { position: absolute; inset: 0; background: rgba(67,48,31,0.25); }
.showcase-card .caption { position: absolute; inset: auto 0 0 0; padding: 2rem; color: var(--primary-foreground); }
.showcase-card .caption .eyebrow { color: var(--sunlit); }
.showcase-card .caption h3 { margin-top: 0.5rem; max-width: 28rem; font-size: 1.875rem; }

@media (min-width: 768px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } .showcase-card { grid-column: 1 / -1; } }
@media (min-width: 1024px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }

/* --- Gallery --- */
.gallery-grid { margin-top: 3rem; display: grid; gap: 1rem; max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.gallery-fig { position: relative; overflow: hidden; margin: 0; background: var(--card); box-shadow: var(--shadow-soft); transition: transform 0.3s ease; }
.gallery-fig:hover { transform: translateY(-4px); }
.gallery-fig img { aspect-ratio: 4 / 3; width: 100%; height: auto; object-fit: cover; transition: transform 0.7s ease; }
.gallery-fig:hover img { transform: scale(1.05); }
.gallery-fig figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 1.25rem;
  color: var(--primary-foreground);
  background: linear-gradient(to top, rgba(67,48,31,0.92), rgba(67,48,31,0.70) 55%, transparent);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}
.gallery-fig:hover figcaption, .gallery-fig:focus-within figcaption { transform: translateY(0); }
.gallery-fig .loc { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--sunlit); }
.gallery-fig .name { margin-top: 0.25rem; font-size: 1.125rem; font-weight: 600; line-height: 1.3; }

@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

/* --- Benefits --- */
.benefits-grid { display: grid; gap: 3rem; max-width: var(--maxw); margin: 0 auto; }
.benefits-intro h2 { font-size: clamp(2rem, 4vw, 2.25rem); line-height: 1.2; }
.benefits-intro p { margin-top: 1.5rem; line-height: 1.6; color: var(--muted-foreground); }
.timeline-fill { position: relative; border-left: 1px solid var(--border); padding-left: 2rem; }
.timeline-fill::after {
  content: ""; position: absolute; top: 0; left: -1px; width: 2px; height: 100%;
  background: var(--accent); transform-origin: top; animation: fillDown 1.4s ease both;
}
.timeline-step { position: relative; padding-bottom: 3rem; }
.timeline-step:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: -2.8rem; top: 0;
  display: flex; height: 1.75rem; width: 1.75rem;
  align-items: center; justify-content: center;
  border-radius: 9999px;
  background: var(--accent); color: var(--accent-foreground);
  font-size: 0.85rem; font-weight: 700;
  z-index: 1;
}
.timeline-step h3 { font-family: var(--font-display); font-size: 1.5rem; line-height: 1.3; }
.timeline-step p { margin-top: 0.75rem; line-height: 1.6; color: var(--muted-foreground); }

@media (min-width: 1024px) { .benefits-grid { grid-template-columns: 0.8fr 1.2fr; } }

/* --- Service area --- */
.county-grid { margin-top: 3rem; display: grid; gap: 1px; background: var(--border); }
.county-card { background: var(--background); padding: 2rem; box-shadow: var(--shadow-soft); transition: transform 0.25s ease; }
.county-card:hover { transform: translateY(-4px); }
.county-card svg { width: 2.5rem; height: 2.5rem; color: var(--accent); transition: transform 0.3s ease; }
.county-card:hover svg { transform: scale(1.1); }
.county-card h3 { margin-top: 2rem; font-size: 1.875rem; }
.county-card p { margin-top: 1rem; line-height: 1.6; color: var(--muted-foreground); }

.map-block { margin-top: 2.5rem; display: grid; overflow: hidden; background: var(--background); box-shadow: var(--shadow-studio); }
.map-copy { display: flex; flex-direction: column; justify-content: space-between; padding: 2rem; }
.map-copy h3 { font-size: 1.875rem; line-height: 1.2; }
.map-copy p { margin-top: 1rem; line-height: 1.6; color: var(--muted-foreground); }
.map-frame { min-height: 420px; width: 100%; border: 0; }

@media (min-width: 768px) { .county-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) {
  .map-block { grid-template-columns: 0.72fr 1.28fr; }
  .map-copy { padding: 2.5rem; }
}

/* --- FAQ --- */
.faq-grid { display: grid; gap: 3rem; max-width: var(--maxw); margin: 0 auto; }
.faq-list { margin-top: 2.5rem; display: grid; gap: 1rem; }
.faq-item { border: 1px solid rgba(245,239,230,0.2); padding: 1.25rem; }
.faq-item[open] { background: rgba(245,239,230,0.10); }
.faq-item summary {
  display: flex; cursor: pointer; list-style: none;
  align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font-display); font-size: 1.25rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { width: 1.25rem; height: 1.25rem; flex: none; color: var(--sunlit); transition: transform 0.3s ease; }
.faq-item[open] summary svg { transform: rotate(45deg); }
.faq-item p { margin-top: 1rem; line-height: 1.6; color: rgba(245,239,230,0.8); }

.touch-card { background: var(--primary-foreground); color: var(--foreground); padding: 0.75rem; box-shadow: var(--shadow-studio); }
.touch-card > img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; }
.touch-card .body { padding: 1.75rem; }
.touch-card .body svg.timer { width: 2rem; height: 2rem; color: var(--accent); margin-bottom: 1rem; }
.touch-card h3 { font-size: 1.875rem; }
.touch-card .body p { margin-top: 0.75rem; line-height: 1.6; color: var(--muted-foreground); }
.touch-link { margin-top: 1.5rem; display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 700; text-transform: uppercase; color: var(--primary); text-decoration: none; }
.touch-link svg { width: 1rem; height: 1rem; }

@media (min-width: 1024px) { .faq-grid { grid-template-columns: 1fr 0.9fr; align-items: center; } }

/* --- Appointment form --- */
.appt-grid { display: grid; gap: 3rem; max-width: var(--maxw); margin: 0 auto; }
.appt-intro p { margin-top: 1.5rem; line-height: 1.6; color: var(--muted-foreground); }
.appt-form { display: grid; gap: 1.25rem; background: var(--card); padding: 1.5rem; box-shadow: var(--shadow-studio); }
.appt-form label { display: block; }
.appt-form label span { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; color: var(--muted-foreground); }
.appt-form input {
  margin-top: 0.5rem; width: 100%;
  border: 1px solid var(--input); background: var(--background);
  padding: 0.75rem 1rem; color: var(--foreground);
  font: inherit; outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.appt-form input::placeholder { color: var(--muted-foreground); }
.appt-form input:focus { border-color: var(--ring); box-shadow: 0 0 0 2px rgba(177,96,46,0.25); }
.appt-form .btn { width: 100%; }
.hp-field { position: absolute; left: -9999px; overflow: hidden; width: 1px; height: 1px; }

@media (min-width: 640px) {
  .appt-form { grid-template-columns: repeat(2, 1fr); }
  .appt-form .btn { grid-column: 1 / -1; }
}
@media (min-width: 1024px) { .appt-grid { grid-template-columns: 0.8fr 1.2fr; align-items: start; } }
