/* ==========================================================================
   Custom Crafted Ads — Core Stylesheet
   ========================================================================== */

:root{
  --bg: #F6F0E8;
  --surface: #FFFDF8;
  --accent: #C49A6C;
  --accent-soft: #DCC3A0;
  --ink: #1F1F1F;
  --muted: #6E6257;
  --hairline: #E4D9C7;
  --dark: #141210;
  --dark-surface: #1D1A16;

  --display: 'Times New Roman', Times, serif;
  --body: 'Times New Roman', Times, serif;

  --container: 1280px;
  --gutter: clamp(24px, 6vw, 96px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html{
  scroll-behavior: auto;
}

html.has-lenis{
  overflow: hidden;
}

body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: default;
}

h1,h2,h3,h4{
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
  margin: 0;
}

p{ margin:0; }

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

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

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.eyebrow{
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before{
  content:'';
  width: 22px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

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

section{ position: relative; }

/* ==========================================================================
   Grain / noise texture overlay
   ========================================================================== */
.grain{
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Cursor spotlight (signature element)
   ========================================================================== */
.spotlight{
  position: fixed;
  top:0; left:0;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(196,154,108,0.16) 0%, rgba(196,154,108,0.05) 40%, rgba(196,154,108,0) 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  will-change: transform;
}
.spotlight.is-active{ opacity: 1; }

@media (max-width: 900px){
  .spotlight{ display:none; }
}

/* ==========================================================================
   Loader
   ========================================================================== */
.loader{
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
}
.loader__mark{
  font-family: var(--display);
  font-size: clamp(20px, 3.4vw, 30px);
  letter-spacing: 0;
  color: var(--ink);
  overflow: hidden;
}
.loader__mark span{ display:inline-block; }
.loader__bar{
  width: 220px;
  height: 1px;
  background: var(--hairline);
  position: relative;
  overflow: hidden;
}
.loader__bar::after{
  content:'';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}
.loader.is-loading .loader__bar::after{
  animation: loaderfill 1.4s var(--ease) forwards;
}
@keyframes loaderfill{ to{ transform: scaleX(1); } }

/* ==========================================================================
   Scroll progress bar
   ========================================================================== */
.progress-bar{
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 200;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 26px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled{
  padding: 16px 0;
  background: rgba(246,240,232,0.82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--hairline);
}
.nav__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo{
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}
.nav__logo em{
  font-style: normal;
  color: var(--accent);
}
.nav__links{
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav__links a{
  position: relative;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 4px;
  color: var(--ink);
}
.nav__links a::after{
  content:'';
  position: absolute;
  left:0; bottom:0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav__links a:hover::after,
.nav__links a.active::after{
  transform: scaleX(1);
  transform-origin: left;
}
.nav__links a.active{ color: var(--accent); }

.nav__cta{
  font-size: 13px;
  font-weight: 600;
  padding: 12px 24px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  letter-spacing: 0.01em;
}

.nav__burger{
  display:none;
  width: 26px;
  height: 18px;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.nav__burger span{
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), top 0.4s var(--ease);
}
.nav__burger span:nth-child(1){ top: 0; }
.nav__burger span:nth-child(2){ top: 8px; }
.nav__burger span:nth-child(3){ top: 16px; }
.nav__burger.is-open span:nth-child(1){ top: 8px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2){ opacity: 0; }
.nav__burger.is-open span:nth-child(3){ top: 8px; transform: rotate(-45deg); }

.mobile-menu{
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: circle(0px at 92% 4%);
  transition: clip-path 0.7s var(--ease);
  pointer-events: none;
}
.mobile-menu.is-open{
  clip-path: circle(150% at 92% 4%);
  pointer-events: all;
}
.mobile-menu__links{
  list-style: none;
  padding:0; margin:0;
  text-align: center;
}
.mobile-menu__links li{ overflow: hidden; margin-bottom: 6px; }
.mobile-menu__links a{
  display: block;
  font-family: var(--display);
  font-size: clamp(26px, 6vw, 40px);
  color: var(--surface);
  padding: 8px 0;
  transform: translateY(110%);
}
.mobile-menu.is-open .mobile-menu__links a{
  animation: menuin 0.7s var(--ease) forwards;
}

@keyframes menuin{ to{ transform: translateY(0); } }

@media (max-width: 900px){
  .nav__links, .nav__cta{ display: none; }
  .nav__burger{ display: block; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 16px 32px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary{
  background: var(--ink);
  color: var(--surface);
}
.btn-primary::before{
  content:'';
  position: absolute;
  inset:0;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
  z-index: -1;
}
.btn-primary:hover::before{ transform: translateY(0); }

.btn-ghost{
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost::before{
  content:'';
  position: absolute;
  inset:0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
  z-index: -1;
}
.btn-ghost:hover::before{ transform: translateY(0); }
.btn-ghost:hover{ color: var(--surface); }

.btn-row{ display:flex; gap: 18px; flex-wrap: wrap; }

.magnetic{ display: inline-block; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero__shapes{
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero__blob{
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}
.hero__blob--a{
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
  top: -120px; right: -80px;
}
.hero__blob--b{
  width: 360px; height: 360px;
  background: radial-gradient(circle, #EADFCB, transparent 70%);
  bottom: -100px; left: -60px;
}
.hero__eyebrow{ margin-bottom: 28px; }
.hero__headline{
  font-size: clamp(30px, 4.6vw, 60px);
  max-width: 18ch;
}
.hero__headline .word{ display:inline-block; overflow: hidden; }
.hero__headline .word span{ display:inline-block; transform: translateY(115%); }
.hero__headline .accent-word{ color: var(--accent); font-style: italic; }
.hero__sub{
  margin-top: 24px;
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--muted);
  max-width: 44ch;
  line-height: 1.6;
}
.hero__actions{ margin-top: 48px; }
.hero__meta{
  margin-top: 90px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
  font-size: 13px;
  color: var(--muted);
}
.hero__scroll{
  display:flex; align-items:center; gap:10px;
}
.hero__scroll-line{
  width: 1px; height: 34px;
  background: var(--muted);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after{
  content:'';
  position: absolute;
  top:-100%; left:0; right:0;
  height: 100%;
  background: var(--accent);
  animation: scrollline 1.8s ease-in-out infinite;
}
@keyframes scrollline{
  0%{ top: -100%; } 50%{ top: 0; } 100%{ top: 100%; }
}

/* ==========================================================================
   Section headers
   ========================================================================== */
.section-head{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.section-head h2{
  font-size: clamp(24px, 2.8vw, 38px);
  max-width: 16ch;
}
.section-head p{
  max-width: 34ch;
  color: var(--muted);
  font-size: 15px;
  padding-bottom: 6px;
  line-height: 1.6;
}

.pad-section{ padding: 130px 0; }
.pad-section-sm{ padding: 90px 0; }

/* ==========================================================================
   Stats
   ========================================================================== */
.stats{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.stat{
  padding: 48px 28px;
  border-right: 1px solid var(--hairline);
}
.stat:last-child{ border-right: none; }
.stat__num{
  font-family: var(--display);
  font-size: clamp(26px, 2.8vw, 38px);
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat__label{
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

@media (max-width: 800px){
  .stats{ grid-template-columns: 1fr; }
  .stat{ border-right: none; border-bottom: 1px solid var(--hairline); }
  .stat:last-child{ border-bottom: none; }
}

/* ==========================================================================
   Cards — services / features
   ========================================================================== */
.card-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.card-grid--2{ grid-template-columns: repeat(2,1fr); }

.service-card{
  background: var(--surface);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  transition: background 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card:hover{ background: var(--bg); }
.service-card__index{
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.service-card__icon{
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.service-card:hover .service-card__icon{
  transform: rotate(-10deg) scale(1.08);
  border-color: var(--accent);
}
.service-card__icon svg{ width: 22px; height: 22px; stroke: var(--ink); }
.service-card h3{
  font-size: 19px;
  font-weight: 700;
}
.service-card p{
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.service-card__link{
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}
.service-card__link svg{
  width: 14px; height: 14px;
  transition: transform 0.4s var(--ease);
}
.service-card:hover .service-card__link svg{ transform: translateX(5px); }

@media (max-width: 980px){
  .card-grid{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px){
  .card-grid, .card-grid--2{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   Why choose us / features
   ========================================================================== */
.feature-list{
  display: flex;
  flex-direction: column;
}
.feature-row{
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 36px 0;
  border-top: 1px solid var(--hairline);
}
.feature-row:last-child{ border-bottom: 1px solid var(--hairline); }
.feature-row__num{
  font-family: var(--display);
  color: var(--accent-soft);
  font-size: 20px;
}
.feature-row h3{ font-size: 20px; font-weight: 700; }
.feature-row p{ color: var(--muted); font-size: 15px; max-width: 44ch; }

@media (max-width: 760px){
  .feature-row{ grid-template-columns: 1fr; gap: 12px; }
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band{
  background: var(--dark);
  color: var(--surface);
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2{
  color: var(--surface);
  font-size: clamp(24px, 3.4vw, 42px);
  max-width: 18ch;
  margin: 0 auto;
}
.cta-band .eyebrow{ justify-content: center; color: var(--accent-soft); }
.cta-band .eyebrow::before{ background: var(--accent-soft); }
.cta-band__actions{
  margin-top: 44px;
  display: flex;
  justify-content: center;
}
.cta-band .btn-primary{
  background: var(--accent);
  color: var(--dark);
}
.cta-band .btn-primary::before{ background: var(--surface); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer{
  background: var(--dark);
  color: var(--surface);
  padding-top: 90px;
}
.footer__top{
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.footer__brand{ max-width: 380px; }
.footer__logo{
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
}
.footer__logo em{ font-style:normal; color: var(--accent); }
.footer__tagline{
  margin-top: 16px;
  color: rgba(255,255,255,0.55);
  font-size: 15px;
}
.footer__cols{ display: flex; gap: 90px; flex-wrap: wrap; }
.footer__col h4{
  font-family: var(--body);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 22px;
  font-weight: 600;
}
.footer__col ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:14px; }
.footer__col a{
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.footer__col a:hover{ color: var(--surface); padding-left: 4px; }
.footer__bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0 40px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 16px;
}
.footer__socials{ display: flex; gap: 22px; }
.footer__socials a{ color: rgba(255,255,255,0.55); font-size: 13px; letter-spacing: 0.03em; }
.footer__socials a:hover{ color: var(--accent-soft); }

@media (max-width: 700px){
  .footer__top{ flex-direction: column; gap: 50px; }
  .footer__cols{ gap: 50px; }
}

/* ==========================================================================
   Page header (interior pages)
   ========================================================================== */
.page-header{
  padding: 190px 0 90px;
  border-bottom: 1px solid var(--hairline);
}
.page-header h1{
  font-size: clamp(28px, 3.6vw, 48px);
  max-width: 16ch;
}
.page-header p{
  margin-top: 22px;
  max-width: 50ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.breadcrumb{
  margin-bottom: 22px;
  font-size: 13px;
  color: var(--muted);
  display:flex; gap:8px; align-items:center;
}
.breadcrumb span{ color: var(--accent); }

/* ==========================================================================
   Alternating story blocks (About)
   ========================================================================== */
.story-block{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 0;
  border-bottom: 1px solid var(--hairline);
}
.story-block:nth-child(even) .story-block__media{ order: 2; }
.story-block__media{
  aspect-ratio: 4/5;
  background: linear-gradient(150deg, var(--accent-soft), var(--surface));
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.story-block__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story-block__tag{
  position: absolute;
  bottom: 24px; left: 24px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--surface);
  background: rgba(20,18,16,0.55);
  padding: 8px 14px;
  border-radius: 999px;
}
.story-block h2{ font-size: clamp(22px, 2.2vw, 30px); margin-bottom: 20px; }
.story-block p{ color: var(--muted); font-size: 15px; line-height: 1.75; margin-bottom: 18px; }

@media (max-width: 860px){
  .story-block{ grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
  .story-block:nth-child(even) .story-block__media{ order: 0; }
}

/* ==========================================================================
   Industries
   ========================================================================== */
.industry-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.industry-card{
  background: var(--surface);
  border: 1px solid var(--hairline);
  padding: 44px 32px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.industry-card__num{
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--display);
  font-size: 14px;
  color: var(--hairline);
}
.industry-card h3{
  font-size: 20px;
  font-weight: 700;
  transition: transform 0.5s var(--ease), color 0.4s var(--ease);
}
.industry-card p{ color: var(--muted); font-size: 14px; }
.industry-card:hover h3{ transform: translateX(6px); color: var(--accent); }
.industry-card::before{
  content:'';
  position: absolute;
  left:0; bottom:0;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.industry-card:hover::before{ transform: scaleX(1); }

@media (max-width: 980px){ .industry-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .industry-grid{ grid-template-columns: 1fr; } }

/* ==========================================================================
   Process timeline
   ========================================================================== */
.timeline{ position: relative; }
.timeline__line{
  position: absolute;
  left: 60px; top: 0; bottom: 0;
  width: 1px;
  background: var(--hairline);
}
.timeline__fill{
  position: absolute;
  left: 60px; top: 0;
  width: 1px;
  height: 0%;
  background: var(--accent);
}
.timeline-step{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 50px;
  padding: 60px 0;
  position: relative;
}
.timeline-step__num{
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
  position: relative;
}
.timeline-step__num::before{
  content:'';
  position: absolute;
  left: 56px; top: 6px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--accent);
}
.timeline-step__body h3{ font-size: 22px; margin-bottom: 12px; }
.timeline-step__body p{ color: var(--muted); font-size: 15px; max-width: 56ch; line-height: 1.7; }

@media (max-width: 700px){
  .timeline__line, .timeline__fill{ left: 8px; }
  .timeline-step{ grid-template-columns: 1fr; gap: 18px; padding-left: 40px; }
  .timeline-step__num::before{ left: -34px; top: 8px; }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-slider{
  position: relative;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 80px 0;
  overflow: hidden;
}
.testimonial-track{
  display: flex;
}
.testimonial{
  min-width: 100%;
  padding: 0 4px;
}
.testimonial blockquote{
  font-family: var(--display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  max-width: 30ch;
  line-height: 1.45;
  margin: 0 0 28px;
}
.testimonial cite{
  font-style: normal;
  font-size: 14px;
  color: var(--muted);
  display: block;
}
.testimonial cite b{ color: var(--ink); display:block; font-size:15px; margin-bottom: 4px;}
.testimonial-dots{
  display: flex;
  gap: 10px;
  margin-top: 40px;
}
.testimonial-dots button{
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.testimonial-dots button.is-active{ background: var(--ink); }

/* ==========================================================================
   Contact cards
   ========================================================================== */
.contact-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card{
  background: var(--surface);
  border: 1px solid var(--hairline);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-card__role{
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.contact-card h3{ font-size: 22px; }
.contact-card__phone{
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--muted);
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  font-family: var(--body);
  width: fit-content;
  position: relative;
}
.contact-card__phone .copy-tip{
  position: absolute;
  left: 0; top: -28px;
  font-size: 11px;
  background: var(--ink);
  color: var(--surface);
  padding: 4px 8px;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  pointer-events: none;
}
.contact-card__phone.is-copied .copy-tip{ opacity: 1; transform: translateY(0); }
.contact-card__actions{ display: flex; gap: 12px; margin-top: auto; }
.contact-card__actions .btn{ padding: 12px 20px; font-size: 13px; flex:1; }

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

.insta-band{
  padding: 110px 0;
  text-align: center;
}
.insta-link{
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 3vw, 34px);
  margin-top: 20px;
  position: relative;
}
.insta-link::after{
  content:'';
  position: absolute;
  left:0; bottom: -6px;
  height: 2px; width: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.insta-link:hover::after{ transform: scaleX(1); }

/* ==========================================================================
   Reveal utility (JS-driven via GSAP, base state here)
   ========================================================================== */
.reveal{ opacity: 0; }
.js-split-line{ overflow: hidden; }

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