/* ============================================================
   8888 MASTERS — TEMPLATE A
   A fresh editorial-luxury redesign. Self-contained: does not
   touch styles.css or the existing live site. New visual system.
   ============================================================ */

:root {
  /* Core palette — warmer, softer, more editorial than the live site */
  --forest:      #15362a;   /* primary deep green */
  --forest-2:    #0e2820;   /* darker green for footer / dark bands */
  --moss:        #3a5c47;   /* mid sage-green for accents/text */
  --paper:       #f7f2e7;   /* warm cream canvas */
  --paper-2:     #fffdf6;   /* near-white card surface */
  --paper-3:     #efe6d2;   /* deeper cream for alternating bands */
  --brass:       #b08a3e;   /* refined metallic accent */
  --brass-2:     #cda85c;   /* lighter brass for dark backgrounds */
  --azalea:      #d9788f;   /* azalea pink — used with intent */
  --azalea-soft: rgba(217, 120, 143, 0.12);
  --azalea-line: rgba(217, 120, 143, 0.40);

  --ink:    #1b2b22;
  --muted:  #4a5d51;
  --muted-2:#6c7d71;
  --line:   rgba(21, 54, 42, 0.14);
  --line-2: rgba(21, 54, 42, 0.07);
  --on-dark:        #f3ecdc;
  --on-dark-muted:  rgba(243, 236, 220, 0.72);

  --shadow-sm: 0 2px 14px rgba(21, 54, 42, 0.06);
  --shadow:    0 22px 60px rgba(21, 54, 42, 0.14);
  --shadow-lg: 0 40px 110px rgba(14, 40, 32, 0.30);

  --r-xl: 28px;
  --r-lg: 20px;
  --r-md: 14px;
  --r-sm: 10px;

  --display: "Fraunces", "Instrument Serif", Georgia, "Times New Roman", serif;
  --body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --shell: 1240px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  color-scheme: light;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.55;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 460;
  letter-spacing: -0.022em;
  line-height: 1.04;
  color: var(--forest);
  margin: 0 0 1rem;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}

p { margin: 0 0 1rem; }

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

.section { padding: clamp(4.5rem, 9vw, 8.5rem) 0; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }

.eyebrow {
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--brass);
  display: inline-block;
}
.eyebrow--azalea { color: var(--azalea); }
.eyebrow--azalea::before { background: var(--azalea); }
.eyebrow--light { color: var(--brass-2); }
.eyebrow--light::before { background: var(--brass-2); }
.eyebrow--center { justify-content: center; }

.lede { font-size: clamp(1.05rem, 1.7vw, 1.22rem); color: var(--muted); max-width: 56ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.6rem;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--forest); color: var(--on-dark); box-shadow: 0 12px 30px rgba(21,54,42,.22); }
.btn--primary:hover { background: #1d4434; box-shadow: 0 18px 40px rgba(21,54,42,.30); }
.btn--brass { background: var(--brass); color: #fff; box-shadow: 0 12px 30px rgba(176,138,62,.30); }
.btn--brass:hover { background: var(--brass-2); }
.btn--ghost { background: transparent; color: var(--forest); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--forest); background: rgba(21,54,42,.04); }
.btn--light { background: var(--paper-2); color: var(--forest); }
.btn--light:hover { background: #fff; }
.btn--block { width: 100%; justify-content: center; }

/* ============================================================
   NAV
   ============================================================ */
.ta-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.05rem var(--gutter);
  background: rgba(247, 242, 231, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: padding .3s ease, background .3s ease, border-color .3s ease;
}
.ta-nav.scrolled {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  background: rgba(247, 242, 231, 0.94);
  border-bottom-color: var(--line);
}
.ta-brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.ta-brand-crest { width: 38px; height: 38px; object-fit: contain; }
.ta-brand-words { display: flex; flex-direction: column; line-height: 1; }
.ta-brand-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: 0.04em;
  color: var(--forest);
}
.ta-brand-sub {
  font-family: var(--body);
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 3px;
}
.ta-nav-links { display: flex; align-items: center; gap: 2rem; }
.ta-nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  transition: color .2s ease;
}
.ta-nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1.5px;
  background: var(--brass);
  transition: width .25s ease;
}
.ta-nav-links a:hover { color: var(--forest); }
.ta-nav-links a:hover::after { width: 100%; }
.ta-nav-actions { display: flex; align-items: center; gap: 1rem; }
.ta-nav-phone { font-weight: 600; color: var(--forest); font-size: 0.92rem; }
.ta-nav-admin {
  font-weight: 600; font-size: 0.82rem; color: var(--moss);
  text-decoration: none; padding: 0.4rem 0.7rem; border: 1px solid var(--line);
  border-radius: var(--r-sm); transition: background .15s, border-color .15s, color .15s;
}
.ta-nav-admin:hover { background: rgba(21,54,42,0.05); border-color: var(--forest); color: var(--forest); }
.ta-nav-toggle { display: none; }

/* ============================================================
   HERO — full-bleed cinematic
   ============================================================ */
.ta-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: var(--gutter);
  /* top clearance so the fixed overlay nav never covers hero content on short heroes */
  padding-top: calc(var(--gutter) + 80px);
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
  overflow: hidden;
}
.ta-hero-media { position: absolute; inset: 0; z-index: -2; }
.ta-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.ta-hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(10,28,22,.82) 0%, rgba(10,28,22,.32) 42%, rgba(10,28,22,.18) 100%),
    linear-gradient(to right, rgba(10,28,22,.55), transparent 60%);
}
.ta-hero-inner { width: min(var(--shell), 100%); margin-inline: auto; color: var(--on-dark); }
.ta-hero-eyebrow {
  color: var(--brass-2);
  font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .7rem;
  margin-bottom: 1.4rem;
}
.ta-hero-eyebrow::before { content:""; width: 32px; height:1px; background: var(--brass-2); }
.ta-hero h1 {
  color: #fff;
  font-size: clamp(2.9rem, 6.6vw, 6rem);
  font-weight: 420;
  line-height: 0.98;
  max-width: 16ch;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.ta-hero h1 em { font-style: italic; color: var(--brass-2); }
.ta-hero-lede {
  color: rgba(255,255,255,.9);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  max-width: 54ch;
  margin-bottom: 2rem;
  text-shadow: 0 1px 14px rgba(0,0,0,.35);
}
.ta-hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.6rem; }
.ta-hero-stats {
  display: flex; flex-wrap: wrap; gap: clamp(1.6rem, 4vw, 3.2rem);
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,.2);
}
.ta-hero-stats > div { display: flex; flex-direction: column; gap: 0.15rem; }
.ta-hero-stats strong {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: #fff;
}
.ta-hero-stats span { font-size: 0.82rem; letter-spacing: .04em; color: rgba(255,255,255,.74); }

/* ============================================================
   EVENT STRIP
   ============================================================ */
.ta-events { background: var(--forest); color: var(--on-dark); }
.ta-events .shell { padding-block: clamp(3rem, 5vw, 4.5rem); }
.ta-events-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 2.2rem; }
.ta-events-head h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 0; }
.ta-events-head p { color: var(--on-dark-muted); margin: 0; max-width: 40ch; }
.ta-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.9rem;
}
.ta-event {
  display: flex; flex-direction: column; gap: 0.5rem;
  padding: 1.3rem 1.2rem;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.ta-event:hover { transform: translateY(-4px); background: rgba(255,255,255,.09); border-color: var(--brass-2); }
.ta-event-icon { color: var(--brass-2); }
.ta-event-name { font-family: var(--display); font-weight: 500; font-size: 1.12rem; color: #fff; }
.ta-event-meta { font-size: 0.78rem; letter-spacing: .05em; text-transform: uppercase; color: var(--on-dark-muted); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.sec-head { max-width: 64ch; margin-bottom: clamp(2.4rem, 4vw, 3.6rem); }
.sec-head h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head--split { max-width: none; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: end; }
.sec-head--split h2 { margin: 0; }
.sec-head--split p { margin: 0; color: var(--muted); align-self: end; }

/* ============================================================
   WHY / PROMISE — editorial split with image
   ============================================================ */
.ta-promise .shell { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.ta-promise-media { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow); }
.ta-promise-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.ta-promise-tag {
  position: absolute; left: 1.2rem; bottom: 1.2rem;
  background: rgba(247,242,231,.92);
  backdrop-filter: blur(6px);
  padding: 0.7rem 1.1rem;
  border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; color: var(--forest);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.ta-promise-tag::before { content:""; width: 8px; height: 8px; border-radius: 50%; background: var(--azalea); }
.ta-pillars { display: grid; gap: 1.4rem; margin-top: 2rem; }
.ta-pillar { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.ta-pillar:first-child { border-top: none; padding-top: 0; }
.ta-pillar-num { font-family: var(--display); font-size: 1.5rem; color: var(--brass); line-height: 1; }
.ta-pillar h3 { font-size: 1.28rem; margin-bottom: 0.35rem; }
.ta-pillar p { margin: 0; color: var(--muted); font-size: 0.98rem; }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.ta-portfolio { background: var(--paper-3); }
.ta-filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.2rem; }
.ta-filter {
  font-family: var(--body); font-size: 0.9rem; font-weight: 500;
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s ease;
}
.ta-filter:hover { border-color: var(--forest); color: var(--forest); }
.ta-filter.active { background: var(--forest); border-color: var(--forest); color: var(--on-dark); }

.ta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.5rem;
}
.ta-card {
  background: var(--paper-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line-2);
  transition: transform .3s ease, box-shadow .3s ease;
}
.ta-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.ta-card-img { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.ta-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ta-card:hover .ta-card-img img { transform: scale(1.05); }
.ta-card-badge {
  position: absolute; top: 0.9rem; left: 0.9rem;
  background: rgba(247,242,231,.92);
  backdrop-filter: blur(6px);
  padding: 0.32rem 0.8rem;
  border-radius: 100px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--forest);
}
.ta-card-badge--feat { background: var(--brass); color: #fff; }
.ta-card-body { padding: 1.25rem 1.3rem 1.4rem; }
.ta-card-top { display: flex; justify-content: space-between; font-size: 0.72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 0.5rem; }
.ta-card h3 { font-size: 1.32rem; font-weight: 440; margin: 0 0 0.3rem; }
.ta-card-sum { font-size: 0.9rem; color: var(--muted); margin: 0 0 0.9rem; min-height: 2.4em; }
.ta-card-meta { display: flex; flex-wrap: wrap; gap: 0.4rem 0.9rem; font-size: 0.8rem; color: var(--moss); margin-bottom: 1rem; }
.ta-card-meta span { display: inline-flex; align-items: center; gap: 0.3rem; }
.ta-card-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 0.9rem; border-top: 1px solid var(--line-2); }
.ta-card-price { font-family: var(--display); font-size: 1.18rem; color: var(--forest); }
.ta-card-price small { font-family: var(--body); font-size: 0.7rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted-2); display: block; }
.ta-card-link { font-size: 0.88rem; font-weight: 600; color: var(--brass); display: inline-flex; align-items: center; gap: 0.35rem; transition: gap .2s ease; }
.ta-card:hover .ta-card-link { gap: 0.6rem; }
.ta-grid-more { text-align: center; margin-top: 2.4rem; }

/* ============================================================
   AZALEA BAND — full-bleed image w/ quote
   ============================================================ */
.ta-azalea {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.ta-azalea-media { position: absolute; inset: 0; z-index: -2; }
.ta-azalea-media img { width: 100%; height: 100%; object-fit: cover; }
.ta-azalea-media::after { content:""; position: absolute; inset: 0; background: linear-gradient(rgba(21,54,42,.62), rgba(14,40,32,.72)); }
.ta-azalea-inner { max-width: 760px; margin-inline: auto; }
.ta-azalea blockquote {
  font-family: var(--display);
  font-weight: 420;
  font-size: clamp(1.7rem, 3.6vw, 2.9rem);
  line-height: 1.18;
  margin: 0 0 1.4rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.ta-azalea cite { font-style: normal; font-size: 0.86rem; letter-spacing: .14em; text-transform: uppercase; color: var(--brass-2); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.ta-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; counter-reset: step; }
.ta-step { padding: 1.8rem 1.5rem; border-radius: var(--r-lg); background: var(--paper-2); border: 1px solid var(--line-2); position: relative; }
.ta-step-num {
  font-family: var(--display); font-size: 0.95rem; font-weight: 600;
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--azalea-soft); color: var(--azalea);
  margin-bottom: 1rem;
}
.ta-step h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.ta-step p { font-size: 0.92rem; color: var(--muted); margin: 0; }

/* ============================================================
   AUDIENCES
   ============================================================ */
.ta-aud-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; }
.ta-aud { padding: 1.6rem 1.4rem; border-radius: var(--r-lg); background: var(--paper-2); border: 1px solid var(--line-2); transition: transform .25s ease, border-color .25s ease; }
.ta-aud:hover { transform: translateY(-4px); border-color: var(--brass); }
.ta-aud h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.ta-aud p { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* ============================================================
   CORPORATE / MULTI-HOME — dark card
   ============================================================ */
.ta-corp .shell { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem,5vw,4rem); align-items: center; background: var(--forest-2); color: var(--on-dark); border-radius: var(--r-xl); padding: clamp(2.4rem, 5vw, 4rem); box-shadow: var(--shadow-lg); }
.ta-corp h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
.ta-corp p { color: var(--on-dark-muted); }
.ta-corp ul { list-style: none; padding: 0; margin: 1.4rem 0 1.8rem; display: grid; gap: 0.7rem; }
.ta-corp li { display: flex; gap: 0.7rem; font-size: 0.95rem; color: var(--on-dark); }
.ta-corp li::before { content:""; flex: none; width: 18px; height: 18px; margin-top: 2px; border-radius: 50%; background: var(--brass-2); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z'/%3E%3C/svg%3E") center/14px no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z'/%3E%3C/svg%3E") center/14px no-repeat; }
.ta-corp-stats { display: grid; gap: 1.2rem; }
.ta-corp-stat { padding: 1.2rem 1.4rem; border-radius: var(--r-md); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); }
.ta-corp-stat strong { font-family: var(--display); font-size: 2rem; color: #fff; display: block; line-height: 1; margin-bottom: 0.3rem; }
.ta-corp-stat span { font-size: 0.85rem; color: var(--on-dark-muted); }

/* ============================================================
   ABOUT CHRIS
   ============================================================ */
.ta-about .shell { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.ta-about-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.ta-about-imgs img { border-radius: var(--r-md); width: 100%; aspect-ratio: 3/4; object-fit: cover; box-shadow: var(--shadow-sm); }
.ta-about-imgs img:first-child { grid-row: span 2; aspect-ratio: 3/5; }
.ta-about-legal { font-size: 0.78rem; color: var(--muted-2); border-left: 2px solid var(--azalea-line); padding-left: 1rem; margin-top: 1.4rem; }

/* ============================================================
   INQUIRY
   ============================================================ */
.ta-inquiry { background: var(--forest); color: var(--on-dark); }
.ta-inquiry .shell { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.ta-inquiry h2 { color: #fff; font-size: clamp(2rem, 3.6vw, 3rem); }
.ta-inquiry p { color: var(--on-dark-muted); }
.ta-inquiry-phone { margin-top: 1.6rem; }
.ta-inquiry-phone a { font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--brass-2); }
.ta-inquiry-mail { display: block; margin-top: 0.4rem; color: var(--on-dark-muted); }
.ta-form { background: var(--paper-2); border-radius: var(--r-xl); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-lg); display: grid; gap: 1rem; }
.ta-form label { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.82rem; font-weight: 600; color: var(--forest); letter-spacing: .02em; }
.ta-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.ta-form input, .ta-form select, .ta-form textarea {
  font-family: var(--body); font-size: 0.95rem;
  padding: 0.8rem 0.95rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}
.ta-form input::placeholder, .ta-form textarea::placeholder { color: var(--muted-2); }
.ta-form input:focus, .ta-form select:focus, .ta-form textarea:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(176,138,62,.14); }
.ta-form textarea { resize: vertical; min-height: 90px; }
.ta-form-note { font-size: 0.78rem; color: var(--muted-2); margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.ta-footer { background: var(--forest-2); color: var(--on-dark); padding: clamp(3.5rem, 6vw, 5rem) 0 2rem; }
.ta-footer .shell { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.4rem; }
.ta-footer-num { font-family: var(--display); font-weight: 600; font-size: 1.6rem; letter-spacing: .04em; color: #fff; }
.ta-footer-sub { font-size: 0.62rem; letter-spacing: .34em; text-transform: uppercase; color: var(--brass-2); margin-top: 4px; margin-bottom: 1.1rem; }
.ta-footer-tag { color: var(--on-dark-muted); max-width: 36ch; font-size: 0.92rem; }
.ta-footer-col h4 { font-family: var(--body); font-size: 0.72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--brass-2); margin-bottom: 1rem; }
.ta-footer-col a { display: block; color: var(--on-dark-muted); font-size: 0.92rem; margin-bottom: 0.6rem; transition: color .2s ease; }
.ta-footer-col a:hover { color: #fff; }
.ta-footer-phone { font-family: var(--display); font-size: 1.4rem; color: #fff !important; margin-bottom: 0.4rem !important; }
.ta-footer-base { border-top: 1px solid rgba(255,255,255,.12); margin-top: 3rem; padding-top: 1.6rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.6rem; font-size: 0.8rem; color: var(--on-dark-muted); }

/* ============================================================
   TOAST
   ============================================================ */
.ta-toast {
  position: fixed; left: 50%; bottom: 2rem; transform: translateX(-50%) translateY(20px);
  background: var(--forest); color: var(--on-dark);
  padding: 0.9rem 1.4rem; border-radius: 100px;
  box-shadow: var(--shadow); font-size: 0.9rem;
  opacity: 0; pointer-events: none; transition: all .3s ease; z-index: 90;
}
.ta-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .sec-head--split { grid-template-columns: 1fr; }
  .ta-promise .shell,
  .ta-corp .shell,
  .ta-about .shell,
  .ta-inquiry .shell { grid-template-columns: 1fr; }
  .ta-promise-media { max-width: 520px; }
  .ta-footer .shell { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .ta-nav-links { display: none; }
  .ta-nav-phone { display: none; }
  .ta-form-row { grid-template-columns: 1fr; }
  .ta-footer .shell { grid-template-columns: 1fr; }
  .ta-about-imgs img:first-child { grid-row: auto; aspect-ratio: 3/4; }
}
