/* =============================================================
   TAHSAN DESIGN — style.css
   Brand palette extracted from company poster:
     Primary Green  : #2DB84B
     Deep Blue      : #1E5CB3
     Bold Red       : #E63329
     Warm Orange    : #F5821F
     Charcoal       : #1C1C1C
     Off-White      : #F7F6F2
   ============================================================= */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  --green     : #2DB84B;
  --green-dk  : #1a8a35;
  --blue      : #1E5CB3;
  --blue-dk   : #154285;
  --red       : #E63329;
  --red-dk    : #b01f1a;
  --orange    : #F5821F;
  --orange-dk : #c05e0f;

  --charcoal  : #1C1C1C;
  --charcoal2 : #2e2e2e;
  --mid-grey  : #6B6B6B;
  --light-grey: #E8E8E4;
  --off-white : #F7F6F2;
  --white     : #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body   : 'DM Sans', system-ui, sans-serif;

  --shadow-sm : 0 2px 8px rgba(0,0,0,.08);
  --shadow-md : 0 6px 24px rgba(0,0,0,.12);
  --shadow-lg : 0 16px 48px rgba(0,0,0,.16);

  --radius    : 8px;
  --radius-lg : 16px;

  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);

  --nav-h     : 72px;
  --section-py: clamp(64px, 8vw, 120px);
  --container : 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Utility ──────────────────────────────────────────────── */
.container {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
}

.section { padding-block: var(--section-py); }
.section-alt { background: var(--off-white); }

.section-header { text-align: center; margin-bottom: clamp(40px, 5vw, 72px); }
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--charcoal);
}
.section-title em { font-style: italic; color: var(--green); }
.section-desc {
  margin-top: 16px;
  font-size: 1.05rem;
  color: var(--mid-grey);
  max-width: 520px;
  margin-inline: auto;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--green-dk);
  border-color: var(--green-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,184,75,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 15px 36px; font-size: 1rem; }

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  border-bottom-color: var(--light-grey);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  flex-shrink: 0;
}
.logo-tahsan {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--charcoal);
  letter-spacing: 0.05em;
}
.logo-design {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  background: var(--blue);
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.04em;
}
.logo-reg {
  font-size: 0.55rem;
  color: var(--mid-grey);
  vertical-align: super;
  margin-left: 2px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal2);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--green);
  background: rgba(45,184,75,.08);
}

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cta { padding: 9px 22px; font-size: 0.875rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: 6px;
  transition: var(--transition);
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
  width: 100%;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--light-grey);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 10px 16px;
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--charcoal2);
  transition: var(--transition);
}
.mobile-link:hover { background: var(--off-white); color: var(--green); }
.mobile-cta { margin-top: 8px; text-align: center; justify-content: center; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: url('hero-bg.png') center 40% / cover no-repeat;
  background-color: var(--charcoal);
  padding-top: var(--nav-h);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
  z-index: 1;
}
.hero-stripes { display: none; }

/* Colour stripe background (like the poster) */
.hero-stripes {
  position: absolute;
  inset: 0;
  display: flex;
  pointer-events: none;
}
.stripe {
  flex: 1;
  opacity: 0.18;
}
.stripe-green  { background: var(--green); }
.stripe-blue   { background: var(--blue); }
.stripe-red    { background: var(--red); }
.stripe-orange { background: var(--orange); }

/* Noise texture overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-block: clamp(48px, 8vw, 96px);
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--green);
}
.hero-headline .highlight {
  color: var(--orange);
  position: relative;
}
.hero-headline .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.hero-sub {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; }

/* Hero visual — card stack + badge */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  position: relative;
}

.hero-card-stack {
  display: flex;
  flex-direction: row;
  gap: 12px;
  width: 100%;
  max-width: 380px;
}
.hero-cards-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.hcard {
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transform-origin: left center;
  animation: floatCard 5s ease-in-out infinite;
  text-align: center;
}
.hcard-1 { background: var(--green);  animation-delay: 0s;    transform: rotate(-2deg); }
.hcard-2 { background: var(--blue);   animation-delay: 0.5s;  transform: rotate(1.5deg); }
.hcard-3 { background: var(--red);    animation-delay: 1s;    transform: rotate(-1deg); }
.hcard-4 { background: var(--orange); animation-delay: 1.5s;  transform: rotate(2deg); }
.hcard-5 { background: var(--green-dk); animation-delay: 2s;  transform: rotate(-1.5deg); }
.hcard-6 { background: var(--blue-dk);  animation-delay: 2.5s; transform: rotate(1deg); }
.hcard-7 { background: var(--red-dk);   animation-delay: 3s;  transform: rotate(-2.5deg); }
.hcard-8 { background: var(--orange-dk); animation-delay: 3.5s; transform: rotate(1.5deg); }

@keyframes floatCard {
  0%,100% { transform: translateY(0)   rotate(var(--r, -2deg)); }
  50%      { transform: translateY(-8px) rotate(var(--r, -2deg)); }
}
.hcard-1 { --r: -2deg; }
.hcard-2 { --r: 1.5deg; }
.hcard-3 { --r: -1deg; }
.hcard-4 { --r: 2deg; }
.hcard-5 { --r: -1.5deg; }
.hcard-6 { --r: 1deg; }
.hcard-7 { --r: -2.5deg; }
.hcard-8 { --r: 1.5deg; }

.hero-badge {
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  align-self: flex-end;
  animation: spin-slow 20s linear infinite;
}
.badge-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.badge-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.2;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  display: block;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 20px;
  position: relative;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  animation: scroll-bounce 1.8s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  80%      { transform: translateX(-50%) translateY(16px); opacity: 0; }
}

/* ── TICKER ───────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 14px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.ticker-track .sep { color: var(--green); font-size: 1rem; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── ABOUT ────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-accent-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ab-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  color: var(--white);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.ab-card:hover { transform: translateX(8px); }
.ab-card i { font-size: 1.5rem; flex-shrink: 0; }
.ab-green  { background: var(--green); }
.ab-blue   { background: var(--blue); }
.ab-red    { background: var(--red); }

.about-quote-bubble {
  margin-top: 24px;
  background: var(--charcoal);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--orange);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  box-shadow: var(--shadow-md);
}

.about-text { }
.about-body {
  color: var(--mid-grey);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1;
}
.stat-num sup { font-size: 1.2rem; vertical-align: super; color: var(--green); }
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid-grey);
}

/* ── SERVICES ─────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-grey);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  transition: var(--transition);
}
.service-card[data-color="green"]::before  { background: var(--green); }
.service-card[data-color="blue"]::before   { background: var(--blue); }
.service-card[data-color="red"]::before    { background: var(--red); }
.service-card[data-color="orange"]::before { background: var(--orange); }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card[data-color="green"]:hover  { border-color: rgba(45,184,75,.2); }
.service-card[data-color="blue"]:hover   { border-color: rgba(30,92,179,.2); }
.service-card[data-color="red"]:hover    { border-color: rgba(230,51,41,.2); }
.service-card[data-color="orange"]:hover { border-color: rgba(245,130,31,.2); }

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.service-card[data-color="green"]  .service-icon { background: rgba(45,184,75,.12);  color: var(--green); }
.service-card[data-color="blue"]   .service-icon { background: rgba(30,92,179,.12);  color: var(--blue); }
.service-card[data-color="red"]    .service-icon { background: rgba(230,51,41,.12);  color: var(--red); }
.service-card[data-color="orange"] .service-icon { background: rgba(245,130,31,.12); color: var(--orange); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--mid-grey);
  line-height: 1.65;
}

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--light-grey);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mid-grey);
  transition: var(--transition);
  background: var(--white);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.gallery-item:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); }
.gallery-item.hidden { display: none; }

.gallery-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.gallery-icon {
  font-size: 3.5rem;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.gallery-item:hover .gallery-icon {
  color: rgba(255,255,255,.85);
  transform: scale(1.15);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay p {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.3;
}
.gallery-overlay span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
}

/* ── PROCESS ─────────────────────────────────────────────── */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 32px 24px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--light-grey);
  line-height: 1;
  margin-bottom: -10px;
}
.step-icon {
  width: 64px;
  height: 64px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 16px auto;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.step:hover .step-icon {
  background: var(--green);
  transform: scale(1.1);
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--charcoal);
}
.step p {
  font-size: 0.9rem;
  color: var(--mid-grey);
  line-height: 1.65;
}
.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--green), var(--blue));
  align-self: center;
  flex-shrink: 0;
  margin-bottom: 40px;
}

/* ── CONTACT / FOOTER ─────────────────────────────────────── */
.contact {
  background: var(--charcoal);
  color: var(--white);
  padding-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: clamp(48px, 6vw, 80px);
}

.footer-logo { }
.footer-tagline {
  margin-top: 14px;
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.footer-list li + li { margin-top: 10px; }
.footer-list a {
  color: rgba(255,255,255,.65);
  font-size: 0.92rem;
  transition: var(--transition);
}
.footer-list a:hover { color: var(--green); padding-left: 4px; }

.footer-contact-list { }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: rgba(255,255,255,.65);
}
.footer-contact-list i {
  color: var(--green);
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
}
.footer-contact-list a {
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}
.footer-contact-list a:hover { color: var(--green); }

/* Footer bar */
.footer-bar {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bar p {
  font-size: 0.82rem;
  color: rgba(255,255,255,.35);
}

/* ── BACK TO TOP ─────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: var(--transition);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: var(--green-dk); transform: translateY(-4px); }

/* ── ANIMATIONS (on-scroll reveal) ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid  { grid-template-columns: repeat(3, 1fr); }
  .contact-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-inner     { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual    { align-items: center; }
  .hero-card-stack { max-width: 100%; flex-direction: row; }
  .hcard          { flex: 1; text-align: center; }

  .about-grid     { grid-template-columns: 1fr; }
  .about-visual   { order: -1; }

  .nav-links, .nav-cta { display: none; }
  .hamburger      { display: flex; }

  .gallery-grid   { grid-template-columns: repeat(2, 1fr); }

  .process-steps  { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 40px; background: linear-gradient(to bottom, var(--green), var(--blue)); margin-bottom: 0; }

  .contact-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root { --section-py: 56px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .hero-card-stack { flex-direction: column; }
  .about-stats   { gap: 20px; }
  .footer-bar-inner { justify-content: center; text-align: center; }
  .back-to-top   { bottom: 20px; right: 20px; }
}

@media (max-width: 400px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.2rem; }
}

/* ── Logo image ─────────────────────────────────────────────── */
.logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}
.logo-img-footer {
  height: 56px;
}

/* ── Hero single column layout ──────────────────────────────── */
.hero-inner-single {
  grid-template-columns: 1fr !important;
  max-width: 780px;
  text-align: center;
}
.hero-inner-single .hero-ctas {
  justify-content: center;
}
.btn-order {
  font-size: 1.2rem !important;
  padding: 18px 48px !important;
  box-shadow: 0 0 32px rgba(45,184,75,0.45);
  animation: pulse-glow 2.5s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 32px rgba(45,184,75,0.45); }
  50%      { box-shadow: 0 0 52px rgba(45,184,75,0.75); }
}

/* ── Hero stats ─────────────────────────────────────────────── */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
  gap: 4px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ── Hero 3-col layout ──────────────────────────────────────── */
.hero-inner-3col {
  grid-template-columns: 1fr 1.4fr 1fr !important;
  align-items: center;
  gap: 24px;
}

/* ── Hero logo ──────────────────────────────────────────────── */
.hero-logo-wrap { display: block; margin-bottom: 24px; }
.hero-logo-img {
  max-width: 260px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}

/* ── Tagline above button ───────────────────────────────────── */
.hero-tagline-above {
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
  text-align: center;
}

/* ── Side card columns ──────────────────────────────────────── */
.hero-cards-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-cards-left .hcard  { transform-origin: right center; }
.hero-cards-right .hcard { transform-origin: left center; }

/* ── Card entry animation (slide in one by one) ─────────────── */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px) rotate(var(--r, -2deg)); }
  to   { opacity: 1; transform: translateX(0)     rotate(var(--r, -2deg)); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px) rotate(var(--r, 1.5deg)); }
  to   { opacity: 1; transform: translateX(0)    rotate(var(--r, 1.5deg)); }
}

.hero-cards-left  .hcard-1 { animation: slideInLeft 0.5s 0.2s ease both, floatCard 5s 0.7s ease-in-out infinite; }
.hero-cards-left  .hcard-2 { animation: slideInLeft 0.5s 0.45s ease both, floatCard 5s 0.95s ease-in-out infinite; }
.hero-cards-left  .hcard-3 { animation: slideInLeft 0.5s 0.7s ease both, floatCard 5s 1.2s ease-in-out infinite; }
.hero-cards-left  .hcard-4 { animation: slideInLeft 0.5s 0.95s ease both, floatCard 5s 1.45s ease-in-out infinite; }
.hero-cards-right .hcard-5 { animation: slideInRight 0.5s 0.2s ease both, floatCard 5s 0.7s ease-in-out infinite; }
.hero-cards-right .hcard-6 { animation: slideInRight 0.5s 0.45s ease both, floatCard 5s 0.95s ease-in-out infinite; }
.hero-cards-right .hcard-7 { animation: slideInRight 0.5s 0.7s ease both, floatCard 5s 1.2s ease-in-out infinite; }
.hero-cards-right .hcard-8 { animation: slideInRight 0.5s 0.95s ease both, floatCard 5s 1.45s ease-in-out infinite; }

/* Hide side cards on mobile */
@media (max-width: 768px) {
  .hero-inner-3col { grid-template-columns: 1fr !important; }
  .hero-cards-side { display: none; }
}

/* ── Hero 2-col layout ──────────────────────────────────────── */
.hero-inner-2col {
  grid-template-columns: 1fr 1fr !important;
  align-items: center;
  gap: 48px;
}
.hero-content-left {
  text-align: left !important;
}
.hero-content-left .hero-ctas {
  justify-content: flex-start !important;
}
.hero-content-left .hero-stats {
  justify-content: flex-start !important;
}

/* ── Cycle showcase ─────────────────────────────────────────── */
.hero-cycle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.cycle-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cycle-card {
  background: rgba(255,255,255,0.07);
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  width: 100%;
  max-width: 340px;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.cycle-text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--green);
  text-align: center;
  transition: opacity 0.35s ease, transform 0.35s ease, color 0.35s ease;
}
.cycle-more {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}
.cycle-dots {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 200px;
}
.cdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.3s ease, transform 0.3s ease;
}
.cdot.active {
  background: var(--green);
  transform: scale(1.4);
}

@media (max-width: 768px) {
  .hero-inner-2col { grid-template-columns: 1fr !important; }
  .hero-cycle-wrap { display: none; }
  .hero-content-left { text-align: center !important; }
  .hero-content-left .hero-ctas { justify-content: center !important; }
  .hero-content-left .hero-stats { justify-content: center !important; }
}

/* ── Logo + motto unit ──────────────────────────────────────── */
.hero-logo-unit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero-logo-img {
  max-width: 240px !important;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}
.hero-logo-motto {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  margin-top: 10px;
  letter-spacing: 0.06em;
  padding-left: 2px;
}

/* ── Headline polish ─────────────────────────────────────────── */
.hero-content-left .hero-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem) !important;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-content-left .hero-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin-bottom: 32px;
  border-left: 3px solid var(--green);
  padding-left: 16px;
}

/* ── Buttons polish ──────────────────────────────────────────── */
.btn-order {
  font-size: 1rem !important;
  padding: 14px 36px !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700 !important;
}

/* ── Stats polish ────────────────────────────────────────────── */
.hero-stats {
  margin-top: 36px !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  gap: 0 !important;
  justify-content: flex-start !important;
}
.hero-stat-num {
  font-size: 1.6rem !important;
}
.hero-stat {
  padding: 0 24px 0 0 !important;
}
.hero-stat:first-child {
  padding-left: 0 !important;
}

/* ── Hero logo unit v2 ───────────────────────────────────────── */
.hero-logo-unit {
  margin-bottom: 24px !important;
  padding-bottom: 20px !important;
}
.hero-logo-img {
  max-width: 300px !important;
}
.hero-logo-motto {
  margin-top: 4px !important;
  font-size: 0.82rem !important;
}

/* ── Printing & Packaging tag ───────────────────────────────── */
.hero-print-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 6px 14px;
  margin-bottom: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.hero-print-tag .pt-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
}
.hero-print-tag .pt-dot-g { background: var(--green); }
.hero-print-tag .pt-dot-b { background: var(--blue); }

/* ── Headline font override ──────────────────────────────────── */
.hero-headline {
  font-family: 'Montserrat', 'Playfair Display', Georgia, serif !important;
  font-size: clamp(2.4rem, 4.8vw, 4rem) !important;
  font-weight: 900 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic !important;
  font-weight: 900 !important;
}

/* ── Logo motto tight fix ────────────────────────────────────── */
.hero-logo-unit {
  margin-bottom: 20px !important;
  padding-bottom: 16px !important;
  align-items: flex-start !important;
}
.hero-logo-wrap {
  display: block;
  line-height: 0;
}
.hero-logo-img {
  max-width: 280px !important;
  margin-bottom: 0 !important;
}
.hero-logo-motto {
  margin-top: 2px !important;
  padding-left: 3px;
  font-size: 0.78rem !important;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.4) !important;
  line-height: 1.2;
}

/* ── Logo alignment final fix ───────────────────────────────── */
.hero-logo-unit {
  align-items: flex-start !important;
}
.hero-logo-wrap {
  display: block;
  line-height: 0;
  margin-left: 0;
}
.hero-logo-motto {
  margin-left: 2px !important;
  padding-left: 0 !important;
}

/* ── Zero gap logo/motto ─────────────────────────────────────── */
.hero-logo-unit { gap: 0 !important; margin-bottom: 18px !important; padding-bottom: 14px !important; }
.hero-logo-wrap { display: block; line-height: 1; margin-bottom: -8px !important; }
.hero-logo-img { display: block; max-width: 280px !important; margin-bottom: 0 !important; vertical-align: bottom; }
.hero-logo-motto { margin: 0 !important; padding: 0 !important; line-height: 1 !important; display: block; font-size: 0.76rem !important; }

/* ── FINAL logo motto fix ────────────────────────────────────── */
.hero-logo-wrap { margin-bottom: 0 !important; line-height: 1 !important; }
.hero-logo-img { display: block !important; max-width: 280px !important; margin-bottom: 0 !important; vertical-align: bottom !important; }
.hero-logo-motto { display: block !important; opacity: 1 !important; visibility: visible !important; margin: 4px 0 0 0 !important; padding: 0 !important; font-size: 0.78rem !important; font-style: italic !important; color: rgba(255,255,255,0.5) !important; line-height: 1.3 !important; }

/* ── Motto aligned with green block ─────────────────────────── */
.hero-logo-motto {
  padding-left: calc(280px * 0.021) !important;
}

/* ── Clients strip ───────────────────────────────────────────── */
.clients-section {
  padding: 48px 0;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.clients-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 28px;
}
.clients-track-wrap {
  overflow: hidden;
  position: relative;
}
.clients-track-wrap::before,
.clients-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
}
.clients-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--charcoal), transparent);
}
.clients-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--charcoal), transparent);
}
.clients-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: scrollClients 20s linear infinite;
}
.clients-track:hover {
  animation-play-state: paused;
}
.client-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  border-right: 1px solid rgba(255,255,255,0.07);
  white-space: nowrap;
  transition: color 0.3s ease;
  cursor: default;
  letter-spacing: 0.04em;
}
.client-item:hover {
  color: rgba(255,255,255,0.7);
}
/* When real logos are added */
.client-item img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) brightness(0.6);
  transition: filter 0.3s ease;
}
.client-item:hover img {
  filter: grayscale(0) brightness(1);
}
@keyframes scrollClients {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Clients strip visibility fix ───────────────────────────── */
.clients-section {
  background: rgba(255,255,255,0.04) !important;
  border-top: 1px solid rgba(255,255,255,0.1) !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
  padding: 40px 0 !important;
}
.clients-label {
  color: rgba(255,255,255,0.45) !important;
  margin-bottom: 24px !important;
}
.client-item {
  color: rgba(255,255,255,0.6) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  padding: 0 48px !important;
  border-right: 1px solid rgba(255,255,255,0.1) !important;
}
.client-item:hover {
  color: var(--green) !important;
}

/* ── Clients strip FORCE dark ────────────────────────────────── */
.clients-section {
  background: #1C1C1C !important;
}
.clients-track-wrap::before {
  background: linear-gradient(to right, #1C1C1C, transparent) !important;
}
.clients-track-wrap::after {
  background: linear-gradient(to left, #1C1C1C, transparent) !important;
}
.client-item {
  color: rgba(255,255,255,0.65) !important;
}
