/* =========================================================
   Touring Talkie Storys — Cinematic Landing Page Stylesheet
   ========================================================= */

:root{
  --black: #0a0908;
  --charcoal: #14110f;
  --charcoal-2: #1c1916;
  --offwhite: #f5efe6;
  --beige: #d9c9a8;
  --beige-muted: #b8a883;
  --gold: #d4a44a;
  --gold-bright: #e9be63;
  --sunset: #e07a3b;
  --sunset-deep: #b85a26;
  --text: #ece5d8;
  --text-muted: #a89e8e;
  --border: rgba(217, 201, 168, 0.14);
  --shadow-lg: 0 30px 80px rgba(0,0,0,0.5);
  --radius: 14px;
  --container: 1240px;

  --font-display: 'Playfair Display', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
}

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

::selection{ background: var(--gold); color: var(--black); }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== Loader ===== */
.loader{
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.loader.hidden{ opacity:0; visibility: hidden; pointer-events: none; }
.loader-inner{ text-align: center; }
.loader-brand{
  display:block;
  font-family: var(--font-display);
  letter-spacing: .35em;
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 22px;
  font-weight: 600;
}
.loader-bar{
  width: 220px; height: 2px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
  margin: 0 auto;
}
.loader-bar-fill{
  width: 30%; height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--sunset));
  animation: load 1.4s ease-in-out infinite;
}
@keyframes load{
  0%{ transform: translateX(-100%);}
  100%{ transform: translateX(400%);}
}

/* ===== Navbar ===== */
.navbar{
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all .35s ease;
  background: linear-gradient(180deg, rgba(10,9,8,0.55), transparent);
  backdrop-filter: blur(0px);
}
.navbar.scrolled{
  padding: 14px 0;
  background: rgba(10,9,8,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-logo{
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  letter-spacing: .02em;
}
.logo-mark{
  width: 40px; height: 40px;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .04em;
  font-size: 14px;
  border-radius: 50%;
  transition: all .3s ease;
}
.nav-logo:hover .logo-mark{ background: var(--gold); color: var(--black); }
.logo-text{ color: var(--offwhite); }
.logo-text em{ color: var(--gold); font-style: italic; font-weight: 500; }

.nav-links{
  display: flex; align-items: center; gap: 34px;
}
.nav-links a{
  font-size: 14px; font-weight: 500;
  color: var(--text);
  letter-spacing: .02em;
  position: relative;
  padding: 6px 0;
  transition: color .25s;
}
.nav-links a::after{
  content:''; position: absolute; left:0; bottom:0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s ease;
}
.nav-links a:hover{ color: var(--gold); }
.nav-links a:hover::after{ width: 100%; }
.nav-cta{
  padding: 10px 22px !important;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  border-radius: 50px;
  transition: all .3s ease;
}
.nav-cta::after{ display: none !important; }
.nav-cta:hover{ background: var(--gold); color: var(--black) !important; }

.nav-toggle{
  display: none;
  background: none; border: none;
  cursor: pointer;
  width: 32px; height: 26px;
  flex-direction: column; justify-content: space-between;
}
.nav-toggle span{
  display: block; height: 2px;
  background: var(--offwhite);
  width: 100%;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.active span:nth-child(1){ transform: translateY(11px) rotate(45deg); }
.nav-toggle.active span:nth-child(2){ opacity: 0; }
.nav-toggle.active span:nth-child(3){ transform: translateY(-11px) rotate(-45deg); }

/* ===== Buttons ===== */
.btn{
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 30px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all .35s cubic-bezier(.2,.7,.3,1.2);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn.small{ padding: 12px 22px; font-size: 12px; }
.btn.large{ padding: 18px 34px; font-size: 14px; }
.btn-primary{
  background: linear-gradient(135deg, var(--gold), var(--sunset));
  color: var(--black);
  box-shadow: 0 14px 40px rgba(212,164,74,0.3);
}
.btn-primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(224,122,59,0.45);
}
.btn-ghost{
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.25);
  color: var(--offwhite);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover{
  background: var(--offwhite);
  color: var(--black);
  border-color: var(--offwhite);
}
.btn-outline{
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline:hover{
  background: var(--gold);
  color: var(--black);
}

/* ===== HERO ===== */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 140px 0 80px;
}
.hero-media{ position: absolute; inset: 0; z-index: 0; }
.hero-media img{
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom{ to { transform: scale(1.15); } }
.hero-overlay{
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(224,122,59,0.18), transparent 60%),
    linear-gradient(180deg, rgba(10,9,8,0.6) 0%, rgba(10,9,8,0.75) 60%, rgba(10,9,8,0.95) 100%);
}
.hero-grain{
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.35'/></svg>");
  opacity: .12; mix-blend-mode: overlay;
  pointer-events: none;
}
.hero-content{
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  text-align: left;
  max-width: 920px;
}
.eyebrow{
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 16px;
  border: 1px solid rgba(212,164,74,0.4);
  border-radius: 50px;
  margin-bottom: 28px;
}
.hero-title{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6.4vw, 5.6rem);
  line-height: 1.04;
  letter-spacing: -.02em;
  color: var(--offwhite);
  margin-bottom: 28px;
}
.hero-title em{
  font-style: italic;
  font-weight: 400;
  color: var(--beige);
}
.hero-title .gold{
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
  position: relative;
  display: inline-block;
}
.hero-title .gold::after{
  content: '';
  position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero-subtitle{
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.7;
  color: var(--text);
  max-width: 680px;
  margin-bottom: 42px;
  font-weight: 400;
}
.hero-ctas{ display: flex; flex-wrap: wrap; gap: 16px; }

.hero-scroll{
  position: absolute;
  bottom: 90px; right: 40px;
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--beige);
  writing-mode: vertical-rl;
}
.scroll-line{
  width: 1px; height: 70px;
  background: linear-gradient(180deg, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after{
  content:''; position: absolute; top:0; left:0;
  width: 100%; height: 30%;
  background: var(--offwhite);
  animation: scrollMove 2.2s ease-in-out infinite;
}
@keyframes scrollMove{
  0%{ transform: translateY(-100%);}
  100%{ transform: translateY(330%);}
}

.hero-marquee{
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  background: rgba(10,9,8,0.55);
  backdrop-filter: blur(8px);
  overflow: hidden;
  z-index: 2;
}
.marquee-track{
  display: flex; gap: 36px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--beige);
  font-size: 18px;
}
.marquee-track span{ flex-shrink: 0; }
.marquee-track i{ color: var(--gold); font-style: normal; }
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ===== Section base ===== */
.section{
  padding: 120px 0;
  position: relative;
}
.section.dark{
  background: var(--charcoal);
}
.section-eyebrow{
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 22px;
}
.section-eyebrow.centered{ justify-content: center; display: flex; }
.section-eyebrow.light{ color: var(--gold-bright); }
.section-title{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -.015em;
  color: var(--offwhite);
  margin-bottom: 22px;
}
.section-title.centered{ text-align: center; }
.gold-italic{
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  font-family: var(--font-display);
}
.section-sub{
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}
.section-sub.centered{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head{ margin-bottom: 70px; }

/* ===== ABOUT ===== */
.about{ background: var(--black); }
.about-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual{ position: relative; }
.about-img-wrap{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img{
  width: 100%; height: 560px;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.about-img-wrap:hover img{ transform: scale(1.05); }
.about-img-wrap::after{
  content:''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,9,8,0.5));
}
.about-badge{
  position: absolute;
  bottom: 28px; left: 28px;
  background: rgba(10,9,8,0.85);
  border: 1px solid var(--gold);
  backdrop-filter: blur(10px);
  padding: 20px 24px;
  border-radius: 12px;
  display: flex; align-items: center; gap: 16px;
  z-index: 2;
}
.badge-num{
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.badge-text{
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--offwhite);
  line-height: 1.5;
}
.about-img-secondary{
  position: absolute;
  right: -30px; bottom: -40px;
  width: 200px; height: 240px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--black);
  box-shadow: var(--shadow-lg);
}
.about-img-secondary img{ width:100%; height: 100%; object-fit: cover; }

.about-content .lead{
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 18px;
}
.about-content .lead strong{ color: var(--gold); font-weight: 600; }
.about-content .muted{ color: var(--text-muted); margin-bottom: 32px; font-size: 1.02rem; }

.about-pillars{
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.about-pillars li{
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all .3s ease;
}
.about-pillars li:hover{
  background: rgba(212,164,74,0.08);
  border-color: rgba(212,164,74,0.3);
  transform: translateX(4px);
}
.about-pillars i{
  color: var(--gold);
  font-size: 18px;
  width: 22px; text-align: center;
}
.about-pillars span{ font-size: 14px; color: var(--text); font-weight: 500; }

/* ===== SERVICES ===== */
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card{
  position: relative;
  padding: 44px 32px 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .5s cubic-bezier(.2,.7,.3,1);
}
.service-card::before{
  content:''; position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-100%);
  transition: transform .6s ease;
}
.service-card:hover{
  transform: translateY(-8px);
  background: linear-gradient(180deg, rgba(212,164,74,0.07), rgba(255,255,255,0.01));
  border-color: rgba(212,164,74,0.35);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.service-card:hover::before{ transform: translateX(0); }
.service-card.featured{
  background: linear-gradient(180deg, rgba(224,122,59,0.12), rgba(212,164,74,0.04));
  border-color: rgba(224,122,59,0.3);
}
.service-icon{
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212,164,74,0.18), rgba(224,122,59,0.1));
  border: 1px solid rgba(212,164,74,0.3);
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 26px;
  transition: all .4s ease;
}
.service-card:hover .service-icon{
  transform: rotate(-8deg) scale(1.05);
  background: var(--gold);
  color: var(--black);
}
.service-card h3{
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--offwhite);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card p{
  font-size: .96rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.service-num{
  position: absolute;
  top: 26px; right: 30px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  opacity: .55;
  letter-spacing: .1em;
}
.cta-card{
  display: flex; flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--sunset) 100%) !important;
  border: none !important;
  text-align: left;
}
.cta-card h3{ color: var(--black); }
.cta-card p{ color: rgba(10,9,8,0.75); margin-bottom: 22px; }
.cta-card .btn-primary{
  background: var(--black);
  color: var(--gold);
  box-shadow: none;
  align-self: flex-start;
}
.cta-card .btn-primary:hover{ background: var(--charcoal); }

/* ===== PORTFOLIO ===== */
.portfolio{ background: var(--black); }
.portfolio-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 24px;
}
.port-card{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  display: block;
  isolation: isolate;
}
.port-card.tall{ grid-row: span 2; }
.port-card img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1), filter .6s ease;
  filter: grayscale(15%) brightness(.85);
}
.port-card:hover img{
  transform: scale(1.08);
  filter: grayscale(0) brightness(1);
}
.port-overlay{
  position: absolute; inset: 0;
  padding: 28px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(180deg, rgba(10,9,8,0.0) 30%, rgba(10,9,8,0.92) 100%);
  transition: background .4s ease;
}
.port-card:hover .port-overlay{
  background: linear-gradient(180deg, rgba(10,9,8,0.2) 0%, rgba(10,9,8,0.95) 100%);
}
.port-tag{
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 14px;
  border: 1px solid rgba(212,164,74,0.5);
  border-radius: 50px;
  background: rgba(10,9,8,0.6);
  backdrop-filter: blur(6px);
  margin-bottom: 14px;
}
.port-card h3{
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--offwhite);
  margin-bottom: 8px;
  line-height: 1.25;
}
.port-card p{
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--beige-muted);
  line-height: 1.5;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .5s ease, opacity .5s ease, margin .5s ease;
}
.port-card:hover p{
  max-height: 80px;
  opacity: 1;
  margin-bottom: 12px;
}
.port-link{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s ease;
}
.port-card:hover .port-link{ opacity: 1; transform: translateY(0); }

/* ===== INDUSTRIES ===== */
.industries-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.industry-item{
  display: flex; align-items: center; gap: 18px;
  padding: 26px 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.0));
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all .4s ease;
  cursor: default;
}
.industry-item:hover{
  background: linear-gradient(135deg, rgba(212,164,74,0.12), rgba(224,122,59,0.04));
  border-color: rgba(212,164,74,0.4);
  transform: translateY(-4px);
}
.industry-item i{
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(212,164,74,0.12);
  color: var(--gold);
  font-size: 18px;
  transition: all .4s ease;
}
.industry-item:hover i{
  background: var(--gold); color: var(--black);
  transform: rotate(360deg);
}
.industry-item span{
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--offwhite);
  font-weight: 500;
}

/* ===== WHY US ===== */
.why{ background: var(--black); }
.why-grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.why-intro .btn{ margin-top: 28px; }
.why-cards{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.why-card{
  padding: 36px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .4s ease;
  position: relative;
}
.why-card:nth-child(even){ transform: translateY(40px); }
.why-card:hover{
  border-color: rgba(212,164,74,0.35);
  background: linear-gradient(180deg, rgba(212,164,74,0.08), rgba(255,255,255,0.01));
}
.why-icon{
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--sunset));
  color: var(--black);
  font-size: 22px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(212,164,74,0.25);
}
.why-card h3{
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--offwhite);
  margin-bottom: 12px;
  line-height: 1.3;
}
.why-card p{
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonial-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 70px;
}
.t-card{
  position: relative;
  padding: 44px 34px 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.005));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .4s ease;
}
.t-card:hover{
  transform: translateY(-6px);
  border-color: rgba(212,164,74,0.35);
}
.t-card.highlight{
  background: linear-gradient(180deg, rgba(212,164,74,0.1), rgba(224,122,59,0.04));
  border-color: rgba(212,164,74,0.35);
}
.t-quote{
  position: absolute;
  top: 26px; right: 30px;
  font-size: 38px;
  color: var(--gold);
  opacity: .25;
}
.t-card blockquote{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--offwhite);
  margin-bottom: 28px;
  font-weight: 400;
}
.t-card figcaption{
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.t-avatar{
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--sunset));
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--black);
  font-size: 18px;
}
.t-card figcaption strong{
  display: block;
  color: var(--offwhite);
  font-size: .95rem;
  font-weight: 600;
}
.t-card figcaption span{
  font-size: .82rem;
  color: var(--text-muted);
  letter-spacing: .05em;
}

.trust-strip{
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--beige);
  font-size: 18px;
}
.trust-strip i{ color: var(--gold); font-style: normal; font-size: 12px; }

/* ===== CTA ===== */
.cta-section{
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  text-align: center;
}
.cta-bg{ position: absolute; inset: 0; z-index: 0; }
.cta-bg img{
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
}
.cta-overlay{
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(224,122,59,0.25), transparent 60%),
    linear-gradient(180deg, rgba(10,9,8,0.85), rgba(10,9,8,0.95));
}
.cta-content{
  position: relative; z-index: 2;
  max-width: 900px;
}
.cta-title{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--offwhite);
  margin-bottom: 20px;
  letter-spacing: -.015em;
}
.cta-sub{
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--beige);
  margin-bottom: 42px;
  line-height: 1.6;
}
.cta-actions{
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer{
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
  padding: 100px 0 0;
  border-top: 1px solid var(--border);
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 60px;
  padding-bottom: 70px;
}
.footer-logo{ margin-bottom: 22px; }
.footer-tag{
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 320px;
}
.founder-card{
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 340px;
}
.founder-avatar{
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--sunset));
  color: var(--black);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
}
.founder-card strong{
  display: block;
  color: var(--offwhite);
  font-size: .98rem;
}
.founder-card span{
  font-size: .82rem;
  color: var(--text-muted);
}

.footer-col h4{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 22px;
  letter-spacing: .02em;
}
.footer-col ul{ list-style: none; }
.footer-col li{
  margin-bottom: 12px;
  font-size: .95rem;
  color: var(--text-muted);
}
.footer-col li a{
  transition: color .25s, padding-left .25s;
}
.footer-col li a:hover{ color: var(--gold); padding-left: 4px; }
.footer-contact li{
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.5;
}
.footer-contact i{ color: var(--gold); margin-top: 4px; }

.social-icons{
  display: flex; gap: 10px;
  margin-top: 22px;
}
.social-icons a{
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--text-muted);
  transition: all .3s ease;
}
.social-icons a:hover{
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

.footer-bottom{
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.footer-bottom-inner{
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: .85rem;
  color: var(--text-muted);
}
.footer-credit{ font-family: var(--font-serif); font-style: italic; }

/* ===== Floating WhatsApp ===== */
.float-whatsapp{
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  font-size: 26px;
  box-shadow: 0 14px 35px rgba(37,211,102,0.45);
  z-index: 90;
  transition: transform .3s ease;
  animation: pulse 2.4s ease-in-out infinite;
}
.float-whatsapp:hover{ transform: scale(1.08); }
@keyframes pulse{
  0%, 100%{ box-shadow: 0 14px 35px rgba(37,211,102,0.45); }
  50%{ box-shadow: 0 14px 35px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0.0); }
}

/* ===== Reveal animations ===== */
[data-reveal]{
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.2,.7,.3,1), transform .9s cubic-bezier(.2,.7,.3,1);
}
[data-reveal].in{
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px){
  .about-grid, .why-grid{ grid-template-columns: 1fr; gap: 60px; }
  .about-img-secondary{ display: none; }
  .services-grid, .portfolio-grid, .industries-grid, .testimonial-grid, .why-cards{
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-grid{ grid-auto-rows: 240px; }
  .port-card.tall{ grid-row: span 1; }
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 50px; }
  .why-card:nth-child(even){ transform: none; }
}

@media (max-width: 768px){
  .section{ padding: 80px 0; }
  .section-head{ margin-bottom: 50px; }
  .nav-links{
    position: fixed;
    top: 0; right: 0;
    width: 80%; max-width: 320px;
    height: 100vh;
    background: var(--charcoal);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 40px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform .4s ease;
    border-left: 1px solid var(--border);
  }
  .nav-links.open{ transform: translateX(0); }
  .nav-links a{ font-size: 18px; }
  .nav-toggle{ display: flex; }

  .hero{ padding: 120px 0 100px; }
  .hero-scroll{ display: none; }
  .hero-marquee{ font-size: 14px; }
  .marquee-track{ font-size: 14px; gap: 24px; }

  .services-grid, .portfolio-grid, .industries-grid, .testimonial-grid, .why-cards, .about-pillars{
    grid-template-columns: 1fr;
  }
  .portfolio-grid{ grid-auto-rows: 280px; }
  .port-card p{ max-height: 70px; opacity: 1; margin-bottom: 10px; }
  .port-link{ opacity: 1; transform: translateY(0); }

  .footer-grid{ grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom-inner{ flex-direction: column; text-align: center; }

  .about-img-wrap img{ height: 420px; }
  .hero-ctas{ flex-direction: column; align-items: flex-start; }
  .btn{ width: auto; }

  .cta-actions{ flex-direction: column; align-items: stretch; }
  .cta-actions .btn{ justify-content: center; }

  .float-whatsapp{
    bottom: 20px; right: 20px;
    width: 50px; height: 50px;
    font-size: 22px;
  }
}

@media (max-width: 480px){
  .container, .nav-container, .hero-content{ padding: 0 20px; }
  .hero-title{ font-size: 2.4rem; }
  .section-title{ font-size: 1.9rem; }
  .logo-text{ font-size: 16px; }
}
