/* ═══════════════════════════════════════════════════
   THARANI CRAFT — Light Theme
   Colours derived from logo:
     Teal    : #0078A0  (primary)
     Orange  : #DC7828  (accent)
     Yellow  : #F0DC00  (highlight)
   No black banners — light, airy, modern
═══════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Barlow+Condensed:wght@700;800&display=swap');

:root {
  /* ── Logo palette ───────────────────────── */
  --teal:        #0078A0;   /* logo blue-teal */
  --teal-light:  #E6F4F9;   /* very light teal wash */
  --teal-mid:    #C2E2EE;
  --teal-dark:   #005A78;
  --orange:      #DC7828;   /* logo orange */
  --orange-light:#FEF0E3;
  --orange-dark: #B55C10;
  --yellow:      #F0DC00;   /* logo yellow */

  /* ── Neutrals (all LIGHT) ────────────────  */
  --white:       #FFFFFF;
  --off:         #F7FAFB;   /* barely-blue white */
  --cream:       #EFF7FA;   /* teal-tinted cream  */
  --sand:        #E2EFF5;

  /* ── Text ────────────────────────────────  */
  --dark:        #1C2E35;   /* very dark teal-grey, NOT pure black */
  --mid:         #4A6472;
  --light:       #7A98A6;

  /* ── UI ──────────────────────────────────  */
  --border:      #C8DFE8;
  --nav-h:       76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ─────────────────────────────────── */
.serif { font-family: 'Playfair Display', Georgia, serif; }
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
}
p, li { letter-spacing: 0.01em; }

/* ══════════════════════════════════════════════════
   NAV — white background, teal accents
══════════════════════════════════════════════════ */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#site-nav.scrolled { box-shadow: 0 2px 24px rgba(0,120,160,.12); }
.nav-logo img { height: 46px; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--mid); text-decoration: none; font-weight: 600;
  font-family: 'Inter', sans-serif;
  position: relative; padding-bottom: 3px; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 100%;
  height: 2px; background: var(--teal); transition: right .25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-cta {
  background: var(--orange) !important; color: #fff !important;
  padding: .55rem 1.6rem !important; border-radius: 4px;
  letter-spacing: .08em !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--orange-dark) !important; color: #fff !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); transition: all .3s; }
.mob-menu {
  display: none; position: fixed; inset: 0; background: var(--white);
  z-index: 190; padding: calc(var(--nav-h) + 2rem) 2rem 2rem;
  flex-direction: column; gap: 1.5rem;
}
.mob-menu.open { display: flex; }
.mob-menu a { font-size: 1.6rem; font-family: 'Playfair Display', serif; color: var(--dark); text-decoration: none; }

/* ══════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════ */
.btn {
  display: inline-block; font-family: 'Inter', sans-serif;
  font-size: .76rem; letter-spacing: .15em; text-transform: uppercase;
  font-weight: 700; cursor: pointer; text-decoration: none;
  border: none; transition: all .22s; padding: .9rem 2.4rem; border-radius: 4px;
}
.btn-gold    { background: var(--orange); color: #fff; }
.btn-gold:hover  { background: var(--orange-dark); }
.btn-teal    { background: var(--teal); color: #fff; }
.btn-teal:hover  { background: var(--teal-dark); }
.btn-dark    { background: var(--teal); color: #fff; }
.btn-dark:hover  { background: var(--teal-dark); }
.btn-outline { background: transparent; border: 2px solid var(--teal); color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-outline-white { background: transparent; border: 2px solid rgba(255,255,255,.8); color: #fff; }
.btn-outline-white:hover { background: #fff; color: var(--teal); }

/* ══════════════════════════════════════════════════
   SECTION HELPERS
══════════════════════════════════════════════════ */
.section    { padding: 7rem 2rem; }
.section-sm { padding: 4rem 2rem; }
.wrap    { max-width: 1240px; margin: 0 auto; }
.wrap-md { max-width: 960px;  margin: 0 auto; }

.sec-tag {
  font-size: .68rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--orange); font-weight: 700; font-family: 'Inter', sans-serif;
  margin-bottom: .9rem; display: block;
}
.sec-title { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1.2rem; color: var(--dark); font-weight: 500; }
.sec-sub   { font-size: 1rem; color: var(--mid); line-height: 1.8; max-width: 560px; }
.rule      { width: 48px; height: 3px; background: var(--orange); margin: 1.2rem 0 2rem; border-radius: 2px; }

/* ══════════════════════════════════════════════════
   HERO SLIDER
══════════════════════════════════════════════════ */
.hero-slider { position: relative; height: 100vh; min-height: 560px; overflow: hidden; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s ease; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,40,60,.72) 0%, rgba(0,60,90,.3) 55%, transparent 100%);
}
.slide-content {
  position: absolute; top: 50%; left: 8%;
  transform: translateY(-50%); color: #fff; max-width: 640px;
}
.slide-tag {
  font-size: .7rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--yellow); font-family: 'Inter', sans-serif; font-weight: 700; margin-bottom: 1.2rem;
}
.slide-title {
  font-size: clamp(2.4rem, 5.5vw, 5rem); font-family: 'Playfair Display', serif;
  font-weight: 500; line-height: 1.05; margin-bottom: 1.4rem; color: #fff;
}
.slide-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.8); line-height: 1.75;
  margin-bottom: 2.2rem; font-family: 'Inter', sans-serif; font-weight: 300;
}
.slider-controls { position: absolute; bottom: 2.5rem; left: 8%; display: flex; align-items: center; gap: 1rem; }
.slider-dot { width: 28px; height: 3px; background: rgba(255,255,255,.35); cursor: pointer; transition: all .3s; border-radius: 2px; }
.slider-dot.active { background: var(--yellow); width: 52px; }
.slider-arrows { position: absolute; right: 4%; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 1rem; }
.slider-arr {
  width: 48px; height: 48px; border: 2px solid rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #fff; transition: all .2s; background: transparent; font-size: 1.2rem; border-radius: 4px;
}
.slider-arr:hover { background: var(--teal); border-color: var(--teal); }

/* ══════════════════════════════════════════════════
   STATS BAND — LIGHT TEAL (replaces black banner)
══════════════════════════════════════════════════ */
.stats-band { background: var(--teal); padding: 0 2rem; }
.stats-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; /* no gap — dividers via border */
}
.stat-block {
  background: transparent;
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.18);
  transition: background .25s;
}
.stat-block:last-child { border-right: none; }
.stat-block:hover { background: rgba(255,255,255,.08); }

/* ── BIG NUMBERS — Barlow Condensed, clean & bold ─ */
.stat-n {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: .02em;
}
/* accent under number */
.stat-n-wrap { position: relative; display: inline-block; }
.stat-n-wrap::after {
  content: '';
  display: block;
  width: 32px; height: 3px;
  background: var(--yellow);
  margin: .55rem auto 0;
  border-radius: 2px;
}
.stat-l {
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.7); margin-top: .5rem;
  font-family: 'Inter', sans-serif; font-weight: 500;
}

/* ══════════════════════════════════════════════════
   CATEGORY BLOCKS
══════════════════════════════════════════════════ */
.cat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; background: var(--sand); }
.cat-block { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 3/4; background: var(--cream); }
.cat-block img { width:100%; height:100%; object-fit:cover; transition: transform .6s ease; display: block; }
.cat-block:hover img { transform: scale(1.06); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,50,70,.85) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem 1.5rem;
}
/* teal top-accent bar */
.cat-block::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--teal); z-index: 2;
  transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.cat-block:hover::before { transform: scaleX(1); }
.cat-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: #fff; margin-bottom: .3rem; font-weight: 500; }
.cat-count { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.65); font-family: 'Inter', sans-serif; }

/* ══════════════════════════════════════════════════
   PRODUCT GRID
══════════════════════════════════════════════════ */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 3px; background: var(--sand); }
.prod-card { background: var(--white); overflow: hidden; transition: box-shadow .3s; }
.prod-card:hover { box-shadow: 0 8px 32px rgba(0,120,160,.12); z-index: 1; position: relative; }
.prod-img-wrap { overflow: hidden; aspect-ratio: 4/3; }
.prod-img-wrap img { width:100%; height:100%; object-fit:cover; transition: transform .5s; display:block; }
.prod-card:hover .prod-img-wrap img { transform: scale(1.05); }
.prod-info { padding: 1.4rem 1.6rem; border-top: 2px solid var(--teal-light); }
.prod-cat { font-size: .63rem; letter-spacing: .18em; text-transform: uppercase; color: var(--teal); margin-bottom: .3rem; font-family: 'Inter', sans-serif; font-weight: 700; }
.prod-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--dark); font-weight: 500; }
.prod-desc { font-size: .8rem; color: var(--light); margin-top: .3rem; }

/* ══════════════════════════════════════════════════
   FILTER TABS
══════════════════════════════════════════════════ */
.filter-bar { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.5rem; }
.f-tab {
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  padding: .55rem 1.4rem; border: 2px solid var(--border);
  background: transparent; cursor: pointer;
  font-family: 'Inter', sans-serif; font-weight: 600;
  color: var(--mid); transition: all .2s; text-decoration: none; display: inline-block; border-radius: 4px;
}
.f-tab:hover, .f-tab.active { background: var(--teal); color: #fff; border-color: var(--teal); }

/* ══════════════════════════════════════════════════
   ABOUT SPLIT — light bg
══════════════════════════════════════════════════ */
.about-split { display: grid; grid-template-columns: 1fr 1fr; }
.about-img { height: 600px; object-fit: cover; width: 100%; display: block; }
.about-content {
  padding: 5rem 4rem; background: var(--off);
  display: flex; flex-direction: column; justify-content: center;
}
.value-row { display: flex; gap: 1rem; margin-bottom: 1.8rem; align-items: flex-start; }
.value-num {
  font-family: 'Playfair Display', serif; font-size: 2rem;
  color: var(--teal); min-width: 44px; line-height: 1; font-weight: 700;
}
.value-text h4 { font-size: .9rem; font-weight: 700; letter-spacing: .04em; margin-bottom: .25rem; color: var(--dark); }
.value-text p  { font-size: .85rem; color: var(--mid); line-height: 1.6; }

/* ══════════════════════════════════════════════════
   PROJECT GRID
══════════════════════════════════════════════════ */
.project-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; background: var(--sand); }
.proj-card { position: relative; overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.proj-card.tall { grid-row: span 2; aspect-ratio: unset; }
.proj-card img { width:100%; height:100%; object-fit:cover; transition: transform .6s; display:block; }
.proj-card:hover img { transform: scale(1.07); }
.proj-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0); transition: background .3s;
  display: flex; align-items: flex-end; padding: 1.5rem;
}
.proj-card:hover .proj-overlay { background: rgba(0,50,70,.65); }
.proj-label { color: #fff; opacity: 0; transform: translateY(8px); transition: all .3s; }
.proj-card:hover .proj-label { opacity: 1; transform: translateY(0); }
.proj-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 500; }
.proj-cat { font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: var(--yellow); margin-top: .2rem; font-family: 'Inter', sans-serif; }

/* ══════════════════════════════════════════════════
   TESTIMONIALS — light teal bg
══════════════════════════════════════════════════ */
.testi-slider { overflow: hidden; position: relative; }
.testi-track  { display: flex; transition: transform .5s ease; }
.testi-slide  { min-width: 100%; padding: 0 1rem; }
.testi-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,120,160,.08);
  padding: 3rem; max-width: 800px; margin: 0 auto; text-align: center;
  border-radius: 8px;
}
.testi-quote {
  font-family: 'Playfair Display', serif; font-size: 4rem;
  color: var(--teal); line-height: .5; display: block; margin-bottom: 1.5rem;
}
.testi-text {
  font-size: 1.05rem; color: var(--mid); line-height: 1.8;
  font-style: italic; font-family: 'Playfair Display', serif; margin-bottom: 2rem;
}
.testi-author { font-weight: 700; font-size: .9rem; font-family: 'Inter', sans-serif; color: var(--dark); }
.testi-role   { font-size: .7rem; color: var(--teal); letter-spacing: .1em; text-transform: uppercase; margin-top: .2rem; font-family: 'Inter', sans-serif; }
.testi-dots   { display: flex; justify-content: center; gap: .6rem; margin-top: 2rem; }
.testi-dot    { width: 8px; height: 8px; border-radius: 50%; background: var(--sand); cursor: pointer; transition: background .2s; }
.testi-dot.active { background: var(--teal); }

/* ══════════════════════════════════════════════════
   CONTACT — light split (replaces black left panel)
══════════════════════════════════════════════════ */
.contact-split { display: grid; grid-template-columns: 1fr 1fr; }

/* left panel: teal gradient instead of black */
.contact-left {
  background: linear-gradient(140deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 5rem 4rem; color: #fff; position: relative; overflow: hidden;
}
.contact-left::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(240,220,0,.12);   /* yellow glow */
}
.contact-left::after {
  content: '';
  position: absolute; bottom: -80px; left: -40px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}

.contact-right { background: var(--off); padding: 5rem 4rem; }

.c-label {
  display: block; font-size: .68rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--mid);
  margin-bottom: .45rem; font-family: 'Inter', sans-serif; font-weight: 600;
}
.c-input {
  width: 100%; padding: .85rem 1rem;
  border: 1.5px solid var(--border);
  background: var(--white); font-family: 'Inter', sans-serif;
  font-size: .9rem; color: var(--dark); outline: none;
  transition: border-color .2s; border-radius: 4px;
}
.c-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,120,160,.1); }
textarea.c-input { min-height: 130px; resize: vertical; }

.ci-row { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 2rem; }
.ci-ic {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; border-radius: 4px;
}

/* ══════════════════════════════════════════════════
   FOOTER — dark teal (not black)
══════════════════════════════════════════════════ */
#site-footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,.55);
  padding: 3.5rem 2rem 2rem;
}
.footer-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.5rem;
}
.footer-logo  { height: 42px; margin-bottom: 1.2rem; display: block; }
.footer-about { font-size: .85rem; line-height: 1.7; }
.footer-head  {
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.75); margin-bottom: 1rem; font-weight: 700;
  font-family: 'Inter', sans-serif;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1240px; margin: 0 auto;
  flex-wrap: wrap; gap: 1rem; font-size: .8rem;
}

/* ══════════════════════════════════════════════════
   CTA BAND — light teal wash
══════════════════════════════════════════════════ */
.cta-band { background: var(--cream); padding: 5rem 2rem; text-align: center; }

/* ══════════════════════════════════════════════════
   PROCESS STEPS
══════════════════════════════════════════════════ */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 2.5rem; }
.step  { text-align: center; padding: 2rem 1.5rem; background: var(--white); border-radius: 8px; border: 1.5px solid var(--border); transition: box-shadow .3s, border-color .3s; }
.step:hover { box-shadow: 0 8px 28px rgba(0,120,160,.1); border-color: var(--teal); }
.step-n    { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--teal); opacity: .4; line-height: 1; }
.step-title { font-weight: 700; font-size: .9rem; margin: .4rem 0; font-family: 'Inter', sans-serif; color: var(--dark); }
.step-desc  { font-size: .82rem; color: var(--mid); line-height: 1.6; }

/* ══════════════════════════════════════════════════
   UTILITY
══════════════════════════════════════════════════ */
.bg-off   { background: var(--off); }
.bg-cream { background: var(--cream); }
.bg-dark  { background: var(--teal-dark); color: #fff; }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media(max-width:1024px) {
  .cat-grid    { grid-template-columns: repeat(2,1fr); }
  .steps       { grid-template-columns: repeat(2,1fr); }
  .footer-inner{ grid-template-columns: 1fr 1fr; }
}
@media(max-width:768px) {
  .nav-links   { display: none; }
  .hamburger   { display: flex; }
  .about-split, .contact-split { grid-template-columns: 1fr; }
  .about-img   { height: 320px; }
  .contact-left,.contact-right,.about-content { padding: 3rem 2rem; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .project-grid{ grid-template-columns: 1fr 1fr; }
  .proj-card.tall { grid-row: span 1; aspect-ratio: 1; }
  .section     { padding: 4.5rem 1.5rem; }
  .slide-content { left: 5%; right: 5%; }
  #site-nav    { padding: 0 1.5rem; }
}
@media(max-width:560px) {
  .cat-grid    { grid-template-columns: 1fr 1fr; }
  .cat-block   { aspect-ratio: 1; }
  .steps       { grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr; }
  .stat-n      { font-size: 2.8rem; }
}
