/* ==========================================================================
   Los Feliz Plumber — design tokens & site styles

   Palette is drawn from plumbing materials, not generic LA branding:
   patina (aged copper pipe), brass (fittings), clay (roof tile, used
   sparingly for urgency), plaster (stucco wall) as the base surface.
   ========================================================================== */

@import url("../fonts/fonts.css");

:root {
  /* surfaces */
  --plaster: #f1ece1;
  --plaster-2: #e8e0cd;
  --card: #fbf9f4;

  /* ink */
  --ink: #1b231f;
  --ink-soft: #4a544c;
  --ink-faint: #7c8478;

  /* brand: patina (aged copper) */
  --patina: #3e7566;
  --patina-dark: #26493d;
  --patina-tint: #e3ece7;

  /* brand: brass (fittings) — primary call-to-action */
  --brass: #bd8637;
  --brass-dark: #8f631f;
  --brass-tint: #f6e9d2;

  /* accent: clay (roof tile) — reserved for urgency/emergency cues */
  --clay: #ab4d34;
  --clay-dark: #833a27;
  --clay-tint: #f3e0d8;

  --border: #dcd2ba;
  --border-soft: #e7e0cd;

  --shadow-card: 0 1px 2px rgba(27, 35, 31, 0.06), 0 12px 28px -12px rgba(27, 35, 31, 0.22);
  --shadow-pop: 0 1px 1px rgba(27, 35, 31, 0.05), 0 4px 10px -4px rgba(27, 35, 31, 0.18);

  --font-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --font-body: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

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

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--plaster);
  color: var(--ink);
  line-height: 1.55;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
  color: inherit;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
}

ul[class],
ol[class] {
  list-style: none;
  padding: 0;
}

:target {
  scroll-margin-top: 6rem;
}

@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;
    scroll-behavior: auto !important;
  }
}

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

/* ---------- typography ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  line-height: 0.98;
  letter-spacing: 0.002em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.6rem, 3.2vw + 1.6rem, 4.6rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.9rem, 1.6vw + 1.4rem, 2.8rem);
}

h3 {
  font-size: clamp(1.35rem, 0.6vw + 1.15rem, 1.65rem);
}

h4 {
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

p {
  color: var(--ink-soft);
  max-width: 62ch;
}

p + p {
  margin-top: 0.9em;
}

.lede {
  font-size: 1.2rem;
  color: var(--ink-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--patina-dark);
}

.eyebrow::before {
  content: "";
  width: 0.85em;
  height: 2px;
  background: var(--brass);
  display: inline-block;
}

.eyebrow--clay {
  color: var(--clay-dark);
}

.eyebrow--clay::before {
  background: var(--clay);
}

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(3.25rem, 6vw, 5.5rem);
}

.section--tight {
  padding-block: clamp(2.25rem, 4vw, 3.5rem);
}

.section--alt {
  background: var(--plaster-2);
}

.section--dark {
  background: var(--ink);
  color: var(--plaster);
}

.section--dark p {
  color: #c7cfc8;
}

.section--dark h2,
.section--dark h3 {
  color: var(--plaster);
}

.grid {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

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

.stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.cluster svg {
  width: 1.3rem;
  height: 1.3rem;
  flex-shrink: 0;
  color: var(--patina);
}

li.cluster {
  align-items: flex-start;
  flex-wrap: nowrap;
}

li.cluster span {
  color: var(--ink-soft);
  padding-top: 0.05rem;
  min-width: 0;
  flex: 1;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--ink);
  color: var(--plaster);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 200;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 1rem;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 0.95rem 1.4rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, background-color 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn--brass {
  background: var(--brass);
  color: #fffaf0;
  box-shadow: var(--shadow-pop);
}

.btn--brass:hover {
  background: var(--brass-dark);
}

.btn--outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn--outline:hover {
  background: var(--ink);
  color: var(--plaster);
}

.btn--outline-light {
  background: transparent;
  border-color: rgba(241, 236, 225, 0.55);
  color: var(--plaster);
}

.btn--outline-light:hover {
  background: rgba(241, 236, 225, 0.12);
  border-color: var(--plaster);
}

.btn--ghost {
  background: transparent;
  color: var(--patina-dark);
  padding-inline: 0;
}

.btn--ghost::after {
  content: "\2192";
  transition: transform 0.15s ease;
}

.btn--ghost:hover::after {
  transform: translateX(3px);
}

.btn--block {
  width: 100%;
}

.btn--lg {
  padding: 1.1rem 1.75rem;
  font-size: 1.05rem;
}

/* ---------- phone CTA ---------- */
.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  text-decoration: none;
  padding: 0.6rem 0.9rem;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-sm);
  transition: background-color 0.15s ease, color 0.15s ease;
}

.phone-cta:hover {
  background: var(--ink);
  color: var(--plaster);
}

.phone-cta svg {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

.phone-cta--solid {
  background: var(--brass);
  border-color: var(--brass);
  color: #fffaf0;
}

.phone-cta--solid:hover {
  background: var(--brass-dark);
  border-color: var(--brass-dark);
  color: #fffaf0;
}

/* ---------- site header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(241, 236, 225, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-soft);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.9rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}

.brand__mark {
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
}

.brand__word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.brand__word span {
  display: block;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--patina-dark);
  margin-top: 0.2rem;
}

.main-nav {
  display: none;
}

.main-nav__list {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.main-nav__list a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}

.main-nav__list a:hover {
  color: var(--patina-dark);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink-soft);
}

.nav-dropdown__trigger svg {
  width: 0.8rem;
  height: 0.8rem;
  transition: transform 0.15s ease;
}

.nav-dropdown:hover .nav-dropdown__trigger,
.nav-dropdown:focus-within .nav-dropdown__trigger {
  color: var(--patina-dark);
}

.nav-dropdown:hover .nav-dropdown__trigger svg,
.nav-dropdown:focus-within .nav-dropdown__trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown__panel {
  position: absolute;
  top: 100%;
  left: -1rem;
  padding-top: 0.75rem;
  min-width: 15rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}

.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__panel ul {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.nav-dropdown__panel a {
  display: block;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
}

.nav-dropdown__panel a:hover {
  background: var(--patina-tint);
  color: var(--patina-dark);
}

.mobile-nav__group-label {
  padding-top: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.logo-mark {
  border-radius: 50%;
  border: 1.5px solid var(--ink);
}

.logo-mark text {
  font-family: var(--font-mono);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
}

.nav-toggle svg {
  width: 1.3rem;
  height: 1.3rem;
}

.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.nav-toggle:not([aria-expanded="true"]) .icon-close {
  display: none;
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border-soft);
  background: var(--plaster);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  padding-block: 0.5rem;
}

.mobile-nav__list a {
  display: block;
  padding: 0.85rem 0;
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--border-soft);
}

@media (min-width: 940px) {
  .main-nav {
    display: block;
  }
  .nav-toggle,
  .mobile-nav {
    display: none;
  }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: 0;
}

.hero__grid {
  display: grid;
  gap: 2.75rem;
  align-items: start;
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

@media (min-width: 940px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }
}

.hero__copy h1 {
  margin-top: 0.9rem;
}

.hero__lede {
  margin-top: 1.1rem;
  font-size: 1.18rem;
  max-width: 44ch;
}

.hero__trust {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.trust-item svg {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--patina);
  flex-shrink: 0;
}

.hero__phone {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.hero__phone-label {
  font-size: 0.85rem;
  color: var(--ink-faint);
}

.skyline {
  color: var(--patina);
  width: 100%;
  height: auto;
  display: block;
}

.skyline-band {
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 0;
}

/* ---------- lead form ---------- */
.lead-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-card);
}

.lead-form__head {
  margin-bottom: 1.25rem;
}

.lead-form__head h2 {
  font-size: 1.4rem;
}

.lead-form__head p {
  margin-top: 0.35rem;
  font-size: 0.95rem;
}

.field {
  margin-bottom: 1.1rem;
}

.field label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--patina);
  box-shadow: 0 0 0 3px var(--patina-tint);
}

.field textarea {
  resize: vertical;
  min-height: 6rem;
}

.field--radios .radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.radio-pill {
  position: relative;
}

.radio-pill input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.radio-pill label {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.55rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  transition: all 0.15s ease;
}

.radio-pill input:checked + label {
  background: var(--patina);
  border-color: var(--patina);
  color: #fff;
}

.radio-pill input:focus-visible + label {
  outline: 3px solid var(--brass);
  outline-offset: 2px;
}

.field-hint {
  font-size: 0.8rem;
  color: var(--ink-faint);
  margin-top: 0.35rem;
}

.lead-form__disclaimer {
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: var(--ink-faint);
}

/* honeypot field, hidden from real users, present for bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- pipe divider signature motif ---------- */
.pipe-divider {
  width: 100%;
  height: auto;
  display: block;
  color: var(--patina);
  opacity: 0.55;
}

.pipe-divider-wrap {
  padding-block: 0.25rem;
}

.pipe-divider-wrap .container {
  padding-block: 0;
}

/* ---------- how it works ---------- */
.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 3.5rem;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--patina);
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.step h3 {
  margin-bottom: 0.4rem;
}

/* ---------- cards ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.service-card:hover {
  border-color: var(--patina);
  transform: translateY(-2px);
  box-shadow: var(--shadow-pop);
}

.service-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--patina);
}

.service-card h3 {
  font-size: 1.2rem;
}

.service-card p {
  font-size: 0.94rem;
}

.service-card__link {
  margin-top: auto;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--patina-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-card__link::after {
  content: "\2192";
  transition: transform 0.15s ease;
}

.service-card:hover .service-card__link::after {
  transform: translateX(3px);
}

.plumber-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.plumber-card__badge {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--patina-dark);
  background: var(--patina-tint);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}

.plumber-card__meta {
  font-size: 0.88rem;
  color: var(--ink-faint);
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding-block: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  font-size: 1.02rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.3rem;
  color: var(--patina);
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item p {
  padding-bottom: 1.1rem;
  max-width: 68ch;
}

/* ---------- trust strip ---------- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem 2.5rem;
  align-items: center;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.trust-strip__item svg {
  width: 1.4rem;
  height: 1.4rem;
  color: var(--brass);
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  color: #cdd5cc;
  padding-block: clamp(3rem, 5vw, 4rem) 2rem;
}

.site-footer a {
  color: #e6ebe4;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--brass-tint);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
  }
}

.footer-grid h4 {
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.footer-grid ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.92rem;
}

.footer-brand p {
  color: #aab5a8;
  font-size: 0.92rem;
  margin-top: 0.75rem;
  max-width: 32ch;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: #8b968a;
}

/* ---------- misc page bits ---------- */
.page-hero {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.page-hero h1 {
  margin-top: 0.75rem;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-faint);
  font-family: var(--font-mono);
}

.breadcrumb a {
  color: var(--ink-faint);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.two-col {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
}

@media (min-width: 900px) {
  .two-col {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
  .two-col--reverse {
    grid-template-columns: 0.9fr 1.1fr;
  }
  .two-col--reverse > :first-child {
    order: 2;
  }
}

.sticky-aside {
  position: sticky;
  top: 6rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--plaster-2);
  color: var(--ink-soft);
  border: 1px solid var(--border);
}

.confirm-panel {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
}

.confirm-panel__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.25rem;
  color: var(--patina);
}

.divider-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin-block: 2rem;
}

.app-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-card);
}

.field-row {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 600px) {
  .field-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}
