/* =========================================================
   TEGRAJ BORO — Performance Marketer Portfolio
   Design tokens
========================================================= */
:root{
  --ink:#11151C;
  --ink-soft:#1B212C;
  --cream:#F7F5F0;
  --cream-dim:#EFEBE2;
  --orange:#FF4D1C;
  --orange-deep:#D93A0F;
  --slate:#5B6472;
  --mint:#16C172;
  --line: rgba(17,21,28,0.12);
  --line-light: rgba(247,245,240,0.16);

  --font-display:"Fraunces", "Times New Roman", serif;
  --font-body:"Inter", -apple-system, sans-serif;
  --font-mono:"JetBrains Mono", "Courier New", monospace;

  --radius:18px;
  --radius-sm:10px;
  --container: 1180px;
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--font-body);
  background:var(--cream);
  color:var(--ink);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{list-style:none;}
button{font-family:inherit;cursor:pointer;}

.wrap{
  max-width:var(--container);
  margin:0 auto;
  padding:0 32px;
}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--orange-deep);
  font-weight:600;
}
.eyebrow::before{
  content:"";
  width:18px;height:2px;
  background:var(--orange);
  display:inline-block;
}

/* ---------- Headings ---------- */
h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:600;
  letter-spacing:-0.01em;
  line-height:1.05;
}
.italic{font-style:italic;color:var(--orange);font-weight:600;}

/* ---------- Top Nav ---------- */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(247,245,240,0.86);
  backdrop-filter:blur(14px) saturate(140%);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 32px;
  max-width:var(--container);
  margin:0 auto;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-display);
  font-weight:600;
  font-size:21px;
}
.logo-mark{
  width:34px;height:34px;
  border-radius:50%;
  background:var(--ink);
  color:var(--cream);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-mono);
  font-size:13px;
  font-weight:700;
  flex-shrink:0;
}
.logo .accent{color:var(--orange);}

.nav-links{
  display:flex;
  align-items:center;
  gap:34px;
  font-size:15px;
  font-weight:500;
}
.nav-links a{
  position:relative;
  color:var(--ink);
  padding:4px 0;
  transition:color .2s;
}
.nav-links a:hover{color:var(--orange-deep);}
.nav-links a.active{color:var(--orange-deep);}
.nav-links a.active::after{
  content:"";
  position:absolute;
  left:0;bottom:-3px;
  width:100%;height:2px;
  background:var(--orange);
}

.nav-cta{
  background:var(--orange);
  color:var(--ink);
  padding:12px 24px;
  border-radius:100px;
  font-weight:600;
  font-size:14.5px;
  border:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:transform .25s ease, background .25s ease;
}
.nav-cta:hover{background:var(--ink); color:var(--cream); transform:translateY(-2px);}

.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  padding:6px;
}
.nav-cta-mobile{display:none;}
.nav-toggle span{width:24px;height:2px;background:var(--ink);display:block;}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:16px 28px;
  border-radius:100px;
  font-weight:600;
  font-size:15px;
  border:1.5px solid transparent;
  white-space:nowrap;
  transition:transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn-primary{
  background:var(--ink);
  color:var(--cream);
}
.btn-primary:hover{background:var(--orange); transform:translateY(-3px);}
.btn-outline{
  background:transparent;
  border-color:var(--ink);
  color:var(--ink);
}
.btn-outline:hover{border-color:var(--orange); color:var(--orange-deep); transform:translateY(-3px);}
.btn-orange{
  background:var(--orange);
  color:#fff;
}
.btn-orange:hover{background:var(--orange-deep); transform:translateY(-3px);}
.btn-arrow{
  width:34px;height:34px;
  border-radius:50%;
  background:var(--orange);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

/* ---------- HERO ---------- */
.hero{
  position:relative;
  padding:64px 0 0;
  overflow:hidden;
}
.hero-grid-bg{
  position:absolute;
  inset:-40px;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size:46px 46px;
  -webkit-mask-image:radial-gradient(ellipse 70% 60% at 50% 30%, black 30%, transparent 75%);
  mask-image:radial-gradient(ellipse 70% 60% at 50% 30%, black 30%, transparent 75%);
  opacity:0.55;
  pointer-events:none;
  will-change:transform;
  transform:translate3d(0, 0, 0);
}
.hero-grid-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(600px circle at var(--spotlight-x, 50%) var(--spotlight-y, 30%), rgba(255, 77, 28, 0.08), transparent 70%);
  opacity:0;
  pointer-events:none;
  transition:opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero:hover .hero-grid-bg::after,
.page-header:hover .hero-grid-bg::after{
  opacity:1;
}
.hero-inner{
  position:relative;
  max-width:var(--container);
  margin:0 auto;
  padding:0 32px;
  text-align:center;
}
.hero-top-row{
  display:flex;
  justify-content:center;
  margin-bottom:22px;
}
.hero h1{
  font-size:clamp(40px, 6.4vw, 78px);
  margin-bottom:18px;
}
.hero-sub{
  font-size:18px;
  color:var(--slate);
  margin-bottom:46px;
}
.hero-sub strong{color:var(--ink);}

.hero-stage{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:flex-end;
  min-height:560px;
}

.quote-card{
  position:absolute;
  left:0;
  top:46%;
  max-width:230px;
  text-align:left;
  z-index:5;
}
.quote-mark{
  font-family:var(--font-display);
  font-size:46px;
  color:var(--orange);
  line-height:0.4;
  display:block;
  margin-bottom:8px;
}
.quote-card p{
  font-size:15px;
  color:var(--ink-soft);
  font-weight:500;
  line-height:1.45;
}
.reviews-row{
  position:absolute;
  left:0;
  bottom:18%;
  text-align:left;
  z-index:5;
}
.avatar-stack{
  display:flex;
  margin-bottom:10px;
}
.avatar-stack span{
  width:38px;height:38px;
  border-radius:50%;
  background:var(--cream-dim);
  border:2px solid var(--cream);
  margin-left:-10px;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-mono);
  font-size:11px;
  color:var(--slate);
}
.avatar-stack span:first-child{margin-left:0;}
.reviews-row .score{
  font-weight:700;
  font-size:15px;
}
.reviews-row .score .accent{color:var(--orange-deep);}
.reviews-row .label{
  font-size:12.5px;
  color:var(--slate);
}

.badge-cloud{
  position:absolute;
  right:0;
  top:6%;
  display:flex;
  flex-direction:column;
  gap:12px;
  z-index:5;
  align-items:flex-end;
}
.pill{
  font-family:var(--font-mono);
  font-size:12.5px;
  font-weight:600;
  padding:10px 18px;
  border-radius:100px;
  white-space:nowrap;
}
.pill-dark{background:var(--ink); color:var(--cream);}
.pill-orange{background:var(--orange); color:#fff;}
.pill-row{display:flex; gap:10px;}

.social-row{
  position:absolute;
  right:0;
  bottom:24%;
  text-align:right;
  z-index:5;
}
.social-row .label{
  font-size:12px;
  color:var(--slate);
  margin-bottom:12px;
  font-family:var(--font-mono);
  letter-spacing:0.08em;
  text-transform:uppercase;
}
.social-icons{display:flex; gap:10px; justify-content:flex-end;}
.social-icons a{
  width:38px;height:38px;
  border-radius:50%;
  background:var(--ink);
  color:var(--cream);
  display:flex;align-items:center;justify-content:center;
  transition:background .2s, transform .2s;
}
.social-icons a:hover{background:var(--orange); transform:translateY(-3px);}

.hero-photo-wrap{
  position:relative;
  width:420px;
  z-index:2;
}
.hero-blob{
  position:absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: 90%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 70%, #FF6B00 0%, #FF7A00 25%, #FF9E4A 50%, #FFC38A 75%, rgba(255, 229, 209, 0.8) 90%, transparent 100%);
  filter: blur(16px);
  opacity: 0.95;
  z-index: 1;
}
.hero-photo{
  position:relative;
  z-index:2;
  width:100%;
  display:block;
}

.spin-badge{
  position:absolute;
  top:-6px;
  right:-8px;
  width:128px;height:128px;
  z-index:6;
}
.spin-badge .ring{
  animation:spin 16s linear infinite;
  transform-origin:50% 50%;
}
@keyframes spin{ to{ transform:rotate(360deg); } }
.spin-badge .core{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
}
.spin-badge .core-circle{
  width:52px;height:52px;
  border-radius:50%;
  background:var(--orange);
  display:flex;align-items:center;justify-content:center;
  color:#fff;
}

.cta-pair{
  position:absolute;
  left:50%;
  bottom:-2px;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  background:var(--cream);
  padding:8px;
  border-radius:100px;
  box-shadow:0 14px 34px rgba(17,21,28,0.14);
  z-index:6;
}
.cta-pair .btn{padding:14px 24px;}

.marquee-strip{
  background:var(--ink);
  color:var(--cream);
  padding:20px 0;
  overflow:hidden;
  margin-top:0;
}
.marquee-track{
  display:flex;
  gap:46px;
  white-space:nowrap;
  animation:marquee 26s linear infinite;
  width:max-content;
}
@keyframes marquee{ from{transform:translateX(0);} to{transform:translateX(-50%);} }
.marquee-track span{
  font-family:var(--font-mono);
  font-size:15px;
  font-weight:600;
  letter-spacing:0.04em;
  display:flex;
  align-items:center;
  gap:46px;
}
.marquee-track .dot{
  width:9px;height:9px;
  border-radius:50%;
  background:var(--orange);
  display:inline-block;
}

@media (max-width: 980px){
  .hero-stage{display:flex; flex-direction:column; min-height:auto; gap:0;}
  .hero-photo-wrap{width:300px; margin:0 auto; overflow:visible; order: 1;}
  .quote-card{position:static; max-width:none; margin-bottom:24px; margin-top:32px; text-align:center; order: 2;}
  .quote-card p{font-size:14px;}
  .reviews-row{position:static; text-align:center; margin-top:18px; order: 3;}
  .avatar-stack{justify-content:center;}
  .badge-cloud{position:static; align-items:center; margin-bottom:18px; margin-top:24px; order: 4;}
  .pill-row{justify-content:center;}
  .social-row{position:static; text-align:center; margin-top:18px; order: 5;}
  .social-icons{justify-content:center;}
  .cta-pair{
    position:static;
    transform:none;
    margin:28px auto 0;
    width:max-content;
    max-width:90vw;
    flex-wrap:nowrap;
    justify-content:center;
  }
  .cta-pair .btn{padding:13px 18px; font-size:14px;}
}

/* ---------- Section shells ---------- */
section{padding:108px 0;}
.section-head{
  max-width:640px;
  margin-bottom:56px;
}
.section-head.center{margin-left:auto; margin-right:auto; text-align:center;}
.section-head h2{
  font-size:clamp(32px, 4vw, 48px);
  margin-top:14px;
}
.section-head p{
  color:var(--slate);
  font-size:16.5px;
  margin-top:16px;
}

.dark{
  background:var(--ink);
  color:var(--cream);
}
.dark .eyebrow{color:var(--orange);}
.dark .section-head p{color:rgba(247,245,240,0.66);}

/* ---------- Services grid ---------- */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}
.service-card{
  background:var(--cream);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:34px 28px;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(17,21,28,0.10);
  border-color:transparent;
}
.service-num{
  font-family:var(--font-mono);
  font-size:13px;
  color:var(--orange-deep);
  font-weight:700;
  margin-bottom:18px;
  display:block;
}
.service-card h3{
  font-size:21px;
  margin-bottom:10px;
}
.service-card p{
  color:var(--slate);
  font-size:15px;
}

@media (max-width: 900px){
  .services-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width: 620px){
  .services-grid{grid-template-columns:1fr;}
}

/* ---------- Stats strip ---------- */
.stats-strip{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
}
.stat-cell{
  background:var(--cream);
  padding:34px 24px;
  text-align:center;
}
.stat-num{
  font-family:var(--font-mono);
  font-size:clamp(28px,3.4vw,40px);
  font-weight:700;
  color:var(--ink);
}
.stat-num .mint{color:var(--mint);}
.stat-label{
  font-size:13px;
  color:var(--slate);
  margin-top:6px;
  letter-spacing:0.02em;
}
@media (max-width:760px){
  .stats-strip{grid-template-columns:1fr 1fr;}
}

/* ---------- Funnel diagram (signature element) ---------- */
.funnel-wrap{
  display:flex;
  gap:40px;
  align-items:center;
}
.funnel-visual{flex:0 0 380px;}
.funnel-copy{flex:1;}
.funnel-copy h2{font-size:clamp(28px,3.6vw,40px); margin-bottom:18px;}
.funnel-copy p{color:rgba(247,245,240,0.7); margin-bottom:22px; font-size:16px;}
.funnel-stage-list{display:flex; flex-direction:column; gap:14px;}
.funnel-stage-list li{
  display:flex;
  gap:14px;
  align-items:flex-start;
  font-size:14.5px;
  color:rgba(247,245,240,0.86);
}
.funnel-stage-list b{
  font-family:var(--font-mono);
  color:var(--orange);
  flex-shrink:0;
  min-width:78px;
  margin-right:4px;
  display:inline-block;
}
@media (max-width:860px){
  .funnel-wrap{flex-direction:column;}
  .funnel-visual{flex:none; width:100%; max-width:380px;}
}

/* ---------- Timeline (experience) ---------- */
.timeline{
  position:relative;
  padding-left:32px;
  border-left:2px solid var(--line);
}
.tl-item{
  position:relative;
  padding-bottom:46px;
}
.tl-item:last-child{padding-bottom:0;}
.tl-dot{
  position:absolute;
  left:-39px;
  top:4px;
  width:16px;height:16px;
  border-radius:50%;
  background:var(--cream);
  border:3px solid var(--orange);
}
.tl-date{
  font-family:var(--font-mono);
  font-size:12.5px;
  color:var(--orange-deep);
  font-weight:700;
  letter-spacing:0.04em;
  text-transform:uppercase;
}
.tl-item h3{
  font-size:22px;
  margin:8px 0 4px;
}
.tl-item .tl-role{
  color:var(--slate);
  font-size:14.5px;
  margin-bottom:10px;
  font-weight:600;
}
.tl-item p{
  color:var(--slate);
  font-size:15px;
  max-width:600px;
}
.tl-tags{display:flex; gap:8px; flex-wrap:wrap; margin-top:14px;}
.tl-tags span{
  font-family:var(--font-mono);
  font-size:11.5px;
  background:var(--cream-dim);
  padding:5px 11px;
  border-radius:100px;
  color:var(--ink-soft);
}

/* ---------- About split ---------- */
.about-split{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:64px;
  align-items:center;
}
.about-photo{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--ink);
  aspect-ratio:4/5;
  display:flex;
  align-items:flex-end;
  justify-content:center;
}
.about-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  position:relative;
  z-index:2;
}
.about-copy h2{font-size:clamp(30px,3.6vw,44px); margin-bottom:20px;}
.about-copy p{color:var(--slate); font-size:16px; margin-bottom:18px;}
.about-copy p strong{color:var(--ink);}

.skill-bars{margin-top:30px; display:flex; flex-direction:column; gap:16px;}
.skill-row{display:grid; grid-template-columns:160px 1fr; gap:16px; align-items:center; font-size:14px;}
.skill-track{height:8px; background:var(--cream-dim); border-radius:100px; overflow:hidden;}
.skill-fill{height:100%; background:linear-gradient(90deg, var(--orange), var(--orange-deep)); border-radius:100px;}

@media (max-width:880px){
  .about-split{grid-template-columns:1fr; gap:40px;}
  .about-photo{max-width:320px; margin:0 auto;}
  .skill-row{grid-template-columns:120px 1fr;}
}

/* ---------- Project / case study cards ---------- */
.projects-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
}
.project-card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--cream);
  transition:transform .3s ease, box-shadow .3s ease;
}
.project-card:hover{transform:translateY(-6px); box-shadow:0 20px 44px rgba(17,21,28,0.12);}
.project-top{
  background:var(--ink);
  color:var(--cream);
  padding:30px 28px 24px;
}
.project-top .eyebrow{color:var(--orange);}
.project-top h3{font-size:23px; margin-top:10px;}
.project-metrics{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--line);
}
.pm-cell{
  background:var(--cream);
  padding:20px 16px;
  text-align:center;
}
.pm-num{font-family:var(--font-mono); font-weight:700; font-size:21px; color:var(--orange-deep);}
.pm-num.mint{color:var(--mint);}
.pm-label{font-size:11.5px; color:var(--slate); margin-top:4px;}
.project-body{padding:24px 28px 28px;}
.project-body p{color:var(--slate); font-size:14.5px; margin-bottom:16px;}
.project-tags{display:flex; gap:8px; flex-wrap:wrap;}
.project-tags span{
  font-family:var(--font-mono);
  font-size:11px;
  background:var(--cream-dim);
  padding:5px 11px;
  border-radius:100px;
}
@media (max-width:760px){
  .projects-grid{grid-template-columns:1fr;}
}

/* ---------- Testimonials ---------- */
.testi-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.testi-card{
  background:var(--cream);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:30px 26px;
}
.testi-card .quote-mark{font-size:38px; margin-bottom:6px;}
.testi-card p{font-size:14.5px; color:var(--ink-soft); margin-bottom:20px; line-height:1.55;}
.testi-person{display:flex; align-items:center; gap:12px;}
.testi-avatar{
  width:42px;height:42px;
  border-radius:50%;
  background:var(--ink);
  color:var(--cream);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-mono);
  font-size:13px;
  font-weight:700;
}
.testi-name{font-weight:700; font-size:14px;}
.testi-role{font-size:12.5px; color:var(--slate);}
@media (max-width:900px){.testi-grid{grid-template-columns:1fr;}}

/* ---------- CTA band ---------- */
.cta-band{
  background:var(--ink);
  border-radius:28px;
  padding:64px 56px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.cta-band::before{
  content:"";
  position:absolute;
  width:480px;height:480px;
  background:var(--orange);
  border-radius:50%;
  opacity:0.22;
  top:-220px;
  right:-160px;
  filter:blur(20px);
}
.cta-band h2{color:var(--cream); font-size:clamp(28px,4vw,44px); margin-bottom:16px;}
.cta-band p{color:rgba(247,245,240,0.68); font-size:16px; margin-bottom:32px; max-width:480px; margin-left:auto; margin-right:auto;}
.cta-band .btn-row{display:flex; gap:14px; justify-content:center; flex-wrap:wrap;}

/* ---------- Footer ---------- */
footer{
  background:var(--ink);
  color:rgba(247,245,240,0.7);
  padding:64px 0 28px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:40px;
  padding-bottom:44px;
  border-bottom:1px solid var(--line-light);
}
.footer-brand .logo{color:var(--cream);}
.footer-brand p{margin-top:14px; font-size:14px; max-width:280px; color:rgba(247,245,240,0.55);}
.footer-col h4{
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--cream);
  margin-bottom:16px;
  font-weight:600;
}
.footer-col ul{display:flex; flex-direction:column; gap:10px;}
.footer-col a{font-size:14.5px; transition:color .2s;}
.footer-col a:hover{color:var(--orange);}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:24px;
  font-size:13px;
  flex-wrap:wrap;
  gap:12px;
}
.footer-social{display:flex; gap:10px;}
.footer-social a{
  width:36px;height:36px;
  border-radius:50%;
  background:rgba(247,245,240,0.08);
  display:flex;align-items:center;justify-content:center;
  transition:background .2s;
}
.footer-social a:hover{background:var(--orange);}

@media (max-width:880px){
  .footer-grid{grid-template-columns:1fr 1fr; row-gap:32px;}
}
@media (max-width:560px){
  .footer-grid{grid-template-columns:1fr;}
}

/* ---------- Page header (non-home pages) ---------- */
.page-header{
  padding:64px 0 70px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.page-header .hero-grid-bg{opacity:0.4;}
.page-header h1{font-size:clamp(34px,5vw,56px); margin-top:14px;}
.page-header p{color:var(--slate); margin-top:16px; max-width:520px; margin-left:auto; margin-right:auto;}
.breadcrumb{
  font-family:var(--font-mono);
  font-size:12.5px;
  color:var(--slate);
  margin-top:20px;
}
.breadcrumb .accent{color:var(--orange-deep); font-weight:600;}

/* ---------- Contact page ---------- */
.contact-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:50px;
}
.contact-info-card{
  background:var(--ink);
  color:var(--cream);
  border-radius:var(--radius);
  padding:40px 34px;
}
.contact-info-card h3{font-size:24px; margin-bottom:8px;}
.contact-info-card p{color:rgba(247,245,240,0.65); font-size:14.5px; margin-bottom:30px;}
.contact-row{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:16px 0;
  border-top:1px solid var(--line-light);
}
.contact-row:first-of-type{border-top:none;}
.contact-icon{
  width:38px;height:38px;
  border-radius:50%;
  background:rgba(255,77,28,0.16);
  color:var(--orange);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.contact-row .label{font-size:12px; color:rgba(247,245,240,0.5); margin-bottom:3px; font-family:var(--font-mono); letter-spacing:0.04em; text-transform:uppercase;}
.contact-row .value{font-size:15px; font-weight:600;}

.contact-form{
  background:var(--cream);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:38px;
}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:18px;}
.form-group{display:flex; flex-direction:column; gap:8px; margin-bottom:18px;}
.form-group label{font-size:13px; font-weight:600; color:var(--ink-soft);}
.form-group input, .form-group select, .form-group textarea{
  font-family:var(--font-body);
  font-size:14.5px;
  padding:13px 16px;
  border:1.5px solid var(--line);
  border-radius:var(--radius-sm);
  background:#fff;
  color:var(--ink);
  transition:border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus{
  outline:none;
  border-color:var(--orange);
}
.form-group textarea{resize:vertical; min-height:120px;}
.form-submit{width:100%; justify-content:center; margin-top:8px;}
.form-note{font-size:12.5px; color:var(--slate); margin-top:14px; text-align:center;}

@media (max-width:880px){
  .contact-grid{grid-template-columns:1fr;}
  .form-row{grid-template-columns:1fr;}
}

/* ---------- Mobile nav ---------- */
@media (max-width:980px){
  .nav-links{
    position:fixed;
    top:74px;
    left:0;right:0;
    background:var(--cream);
    flex-direction:column;
    align-items:flex-start;
    padding:24px 32px;
    gap:20px;
    border-bottom:1px solid var(--line);
    transform:translateY(-12px);
    opacity:0;
    pointer-events:none;
    transition:transform .25s ease, opacity .25s ease;
  }
  .nav-links.open{
    transform:translateY(0);
    opacity:1;
    pointer-events:auto;
  }
  .nav-cta{display:none;}
  .nav-links .nav-cta-mobile{display:inline-flex; margin-top:8px;}
  .nav-toggle{display:flex;}
}

/* ---------- Reveal-on-scroll ---------- */
.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.in{opacity:1; transform:translateY(0);}

/* ---------- Utility ---------- */
.flex-between{display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;}
.mt-64{margin-top:64px;}

/* Custom Cursor */
@media (hover: hover) and (pointer: fine) {
  * {
    cursor: none !important;
  }
  .custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    pointer-events: none;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    will-change: transform;
  }
  body:hover .custom-cursor {
    display: flex;
  }
  .spin-ring {
    animation: saturn-spin 6s linear infinite;
  }
  @keyframes saturn-spin {
    100% { transform: rotate(360deg); }
  }
}
