/* ═══════════════════════════════════════════════════════════════════════════
   Long & Taylor Group — Global Stylesheet
   Covers: main site (index.html) + audit page (audit/index.html)
   Both pages link to /style.css only — no separate stylesheets.
═══════════════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:   #0C0C0C;
  --sf:   #141414;
  --sf2:  #1a1a1a;
  --cr:   #EDE8DC;
  --cr60: rgba(237,232,220,.6);
  --cr35: rgba(237,232,220,.35);
  --cr15: rgba(237,232,220,.15);
  --cr08: rgba(237,232,220,.08);
  --gd:   #C09A4F;
  --gd80: rgba(192,154,79,.8);
  --gd20: rgba(192,154,79,.2);
  --gd10: rgba(192,154,79,.1);
  --gd05: rgba(192,154,79,.05);
  --ln:   rgba(237,232,220,.1);
  --nh:   72px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cr);
  font-family: 'Jost', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Fade-in animation ─────────────────────────────────────────────────── */
.fi {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .85s cubic-bezier(.4,0,.2,1), transform .85s cubic-bezier(.4,0,.2,1);
}
.fi.fv { opacity: 1; transform: translateY(0); }


/* ══════════════════════════════════════════════════════════════════════════
   MAIN SITE — Navigation
══════════════════════════════════════════════════════════════════════════ */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nh);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
nav.sc {
  background: rgba(12,12,12,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--ln);
}
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: .07em;
  color: var(--cr);
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cr60);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--cr); }
.btn-nav {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gd);
  background: transparent;
  border: 1px solid var(--gd20);
  padding: 10px 22px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  font-family: 'Jost', sans-serif;
  text-decoration: none;
  display: inline-block;
}
.btn-nav:hover { background: var(--gd10); border-color: var(--gd); }

/* Hamburger — hidden on desktop */
.nav-burger { display: none; }


/* ══════════════════════════════════════════════════════════════════════════
   MAIN SITE — Scroll Arrow
══════════════════════════════════════════════════════════════════════════ */

#hero { position: relative; }

.scroll-arrow {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cr35);
  cursor: pointer;
  transition: color .2s, opacity .4s;
  animation: scroll-pulse 2.4s ease-in-out infinite;
  z-index: 10;
}
.scroll-arrow:hover { color: var(--gd); }
.scroll-arrow svg { width: 30px; height: 30px; }

@keyframes scroll-pulse {
  0%, 100% { opacity: .35; transform: translateX(-50%) translateY(0); }
  50%       { opacity: .85; transform: translateX(-50%) translateY(8px); }
}


/* ══════════════════════════════════════════════════════════════════════════
   MAIN SITE — Layout
══════════════════════════════════════════════════════════════════════════ */

.w { max-width: 1160px; margin: 0 auto; padding: 0 48px; }
section { padding: 112px 0; }
section.alt { background: var(--sf); }
hr.rule { border: none; border-top: 1px solid var(--ln); margin: 0; }


/* ══════════════════════════════════════════════════════════════════════════
   MAIN SITE — Shared Typography
══════════════════════════════════════════════════════════════════════════ */

.eye {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gd);
  display: block;
  margin-bottom: 20px;
}
.dp {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(54px, 7.5vw, 96px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.dp em { font-style: italic; color: var(--gd); }
.h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 14px;
}
.bd { font-size: 17px; line-height: 1.72; color: var(--cr60); font-weight: 300; }
.sm { font-size: 15px; line-height: 1.7;  color: var(--cr60); font-weight: 300; }


/* ══════════════════════════════════════════════════════════════════════════
   MAIN SITE — Buttons
══════════════════════════════════════════════════════════════════════════ */

.btn-p {
  display: inline-block;
  background: var(--cr);
  color: var(--bg);
  font-family: 'Jost', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.btn-p:hover { background: var(--gd); color: var(--bg); }

.btn-s {
  display: inline-block;
  background: transparent;
  color: var(--cr);
  font-family: 'Jost', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 1px solid var(--ln);
  cursor: pointer;
  transition: border-color .2s;
  text-decoration: none;
}
.btn-s:hover { border-color: var(--cr35); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }


/* ══════════════════════════════════════════════════════════════════════════
   MAIN SITE — Grid
══════════════════════════════════════════════════════════════════════════ */

.g3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ln);
  border: 1px solid var(--ln);
}
.g3 > * { background: var(--bg); }
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }


/* ══════════════════════════════════════════════════════════════════════════
   MAIN SITE — Components
══════════════════════════════════════════════════════════════════════════ */

.vn {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
  color: var(--cr15);
  margin-bottom: 20px;
}
.tg {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gd);
  background: var(--gd10);
  padding: 4px 12px;
  margin-bottom: 16px;
}
.svc-item {
  font-size: 15px;
  color: var(--cr60);
  line-height: 1.65;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ln);
  margin-bottom: 10px;
}
.svc-item:last-child { border-bottom: none; margin-bottom: 0; }

.ph { display: grid; grid-template-columns: 72px 1fr; gap: 32px; padding: 48px 0; border-top: 1px solid var(--ln); }
.pn {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  color: var(--gd20);
  padding-top: 4px;
}
.fr { display: flex; align-items: flex-start; gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--ln); }
.fr:last-child { border-bottom: none; }
.fr-mark { font-size: 13px; flex-shrink: 0; margin-top: 3px; color: var(--gd); }
.fr-dim { opacity: .45; }
.fr-dim .fr-mark { color: var(--cr); }
.pq {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  border-left: 2px solid var(--gd);
  padding: 4px 0 4px 36px;
  margin: 64px 0;
  color: var(--cr);
}
.tc { padding: 48px; border: 1px solid var(--ln); }
.tr-role {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gd);
  margin-bottom: 10px;
}
.tn {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--cr);
  margin-bottom: 20px;
}
.ub { border: 1px solid var(--ln); padding: 56px 64px; margin-top: 48px; }
.audit-section {
  background: var(--sf);
  border-top: 1px solid var(--ln);
  border-bottom: 1px solid var(--ln);
  text-align: center;
  padding: 112px 48px;
}


/* ══════════════════════════════════════════════════════════════════════════
   MAIN SITE — Footer
══════════════════════════════════════════════════════════════════════════ */

.ft {
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
}
.ft-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: .18em;
  color: var(--cr35);
}
.ft-copy { font-size: 13px; color: var(--cr35); }


/* ══════════════════════════════════════════════════════════════════════════
   AUDIT PAGE — Header
══════════════════════════════════════════════════════════════════════════ */

.audit-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nh);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(12,12,12,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ln);
}
.audit-back {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cr60);
  text-decoration: none;
  transition: color .2s;
}
.audit-back:hover { color: var(--cr); }
.audit-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .07em;
  color: var(--cr35);
  text-decoration: none;
  transition: color .2s;
}
.audit-logo:hover { color: var(--cr); }


/* ══════════════════════════════════════════════════════════════════════════
   AUDIT PAGE — Hero
══════════════════════════════════════════════════════════════════════════ */

.audit-hero {
  padding: calc(var(--nh) + 80px) 0 72px;
  border-bottom: 1px solid var(--ln);
}
.audit-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 48px;
  text-align: center;
}
.audit-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6.5vw, 84px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--cr);
  margin-bottom: 28px;
}
.audit-title em { font-style: italic; color: var(--gd); }
.audit-subtitle {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--cr60);
  max-width: 600px;
  margin: 0 auto;
}


/* ══════════════════════════════════════════════════════════════════════════
   AUDIT PAGE — Progress Bar
══════════════════════════════════════════════════════════════════════════ */

.audit-progress-bar-wrap {
  position: sticky;
  top: var(--nh);
  z-index: 90;
  background: var(--sf);
  border-bottom: 1px solid var(--ln);
  padding: 14px 48px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.audit-progress-track {
  flex: 1;
  height: 2px;
  background: var(--ln);
  overflow: hidden;
}
.audit-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gd);
  transition: width .4s cubic-bezier(.4,0,.2,1);
}
.audit-progress-label {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cr35);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 120px;
  text-align: right;
}


/* ══════════════════════════════════════════════════════════════════════════
   AUDIT PAGE — Question Cards
══════════════════════════════════════════════════════════════════════════ */

.audit-questions {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 48px 96px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.q-card { padding: 48px 0; border-bottom: 1px solid var(--ln); }
.q-card:first-child { padding-top: 0; }
.q-card:last-child  { border-bottom: none; }
.q-card-inner { max-width: 680px; }
.q-meta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--cr35);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.q-cat { color: var(--gd); font-size: 10.5px; letter-spacing: .2em; }
.q-cat::before { content: '·'; margin-right: 10px; color: var(--cr35); }
.q-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--cr);
  margin-bottom: 28px;
  letter-spacing: -.01em;
}
.q-options { display: flex; flex-direction: column; gap: 10px; }
.opt-btn {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  color: var(--cr60);
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  padding: 14px 20px;
  border: 1px solid var(--ln);
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
  letter-spacing: .02em;
}
.opt-btn:hover  { border-color: var(--cr35); color: var(--cr); background: var(--cr08); }
.opt-btn.selected { border-color: var(--gd);  color: var(--cr); background: var(--gd05); }


/* ══════════════════════════════════════════════════════════════════════════
   AUDIT PAGE — Results
══════════════════════════════════════════════════════════════════════════ */

.audit-results {
  border-top: 1px solid var(--ln);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.audit-results.results-visible { opacity: 1; transform: translateY(0); }

.results-hero { background: var(--sf); border-bottom: 1px solid var(--ln); padding: 88px 0; text-align: center; }
.results-hero-inner { max-width: 640px; margin: 0 auto; padding: 0 48px; }

.results-score-ring-wrap { display: flex; justify-content: center; margin: 32px 0; }
.results-score-ring { position: relative; width: 140px; height: 140px; }
.score-ring-svg { width: 140px; height: 140px; transform: rotate(-90deg); }
.score-ring-track { fill: none; stroke: var(--ln); stroke-width: 4; }
.score-ring-fill {
  fill: none; stroke: var(--gd); stroke-width: 4; stroke-linecap: butt;
  stroke-dasharray: 326.73; stroke-dashoffset: 326.73;
  transition: stroke-dashoffset 1.2s cubic-bezier(.4,0,.2,1);
}
.score-ring-label {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    flex-direction: row; gap: 1px;
}
.score-number { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 300; line-height: 1; color: var(--cr); display: inline; }
.score-denom { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 300; line-height: 1; color: var(--cr60); }
.result-tier-label { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3.5vw, 44px); font-weight: 400; line-height: 1.15; letter-spacing: -.01em; color: var(--cr); margin-bottom: 20px; }
.result-summary { font-size: 16px; font-weight: 300; line-height: 1.75; color: var(--cr60); }

.results-pillars { padding: 72px 0; border-bottom: 1px solid var(--ln); }
.results-pillars-inner { max-width: 800px; margin: 0 auto; padding: 0 48px; }
.results-section-eye { font-size: 11px; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--gd); display: block; margin-bottom: 36px; }
.results-section-sub { font-size: 16px; font-weight: 300; color: var(--cr60); line-height: 1.7; margin-bottom: 40px; margin-top: -20px; }
.pillar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.pillar-card { padding: 28px 0; border-bottom: 1px solid var(--ln); }
.pillar-name { font-size: 11px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--cr60); margin-bottom: 14px; }
.pillar-bar-track { height: 2px; background: var(--ln); margin-bottom: 10px; overflow: hidden; }
.pillar-bar-fill { height: 100%; background: var(--gd); transition: width 1s cubic-bezier(.4,0,.2,1); }
.pillar-pct { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--cr); line-height: 1; }
.pillar-pct span { font-size: 16px; color: var(--cr35); }

.results-gaps { padding: 72px 0; background: var(--sf); border-bottom: 1px solid var(--ln); }
.results-gaps-inner { max-width: 800px; margin: 0 auto; padding: 0 48px; }
.gap-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--ln); border: 1px solid var(--ln); margin-top: 8px; }
.gap-card { background: var(--sf); padding: 32px; transition: background .2s; }
.gap-card:hover { background: var(--sf2); }
.gap-card-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; color: var(--cr); margin-bottom: 12px; line-height: 1.25; }
.gap-card-body  { font-size: 14.5px; font-weight: 300; line-height: 1.7; color: var(--cr60); }

.results-moves { padding: 72px 0; border-bottom: 1px solid var(--ln); }
.results-moves-inner { max-width: 800px; margin: 0 auto; padding: 0 48px; }
.move-list { display: flex; flex-direction: column; gap: 0; }
.move-item { display: grid; grid-template-columns: 48px 1fr; gap: 20px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid var(--ln); }
.move-item:first-child { padding-top: 0; }
.move-item:last-child  { border-bottom: none; }
.move-num  { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 300; line-height: 1; color: var(--gd20); padding-top: 4px; }
.move-text { font-size: 16px; font-weight: 300; line-height: 1.7; color: var(--cr60); padding-top: 6px; }


/* ══════════════════════════════════════════════════════════════════════════
   AUDIT PAGE — CTA + Lead Form
══════════════════════════════════════════════════════════════════════════ */

.results-cta-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--ln); border-top: 1px solid var(--ln); }

.cta-block { background: var(--bg); padding: 72px 56px; display: flex; align-items: center; }
.cta-block-inner { max-width: 420px; }
.cta-heading { font-family: 'Cormorant Garamond', serif; font-size: clamp(24px, 3vw, 36px); font-weight: 400; line-height: 1.2; letter-spacing: -.01em; color: var(--cr); margin-bottom: 16px; }
.cta-sub { font-size: 15px; font-weight: 300; line-height: 1.7; color: var(--cr60); margin-bottom: 32px; }

.lead-card { background: var(--sf); padding: 72px 56px; border-left: 1px solid var(--ln); }
.lead-eyebrow { font-size: 10.5px; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: var(--cr35); margin-bottom: 10px; }
.lead-heading { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 400; color: var(--cr); margin-bottom: 12px; line-height: 1.2; }
.lead-sub { font-size: 14.5px; font-weight: 300; line-height: 1.7; color: var(--cr60); margin-bottom: 28px; }
.lead-fields { display: flex; flex-direction: column; gap: 12px; }
.lead-input {
  width: 100%; background: transparent; border: 1px solid var(--ln);
  color: var(--cr); font-family: 'Jost', sans-serif; font-size: 15px;
  font-weight: 300; padding: 13px 16px; outline: none;
  transition: border-color .2s; letter-spacing: .02em;
}
.lead-input::placeholder { color: var(--cr35); }
.lead-input:focus { border-color: var(--cr35); }
.lead-submit { width: 100%; margin-top: 4px; text-align: center; justify-content: center; }
.lead-thanks { text-align: center; padding: 32px 0; }
.lead-thanks-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; color: var(--cr); margin-bottom: 12px; line-height: 1.2; }
.lead-thanks-body  { font-size: 15px; font-weight: 300; color: var(--cr60); line-height: 1.7; }



/* ══════════════════════════════════════════════════════════════════════════
MOBILE — Main Site
══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  nav { padding: 0 24px; }

  /* ── Logo: smaller font so full name fits next to burger ── */
  .logo {
    font-size: 13px;
    letter-spacing: .03em;
    white-space: nowrap;
    overflow: visible;
    max-width: calc(100% - 60px);
  }

  /* ── Hide desktop nav links, style as fullscreen mobile menu ── */
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nh);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12,12,12,.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 99;
    border-top: 1px solid var(--ln);
    list-style: none;
  }

  /* Show menu when JS adds .open */
  .nav-links.open {
    display: flex;
  }

  /* Larger, centered link text in mobile menu */
  .nav-links a {
    font-size: 13px;
    letter-spacing: .22em;
    color: var(--cr60);
    padding: 8px 0;
  }
  .nav-links a:hover { color: var(--cr); }

  /* ── Burger button: show and style the three lines ── */
  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 110;
    flex-shrink: 0;
  }

  .nav-burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--cr);
    transition: transform .3s, opacity .3s;
  }

  /* Animate burger → X when open */
  .nav-burger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .nav-burger.open span:nth-child(2) {
    opacity: 0;
  }
  .nav-burger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  /* ── Layout ── */
  .w { padding: 0 24px; }
  section { padding: 72px 0; }
  .audit-section { padding: 72px 24px; }
  .g3 { grid-template-columns: 1fr; }
  .g2 { grid-template-columns: 1fr; gap: 32px; }
  .ph { grid-template-columns: 56px 1fr; gap: 20px; }
  .pn { font-size: 36px; }
  .ub { padding: 32px; }
  .tc { padding: 32px; }
  .ft { flex-direction: column; gap: 20px; text-align: center; }
}
