
/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── TOKENS ── */
:root {
  --bg:    #050505;
  --s1:    #0c0c0c;
  --s2:    #111111;
  --s3:    #181818;
  --white: #ffffff;
  --off:   #dedad3;
  --mid:   #87837e;
  --dim:   #4c4b47;
  --ln:    rgba(255,255,255,0.07);
  --ln2:   rgba(255,255,255,0.12);
  --g:     #16a34a;
  --gh:    #15803d;
  --gl:    #4ade80;
  --glow:  rgba(22,163,74,0.10);
  --gd:    rgba(22,163,74,0.18);
  --g2:    rgba(22,163,74,0.08);
  --g3:    rgba(22,163,74,0.20);
  --serif: 'Instrument Serif', Georgia, serif;
  --sans:  'Bricolage Grotesque', system-ui, sans-serif;
  --max:   1080px;
  --px:    clamp(1.25rem, 4vw, 2.5rem);
  --ra:    8px;
  --rb:    12px;
  --rc:    16px;
}

html  { font-size: 16px; scroll-behavior: smooth; }
body  {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--dim); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--mid); }

/* ── ANIMATIONS ── */
@keyframes fade-up { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes pulse    { 0%,100%{opacity:1} 50%{opacity:.2} }
@keyframes float    { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
@keyframes shimmer  { 0%{background-position:-200% 0} 100%{background-position:200% 0} }

.f0 { animation: fade-up .6s .00s cubic-bezier(.16,1,.3,1) both; }
.f1 { animation: fade-up .6s .15s cubic-bezier(.16,1,.3,1) both; }
.f2 { animation: fade-up .6s .30s cubic-bezier(.16,1,.3,1) both; }
.f3 { animation: fade-up .6s .45s cubic-bezier(.16,1,.3,1) both; }

/* ── LAYOUT ── */
.W { max-width: var(--max); margin: 0 auto; padding: 0 var(--px); }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(5,5,5,.82); backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid var(--ln);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
}
.nav-row {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--px);
  height: 58px; display: flex; justify-content: space-between; align-items: center;
}
.logo {
  display: flex; align-items: center;
  text-decoration: none;
}
.logo img {
  height: 48px;
  width: auto;
}
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-right a {
  font-size: .85rem; color: var(--dim);
  text-decoration: none; transition: color .15s, transform .2s;
}
.nav-right a:hover { color: var(--white); }
.nav-right .social-links a:hover {
  color: var(--gl); transform: translateY(-2px);
}
.nav-email {
  color: var(--off) !important;
  border-bottom: 1px solid var(--dim);
  padding-bottom: 2px;
}
.nav-email:hover {
  color: var(--white) !important; border-color: var(--gl);
}
.nav-cta {
  background: var(--g) !important; color: var(--white) !important;
  font-weight: 700; padding: .5rem 1.35rem !important; border-bottom: none !important;
  border-radius: var(--ra); transition: background .15s, transform .1s !important;
}
.nav-cta:hover { background: var(--gh) !important; transform: translateY(-1px) !important; }
.nav-cta:active { transform: scale(0.96) !important; }

/* ── HERO ── */
.hero {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--px);
  padding-top: clamp(5rem, 9vw, 9rem);
  padding-bottom: clamp(5rem, 8vw, 7rem);
  display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative;
}
.hero::before {
  content: ''; pointer-events: none; z-index: 0;
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle at 50% 50%, rgba(22,163,74,.12) 0%, transparent 55%);
  filter: blur(60px);
}
.hero::after {
  content: ''; pointer-events: none; z-index: 0;
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(960px,100%); height: 70%;
  background: radial-gradient(ellipse at 50% 0%, rgba(22,163,74,.06) 0%, transparent 65%);
}
.hero > * { position: relative; z-index: 1; }

.hero h1 {
  font-size: clamp(2.8rem, 5.4vw, 5.2rem);
  font-weight: 800; letter-spacing: -.045em; line-height: 1.03;
  max-width: 780px; margin-bottom: 1.8rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}
.hero h1 em {
  font-family: var(--serif); font-style: italic;
  font-weight: 400; color: var(--gl);
  text-shadow: 0 0 60px rgba(74,222,128,.2);
}

.hero-sub {
  font-size: 1.15rem; font-weight: 300;
  color: var(--mid); line-height: 1.8;
  max-width: 520px; margin-bottom: 2.8rem;
}

.btn-g {
  display: inline-flex; align-items: center; gap: .7rem;
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%); color: var(--white);
  font-family: var(--sans); font-size: 1.02rem; font-weight: 700;
  padding: 1.05rem 2.8rem; border-radius: var(--rb);
  text-decoration: none; letter-spacing: .01em;
  transition: all .2s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 4px 24px rgba(22,163,74,.25), 0 0 64px rgba(22,163,74,.15);
  position: relative;
}
.btn-g:hover { transform: translateY(-3px); box-shadow: 0 8px 40px rgba(22,163,74,.4), 0 0 80px rgba(22,163,74,.2); }
.btn-g:active { transform: translateY(0) scale(0.97); }

/* ── VIDEO ── */
.video-wrap {
  width: 100%; max-width: 780px;
  margin-top: 4rem;
}
.video-shell {
  position: relative; width: 100%; padding-bottom: 56.25%;
  background: linear-gradient(180deg, var(--s3) 0%, var(--s1) 100%);
  border: 1px solid var(--ln2); box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
  border-radius: var(--rc); overflow: hidden;
}
.video-poster {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.1rem;
  cursor: pointer; transition: background .2s;
}
.video-poster:hover { background: rgba(22,163,74,.04); }
.play-btn {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 8px 40px rgba(22,163,74,.4), 0 0 0 12px rgba(22,163,74,.08);
  transition: all .25s cubic-bezier(.16,1,.3,1);
  animation: float 3s ease-in-out infinite;
}
.video-poster:hover .play-btn {
  transform: scale(1.1);
  box-shadow: 0 16px 56px rgba(22,163,74,.55), 0 0 0 16px rgba(22,163,74,.12);
  animation: none;
}
.play-btn svg { margin-left: 4px; }

/* ── SECTION SCAFFOLD ── */
.sec {
  border-top: 1px solid var(--ln);
  padding-top: clamp(5rem,8vw,7rem);
  padding-bottom: clamp(5rem,8vw,7rem);
  position: relative;
}
.sec-label {
  font-size: .6rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--g); display: inline-flex; align-items: center; gap: .5rem;
  margin-bottom: 1.2rem;
  padding: .35rem .85rem; border-radius: 100px;
  background: var(--g2); border: 1px solid var(--g3);
}
.sec-h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 800; letter-spacing: -.035em; line-height: 1.07;
  color: var(--white); margin-bottom: 1.2rem;
}
.sec-h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--gl); }
.sec-body {
  font-size: 1rem; font-weight: 300;
  color: var(--mid); line-height: 1.8;
}

/* ── WHY FAIL ── */
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,5vw,6rem);
  align-items: start;
}
.why-text { max-width: 460px; }
.why-text .sec-body { margin-bottom: 1.5rem; }
.why-standout {
  font-size: 1.05rem; font-weight: 500;
  color: var(--off); line-height: 1.65;
}
.why-standout em { font-family: var(--serif); font-style: italic; color: var(--gl); }

/* Missing list */
.missing {
  border: 1px solid var(--ln2); border-radius: var(--rb); overflow: hidden;
}
.missing-hd {
  padding: .9rem 1.5rem;
  background: var(--s2); border-bottom: 1px solid var(--ln2);
  font-size: .62rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--dim);
}
.missing-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.05rem 1.5rem; border-bottom: 1px solid var(--ln);
  transition: background .15s;
}
.missing-row:last-of-type { border-bottom: none; }
.missing-row:hover { background: rgba(22,163,74,.04); }
.dot {
  width: 6px; height: 6px; background: var(--g);
  border-radius: 50%; flex-shrink: 0; margin-top: .48rem;
  box-shadow: 0 0 8px var(--gl);
}
.missing-text {
  font-size: .9rem; font-weight: 400; color: var(--off); line-height: 1.5;
}
.missing-foot {
  padding: 1.1rem 1.5rem;
  background: var(--g2); border-top: 1px solid var(--g3);
  display: flex; align-items: center; gap: .65rem;
}
.missing-foot::before {
  content: ''; width: 6px; height: 6px; background: var(--gl);
  border-radius: 50%; flex-shrink: 0; animation: pulse 2s infinite;
}
.missing-foot-text {
  font-size: .85rem; font-weight: 500; color: var(--gl);
  line-height: 1.5;
}

/* ── COMPARISON TABLE ── */
.compare-header {
  margin-bottom: 3rem;
}
.compare-table {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--rc); overflow: hidden;
  border: 1px solid var(--ln2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 1px 0 rgba(255,255,255,0.03);
}
.compare-col {
  display: flex; flex-direction: column;
}
.compare-col--red { background: var(--bg); }
.compare-col--green { background: var(--bg); }
.compare-col-hd {
  padding: 1.1rem 1.5rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: .6rem;
}
.compare-col-hd--red {
  background: rgba(239,68,68,.08); color: #f87171;
  border-bottom: 2px solid rgba(239,68,68,.25);
}
.compare-col-hd--green {
  background: var(--g2); color: var(--gl);
  border-bottom: 2px solid var(--g3);
}
.compare-icon {
  font-size: .9rem; font-weight: 800;
}
.compare-col--red .compare-row {
  color: var(--mid); border-bottom: 1px solid var(--ln);
  font-size: .88rem; font-weight: 300; line-height: 1.55;
  padding: 1rem 1.5rem;
  border-right: 1px solid var(--ln);
  transition: background .15s;
}
.compare-col--green .compare-row {
  color: var(--off); border-bottom: 1px solid var(--ln);
  font-size: .88rem; font-weight: 400; line-height: 1.55;
  padding: 1rem 1.5rem;
  transition: background .15s;
}
.compare-col--red .compare-row:hover { background: rgba(239,68,68,.04); }
.compare-col--green .compare-row:hover { background: rgba(22,163,74,.04); }
.compare-col .compare-row:last-child { border-bottom: none; }
.compare-footer {
  margin-top: 1.5rem;
  padding: 1.1rem 1.5rem;
  background: var(--g2); border: 1px solid var(--g3);
  border-radius: var(--rb);
  display: flex; align-items: center; gap: .65rem;
}
.compare-footer::before {
  content: ''; width: 6px; height: 6px; background: var(--gl);
  border-radius: 50%; flex-shrink: 0; animation: pulse 2s infinite;
  box-shadow: 0 0 8px var(--gl);
}

/* ── GTM SYSTEM ── */
.gtm-bg { background: var(--s1); }
.gtm-intro { max-width: 580px; margin-bottom: 3rem; }
.gtm-intro .sec-body { margin-top: .75rem; }

.gtm-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--ln);
  border: 1px solid var(--ln2); border-radius: var(--rc); overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.gtm-card {
  background: var(--bg); padding: 2.2rem 2rem;
  position: relative; overflow: hidden; transition: all .25s cubic-bezier(.16,1,.3,1);
}
.gtm-card:hover { background: rgba(12,12,12,1); }
.gtm-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gl) 0%, var(--g) 50%, transparent 100%);
  opacity: 0; transition: opacity .25s;
}
.gtm-card:hover::before { opacity: 1; }
.gtm-card::after {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at top left, rgba(22,163,74,.04) 0%, transparent 60%);
  opacity: 0; transition: opacity .25s;
}
.gtm-card:hover::after { opacity: 1; }
.card-num {
  font-family: var(--serif); font-style: italic;
  font-size: 3.5rem; font-weight: 400; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px var(--g3);
  letter-spacing: -.04em;
  display: block; margin-bottom: 1.1rem;
  transition: color .3s, -webkit-text-stroke .3s;
}
.gtm-card:hover .card-num {
  color: var(--g2); -webkit-text-stroke: 1px var(--g);
}
.card-title {
  font-size: 1rem; font-weight: 700;
  color: var(--white); line-height: 1.3; margin-bottom: .6rem;
}
.card-body {
  font-size: .83rem; color: var(--mid);
  font-weight: 300; line-height: 1.68;
}

/* ── WALK AWAY ── */
.away-inner {
  display: grid; grid-template-columns: 360px 1fr;
  gap: clamp(3rem,5vw,6rem); align-items: start;
}
.away-left .sec-body { margin-top: .85rem; }
.away-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--ln);
  border: 1px solid var(--ln2); border-radius: var(--rc); overflow: hidden;
}
.away-item {
  background: var(--bg); padding: 1.5rem 1.6rem;
  display: flex; align-items: flex-start; gap: .9rem;
  transition: background .18s;
}
.away-item:hover { background: rgba(22,163,74,.04); }
.item-num {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--s3); border: 1px solid var(--ln2); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 800; color: var(--gl); letter-spacing: -.02em;
}
.item-name {
  font-size: .92rem; font-weight: 600;
  color: var(--off); line-height: 1.3;
}
.away-close {
  padding: 1.35rem 1.6rem;
  background: var(--g2); border-top: 1px solid var(--g3);
  font-size: .95rem; font-weight: 500; color: var(--gl);
  border-radius: 0 0 var(--rc) var(--rc);
}

/* ── WHO AM I ── */
.who-inner {
  display: grid; grid-template-columns: 300px 1fr;
  gap: clamp(3rem,5vw,5.5rem); align-items: start;
}
.photo-frame {
  position: relative;
}
.photo-frame::after {
  content: ''; position: absolute; inset: -1px;
  border-radius: var(--rc); pointer-events: none;
  background: linear-gradient(180deg, rgba(22,163,74,.15) 0%, transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  padding: 1px;
}
.about-img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; object-position: top center;
  border-radius: var(--rc); display: block;
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}
.photo-tag {
  position: absolute; top: 1.25rem; right: -1px;
  background: var(--bg); border: 1px solid var(--ln2);
  font-size: .62rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--g); padding: .38rem .85rem;
  border-radius: 6px 0 0 6px;
}
.photo-stat {
  position: absolute; bottom: 1.25rem; left: 1.25rem;
  background: rgba(5,5,5,.9); border: 1px solid var(--ln2);
  border-radius: var(--ra); padding: .85rem 1.2rem;
  backdrop-filter: blur(12px);
}
.stat-n { font-size: 1.75rem; font-weight: 800; letter-spacing: -.035em; color: var(--gl); line-height: 1; }
.stat-l { font-size: .63rem; color: var(--mid); font-weight: 300; margin-top: .2rem; }
.who-right { padding-top: .5rem; }
.who-name {
  font-family: var(--serif); font-size: 2.4rem;
  font-weight: 400; letter-spacing: -.02em; line-height: 1;
  margin-bottom: .35rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--off) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.who-role {
  font-size: .68rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--g);
  margin-bottom: 1.75rem; display: block;
}
.who-desc {
  font-size: .96rem; color: var(--mid);
  font-weight: 300; line-height: 1.85; margin-bottom: 2rem;
}
.who-contact {
  display: flex; align-items: center; gap: 1.5rem;
}
.who-email {
  font-size: 0.9rem; color: var(--off);
  text-decoration: none; border-bottom: 1px solid var(--dim);
  transition: color 0.2s, border-color 0.2s;
}
.who-email:hover {
  color: var(--white); border-color: var(--gl);
}

/* ── FINAL CTA ── */
.cta-section {
  background: linear-gradient(135deg, #0f7036 0%, #16a34a 50%, #15803d 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 60%);
  border-radius: 50%; pointer-events: none;
}
.cta-section::after {
  content: ''; position: absolute; bottom: -160px; left: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,0,0,.12) 0%, transparent 60%);
  border-radius: 50%; pointer-events: none;
}
.cta-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--px);
  padding-top: clamp(4rem,7vw,6.5rem);
  padding-bottom: clamp(4rem,7vw,6.5rem);
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: flex-start;
  max-width: 680px;
}
.cta-h {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800; letter-spacing: -.038em; line-height: 1.06;
  color: var(--white); margin-bottom: 1.25rem;
}
.cta-h em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.cta-p {
  font-size: 1rem; color: rgba(255,255,255,.72);
  font-weight: 300; line-height: 1.8; margin-bottom: 2.5rem;
  max-width: 540px;
}
.btn-white {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--white); color: var(--g);
  font-family: var(--sans); font-size: 1rem; font-weight: 800;
  padding: 1rem 2.4rem; border-radius: var(--rb);
  text-decoration: none; letter-spacing: .01em;
  transition: opacity .15s, transform .1s, box-shadow .15s;
}
.btn-white:hover { opacity: .92; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.btn-white:active { transform: scale(0.98); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--ln);
  max-width: var(--max); margin: 0 auto; padding: 2.5rem var(--px);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
}
.footer-links {
  display: flex; align-items: center; gap: 1.5rem;
}
.footer-email {
  font-size: .85rem; color: var(--dim);
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: 2px; transition: color .2s, border-color .2s;
}
.footer-email:hover {
  color: var(--white); border-color: var(--gl);
}
.footer-logo img {
  height: 40px; 
  opacity: 0.5;
  transition: opacity 0.2s;
}
.footer-logo:hover img {
  opacity: 1;
}
.social-links {
  display: flex; gap: 1.5rem; align-items: center;
}
.social-links a {
  color: var(--dim); transition: color .2s, transform .2s;
  display: flex; align-items: center; justify-content: center;
}
.social-links a:hover {
  color: var(--gl); transform: translateY(-2px);
}

/* ── CTA LAYOUT ── */
.cta-inner-wrap {
  padding-top: clamp(4rem,7vw,6.5rem);
  padding-bottom: clamp(4rem,7vw,6.5rem);
  display: grid;
  grid-template-columns: 1fr 540px;
  gap: clamp(2rem,4vw,4.5rem);
  align-items: start;
  position: relative; z-index: 1;
}

.cta-h {
  font-size: clamp(2.1rem,3.8vw,3.4rem);
  font-weight: 800; letter-spacing:-.038em; line-height:1.07;
  color: var(--white); margin-bottom:1.25rem;
}
.cta-h em { font-family:var(--serif); font-style:italic; font-weight:400; }
.cta-p {
  font-size:.98rem; color:rgba(255,255,255,.7);
  font-weight:300; line-height:1.8; margin-bottom:1.75rem;
}
.cta-list {
  list-style:none; display:flex; flex-direction:column; gap:.7rem;
}
.cta-list li {
  font-size:.88rem; color:rgba(255,255,255,.78); font-weight:300;
  display:flex; align-items:flex-start; gap:.7rem; line-height:1.5;
}
.cta-list li::before {
  content:'✓'; color:rgba(255,255,255,.5); font-size:.7rem;
  font-weight:700; flex-shrink:0; margin-top:.22rem;
}

/* ── CALENDAR CARD ── */
.cal-card {
  background: linear-gradient(180deg, var(--s2) 0%, var(--s1) 100%);
  border: 1px solid var(--ln2);
  border-radius: var(--rc);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.04);
}

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .nav-email      { display: none !important; }
  .why-inner      { grid-template-columns:1fr; }
  .compare-table  { grid-template-columns:1fr; }
  .compare-col--red .compare-row { border-right: none; }
  .gtm-grid       { grid-template-columns:1fr 1fr; }
  .who-inner      { grid-template-columns:1fr; }
  .cta-inner-wrap { grid-template-columns:1fr; }
}
@media(max-width:620px){
  .nav-right .social-links { display:none !important; }
  .hero h1 { font-size:clamp(2.4rem,8vw,3.4rem); }
  .gtm-grid { grid-template-columns:1fr; }
  .cal-grid { grid-template-columns:repeat(4,1fr); }
  .footer-inner { flex-direction:column; gap:1.5rem; align-items: center; }
  .footer-links { flex-direction:column; gap:1rem; align-items: center; }
}
