
/* ── POPPINS — UI elements ── */
nav, .nav-links a, .nav-btn, .wss-link,
.sec-lbl, .sc-tag, .sc-link, .sc-num,
.h-tag, .wa-label, .wa-note,
.ft-lnks a, .ft-cp, .ft-sub,
.pg-lbl, .pg-back, .cl-lbl,
.ab-badge-l, .apt, .guru-svc-link,
.nav-on-dark .nav-links a {
  font-family: 'Poppins', sans-serif;
}

/* ══════════════════════════════════════════════════════
   BASE STYLES
══════════════════════════════════════════════════════ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background:#FBF7F0; color:#4A2810;
  font-weight:300; overflow-x:hidden;
}

/* subtle grain */
body::after {
  content:''; position:fixed; inset:0; pointer-events:none; z-index:8888; opacity:.22;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.055'/%3E%3C/svg%3E");
}

/* transitions for smooth theme switching */

/* ── NAV ──────────────────────────────────────────────── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:200;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 5rem; height:70px;
  border-bottom:1px solid #E8DFD0;
}
.nav-bg { position:absolute; inset:0; background:#FFFFFF; opacity:.96; backdrop-filter:blur(18px); }

.nav-logo-img { height: 44px; width: auto; display: block; }
.ft-logo-img  { height: 50px; width: auto; display: block; filter: brightness(0) invert(1); }
.logo { cursor:pointer; position:relative; font-family:'Merriweather',Georgia,serif; font-size:27px; font-weight:400; letter-spacing:.04em; color:#4A2810; }
.logo em { font-style:normal; color:#C8621A; }
.nav-links { display:flex; gap:2.5rem; list-style:none; position:relative; }
.nav-links a { font-size:11px; font-weight:400; letter-spacing:.1em; text-transform:uppercase; color:#B09A80; text-decoration:none; cursor:pointer; transition:color .2s; }
.nav-links a:hover { color:#C8621A; }

.nav-btn {
  font-family:'Outfit',sans-serif; font-size:11px; font-weight:500;
  letter-spacing:.12em; text-transform:uppercase;
  color:#fff; background:#C8621A; border:none;
  padding:11px 22px; cursor:pointer; position:relative;
  transition:opacity .2s;
}
.nav-btn:hover { opacity:.88; }

/* ── HERO ─────────────────────────────────────────────── */
.hero { position:relative; height:100vh; min-height:680px; overflow:hidden; display:flex; align-items:flex-end; }
.hero-img { position:absolute; inset:0; }
.hero-img img { width:100%; height:100%; object-fit:cover; object-position:center 28%; display:block; }
.hero-ov { position:absolute; inset:0; background:linear-gradient(120deg,rgba(90,40,12,.88) 0%,rgba(90,40,12,.58) 55%,rgba(90,40,12,.18) 100%); z-index:1; }
.hero-bot { position:absolute; bottom:0; left:0; right:0; height:220px; z-index:2; background:linear-gradient(to top, #FBF7F0 0%, transparent 100%); }
.hero-cnt { position:relative; z-index:3; padding:0 5rem 6.5rem; max-width:800px; animation:hIn .9s cubic-bezier(.22,1,.36,1) both; }
@keyframes hIn { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:none} }

.h-tag { display:inline-flex; align-items:center; gap:12px; font-size:10px; font-weight:500; letter-spacing:.24em; text-transform:uppercase; color:#F0D888; margin-bottom:1.75rem; }
.h-tag::before { content:''; width:30px; height:1px; background:#F0D888; }
.h-title { font-family:'Merriweather',Georgia,serif; font-size:clamp(36px,4.5vw,64px); font-weight:300; line-height:1.01; color:#fff; margin-bottom:1.4rem; }
.h-title em { font-style:italic; color:#F0D888; display:block; }
.h-sub { font-size:16px; font-weight:300; line-height:1.82; color:rgba(255,255,255,.6); max-width:500px; margin-bottom:2.75rem; }
.h-btns { display:flex; gap:1.2rem; flex-wrap:wrap; align-items:center; }
.btn-fill { font-family:'Outfit',sans-serif; font-size:11px; font-weight:500; letter-spacing:.13em; text-transform:uppercase; color:#fff; background:#C8621A; padding:14px 32px; border:none; cursor:pointer; transition:opacity .2s,transform .2s; }
.btn-fill:hover { opacity:.88; transform:translateY(-1px); }
.btn-line { font-family:'Outfit',sans-serif; font-size:11px; font-weight:400; letter-spacing:.13em; text-transform:uppercase; color:rgba(255,255,255,.72); background:transparent; border:1px solid rgba(255,255,255,.3); padding:13px 30px; cursor:pointer; transition:all .2s; }
.btn-line:hover { border-color:#F0D888; color:#F0D888; }
.hero-scrl { position:absolute; right:5rem; bottom:3.5rem; z-index:3; display:flex; flex-direction:column; align-items:center; gap:8px; }
.scrl-l { width:1px; height:50px; background:linear-gradient(to bottom,#F0D888,transparent); animation:sp 2.2s ease-in-out infinite; }
@keyframes sp { 0%,100%{opacity:.22}50%{opacity:.85} }
.scrl-t { font-size:9px; letter-spacing:.22em; text-transform:uppercase; color:rgba(255,255,255,.32); }

/* ── ABOUT ────────────────────────────────────────────── */
.about { padding:8rem 5rem; display:grid; grid-template-columns:1fr 1fr; gap:7rem; align-items:center; background:#FBF7F0; }
.ab-img { position:relative; height:580px; overflow:hidden; }
.ab-img img { width:100%; height:100%; object-fit:cover; object-position:center top; display:block; }
.ab-img::after { content:''; position:absolute; inset:0; background:linear-gradient(to bottom,transparent 55%,#FBF7F0 100%); }
.ab-badge { position:absolute; bottom:2.5rem; right:-2rem; z-index:2; background:#C8621A; padding:2rem 2.5rem; text-align:center; }
.ab-badge-n { font-family:'Merriweather',Georgia,serif; font-size:54px; font-weight:300; color:#fff; line-height:1; }
.ab-badge-l { font-size:10px; font-weight:500; letter-spacing:.16em; text-transform:uppercase; color:rgba(255,255,255,.8); margin-top:4px; }

.sec-lbl { font-size:10px; font-weight:500; letter-spacing:.22em; text-transform:uppercase; color:#C9963A; margin-bottom:1.2rem; }
.sec-ttl { font-family:'Merriweather',Georgia,serif; font-size:clamp(36px,4vw,54px); font-weight:300; line-height:1.1; color:#4A2810; margin-bottom:1.4rem; }
.sec-ttl em { font-style:italic; color:#C8621A; }
.sec-body { font-size:15px; font-weight:300; line-height:1.9; color:#7A5A3A; margin-bottom:1.5rem; }

.ab-pillars { display:grid; grid-template-columns:1fr 1fr; gap:2px; background:#E8DFD0; margin-top:2.5rem; }
.ap { background:#FFFFFF; padding:1.6rem; cursor:default; }
.ap:hover { background:#FFF9F3; }
.apn { font-family:'Merriweather',Georgia,serif; font-size:36px; font-weight:300; color:#C9963A; opacity:.35; line-height:1; margin-bottom:.4rem; }
.apt { font-size:11px; font-weight:500; letter-spacing:.12em; text-transform:uppercase; color:#C8621A; margin-bottom:.25rem; }
.apd { font-size:12px; font-weight:300; line-height:1.65; color:#B09A80; }

/* ── NUMBERS ──────────────────────────────────────────── */
.nums { display:grid; grid-template-columns:repeat(4,1fr); background:#7A3A14; }
.ni { padding:3.5rem 2rem; text-align:center; border-right:1px solid rgba(255,255,255,.1); }
.ni:last-child { border-right:none; }
.nin { font-family:'Merriweather',Georgia,serif; font-size:62px; font-weight:300; color:#F0D888; line-height:1; }
.nil { font-size:10px; font-weight:500; letter-spacing:.16em; text-transform:uppercase; color:rgba(255,255,255,.42); margin-top:.5rem; }

/* ── SERVICES ─────────────────────────────────────────── */
.services { padding:8rem 5rem; background:#F3EDE0; }
.svc-hd { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:end; margin-bottom:4.5rem; }
.svc-sub { font-size:14px; font-weight:300; line-height:1.85; color:#B09A80; max-width:420px; }

.svc-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:3px; background:#E8DFD0; }
.sc {
  background:#FFFFFF; padding:2.5rem 2rem;
  position:relative; overflow:hidden; cursor:pointer;
}
.sc::after { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:#C8621A; transform:scaleX(0); transform-origin:left; transition:transform .38s cubic-bezier(.22,1,.36,1); }
.sc:hover { background:#FFF9F3; transform:translateY(-5px); box-shadow:0 18px 50px rgba(0,0,0,.07); }
.sc:hover::after { transform:scaleX(1); }
.sc:hover .sc-iw { background:#C8621A; border-color:#C8621A; }
.sc:hover .sc-icon { filter:brightness(0) invert(1); }
.sc:hover .sc-num { opacity:.3; }

.sc-num { font-family:'Merriweather',Georgia,serif; font-size:58px; font-weight:300; color:#C9963A; opacity:.16; line-height:1; margin-bottom:1.4rem; display:block; transition:opacity .3s; }
.sc-iw { width:42px; height:42px; border:1px solid #E8DFD0; display:flex; align-items:center; justify-content:center; margin-bottom:1.25rem; transition:background .25s,border-color .25s; }
.sc-icon { transition:filter .25s; }
.sc-nm { font-family:'Merriweather',Georgia,serif; font-size:21px; font-weight:400; line-height:1.25; color:#4A2810; margin-bottom:.65rem; }
.sc-ds { font-size:12px; font-weight:300; line-height:1.75; color:#B09A80; margin-bottom:1.35rem; }
.sc-tags { display:flex; flex-wrap:wrap; gap:5px; margin-bottom:1.35rem; }
.sc-tag { font-size:9px; font-weight:500; letter-spacing:.12em; text-transform:uppercase; color:#C8621A; border:1px solid; border-color:rgba(200,98,26,.28); padding:3px 9px; }
.sc-link { font-size:11px; font-weight:500; letter-spacing:.1em; text-transform:uppercase; color:#B09A80; display:inline-flex; align-items:center; gap:6px; transition:color .22s,gap .22s; cursor:pointer; }
.sc-link::after { content:'→'; color:#C8621A; }
.sc:hover .sc-link { color:#C8621A; gap:10px; }

/* ── CONTACT ──────────────────────────────────────────── */
.contact { display:grid; grid-template-columns:1fr 1fr; }
.cl { background:#7A3A14; padding:6rem 5rem; position:relative; overflow:hidden; }
.cl::before {
  content:''; position:absolute; inset:0; opacity:.15;
  background:radial-gradient(ellipse at 15% 55%,#F0D888 0%,transparent 55%),
             radial-gradient(ellipse at 85% 15%,#C8621A 0%,transparent 50%);
}
.cl-in { position:relative; z-index:1; }
.cl-lbl { font-size:10px; font-weight:500; letter-spacing:.22em; text-transform:uppercase; color:#F0D888; margin-bottom:1.25rem; opacity:.85; }
.cl-ttl { font-family:'Merriweather',Georgia,serif; font-size:clamp(34px,3.5vw,50px); font-weight:300; line-height:1.12; color:#fff; margin-bottom:1.25rem; }
.cl-ttl em { font-style:italic; color:#F0D888; }
.cl-sub { font-size:14px; font-weight:300; line-height:1.85; color:rgba(255,255,255,.62); margin-bottom:2.5rem; }
.cl-pr { display:flex; align-items:flex-start; gap:12px; font-size:13px; font-weight:300; color:rgba(255,255,255,.65); line-height:1.65; margin-bottom:.85rem; }
.cl-dot { width:5px; height:5px; min-width:5px; border-radius:50%; background:#F0D888; margin-top:8px; }

.cr { background:#FFFFFF; padding:6rem 5rem; display:flex; flex-direction:column; justify-content:center; }

/* ── FOOTER ───────────────────────────────────────────── */
footer { background:#5A2A0C; padding:2.5rem 5rem; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1rem; border-top:1px solid rgba(255,255,255,.08); }
.ft-logo { font-family:'Merriweather',Georgia,serif; font-size:24px; font-weight:400; color:#fff; }
.ft-logo em { font-style:normal; color:#F0D888; }
.ft-lnks { display:flex; gap:2rem; }
.ft-lnks a { font-size:11px; font-weight:400; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.35); cursor:pointer; text-decoration:none; transition:color .2s; }
.ft-lnks a:hover { color:#F0D888; }
.ft-cp { font-size:10px; color:rgba(255,255,255,.2); letter-spacing:.05em; }

/* ── DIVIDER ──────────────────────────────────────────── */
.hr { height:1px; margin:0 5rem; background:#E8DFD0; }

/* ── REVEAL ANIMATIONS ────────────────────────────────── */
.rv { opacity:0; transform:translateY(22px); transition:opacity .7s ease,transform .7s ease; }
.rv.vis { opacity:1; transform:none; }
.d1{transition-delay:.1s}.d2{transition-delay:.18s}.d3{transition-delay:.26s}
.d4{transition-delay:.34s}.d5{transition-delay:.42s}.d6{transition-delay:.5s}
.d7{transition-delay:.58s}.d8{transition-delay:.66s}

/* WhatsApp Contact Panel */
.wa-contact { margin-top: 1.5rem; }
.wa-btn {
  display: flex; align-items: center; gap: 1.25rem;
  background: #F3EDE0; border: 1px solid #E8DFD0;
  padding: 1.6rem 1.75rem; text-decoration: none;
  transition: background .25s, border-color .25s, transform .2s;
  margin-bottom: 1.5rem;
}
.wa-btn:hover { background: #FFF9F3; border-color: #25D366; transform: translateY(-2px); }
.wa-info { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.wa-label { font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: #B09A80; }
.wa-num { font-family: 'Merriweather', Georgia, serif; font-size: 26px; font-weight: 300; color: #4A2810; }
.wa-arrow { font-size: 20px; color: #B09A80; transition: color .2s, transform .2s; }
.wa-btn:hover .wa-arrow { color: #C8621A; transform: translateX(4px); }
.wa-note { font-size: 12px; font-weight: 300; line-height: 1.75; color: #B09A80; }

/* WSS 2026 — premium nav badge */
.wss-link {
  position: relative;
  color: #fff !important;
  font-weight: 500 !important;
  font-size: 11px !important;
  letter-spacing: .13em !important;
  background: linear-gradient(115deg, #C8621A 0%, #C9963A 100%);
  padding: 7px 16px !important;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(200,98,26,.38);
  transition: box-shadow .25s, transform .2s !important;
}
.wss-link::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  animation: wssShimmer 2.8s ease-in-out infinite;
}
@keyframes wssShimmer {
  0%   { left: -100%; }
  60%  { left: 140%; }
  100% { left: 140%; }
}
.wss-link::after {
  content: '↗';
  display: inline-block;
  margin-left: 5px;
  font-size: 10px;
  opacity: .85;
  transition: transform .2s;
}
.wss-link:hover {
  box-shadow: 0 4px 22px rgba(200,98,26,.55) !important;
  transform: translateY(-1px);
  color: #fff !important;
}
.wss-link:hover::after { transform: translate(2px, -2px); }

/* Logo shimmer */
.logo-shimmer {
  position: relative; display: inline-block; overflow: hidden;
}
.logo-shimmer::after {
  content: '';
  position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  animation: logoShimmer 3.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes logoShimmer {
  0%   { left: -120%; }
  55%  { left: 150%; }
  100% { left: 150%; }
}

.cr-bullets { margin-bottom: 2rem; }
.cr-bullets .cl-pr { color: #7A5A3A; }
.cr-bullets .cl-dot { background: #C8621A; }
.cr-divider { height: 1px; background: #E8DFD0; margin-bottom: 2rem; }

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE & TABLET
═══════════════════════════════════════════════ */

/* 5-service grid */
.svc-grid-5 { grid-template-columns: repeat(5, 1fr); }
/* Guru services link below subtitle */
.guru-svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: #C8621A; text-decoration: none;
  margin-top: 1.25rem; border-bottom: 1px solid rgba(200,98,26,.30);
  padding-bottom: 2px;
  transition: border-color .25s, gap .25s;
}
.guru-svc-link:hover { border-color: #C8621A; gap: 10px; }

/* Guru Services card — clickable with arrow badge */
.guru-card { cursor: pointer; }
.guru-card::before {
  content: '↗';
  position: absolute; top: 1.25rem; right: 1.25rem;
  font-size: 14px; color: #C9963A; opacity: .55;
  transition: opacity .25s, transform .25s;
}
.guru-card:hover::before { opacity: 1; transform: translate(2px, -2px); }
.guru-card-cta { color: #C8621A !important; }

/* ══════════════════════════════════════════════
   RESPONSIVE — ≤ 1100px
══════════════════════════════════════════════ */

/* ══════════════════════════════════════════════
   RESPONSIVE — ≤ 900px  (tablets / large phones)
══════════════════════════════════════════════ */

/* ══════════════════════════════════════════════
   RESPONSIVE — ≤ 560px  (small phones)
══════════════════════════════════════════════ */

/* ══════════════════════════════════════════════
   MOBILE NAV — hamburger inside nav
══════════════════════════════════════════════ */

/* Hamburger — hidden on desktop */

nav.stuck 

nav.stuck 

/* Overlay — full screen dim */

/* Drawer — slides in from right */

/* ══════════════════════════════════════════════
   RESPONSIVE ≤ 1100px
══════════════════════════════════════════════ */

/* ══════════════════════════════════════════════
   RESPONSIVE ≤ 900px  (tablet / large phone)
══════════════════════════════════════════════ */

/* ══════════════════════════════════════════════
   RESPONSIVE ≤ 560px  (small phones)
══════════════════════════════════════════════ */


/* ══════════════════════════════════════════════════════
   HAMBURGER BUTTON
══════════════════════════════════════════════════════ */
.hbg {
  display: none;
  flex-direction: column;
  justify-content: center; align-items: center;
  gap: 5px; width: 38px; height: 38px;
  background: rgba(200,98,26,.08);
  border: 1px solid rgba(200,98,26,.22);
  border-radius: 3px; cursor: pointer;
  flex-shrink: 0;
  transition: background .25s, border-color .25s;
  z-index: 201;
}
nav.stuck .hbg {
  background: rgba(200,98,26,.08);
  border-color: rgba(200,98,26,.22);
}
.hbg span {
  display: block; width: 18px; height: 1.5px;
  background: #4A2810;
  margin: 6px;
  transition: transform .3s, opacity .3s, background .25s;
}
nav.stuck .hbg span { background: #4A2810; }
.nav-on-dark .hbg {
  background: rgba(200,98,26,.08);
  border-color: rgba(200,98,26,.22);
}
.nav-on-dark .hbg span { background: #4A2810; }
.hbg.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hbg.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hbg.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════
   MOBILE OVERLAY + DRAWER
══════════════════════════════════════════════════════ */
.mob-overlay {
  position: fixed; inset: 0; z-index: 998;
  background: rgba(30,12,4,.58);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
}
.mob-overlay.open { opacity: 1; pointer-events: all; }

.mob-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  z-index: 999;
  width: 85vw; max-width: 300px;
  background: #FBF7F0;
  display: flex; flex-direction: column;
  box-shadow: -6px 0 40px rgba(0,0,0,.18);
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform .38s cubic-bezier(.22,1,.36,1), visibility 0s .38s;
  overflow-y: auto;
  overflow-x: hidden;
}
.mob-drawer.open { transform: translateX(0); visibility: visible; pointer-events: all; transition: transform .38s cubic-bezier(.22,1,.36,1), visibility 0s 0s; }

.mob-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 1.5rem;
  border-bottom: 1px solid #E8DFD0;
  flex-shrink: 0;
}
.mob-brand {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 17px; font-weight: 400;
  color: #4A2810; letter-spacing: 2px;
}
.mob-close {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: 1px solid #E8DFD0;
  border-radius: 2px; cursor: pointer;
  font-size: 13px; color: #7A5A3A;
  transition: background .2s, color .2s;
  flex-shrink: 0;
}
.mob-close:hover { background: #C8621A; color: #fff; border-color: #C8621A; }


.mob-links { position: static !important; top: auto !important; left: auto !important; right: auto !important; height: auto !important; z-index: auto !important; border: none !important; }
.mob-links {
  display: flex; flex-direction: column;
  padding: 1.5rem; flex: 1;
}
.mob-link {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 400;
  letter-spacing: .04em; color: #7A5A3A;
  padding: .95rem 0;
  border-bottom: 1px solid #E8DFD0;
  text-decoration: none;
  transition: color .2s, padding-left .2s;
  display: block;
}
.mob-link:last-child { border-bottom: none; }
.mob-link:hover { color: #C8621A; padding-left: 6px; }
.mob-wss { color: #C8621A !important; font-weight: 500; }

.mob-enquire {
  display: block; margin: 0 1.5rem 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: #fff; background: #C8621A;
  text-align: center; padding: 14px 20px;
  text-decoration: none; flex-shrink: 0;
  transition: background .25s;
}
.mob-enquire:hover { background: #C9963A; }

.mob-caption {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 300; color: #B09A80;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid #E8DFD0;
  margin: 0; flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════
   ≤ 1100px
══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .svc-grid-5 { grid-template-columns: repeat(3, 1fr); }
}

/* ══════════════════════════════════════════════════════
   ≤ 900px  — tablet / large phone
══════════════════════════════════════════════════════ */
@media (max-width: 900px) {

  /* Nav */
  nav { padding: 0 1.25rem; height: 62px; }
  nav.stuck { padding: 0 1.25rem; }
  .logo { font-size: 22px; }
  .nav-logo-img { height: 34px; }
  .nav-links { display: none !important; }
  .nav-btn { display: none !important; }       /* avoid overlap with hamburger */
  .hbg {
    display: block !important;                  /* drawer menu on mobile */
    margin-left: auto;
    position: relative;
    z-index: 220;
  }

  /* Hero */
  .hero { min-height: 100vh; }
  .hero-cnt { padding: 0 1.25rem 5rem; }
  .h-title { font-size: clamp(26px, 7.5vw, 42px); line-height: 1.1; }
  .h-tag { font-size: 9px; }
  .h-sub { font-size: 14px; line-height: 1.75; max-width: 100%; }
  .h-btns { flex-direction: column; align-items: stretch; gap: .85rem; }
  .btn-fill, .btn-line { text-align: center; padding: 15px 20px; }
  .hero-scrl { display: none; }

  /* About */
  .about { padding: 3.5rem 1.25rem; grid-template-columns: 1fr; gap: 2rem; }
  .ab-img { height: 260px; }
  .ab-badge { right: 0; top: auto; bottom: 1rem; padding: 1rem 1.25rem; }
  .ab-badge-n { font-size: 36px; }
  .ab-pillars { grid-template-columns: 1fr 1fr; }

  /* Services */
  .services { padding: 3.5rem 1.25rem 4rem; }
  .svc-hd { grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 2rem; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .sc { padding: 1.75rem 1.25rem; }

  /* Contact */
  .contact { grid-template-columns: 1fr; }
  .cl { padding: 3rem 1.25rem; }
  .cl-ttl { font-size: clamp(28px, 7vw, 40px); }
  .cr { padding: 2.5rem 1.25rem; }
  .wa-btn { padding: 1.25rem; gap: 1rem; }
  .wa-num { font-size: 21px; }

  /* Footer */
  footer { flex-direction: column; align-items: flex-start;
           gap: 1.5rem; padding: 2.5rem 1.25rem; }
  .ft-lnks { flex-wrap: wrap; gap: 1rem 2rem; }
  .ft-r { display: none; }

  /* Guru-services page hero */
  .pg-hero { padding: 7rem 1.25rem 3.5rem; }
  .pg-h { font-size: clamp(30px, 9vw, 50px); }
  .pg-sub { font-size: 14px; }

  /* Guru-services section */
  .guru-wrap { padding: 3.5rem 1.25rem 4rem; }
  .guru-hd { grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 2rem; }
}

/* ══════════════════════════════════════════════════════
   ≤ 560px  — small phones
══════════════════════════════════════════════════════ */
@media (max-width: 560px) {
  .nav-logo-img { height: 30px; }

  /* Nav — hide CTA, hamburger only */
  .nav-btn { display: none; }

  /* Hero */
  .h-title { font-size: clamp(22px, 7vw, 32px); }
  .hero-cnt { padding: 0 1rem 4rem; }

  /* About */
  .about { padding: 3rem 1rem; }
  .ab-pillars { grid-template-columns: 1fr; }
  .ap { padding: 1.25rem 1rem; }

  /* Services */
  .services { padding: 3rem 1rem 3.5rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-grid-5 { grid-template-columns: 1fr; }
  .sc { padding: 1.5rem 1rem; }

  /* Contact */
  .cl { padding: 2.5rem 1rem; }
  .cr { padding: 2rem 1rem; }
  .wa-num { font-size: 19px; }

  /* Footer */
  footer { padding: 2rem 1rem; }

  /* Guru-services */
  .pg-hero { padding: 6rem 1rem 3rem; }
  .pg-h { font-size: clamp(26px, 10vw, 38px); }
  .guru-wrap { padding: 2.5rem 1rem 3.5rem; }
}


/* ── PAGE HERO ── */
.pg-hero {
  background: #7A3A14;
  padding: 9rem 5rem 5.5rem;
  position: relative; overflow: hidden;
}
.pg-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 70% at 85% 50%, rgba(200,98,26,.22) 0%, transparent 65%);
  pointer-events: none;
}
.pg-hero-inner { position: relative; z-index: 2; max-width: 680px; }
.pg-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 400; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.4); text-decoration: none;
  margin-bottom: 2.5rem; transition: color .25s;
}
.pg-back::before { content: '←'; font-size: 13px; }
.pg-back:hover { color: #C9963A; }
.pg-lbl {
  font-size: 10px; font-weight: 500; letter-spacing: .28em; text-transform: uppercase;
  color: #C9963A; margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: .85rem;
}
.pg-lbl::before { content: ''; display: block; width: 28px; height: 1px; background: #C9963A; }
.pg-h {
  font-family: 'Merriweather', Georgia, serif;
  font-size: clamp(40px, 6.5vw, 72px); font-weight: 300; line-height: 1.08;
  color: #fff; margin-bottom: 1.5rem; letter-spacing: -.5px;
}
.pg-h em { font-style: italic; color: #C9963A; }
.pg-sub {
  font-size: 15px; font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,.58); max-width: 500px;
}

/* ── GURU SVC SECTION ── */
.guru-wrap {
  background: #F3EDE0;
  padding: 6rem 5rem 7rem;
}
.guru-hd {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem;
  align-items: end; margin-bottom: 4rem;
}
.guru-hd-sub {
  font-size: 14px; font-weight: 300; line-height: 1.85;
  color: #B09A80; max-width: 400px;
}

/* ── NAV on dark hero (before stuck) ── */
.nav-on-dark .nav-links a { color: #B09A80; }
.nav-on-dark .nav-links a:hover { color: #C8621A; }
.nav-on-dark .nav-btn { background: #C8621A; color: #fff; border: none; }
.nav-on-dark .nav-btn:hover { background: #C8621A; border-color: transparent; opacity: .88; }

/* responsive */

/* Keep guru page hero responsive overrides after base rules */
@media (max-width: 900px) {
  .pg-hero { padding: 7rem 1.25rem 3.5rem; }
  .pg-h { font-size: clamp(30px, 9vw, 50px); }
  .pg-sub { font-size: 14px; }
  .guru-wrap { padding: 3.5rem 1.25rem 4rem; }
  .guru-hd { grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 2rem; }
}

@media (max-width: 560px) {
  .pg-hero { padding: 6rem 1rem 3rem; }
  .pg-h { font-size: clamp(26px, 10vw, 38px); }
  .guru-wrap { padding: 2.5rem 1rem 3.5rem; }
  .ft-logo{
    margin:auto;
  }
  .ft-logo-img{
    margin:auto
  }
  .ft-lnks{
    margin:auto
  }
  .ft-cp{
    margin:auto
  }
}
