:root {
  --dark: #1f2937;
  --orange: #f4623a;
  --teal: #0f766e;
  --cream: #fdf6ec;
  --white: #ffffff;
  --ph-bg: #e5e7eb;
  --ph-border: #9ca3af;
  --ph-text: #6b7280;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--white);
  color: var(--dark);
  font-family: 'Montserrat', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Montserrat', system-ui, sans-serif; font-weight: 800; letter-spacing: -0.01em; margin: 0; }

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--teal); }
::selection { background: var(--orange); color: var(--cream); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

.accent-text { color: var(--orange); }

/* Scroll-reveal: JS toggles .is-visible via IntersectionObserver as each
   element enters the viewport (see bhatia-arts-v2.js). Kept above the
   section-specific hover rules below so hover always wins the cascade once
   an element has already revealed (equal specificity, later rule wins). */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 18px 34px;
  border: 2.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--dark); color: var(--cream); }
.btn-outline { border-color: var(--dark); color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: #fff; }
.btn-sm { padding: 15px 26px; font-size: 13.5px; }
.btn .icon { width: 18px; height: 18px; }
.arrow { font-size: 16px; }

.placeholder-img {
  background: var(--ph-bg);
  color: var(--ph-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-img svg { width: 30%; height: 30%; max-width: 64px; max-height: 64px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--dark);
  border-bottom: 4px solid var(--orange);
}
.header-inner {
  padding: 12px 24px 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.logo { display: flex; align-items: center; gap: 14px; color: var(--cream); }
.logo-img { height: 52px; width: auto; display: block; }
.logo-img--footer { height: 28px; }
.logo-tagline { font-size: 14px; font-style: italic; color: rgba(253,246,236,0.6); }
.main-nav { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; justify-content: flex-end; font-size: 15.5px; font-weight: 600; letter-spacing: 0.03em; }
.main-nav > a:not(.btn) { color: var(--cream); }

.nav-toggle { display: none; background: none; border: 0; color: var(--cream); padding: 6px; cursor: pointer; }
.nav-toggle svg { width: 26px; height: 26px; display: block; }

/* Below 900px the hero stacks to one column (see .hero-inner), so the nav
   collapses into a toggled panel at the same breakpoint rather than wrapping
   onto a second header row and eating the viewport. */
@media (max-width: 900px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 8px;
  }
  .main-nav.is-open { display: flex; }
  .main-nav > a:not(.btn) { padding: 14px 4px; border-top: 1px solid rgba(253,246,236,0.14); }
  .main-nav > a.btn { margin-top: 14px; justify-content: center; }
}
@media (max-width: 560px) {
  .logo-tagline { display: none; }
}

/* Hero
   Cards are SKEWED (top/bottom edges stay horizontal, sides slant) rather than
   rotated, so the whole collage shares one consistent lean. */
.hero {
  --slant: -11deg;
  --unslant: 11deg;
  background: var(--white);
  border-bottom: 1px solid rgba(31,41,55,0.10);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 76px);
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.shape { position: absolute; border-radius: 30px; transform: skewX(var(--slant)); }
.shape--teal { top: -26px; right: 1%; width: 36%; height: 62%; background: var(--teal); }
.shape--orange { bottom: -70px; right: -110px; width: 17%; height: 40%; background: var(--orange); }

.hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
}
.hero-content {
  padding: 40px clamp(24px, 3.5vw, 60px) 24px clamp(24px, 5.2vw, 88px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid rgba(31,41,55,0.18);
  color: var(--dark);
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.hero-title {
  font-size: clamp(34px, 4.1vw, 68px);
  line-height: 0.95;
  margin: 0 0 30px;
}
.accent-rule {
  display: block;
  width: 78px;
  height: 5px;
  background: var(--orange);
  margin-top: 16px;
}

.hero-sub {
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1.6;
  color: rgba(31,41,55,0.72);
  max-width: 42ch;
  margin: 0 0 32px;
  font-weight: 500;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Hero visual: big card behind, three cards in front, all sharing one skew */
.hero-visual { position: relative; align-self: stretch; min-height: 620px; }

.hero-billboard {
  position: absolute;
  top: 8%;
  left: 1%;
  right: 0;
  height: 70%;
  border-radius: 22px;
  overflow: hidden;
  border: 7px solid var(--white);
  transform: skewX(var(--slant));
  box-shadow: 0 24px 44px rgba(31,41,55,0.14);
}
.hero-billboard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* undo the frame's skew so the photo itself renders straight */
  transform: skewX(var(--unslant)) scale(1.25);
  transform-origin: center;
  /* shared color grade so photos pulled from different sources (real
     photography + generated shots) read as one consistent set */
  filter: saturate(1.08) contrast(1.05) brightness(1.02);
}

.hero-strip {
  position: absolute;
  left: 9%;
  right: 6%;
  bottom: 5%;
  height: 36%;
  display: flex;
  gap: 3.5%;
}
.hero-strip-item {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  border: 7px solid var(--white);
  transform: skewX(var(--slant));
  box-shadow: 0 16px 28px rgba(31,41,55,0.16);
}
.hero-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* undo the frame's skew so the photo itself renders straight */
  transform: skewX(var(--unslant)) scale(1.25);
  transform-origin: center;
  filter: saturate(1.08) contrast(1.05) brightness(1.02);
}

/* Bottom row: stats bar and quote box side by side */
.hero-bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 50%) minmax(0, 520px);
  gap: 20px;
  padding: 0 24px 40px clamp(24px, 5.2vw, 88px);
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  background: var(--teal);
  color: var(--cream);
  border-radius: 12px;
  padding: 24px 26px;
}
.stat { display: flex; align-items: center; gap: 14px; }
.stat + .stat { border-left: 1px solid rgba(253,246,236,0.22); padding-left: 22px; }
.stat-icon { width: 32px; height: 32px; flex-shrink: 0; }
.stat strong { display: block; font-size: clamp(18px, 1.5vw, 24px); font-weight: 800; line-height: 1; margin-bottom: 5px; }
.stat span { font-size: 12.5px; line-height: 1.3; color: rgba(253,246,236,0.85); }

.quote-box {
  background: #e6efed;
  padding: 20px 34px 20px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-radius: 12px;
  /* slanted right edge, matching the card skew */
  clip-path: polygon(0 0, 100% 0, calc(100% - 26px) 100%, 0 100%);
}
.quote-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote-icon svg { width: 26px; height: 26px; }
.quote-box p { margin: 0; font-size: 15px; line-height: 1.5; color: var(--dark); }
.quote-box strong { color: var(--teal); }
.quote-rule { display: block; width: 34px; height: 3px; background: var(--teal); margin-top: 10px; }

@media (max-width: 1100px) {
  .hero-visual { min-height: 520px; }
}
@media (max-width: 900px) {
  /* the skewed parallelogram frames read fine on the wide desktop hero, but
     cramped into a single mobile column they just look like clipped, tilted
     photos — drop the skew entirely here for plain rounded-rect photos. */
  .hero { --slant: 0deg; --unslant: 0deg; min-height: 0; }
  /* shapes are positioned against the whole hero, which is much taller once
     the columns stack — they'd cut across the copy, so drop them here */
  .hero-bg { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-content { padding: 48px 24px 0; }
  /* the desktop version absolutely-positions the billboard and strip so
     they overlap into one cascading collage — cramped onto one mobile
     column that just reads as photos stacked on top of each other, so
     switch both back to plain static flow: landscape photo, then the
     three portrait photos in a row underneath, no white photo-stack
     border on either (matches the flat reference layout). */
  .hero-visual { position: static; min-height: 0; margin-top: 32px; padding: 0 24px; }
  .hero-billboard {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border: 0;
  }
  .hero-strip {
    position: static;
    height: auto;
    margin-top: 14px;
    gap: 12px;
  }
  .hero-strip-item {
    aspect-ratio: 3/4;
    border: 0;
  }
  .hero-bottom { grid-template-columns: 1fr; padding: 32px 24px 40px; }
  .quote-box { clip-path: none; }

  /* iOS Safari breaks position:sticky/fixed (header, WhatsApp button) when
     body has non-visible overflow — .hero already clips its own skewed
     bleed locally, so this was only ever needed as a belt-and-suspenders
     guard and is safe to lift on mobile viewports. */
  body { overflow-x: visible; }
}
@media (max-width: 640px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .stat + .stat { border-left: 0; padding-left: 0; }
  .stat:nth-child(even) { border-left: 1px solid rgba(253,246,236,0.22); padding-left: 18px; }
}

/* Ticker */
.ticker { background: var(--dark); color: var(--cream); padding: 0 24px; border-bottom: 4px solid var(--orange); }
.ticker-inner { display: flex; flex-wrap: wrap; gap: 12px 48px; padding: 22px 0; font-size: 13.5px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; }
.sep { color: var(--orange); }

/* Section shared bits */
.eyebrow { display: inline-block; background: var(--dark); color: var(--cream); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; padding: 7px 14px; margin-bottom: 20px; }
.eyebrow--dark { background: var(--teal); margin-bottom: 18px; }
.eyebrow--orange { background: var(--orange); color: #fff; }

.section-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(34px, 3.8vw, 52px); line-height: 1; }
.section-lede { font-size: 16.5px; line-height: 1.6; color: rgba(31,41,55,0.72); max-width: 36ch; margin: 0; font-weight: 500; }
.section-head--dark h2 { font-size: clamp(32px, 3.6vw, 48px); color: var(--cream); }
.section-lede--dark { color: rgba(253,246,236,0.62); max-width: 34ch; }

/* Work */
.work { padding: 92px 24px; background: var(--white); }
.work-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.work-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.work-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(31,41,55,0.18); }
.work-card-img { aspect-ratio: 4/3; margin: 10px 10px 0; overflow: hidden; }
.work-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(1.08) contrast(1.05) brightness(1.02);
  transition: transform 0.5s ease;
}
.work-card:hover .work-card-img img { transform: scale(1.06); }
.work-card-body { padding: 20px 22px 26px; }
.work-card-body h3 { font-size: 21px; margin: 0 0 8px; }
.work-card-body p { margin: 0; font-size: 14.5px; line-height: 1.6; }
.work-card--teal { background: var(--teal); color: var(--cream); }
.work-card--teal p { color: rgba(253,246,236,0.82); }
.work-card--orange { background: var(--orange); color: var(--dark); }
.work-card--orange p { color: rgba(31,41,55,0.82); font-weight: 500; }
.work-card--dark { background: var(--dark); color: var(--cream); }
.work-card--dark p { color: rgba(253,246,236,0.78); }
.work-card--cta {
  background: var(--white);
  border: 4px solid var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 24px;
  min-height: 240px;
}
.work-card--cta h3 { font-size: 26px; line-height: 1.05; }
.work-card--cta p { margin: 0 0 18px; font-size: 15px; line-height: 1.6; color: rgba(31,41,55,0.78); font-weight: 500; }

/* About */
.about { padding: 92px 24px; background: var(--white); border-top: 1px solid rgba(31,41,55,0.10); }
.about-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 64px; align-items: center; }
.about-visual { position: relative; }
.about-shape { position: absolute; inset: auto auto -20px -20px; width: 56%; height: 58%; background: var(--orange); }
.about-img { position: relative; width: 100%; aspect-ratio: 1/1; border: 5px solid var(--dark); overflow: hidden; }
.about-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(1.08) contrast(1.05) brightness(1.02);
  transition: transform 0.5s ease;
}
.about-img:hover img { transform: scale(1.06); }
.about-content h2 { font-size: clamp(32px, 3.6vw, 48px); margin: 0 0 26px; }
.about-content p { font-size: 17.5px; line-height: 1.65; color: rgba(31,41,55,0.75); margin: 0 0 18px; font-weight: 500; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.pill { background: var(--dark); color: var(--cream); padding: 11px 18px; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; }

/* Process */
.process { background: var(--dark); color: var(--cream); padding: 88px 24px; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.process-img { aspect-ratio: 4/5; margin-bottom: 20px; overflow: hidden; border: 4px solid var(--orange); }
.process-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(1.08) contrast(1.05) brightness(1.02);
  transition: transform 0.5s ease;
}
.process-img:hover img { transform: scale(1.06); }
.process-meta { display: flex; align-items: baseline; gap: 10px; margin-bottom: 8px; }
.process-num { color: var(--orange); font-weight: 800; font-size: 15px; letter-spacing: 0.05em; }
.process-title { font-size: 18px; margin: 0; text-transform: uppercase; letter-spacing: 0.03em; }
.process-desc { margin: 0; font-size: 14.5px; line-height: 1.55; color: rgba(253,246,236,0.72); }

/* Reviews */
.reviews { padding: 92px 24px; background: var(--white); }
.reviews-title { font-size: clamp(32px, 3.6vw, 48px); margin: 0 0 44px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 18px; }
.review-card { margin: 0; padding: 30px 26px 26px; display: flex; flex-direction: column; gap: 18px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.review-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(31,41,55,0.18); }
.stars { color: var(--orange); font-size: 16px; letter-spacing: 3px; }
.stars--light { color: var(--cream); }
.stars--dark { color: var(--dark); }
.review-card blockquote { margin: 0; font-size: 17px; line-height: 1.6; }
.review-card figcaption { margin-top: auto; padding-top: 14px; border-top: 2px solid rgba(253,246,236,0.2); font-size: 14px; display: flex; flex-direction: column; }
.review-card figcaption strong { font-size: 15px; margin-bottom: 2px; }
.review-card--dark { background: var(--dark); color: var(--cream); }
.review-card--dark figcaption strong { color: var(--orange); }
.review-card--dark figcaption span { color: rgba(253,246,236,0.68); }
.review-card--teal { background: var(--teal); color: var(--cream); }
.review-card--teal figcaption { border-top-color: rgba(253,246,236,0.25); }
.review-card--teal figcaption span { color: rgba(253,246,236,0.75); }
.review-card--orange { background: var(--orange); color: var(--dark); }
.review-card--orange blockquote { font-weight: 500; }
.review-card--orange figcaption { border-top-color: rgba(31,41,55,0.3); }
.review-card--orange figcaption span { color: rgba(31,41,55,0.75); }

/* Contact */
.contact { padding: 92px 24px; background: var(--white); color: var(--dark); border-top: 1px solid rgba(31,41,55,0.10); }
.contact-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 56px; }
.contact-inner h2 { font-size: clamp(32px, 3.6vw, 48px); margin: 0 0 26px; }
.contact-lede { font-size: 18px; line-height: 1.6; color: rgba(31,41,55,0.72); margin: 0 0 36px; max-width: 44ch; font-weight: 500; }
.contact-list { margin: 0; display: grid; gap: 22px; }
.contact-list dt { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(31,41,55,0.55); margin-bottom: 6px; }
.contact-list dd { margin: 0; font-size: 17.5px; line-height: 1.5; font-weight: 600; }
.contact-list a { color: var(--teal); border-bottom: 2px solid rgba(15,118,110,0.35); }

.contact-map { border: 5px solid var(--dark); min-height: 420px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; display: block; }

/* Footer */
.site-footer { background: var(--dark); color: rgba(253,246,236,0.68); padding: 46px 24px; border-top: 5px solid var(--orange); }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; align-items: center; font-size: 14px; }
@media (min-width: 901px) {
  .logo-img--footer { height: 46px; }
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: block;
  box-shadow: 0 10px 24px rgba(31,41,55,0.35);
  transition: transform 0.15s ease;
}
.whatsapp-float:hover { transform: translateY(-2px); }
.whatsapp-float img { width: 100%; height: 100%; display: block; border-radius: 50%; }
@media (max-width: 640px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

/* these two grids have a 340px column minimum, wider than a 375px phone can
   fit after side padding, which forced them to overflow and clip instead of
   reflowing to a single column. Placed after both base rules so it actually
   wins the cascade at equal specificity. */
@media (max-width: 900px) {
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
}
