/* ═══════════════════════════════════════════
   CHEF SALIM — exact match to secretingredient.co.in
   Colors: near-black bg, white text, gold #c8971a
═══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@200;300;400;500;600&display=swap');

:root {
  --black:  #0b0b0b;
  --black2: #111;
  --black3: #181818;
  --black4: #222;
  --white:  #ffffff;
  --white2: #dddddd;
  --white3: #999999;
  --gold:   #c8971a;
  --gold2:  #e0ab20;
  --border: rgba(255,255,255,0.09);
}

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

/* ─── LOADER ─── */
#loader {
  position: fixed; inset: 0;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity .6s ease, visibility .6s ease;
}
#loader.done { opacity:0; visibility:hidden; }
.loader-inner {
  font-family: 'Cormorant', serif;
  font-size: 22px; font-style: italic;
  letter-spacing: .25em;
  color: var(--white3);
}

/* ─── NAV ─── */
/* Exact match: thin lowercase logo left, centered links, social icons right */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  padding: 0 48px;
  height: 70px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 100%);
  transition: background .3s;
}
#nav.scrolled {
  background: rgba(11,11,11,0.96);
  backdrop-filter: blur(12px);
}

/* Logo — left, thin lowercase serif */
.nav-logo {
  font-family: 'Cormorant', serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: .04em;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  flex: 1;
}

/* Center links */
.nav-center {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  flex: 2;
  justify-content: center;
}
.nav-center a {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  opacity: .85;
  transition: opacity .2s;
}
.nav-center a:hover, .nav-center a.active { opacity: 1; }

/* Right social icons */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: flex-end;
}
.nav-right a {
  color: var(--white);
  text-decoration: none;
  opacity: .8;
  transition: opacity .2s;
  display: flex; align-items: center;
}
.nav-right a:hover { opacity: 1; }
.nav-right svg { width: 18px; height: 18px; fill: currentColor; }

/* Mobile menu button — hidden on desktop */
.nav-mob-btn {
  display: none;
  background: none; border: none;
  color: var(--white); font-size: 13px;
  font-family: 'Jost', sans-serif;
  font-weight: 400; letter-spacing: .12em;
  text-transform: uppercase; cursor: pointer;
}

/* Mobile overlay */
.mob-overlay {
  position: fixed; inset: 0; top: 70px;
  background: var(--black);
  z-index: 450;
  display: flex; flex-direction: column;
  padding: 60px 40px;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.77,0,.175,1);
}
.mob-overlay.open { transform: translateX(0); }
.mob-menu { list-style: none; }
.mob-menu li { border-bottom: 1px solid var(--border); }
.mob-menu a {
  display: block; padding: 20px 0;
  font-family: 'Cormorant', serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 400;
  color: var(--white2); text-decoration: none;
  transition: color .2s;
}
.mob-menu a:hover, .mob-menu a.active { color: var(--gold); }
.mob-social {
  margin-top: auto; display: flex; gap: 24px;
}
.mob-social a {
  font-size: 12px; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--white3); text-decoration: none;
  transition: color .2s;
}
.mob-social a:hover { color: var(--gold); }

/* ─── HERO ─── */
/* Full-screen image, text bottom-left, arrows on sides */
.hero {
  position: relative;
  width: 100%; height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Dark overlay to make text readable */
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.65) 0%,
    rgba(0,0,0,.25) 45%,
    rgba(0,0,0,.12) 100%
  );
}

/* Bottom-left text */
.hero-caption {
  position: absolute;
  bottom: 60px; left: 60px;
  z-index: 10;
  display: flex; align-items: flex-start; gap: 20px;
  max-width: 820px;
}
.hero-bulb {
  width: 52px; flex-shrink: 0; padding-top: 4px;
}
.hero-bulb svg { width: 48px; height: 48px; }
.hero-text h2 {
  font-family: 'Jost', sans-serif;
  font-size: clamp(26px, 3.8vw, 54px);
  font-weight: 300;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.35;
}

/* Left / Right arrows */
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: none; border: none;
  color: var(--white); font-size: 40px;
  cursor: pointer; opacity: .7;
  padding: 20px; line-height: 1;
  transition: opacity .2s;
}
.hero-arrow:hover { opacity: 1; }
.hero-arrow.prev { left: 12px; }
.hero-arrow.next { right: 12px; }

/* ─── SECTION COMMON ─── */
.section-eyebrow {
  font-size: 11px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.section-title {
  font-family: 'Cormorant', serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15; margin-bottom: 0;
}
.section-title em { font-style: italic; color: var(--white2); }

/* ─── PRESENCE ─── */
.presence {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}
.presence-map-col {
  padding: 80px 60px;
  border-right: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  background: var(--black2);
}
.presence-map-col svg { width: 100%; max-width: 340px; }
.presence-text-col {
  padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.presence-text-col .section-eyebrow { margin-bottom: 16px; }
.presence-big {
  font-family: 'Cormorant', serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 300; font-style: italic;
  color: var(--white); line-height: 1.1;
}

/* ─── STATS ─── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-cell {
  padding: 48px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.stat-cell:last-child { border-right: none; }
.stat-icon { font-size: 26px; line-height: 1; }
.stat-num {
  font-family: 'Cormorant', serif;
  font-size: 44px; font-weight: 300;
  color: var(--white); line-height: 1;
}
.stat-label {
  font-size: 10px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--white3); line-height: 1.4;
}

/* ─── PARTNERS ─── */
.partners-section {
  padding: 80px 60px;
  border-bottom: 1px solid var(--border);
}
.partners-header { margin-bottom: 48px; }
.partner-tabs {
  display: flex; gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px; overflow-x: auto;
}
.ptab {
  background: none; border: none;
  border-bottom: 2px solid transparent;
  padding: 14px 28px; margin-bottom: -1px;
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--white3); cursor: pointer;
  white-space: nowrap; transition: all .25s;
}
.ptab.active, .ptab:hover { color: var(--white); border-bottom-color: var(--gold); }

.partner-grid {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.partner-grid.active { display: grid; }
.partner-cell {
  background: var(--black);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 5px;
  transition: background .2s;
}
.partner-cell:hover { background: var(--black3); }
.partner-cell h4 {
  font-size: 14px; font-weight: 500; color: var(--white2);
}
.partner-cell small {
  font-size: 11px; font-weight: 400;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--white3);
}

/* ─── AWARDS ─── */
.awards-section {
  padding: 80px 60px;
  border-bottom: 1px solid var(--border);
  background: var(--black2);
}
.awards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}
.award-cell {
  background: var(--black2);
  padding: 44px 36px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background .25s;
}
.award-cell:hover { background: var(--black3); }
.award-org {
  font-size: 10px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
}
.award-name {
  font-family: 'Cormorant', serif;
  font-size: 22px; font-weight: 400;
  color: var(--white); line-height: 1.3;
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  padding: 80px 60px;
  border-bottom: 1px solid var(--border);
}
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}
.testi-cell {
  background: var(--black);
  padding: 44px 36px;
  display: flex; flex-direction: column; gap: 20px;
  transition: background .25s;
}
.testi-cell:hover { background: var(--black3); }
.testi-q {
  font-family: 'Cormorant', serif;
  font-size: 52px; line-height: .7;
  color: var(--gold); opacity: .5;
}
.testi-text {
  font-size: 15px; line-height: 1.75;
  color: var(--white2); font-style: italic;
  flex: 1;
}
.testi-author {
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.testi-author strong {
  display: block; font-size: 14px;
  font-weight: 600; color: var(--white);
}
.testi-author span {
  font-size: 12px; color: var(--white3);
  letter-spacing: .06em;
}

/* ─── NEWSROOM ─── */
.news-section {
  padding: 80px 60px;
  border-bottom: 1px solid var(--border);
  background: var(--black2);
}
.news-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}
.news-cell {
  background: var(--black2);
  display: flex; flex-direction: column;
  text-decoration: none;
  transition: background .25s; overflow: hidden;
}
.news-cell:hover { background: var(--black3); }
.news-img {
  height: 230px; overflow: hidden; position: relative;
}
.news-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.news-cell:hover .news-img img { transform: scale(1.04); }
.news-body { padding: 32px 28px; }
.news-date {
  font-size: 11px; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.news-cell h4 {
  font-family: 'Cormorant', serif;
  font-size: 22px; font-weight: 400;
  color: var(--white); line-height: 1.3; margin-bottom: 10px;
}
.news-cell p {
  font-size: 14px; line-height: 1.7; color: var(--white3);
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}
.footer-col {
  padding: 60px 44px;
  border-right: 1px solid var(--border);
}
.footer-col:last-child { border-right: none; }
.footer-logo {
  font-family: 'Cormorant', serif;
  font-size: 20px; font-style: italic; font-weight: 300;
  color: var(--white); margin-bottom: 20px;
}
.footer-col p {
  font-size: 13.5px; line-height: 1.85;
  color: var(--white3); margin-bottom: 6px;
}
.footer-col a {
  color: var(--white3); text-decoration: none;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-col h5 {
  font-size: 10px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-size: 14px; color: var(--white3);
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 44px;
}
.footer-bottom p {
  font-size: 12px; color: rgba(255,255,255,.2);
}

/* ─── PAGE HEADER (inner pages) ─── */
.page-header {
  padding: 160px 60px 80px;
  border-bottom: 1px solid var(--border);
}
.page-header .section-eyebrow { margin-bottom: 16px; }
.page-header h1 {
  font-family: 'Cormorant', serif;
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 300; line-height: 1.05;
  color: var(--white); max-width: 800px;
}
.page-header h1 em { font-style: italic; color: var(--white3); }
.page-header p {
  font-size: 17px; line-height: 1.75;
  color: var(--white3); max-width: 560px; margin-top: 20px;
}

/* ─── SERVICES PAGE ─── */
.svc-intro {
  padding: 80px 60px;
  border-bottom: 1px solid var(--border);
  background: var(--black2);
}
.svc-ov-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}
.svc-ov-cell {
  background: var(--black2);
  padding: 36px 28px;
  transition: background .25s;
}
.svc-ov-cell:hover { background: var(--black3); }
.svc-ov-icon { font-size: 34px; margin-bottom: 14px; line-height: 1; }
.svc-ov-cell h4 {
  font-size: 15px; font-weight: 500;
  color: var(--white); margin-bottom: 6px;
}
.svc-ov-cell p { font-size: 13px; color: var(--white3); line-height: 1.6; }

.sectors-section {
  padding: 80px 60px;
  border-bottom: 1px solid var(--border);
}
.sectors-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}
.sector-cell {
  background: var(--black);
  padding: 60px 32px;
  text-align: center;
  transition: background .25s;
}
.sector-cell:hover { background: var(--black3); }
.sector-icon { font-size: 48px; margin-bottom: 20px; }
.sector-cell h4 {
  font-family: 'Cormorant', serif;
  font-size: 22px; font-weight: 400; color: var(--white);
}

.svc-tabs-section {
  border-bottom: 1px solid var(--border);
}
.svc-tab-bar {
  display: flex; overflow-x: auto;
  border-bottom: 1px solid var(--border);
  background: var(--black2);
  padding: 0 60px;
}
.svc-tab {
  background: none; border: none;
  border-bottom: 2px solid transparent;
  padding: 18px 28px; margin-bottom: -1px;
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--white3); cursor: pointer;
  white-space: nowrap; transition: all .25s;
}
.svc-tab.active, .svc-tab:hover { color: var(--white); border-bottom-color: var(--gold); }

.svc-panel { display: none; }
.svc-panel.active {
  display: grid; grid-template-columns: 1fr 1fr;
}
.svc-panel-img {
  position: relative; min-height: 540px; overflow: hidden;
}
.svc-panel-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.72);
}
.svc-panel-num {
  position: absolute; top: 32px; left: 32px;
  background: var(--gold); color: var(--black);
  padding: 6px 18px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
}
.svc-panel-body {
  padding: 64px 56px;
  background: var(--black);
  display: flex; flex-direction: column; justify-content: center;
}
.svc-panel-body h3 {
  font-family: 'Cormorant', serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400; color: var(--white); margin-bottom: 36px;
}
.svc-panel-body ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.svc-panel-body li {
  font-size: 15px; line-height: 1.6;
  color: var(--white2); padding-left: 18px; position: relative;
}
.svc-panel-body li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--gold); font-size: 12px;
}

.vendor-section {
  padding: 80px 60px;
  border-bottom: 1px solid var(--border);
  background: var(--black2);
}
.vendor-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}
.vendor-cell {
  background: var(--black2);
  padding: 24px 20px;
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 400; color: var(--white2);
  transition: background .2s;
}
.vendor-cell:hover { background: var(--black3); }
.vendor-cell span { font-size: 20px; }

/* ─── PORTFOLIO ─── */
.proj-filter-bar {
  display: flex; overflow-x: auto;
  border-bottom: 1px solid var(--border);
  padding: 0 60px;
}
.pfbtn {
  background: none; border: none;
  border-bottom: 2px solid transparent;
  padding: 18px 28px; margin-bottom: -1px;
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--white3); cursor: pointer;
  white-space: nowrap; transition: all .25s;
}
.pfbtn.active, .pfbtn:hover { color: var(--white); border-bottom-color: var(--gold); }

.proj-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  margin: 0 60px 80px;
}
.proj-card {
  background: var(--black2);
  overflow: hidden;
  transition: background .25s;
}
.proj-card:hover { background: var(--black3); }
.proj-card-img {
  height: 260px; overflow: hidden; position: relative;
}
.proj-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.7); transition: transform .5s;
}
.proj-card:hover .proj-card-img img { transform: scale(1.05); }
.proj-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--black);
  padding: 5px 14px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
}
.proj-card-body { padding: 28px 24px; }
.proj-card-body h3 {
  font-family: 'Cormorant', serif;
  font-size: 21px; font-weight: 400;
  color: var(--white); margin-bottom: 6px;
}
.proj-loc {
  font-size: 11px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.proj-card-body p { font-size: 13.5px; line-height: 1.7; color: var(--white3); }
.proj-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.proj-tag2 {
  background: var(--black4); border: 1px solid var(--border);
  padding: 4px 12px;
  font-size: 11px; font-weight: 500; color: var(--white3);
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.contact-info-col {
  padding: 80px 60px;
  border-right: 1px solid var(--border);
}
.contact-info-col h2 {
  font-family: 'Cormorant', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400; color: var(--white); margin: 10px 0 40px;
}
.c-block {
  padding: 24px 0; border-bottom: 1px solid var(--border);
}
.c-block:first-of-type { border-top: 1px solid var(--border); }
.c-lbl {
  font-size: 10px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.c-val {
  font-size: 16px; font-weight: 400; color: var(--white2); line-height: 1.6;
}
.c-val a { color: var(--white2); text-decoration: none; transition: color .2s; }
.c-val a:hover { color: var(--gold); }
.hours-table { margin-top: 28px; }
.h-row {
  display: flex; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.h-row span:first-child { color: var(--white3); }
.h-row span:last-child { color: var(--white); font-weight: 500; }

.contact-form-col {
  padding: 80px 60px;
  background: var(--black2);
}
.contact-form-col h3 {
  font-family: 'Cormorant', serif;
  font-size: 30px; font-weight: 400;
  color: var(--white); margin-bottom: 6px;
}
.contact-form-col > p {
  font-size: 14px; color: var(--white3); margin-bottom: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grp { margin-bottom: 16px; }
.form-grp label {
  display: block;
  font-size: 10px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--white3); margin-bottom: 8px;
}
.form-grp input,
.form-grp textarea,
.form-grp select {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 16px;
  font-size: 14px;
  font-family: 'Jost', sans-serif;
  transition: border-color .25s; outline: none;
  appearance: none;
}
.form-grp input:focus,
.form-grp textarea:focus,
.form-grp select:focus { border-color: rgba(200,151,26,.6); }
.form-grp textarea { height: 130px; resize: none; }
.form-submit {
  width: 100%;
  background: var(--gold); color: var(--black);
  border: none; padding: 16px;
  font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  cursor: pointer; transition: background .25s; margin-top: 8px;
}
.form-submit:hover { background: var(--gold2); }

/* map */
.map-embed { height: 420px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(70%) brightness(.55); }

/* ─── CTA BAND ─── */
.cta-band {
  padding: 100px 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--black2);
}
.cta-band h2 {
  font-family: 'Cormorant', serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 400; color: var(--white); margin-bottom: 16px;
}
.cta-band p { font-size: 16px; color: var(--white3); margin-bottom: 40px; }
.cta-btn {
  display: inline-block;
  background: var(--gold); color: var(--black);
  padding: 16px 48px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; transition: background .25s;
}
.cta-btn:hover { background: var(--gold2); }

/* ─── WHATSAPP ─── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 400; box-shadow: 0 4px 20px rgba(37,211,102,.35);
  text-decoration: none; transition: transform .25s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ─── LOGO ─── */
.nav-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: screen; /* black bg disappears, coloured parts show */
}
.footer-logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 16px;
  mix-blend-mode: screen;
}

/* ─── RESPONSIVE ─── */

/* Tablet: 768–1100px */
@media (max-width: 1100px) {
  /* Nav */
  #nav { padding: 0 28px; }
  .nav-center { gap: 24px; }
  .nav-center a { font-size: 11px; }

  /* Stats — 4 col */
  .stats-row { grid-template-columns: repeat(4, 1fr); }
  .stat-cell:nth-child(4) { border-right: none; }
  .stat-cell:nth-child(n+5) { border-top: 1px solid var(--border); }
  .stat-cell:nth-child(4n) { border-right: none; }
  .stat-cell:nth-child(7) { border-right: none; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-col:nth-child(2n) { border-right: none; }
  .footer-col:nth-child(n+3) { border-top: 1px solid var(--border); }

  /* Partners logo grid — 3 col */
  .partner-logo-grid { grid-template-columns: repeat(3, 1fr); }

  /* Awards / testi — 2 col */
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }

  /* Services overview — 4 stays ok, sectors stays 4 */
  .svc-ov-grid { grid-template-columns: repeat(4, 1fr); }

  /* Projects */
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .mc-grid { grid-template-columns: repeat(3, 1fr); }
  .run-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile: up to 768px */
@media (max-width: 768px) {
  /* ── NAV ── */
  #nav { padding: 0 20px; height: 64px; }
  .nav-logo img { height: 40px; }
  .nav-center, .nav-right { display: none; }
  .nav-mob-btn { display: block; }

  /* Mobile overlay top = nav height */
  .mob-overlay { top: 64px; padding: 40px 24px; }
  .mob-menu a { font-size: clamp(24px, 7vw, 38px); padding: 16px 0; }

  /* ── HERO ── */
  .hero-caption { left: 20px; bottom: 32px; right: 20px; gap: 12px; }
  .hero-bulb { width: 36px; }
  .hero-bulb svg { width: 32px; height: 32px; }
  .hero-text h2 { font-size: clamp(16px, 5vw, 26px); letter-spacing: .04em; }
  .hero-arrow { font-size: 28px; padding: 12px; }
  .hero-arrow.prev { left: 4px; }
  .hero-arrow.next { right: 4px; }

  /* Partner logo grid mobile */
  .partner-logo-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .plogo-cell { padding: 24px 16px; min-height: 110px; }
  .plogo-icon { font-size: 20px; }

  /* Presence section */
  .presence { grid-template-columns: 1fr; }
  .presence-map-col { border-right: none; border-bottom: 1px solid var(--border); padding: 48px 24px; }
  .presence-map-col svg { max-width: 220px; }
  .presence-text-col { padding: 48px 24px; }
  .presence-big { font-size: clamp(32px, 10vw, 52px); }

  /* ── STATS ── */
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { border-right: none !important; border-bottom: 1px solid var(--border); padding: 32px 16px; }
  .stat-num { font-size: 36px; }

  /* ── PARTNERS ── */
  .partners-section { padding: 52px 20px; }
  .partner-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .ptab { padding: 12px 16px; font-size: 11px; }
  .partner-logo-grid { grid-template-columns: repeat(2, 1fr); }
  .plogo-cell { padding: 24px 16px; min-height: 110px; }
  .plogo-icon { font-size: 20px; }

  /* ── AWARDS ── */
  .awards-section { padding: 52px 20px; }
  .awards-grid { grid-template-columns: 1fr; }
  .award-cell { padding: 32px 24px; }

  /* ── TESTIMONIALS ── */
  .testimonials-section { padding: 52px 20px; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-cell { padding: 32px 24px; }

  /* ── NEWS ── */
  .news-section { padding: 52px 20px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-img { height: 200px; }

  /* ── PAGE HEADER ── */
  .page-header { padding: 100px 20px 52px; }
  .page-header h1 { font-size: clamp(36px, 9vw, 56px); }

  /* ── SERVICES PAGE ── */
  .svc-intro { padding: 52px 20px; }
  .svc-ov-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-ov-cell { padding: 28px 20px; }

  .sectors-section { padding: 52px 20px; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .sector-cell { padding: 40px 20px; }

  .svc-tab-bar { padding: 0 20px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .svc-tab { padding: 14px 16px; font-size: 11px; }
  .svc-panel.active { grid-template-columns: 1fr; }
  .svc-panel-img { min-height: 240px; }
  .svc-panel-body { padding: 36px 24px; }
  .svc-panel-body h3 { font-size: clamp(22px, 6vw, 32px); }
  .svc-panel-body li { font-size: 14px; }
  .svc-detail-section > .section-eyebrow { padding: 40px 20px 0 !important; }

  .vendor-section { padding: 52px 20px; }
  .vendor-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── PORTFOLIO PAGE ── */
  .proj-filter-bar { padding: 0 20px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .pfbtn { padding: 14px 16px; font-size: 11px; }
  .proj-wrap { padding: 0 20px 60px; }
  .proj-grid { grid-template-columns: 1fr; margin: 0; }
  .proj-card-img { height: 220px; }

  .more-clients { padding: 52px 20px; }
  .mc-grid { grid-template-columns: repeat(2, 1fr); }

  .running-sec { padding: 52px 20px; }
  .run-grid { grid-template-columns: 1fr; }
  .run-cell { padding: 32px 24px; }

  /* ── ABOUT PAGE ── */
  .about-split { grid-template-columns: 1fr; }
  .about-img-col { min-height: 280px; }
  .about-text-col { padding: 40px 24px; }

  .tl-section { padding: 52px 20px; }
  .tl-row { grid-template-columns: 1fr; }
  .tl-yr { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 20px; }
  .tl-body { padding: 20px; }

  .phil-section { padding: 52px 20px; }
  .phil-grid { grid-template-columns: 1fr; }
  .phil-cell { padding: 36px 24px; }

  /* ── CONTACT PAGE ── */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-col { border-right: none; border-bottom: 1px solid var(--border); padding: 52px 20px; }
  .contact-form-col { padding: 52px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .map-embed { height: 280px; }

  /* ── FOOTER ── */
  .footer-top { grid-template-columns: 1fr; }
  .footer-col { border-right: none !important; border-bottom: 1px solid var(--border); padding: 36px 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 16px 20px; }
  .footer-bottom p { font-size: 11px; }

  /* ── CTA ── */
  .cta-band { padding: 60px 20px; }
  .cta-band h2 { font-size: clamp(26px, 7vw, 40px); }
  .cta-btn { padding: 14px 36px; }

  /* ── WHATSAPP ── */
  .wa-float { width: 48px; height: 48px; bottom: 20px; right: 20px; }
  .wa-float svg { width: 26px; height: 26px; }
}


/* ── REAL PHOTO GRID MOBILE ── */
@media (max-width: 768px) {
  /* Award gallery 4-col → 2-col */
  .award-photo-row { grid-template-columns: repeat(2,1fr) !important; }
  /* Chef strip 5-col → 2-col */
  .chef-photo-strip { grid-template-columns: repeat(2,1fr) !important; }
  /* Contact strip 4-col → 2-col */
  .contact-photo-strip { grid-template-columns: repeat(2,1fr) !important; }
  /* About split photo grid */
  .about-img-col { grid-template-columns: 1fr !important; grid-template-rows: auto !important; }
  .about-img-col > div:first-child { grid-row: auto !important; }
  /* All inline photo grids at 260px height → reduce */
  [style*="height:340px"], [style*="height:320px"], [style*="height:360px"], [style*="height:400px"] {
    height: 200px !important;
  }
  [style*="height:260px"] { height: 160px !important; }
  /* 5-col → 2-col, 4-col → 2-col, 3-col → 1-col on mobile */
  [style*="repeat(5,1fr)"] { grid-template-columns: repeat(2,1fr) !important; }
  [style*="repeat(4,1fr)"][style*="gap:1px"] { grid-template-columns: repeat(2,1fr) !important; }
  [style*="repeat(3,1fr)"][style*="gap:1px"][style*="background:var(--border)"] { grid-template-columns: repeat(2,1fr) !important; }
}

/* ── SERVICES PANEL HIDE — override anything ── */
/* panels are hidden by inline style="display:none" in HTML
   AND by this CSS rule — double protection */
.svc-panel:not(.active) { display: none !important; }
.svc-panel.active { display: grid !important; grid-template-columns: 1fr 1fr; min-height: 560px; }
@media (max-width: 768px) {
  .svc-panel.active { grid-template-columns: 1fr !important; }
}
