/* =====================================================================
   The Sniezko Law Firm, LLC — Shared Stylesheet
   Single file used by every page (index, practice-areas, about, contact)
   Pure CSS3. No build tools, no frameworks.
   ---------------------------------------------------------------------
   Palette : deep slate navy + antique brass + warm stone
   Type    : Libre Baskerville (display) / Source Sans 3 (body)
   Motif   : the arch — echoing Fort Morgan's Rainbow Arch Bridge
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. Design tokens
   --------------------------------------------------------------------- */
:root {
  /* Brand colour */
  --ink:        #1c2733;   /* deep slate navy — headers, footer        */
  --ink-2:      #243140;
  --slate:      #3a4856;
  --brass:      #a9854f;   /* antique brass accent                     */
  --brass-light:#c4a574;
  --brass-dark: #87683a;
  --stone:      #f3efe7;   /* warm stone section background            */
  --stone-2:    #e9e1d2;
  --paper:      #faf8f4;   /* off-white page background                */
  --white:      #ffffff;

  /* Text */
  --text:       #283139;   /* body copy on light                       */
  --muted:      #5c6772;   /* secondary copy                           */
  --on-dark:    #e7ecf1;   /* body copy on slate                       */
  --on-dark-mut:#a9b4bf;

  /* Lines & shadow */
  --line:       rgba(28, 39, 51, .12);
  --line-strong:rgba(28, 39, 51, .22);
  --shadow-sm:  0 2px 10px rgba(20, 30, 40, .06);
  --shadow-md:  0 14px 40px rgba(20, 30, 40, .12);
  --shadow-lg:  0 28px 70px rgba(15, 23, 32, .22);

  /* Type */
  --serif: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --sans:  "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto,
           Helvetica, Arial, sans-serif;

  /* Metrics */
  --container: 1180px;
  --gutter: clamp(1.15rem, 4vw, 2.75rem);
  --radius: 4px;
  --radius-lg: 10px;
  --header-h: 80px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------------------------------------------------------------------
   2. Reset & base
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--brass-dark); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--brass); }

ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -.01em;
}

p { color: var(--muted); }

strong { color: var(--text); font-weight: 600; }

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

.container--narrow { max-width: 820px; }

.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.75rem, 6vw, 4.5rem); }
.section--stone { background: var(--stone); }
.section--ink   { background: var(--ink); }

.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  background: var(--ink);
  color: #fff;
  padding: .7rem 1.2rem;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 1200;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; outline: 3px solid var(--brass-light); }

/* ---------------------------------------------------------------------
   4. Eyebrow, headings, arch divider (the signature motif)
   --------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--brass-dark);
  margin-bottom: 1rem;
}
.eyebrow::before {
  /* a small brass arch, drawn with a half-ellipse border */
  content: "";
  width: 30px;
  height: 15px;
  border: 2px solid var(--brass);
  border-bottom: 0;
  border-radius: 30px 30px 0 0;
  flex: none;
}
.eyebrow--center { justify-content: center; }
.section--ink .eyebrow { color: var(--brass-light); }
.section--ink .eyebrow::before { border-color: var(--brass-light); }

.h-display {
  font-size: clamp(2rem, 4.6vw, 3.1rem);
}
.h-section {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
}
.lede {
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.65;
  color: var(--muted);
}

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section--ink .section-head h2 { color: #fff; }
.section--ink .lede { color: var(--on-dark-mut); }

/* ---------------------------------------------------------------------
   5. Buttons
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: .95rem 1.6rem;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .18s var(--ease), background .2s var(--ease),
              border-color .2s var(--ease), color .2s var(--ease),
              box-shadow .2s var(--ease);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--brass);
  color: #fff;
  box-shadow: 0 8px 22px rgba(135, 104, 58, .35);
}
.btn--primary:hover { background: var(--brass-dark); color: #fff; }

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

.btn--on-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .45);
}
.btn--on-dark:hover { background: rgba(255, 255, 255, .12); color: #fff; }

.btn svg { width: 18px; height: 18px; flex: none; }

/* ---------------------------------------------------------------------
   6. Site header & navigation
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 248, 244, .9);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease), background .25s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(250, 248, 244, .96);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--ink);
  flex: none;
}
.brand:hover { color: var(--ink); }
.brand img { width: 42px; height: 42px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: .01em;
  color: var(--ink);
}
.brand-tag {
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--brass-dark);
  font-weight: 600;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu { display: flex; align-items: center; gap: clamp(.5rem, 1.6vw, 1.6rem); }
.nav-links { display: flex; align-items: center; gap: clamp(.5rem, 1.6vw, 1.6rem); }
.nav-links a {
  font-weight: 600;
  font-size: .98rem;
  color: var(--slate);
  padding: .4rem .2rem;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--brass);
  transition: width .25s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--ink); }

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.nav-phone svg { width: 17px; height: 17px; color: var(--brass); }
.nav-phone:hover { color: var(--brass-dark); }

/* Mobile nav behaviour */
@media (max-width: 899px) {
  .nav-menu {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: .5rem var(--gutter) 1.4rem;
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: transform .28s var(--ease), opacity .24s var(--ease), visibility .24s;
  }
  .nav-menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav-links a {
    padding: .95rem .25rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.06rem;
  }
  .nav-links a::after { display: none; }
  .nav-phone {
    margin-top: 1.1rem;
    justify-content: center;
    padding: .9rem 1rem;
    border: 1.5px solid var(--brass);
    border-radius: var(--radius);
    color: var(--brass-dark);
  }
}
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-menu { transform: none !important; opacity: 1 !important; visibility: visible !important; }
}

/* ---------------------------------------------------------------------
   7. Hero
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  color: #fff;
  isolation: isolate;
  background: var(--ink);
}
.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.hero__media::after {
  /* slate scrim for legibility, darker on the left where text sits */
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(20,29,40,.93) 0%, rgba(20,29,40,.78) 42%, rgba(20,29,40,.36) 72%, rgba(20,29,40,.22) 100%),
    linear-gradient(to top, rgba(15,22,32,.55), rgba(15,22,32,0) 45%);
}
.hero__inner {
  position: relative;
  padding-block: clamp(4rem, 12vw, 8.5rem);
  max-width: 760px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5.4vw, 3.85rem);
  line-height: 1.08;
  margin-bottom: 1.1rem;
}
.hero .eyebrow { color: var(--brass-light); }
.hero .eyebrow::before { border-color: var(--brass-light); }
.hero__lede {
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1.1rem, 1.9vw, 1.32rem);
  max-width: 38ch;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2.4rem;
  margin-top: 2.6rem;
  padding-top: 1.7rem;
  border-top: 1px solid rgba(255, 255, 255, .18);
}
.hero__meta div { line-height: 1.35; }
.hero__meta dt {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brass-light);
  font-weight: 600;
  margin-bottom: .2rem;
}
.hero__meta dd { color: #fff; font-weight: 600; font-size: 1.02rem; }
.hero__meta dd span { display: block; font-weight: 400; color: rgba(255,255,255,.78); font-size: .92rem; }

/* Page banner (interior pages) */
.page-hero {
  position: relative;
  color: #fff;
  background: var(--ink);
  isolation: isolate;
  overflow: hidden;
}
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.page-hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(20,29,40,.92), rgba(20,29,40,.72) 60%, rgba(20,29,40,.55));
}
.page-hero__inner { padding-block: clamp(3rem, 8vw, 5rem); max-width: 760px; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.6vw, 3rem); margin-bottom: .8rem; }
.page-hero p { color: rgba(255, 255, 255, .88); font-size: clamp(1.02rem, 1.6vw, 1.18rem); max-width: 52ch; }
.breadcrumbs {
  font-size: .82rem;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 1rem;
}
.breadcrumbs a { color: rgba(255, 255, 255, .82); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { margin-inline: .5rem; color: rgba(255,255,255,.5); }

/* ---------------------------------------------------------------------
   8. Intro / statement band
   --------------------------------------------------------------------- */
.statement {
  display: grid;
  gap: clamp(1.8rem, 4vw, 3.2rem);
  align-items: center;
}
@media (min-width: 900px) { .statement { grid-template-columns: 1.05fr .95fr; } }

.statement__quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.7vw, 2rem);
  line-height: 1.4;
  color: var(--ink);
}
.statement__quote .accent { color: var(--brass-dark); }

/* arched image frame — echoes the bridge arch */
.arch-frame {
  position: relative;
  border-radius: 50vw 50vw var(--radius-lg) var(--radius-lg) / 26% 26% 4% 4%;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--stone-2);
}
.arch-frame::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25);
  pointer-events: none;
}
.arch-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3.4; }

/* ---------------------------------------------------------------------
   9. Practice areas
   --------------------------------------------------------------------- */
.cards {
  display: grid;
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
  grid-template-columns: 1fr;
}
@media (min-width: 720px)  { .cards { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.8rem 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--brass-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--stone-2); }
.card:hover::before { transform: scaleX(1); }

.card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--stone);
  color: var(--brass-dark);
  margin-bottom: 1.2rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.4rem; margin-bottom: .6rem; }
.card p { font-size: 1rem; margin-bottom: 1.1rem; }
.card__list { display: flex; flex-direction: column; gap: .55rem; }
.card__list li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .96rem; color: var(--text);
}
.card__list li::before {
  content: "";
  width: 7px; height: 7px;
  margin-top: .55rem;
  border-radius: 50%;
  background: var(--brass);
  flex: none;
}

/* detailed practice blocks (practice-areas.html) */
.practice-block {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  padding-block: clamp(2.2rem, 5vw, 3.4rem);
  border-bottom: 1px solid var(--line);
}
.practice-block:last-child { border-bottom: 0; }
@media (min-width: 860px) {
  .practice-block { grid-template-columns: 240px 1fr; }
}
.practice-block__head { position: sticky; top: calc(var(--header-h) + 24px); }
.practice-block__num {
  font-family: var(--serif);
  font-size: .95rem;
  color: var(--brass-dark);
  letter-spacing: .12em;
  display: block;
  margin-bottom: .4rem;
}
.practice-block h2 { font-size: clamp(1.55rem, 3vw, 2.1rem); }
.practice-block p { margin-bottom: 1rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.4rem; }
.tag {
  font-size: .85rem;
  font-weight: 600;
  color: var(--slate);
  background: var(--stone);
  border: 1px solid var(--stone-2);
  padding: .4rem .85rem;
  border-radius: 50px;
}

/* ---------------------------------------------------------------------
   10. Approach / values list
   --------------------------------------------------------------------- */
.values {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.4rem);
  grid-template-columns: 1fr;
  counter-reset: val;
}
@media (min-width: 760px) { .values { grid-template-columns: repeat(3, 1fr); } }
.value { position: relative; padding-top: 1.6rem; border-top: 2px solid var(--line-strong); }
.value__k {
  font-family: var(--serif);
  font-size: .9rem;
  color: var(--brass-dark);
  letter-spacing: .14em;
  display: block;
  margin-bottom: .6rem;
}
.value h3 { font-size: 1.28rem; margin-bottom: .5rem; }
.section--ink .value { border-top-color: rgba(255,255,255,.22); }
.section--ink .value h3 { color: #fff; }
.section--ink .value p { color: var(--on-dark-mut); }
.section--ink .value__k { color: var(--brass-light); }

/* ---------------------------------------------------------------------
   11. Location & hours
   --------------------------------------------------------------------- */
.info-grid {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .info-grid { grid-template-columns: repeat(3, 1fr); } }

.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.info-card__icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--brass-light);
  margin-bottom: 1rem;
}
.info-card__icon svg { width: 22px; height: 22px; }
.info-card h3 { font-size: 1.18rem; margin-bottom: .55rem; }
.info-card p, .info-card address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1rem;
}
.info-card a { font-weight: 600; }
.info-card .note { font-size: .9rem; color: var(--brass-dark); margin-top: .4rem; }

/* ---------------------------------------------------------------------
   12. CTA band
   --------------------------------------------------------------------- */
.cta-band {
  position: relative;
  isolation: isolate;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.cta-band::before {
  /* large faint arch watermark */
  content: "";
  position: absolute;
  right: -80px; top: 50%;
  width: 420px; height: 210px;
  transform: translateY(-50%);
  border: 40px solid rgba(201, 165, 116, .08);
  border-bottom: 0;
  border-radius: 420px 420px 0 0;
  z-index: -1;
}
.cta-band__inner {
  display: grid;
  gap: 1.6rem;
  align-items: center;
}
@media (min-width: 820px) {
  .cta-band__inner { grid-template-columns: 1fr auto; }
}
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: .6rem; }
.cta-band p { color: var(--on-dark-mut); max-width: 48ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .9rem; }

/* ---------------------------------------------------------------------
   13. Contact form
   --------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
@media (min-width: 940px) { .contact-grid { grid-template-columns: 1.1fr .9fr; } }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; gap: 1.1rem; }
@media (min-width: 560px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }

.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink);
  margin-bottom: .4rem;
}
.field .req { color: var(--brass-dark); }
.field input,
.field textarea,
.field select {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: var(--paper);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  padding: .8rem .95rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--brass);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(169, 133, 79, .18);
}
.field .error-msg {
  display: none;
  margin-top: .35rem;
  font-size: .85rem;
  color: #b42318;
  font-weight: 600;
}
.field.has-error input,
.field.has-error textarea,
.field.has-error select { border-color: #d4503e; background: #fdf4f2; }
.field.has-error .error-msg { display: block; }

.form-consent {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 1.3rem;
}
.form-consent input { width: 18px; height: 18px; margin-top: .25rem; flex: none; accent-color: var(--brass); }

.form-status {
  display: none;
  align-items: flex-start;
  gap: .7rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  margin-bottom: 1.3rem;
  font-weight: 600;
  font-size: .96rem;
}
.form-status.is-success {
  display: flex;
  background: #edf7ee;
  border: 1px solid #bfe0c2;
  color: #1f6d2c;
}
.form-status svg { width: 20px; height: 20px; flex: none; margin-top: 1px; }

.form-note { font-size: .85rem; color: var(--muted); margin-top: 1rem; }

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

/* contact aside */
.contact-aside .info-card { margin-bottom: 1.2rem; }
.map-link {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.map-link img { width: 100%; height: 200px; object-fit: cover; filter: saturate(.85); }
.map-link .map-pill {
  position: absolute;
  left: 1rem; bottom: 1rem;
  background: rgba(28, 39, 51, .92);
  color: #fff;
  font-weight: 600;
  font-size: .88rem;
  padding: .55rem .9rem;
  border-radius: 50px;
  display: inline-flex;
  gap: .4rem;
  align-items: center;
}

/* ---------------------------------------------------------------------
   14. Disclaimer strip
   --------------------------------------------------------------------- */
.disclaimer {
  background: var(--stone);
  border-top: 1px solid var(--line);
}
.disclaimer p {
  font-size: .86rem;
  color: var(--muted);
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  line-height: 1.6;
}

/* ---------------------------------------------------------------------
   15. Footer
   --------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--on-dark);
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem;
}
.footer-grid {
  display: grid;
  gap: 2.2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px)  { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; } }

.footer-brand { display: inline-flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.footer-brand img { width: 46px; height: 46px; }
.footer-brand .brand-name { color: #fff; font-size: 1.15rem; }
.footer-about { color: var(--on-dark-mut); font-size: .96rem; max-width: 34ch; }

.footer-col h4 {
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a { color: var(--on-dark-mut); font-weight: 500; }
.footer-col a:hover { color: #fff; }
.footer-col address { font-style: normal; color: var(--on-dark-mut); line-height: 1.7; font-size: .96rem; }
.footer-col address a { color: var(--on-dark); }

.footer-bottom {
  margin-top: 2.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.4rem;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  color: var(--on-dark-mut);
}
.footer-bottom a { color: var(--on-dark-mut); }
.footer-bottom a:hover { color: #fff; }

/* ---------------------------------------------------------------------
   16. Scroll-reveal animation (progressive enhancement)
   --------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

/* ---------------------------------------------------------------------
   17. Accessibility & motion preferences
   --------------------------------------------------------------------- */
:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 2px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.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;
}
