:root {
  --ink: #123a2f;
  --ink-deep: #08271f;
  --ink-soft: #285347;
  --orange: #ef6b36;
  --gold: #f5bd61;
  --mint: #dcece2;
  --mint-light: #edf5ef;
  --paper: #f6f3eb;
  --cream: #fffdf8;
  --white: #fff;
  --muted: #66736e;
  --line: rgba(18, 58, 47, .14);
  --shadow: 0 28px 80px rgba(21, 55, 45, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 88% 5%, rgba(245, 189, 97, .18), transparent 20%),
    radial-gradient(circle at 10% 42%, rgba(220, 236, 226, .7), transparent 25%),
    var(--paper);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.container { width: min(1200px, calc(100% - 48px)); margin: 0 auto; }
.page { overflow: hidden; }

/* Shared navigation */
.site-header { position: relative; z-index: 50; padding: 26px 0 20px; }
.nav-shell {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 10px 8px 20px;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 22px;
  background: rgba(255, 253, 248, .82);
  box-shadow: 0 18px 50px rgba(30, 57, 48, .09);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 13px; flex: 0 0 auto; }
.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--cream) 0 15%, transparent 16%),
    repeating-conic-gradient(var(--orange) 0 9deg, transparent 9deg 20deg),
    var(--ink);
  box-shadow: inset 0 0 0 8px var(--ink), 0 6px 20px rgba(19,57,47,.18);
}
.brand-mark::after { content: ""; position: absolute; inset: 12px; border: 3px solid var(--cream); border-radius: 50%; }
.brand-copy strong { display: block; font-size: 15px; line-height: 1; letter-spacing: .075em; }
.brand-copy span { display: block; margin-top: 5px; color: var(--muted); font-size: 9px; font-weight: 750; letter-spacing: .19em; }
.nav-links { display: flex; align-items: center; gap: 3px; padding: 4px; border-radius: 16px; background: rgba(19, 57, 47, .055); }
.nav-links a { padding: 11px 17px; border-radius: 12px; color: #52615c; font-size: 13px; font-weight: 700; transition: .22s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--ink-deep); background: var(--cream); box-shadow: 0 5px 16px rgba(19,57,47,.08); }
.nav-cta, .button, .button-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 17px 0 22px;
  border: 0;
  border-radius: 15px;
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.nav-cta:hover, .button:hover, .button-light:hover { transform: translateY(-2px); box-shadow: 0 13px 25px rgba(9,39,31,.16); }
.button-light { background: var(--cream); color: var(--ink); }
.arrow-dot { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--orange); color: white; font-size: 14px; }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 800; }

/* Shared typography */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--orange); font-size: 10px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 20px; height: 2px; background: currentColor; }
.eyebrow.light { color: var(--gold); }
.pill-label { display: inline-flex; align-items: center; gap: 10px; padding: 9px 13px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; background: rgba(255,255,255,.07); color: #e5ece9; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.pill-label::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(245,189,97,.12); }
.display { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(58px, 5vw, 78px); font-weight: 500; line-height: .98; letter-spacing: -.045em; }
.display em { color: var(--gold); font-weight: 500; }
.section-title { margin: 16px 0 18px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 4vw, 58px); font-weight: 500; line-height: 1.02; letter-spacing: -.04em; }
.lead { color: var(--muted); font-size: 17px; line-height: 1.75; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 48px; margin-bottom: 42px; }
.section-head > div:first-child { max-width: 720px; }
.section-head p { max-width: 430px; margin: 0 0 4px; color: var(--muted); line-height: 1.7; }
.section { padding: 100px 0; }
.section.compact { padding: 76px 0; }

/* Home */
.home-hero {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  min-height: 610px;
  overflow: hidden;
  border-radius: 38px;
  background: var(--ink-deep);
  box-shadow: var(--shadow);
}
.home-hero-copy { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 62px; color: white; }
.home-hero-copy::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 20%, rgba(239,107,54,.16), transparent 30%); }
.home-hero-copy > * { position: relative; }
.home-hero-copy .display { margin-top: 27px; }
.home-hero-copy > p { max-width: 510px; margin: 25px 0 30px; color: rgba(255,255,255,.72); line-height: 1.72; }
.hero-actions { display: flex; align-items: center; gap: 22px; }
.home-hero-visual { position: relative; min-height: 610px; overflow: hidden; }
.home-hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink-deep), transparent 28%), linear-gradient(180deg, transparent 56%, rgba(8,39,31,.35)); }
.home-hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 68% center; }
.india-tag { position: absolute; z-index: 2; top: 30px; right: 30px; padding: 10px 14px; border-radius: 999px; background: rgba(8,39,31,.55); color: white; font-size: 10px; font-weight: 800; letter-spacing: .1em; backdrop-filter: blur(12px); }
.promise-card { position: absolute; z-index: 2; right: 28px; bottom: 28px; width: 255px; padding: 22px; border: 1px solid rgba(255,255,255,.5); border-radius: 22px; background: rgba(255,253,248,.88); backdrop-filter: blur(16px); }
.promise-card strong { display: block; margin: 10px 0; font: 500 23px/1.1 Georgia, serif; }
.promise-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

.service-preview { position: relative; z-index: 5; margin-top: -28px; padding: 0 28px; }
.service-preview-grid { display: grid; grid-template-columns: 1.12fr repeat(3, 1fr); overflow: hidden; border: 1px solid rgba(255,255,255,.85); border-radius: 26px; background: rgba(255,253,248,.95); box-shadow: var(--shadow); }
.preview-intro, .preview-card { min-height: 190px; padding: 28px; }
.preview-intro { display: flex; flex-direction: column; justify-content: space-between; background: var(--mint); }
.preview-intro h2 { margin: 0; font: 500 30px/1.05 Georgia, serif; letter-spacing: -.03em; }
.preview-card { position: relative; border-left: 1px solid var(--line); }
.preview-card .icon-box { margin-bottom: 25px; }
.preview-card h3 { margin: 0 0 8px; font: 500 21px/1.1 Georgia, serif; }
.preview-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.corner-arrow { position: absolute; top: 26px; right: 26px; font-size: 18px; }
.value-line { display: flex; align-items: center; justify-content: center; gap: 28px; padding: 28px 0; color: #74817c; font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.value-line i { width: 4px; height: 4px; border-radius: 50%; background: var(--orange); }

.icon-box { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: var(--ink); color: white; font-size: 17px; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-card { min-height: 270px; padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,253,248,.82); transition: .2s ease; }
.info-card:hover { transform: translateY(-5px); box-shadow: 0 24px 54px rgba(21,55,45,.1); background: white; }
.info-card h3 { margin: 28px 0 12px; font: 500 25px/1.1 Georgia, serif; }
.info-card p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.info-card .text-link { margin-top: 12px; color: var(--orange); }

.split { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 72px; }
.image-frame { position: relative; min-height: 560px; overflow: hidden; border-radius: 34px; background: var(--mint); }
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.floating-note { position: absolute; left: 24px; right: 24px; bottom: 24px; padding: 22px; border-radius: 20px; background: rgba(255,253,248,.9); backdrop-filter: blur(16px); }
.floating-note strong { display: block; font: 500 22px Georgia, serif; }
.floating-note span { display: block; margin-top: 8px; color: var(--muted); font-size: 12px; }
.check-list { display: grid; gap: 14px; margin: 30px 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: #43534d; line-height: 1.6; }
.check-list li::before { content: "✓"; display: grid; place-items: center; flex: 0 0 25px; width: 25px; height: 25px; border-radius: 50%; background: var(--mint); color: var(--ink); font-size: 12px; font-weight: 900; }

.quote-panel { padding: 56px; border-radius: 32px; background: var(--ink-deep); color: white; }
.quote-panel blockquote { max-width: 900px; margin: 22px 0 32px; font: 500 clamp(34px, 4vw, 52px)/1.13 Georgia, serif; letter-spacing: -.03em; }
.quote-panel p { color: rgba(255,255,255,.66); }

/* Inner page heroes */
.inner-hero { position: relative; padding: 86px 0 74px; }
.inner-hero::after { content: ""; position: absolute; top: 0; right: -180px; width: 640px; height: 640px; border: 1px solid var(--line); border-radius: 50%; box-shadow: inset 0 0 0 100px transparent; }
.inner-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .82fr; align-items: end; gap: 80px; }
.inner-hero .display { max-width: 760px; }
.inner-hero .lead { margin: 0; }
.hero-breadcrumb { margin-bottom: 26px; color: var(--orange); font-size: 10px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }

.dark-banner { padding: 58px; border-radius: 34px; background: var(--ink-deep); color: white; }
.dark-banner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.dark-banner .section-title { margin-top: 16px; }
.dark-banner p { color: rgba(255,255,255,.68); line-height: 1.75; }

/* Services */
.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-detail { display: grid; grid-template-columns: auto 1fr; gap: 22px; min-height: 260px; padding: 34px; border: 1px solid var(--line); border-radius: 26px; background: var(--cream); }
.service-detail h2 { margin: 2px 0 12px; font: 500 29px/1.05 Georgia, serif; }
.service-detail p { margin: 0; color: var(--muted); line-height: 1.7; }
.service-detail ul { margin: 20px 0 0; padding-left: 18px; color: #4e5e58; font-size: 13px; line-height: 1.9; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.process-step { position: relative; padding: 38px 30px 10px 0; }
.process-step::before { content: ""; position: absolute; top: -5px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 6px var(--paper); }
.process-step + .process-step { padding-left: 28px; border-left: 1px solid var(--line); }
.process-step h3 { margin: 20px 0 10px; font: 500 23px Georgia, serif; }
.process-step p { color: var(--muted); font-size: 13px; line-height: 1.7; }

.responsible-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.principle-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.principle { padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,253,248,.72); }
.principle strong { display: block; margin-bottom: 8px; font-size: 15px; }
.principle span { color: var(--muted); font-size: 12px; line-height: 1.65; }

/* About */
.about-hero-card { overflow: hidden; border-radius: 34px; background: var(--ink-deep); }
.about-hero-card img { width: 100%; height: 470px; object-fit: cover; opacity: .8; }
.mission-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.mission-copy { font: 500 clamp(36px, 4vw, 55px)/1.08 Georgia, serif; letter-spacing: -.035em; }
.mission-detail { color: var(--muted); font-size: 17px; line-height: 1.85; }
.value-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value-card { min-height: 250px; padding: 26px; border-radius: 22px; background: var(--cream); border: 1px solid var(--line); }
.value-card h3 { margin: 45px 0 12px; font: 500 23px Georgia, serif; }
.value-card p { color: var(--muted); font-size: 13px; line-height: 1.7; }
.india-panel { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: 34px; background: var(--mint); }
.india-panel-copy { padding: 58px; }
.india-panel-visual { position: relative; min-height: 520px; background: var(--ink); }
.india-panel-visual img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: luminosity; opacity: .82; }
.india-panel-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(239,107,54,.18), transparent 45%); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 28px; align-items: stretch; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-card { padding: 26px; border: 1px solid var(--line); border-radius: 22px; background: var(--cream); }
.contact-card small { display: block; margin-bottom: 12px; color: var(--orange); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.contact-card strong { display: block; font: 500 22px/1.35 Georgia, serif; }
.contact-card p, .contact-card address { margin: 10px 0 0; color: var(--muted); font-size: 13px; font-style: normal; line-height: 1.7; }
.contact-form { padding: 40px; border-radius: 28px; background: var(--ink-deep); color: white; }
.contact-form h2 { margin: 0 0 10px; font: 500 36px Georgia, serif; }
.contact-form > p { margin: 0 0 30px; color: rgba(255,255,255,.64); line-height: 1.7; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { color: rgba(255,255,255,.72); font-size: 11px; font-weight: 750; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid rgba(255,255,255,.14); border-radius: 13px; outline: none; background: rgba(255,255,255,.075); color: white; padding: 14px 15px; }
.field select option { color: var(--ink); }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.form-note { margin-top: 16px; color: rgba(255,255,255,.48); font-size: 10px; line-height: 1.6; }
.map-card { position: relative; min-height: 410px; overflow: hidden; border-radius: 30px; background-color: var(--mint); background-image: linear-gradient(rgba(18,58,47,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(18,58,47,.08) 1px, transparent 1px); background-size: 42px 42px; }
.map-card::before, .map-card::after { content: ""; position: absolute; border: 2px solid rgba(18,58,47,.14); border-radius: 50%; }
.map-card::before { width: 360px; height: 360px; left: 20%; top: -25%; }
.map-card::after { width: 220px; height: 220px; right: 12%; bottom: -10%; }
.map-pin { position: absolute; left: 50%; top: 49%; z-index: 2; width: 56px; height: 56px; transform: translate(-50%, -50%) rotate(45deg); border-radius: 50% 50% 50% 8px; background: var(--orange); box-shadow: 0 18px 40px rgba(239,107,54,.3); }
.map-pin::after { content: ""; position: absolute; inset: 18px; border-radius: 50%; background: white; }
.map-label { position: absolute; left: 50%; top: calc(49% + 58px); z-index: 2; transform: translateX(-50%); padding: 13px 18px; border-radius: 14px; background: var(--cream); box-shadow: var(--shadow); font-size: 12px; font-weight: 800; white-space: nowrap; }

/* FAQ, CTA, footer */
.faq-list { display: grid; gap: 12px; max-width: 930px; margin: 0 auto; }
.faq-list details { padding: 0 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--cream); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 0; cursor: pointer; font-weight: 800; list-style: none; }
.faq-list summary::after { content: "+"; color: var(--orange); font-size: 22px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -3px 0 22px; padding-right: 40px; color: var(--muted); line-height: 1.75; }
.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 54px 58px; border-radius: 32px; background: var(--ink-deep); color: white; }
.cta-band h2 { max-width: 720px; margin: 0; font: 500 clamp(36px, 4vw, 52px)/1.05 Georgia, serif; letter-spacing: -.035em; }
.cta-band p { max-width: 520px; margin: 14px 0 0; color: rgba(255,255,255,.62); line-height: 1.7; }
.site-footer { margin-top: 90px; padding: 64px 0 30px; background: var(--ink-deep); color: white; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand p { max-width: 320px; color: rgba(255,255,255,.56); font-size: 13px; line-height: 1.7; }
.footer-title { margin-bottom: 17px; color: var(--gold); font-size: 10px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.footer-links { display: grid; gap: 12px; color: rgba(255,255,255,.7); font-size: 13px; }
.footer-links a:hover { color: white; }
.footer-address { color: rgba(255,255,255,.58); font-size: 12px; font-style: normal; line-height: 1.7; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.4); font-size: 10px; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .home-hero, .inner-hero-grid, .split, .mission-grid, .india-panel, .contact-grid, .dark-banner-grid, .responsible-grid { grid-template-columns: 1fr; }
  .home-hero-visual { min-height: 500px; }
  .service-preview-grid { grid-template-columns: 1fr 1fr; }
  .preview-intro { grid-column: 1 / -1; }
  .preview-card { border-top: 1px solid var(--line); }
  .service-detail-grid, .card-grid { grid-template-columns: 1fr; }
  .process-grid, .value-cards { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(3) { border-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1200px); }
  .brand-copy span { display: none; }
  .brand-copy strong { font-size: 12px; }
  .nav-cta { padding: 0 12px; }
  .nav-cta .nav-cta-label { display: none; }
  .home-hero-copy { padding: 42px 28px; }
  .display { font-size: 48px; }
  .home-hero-visual { min-height: 420px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .service-preview { padding: 0 10px; }
  .service-preview-grid, .process-grid, .value-cards, .principle-grid, .form-grid { grid-template-columns: 1fr; }
  .preview-intro, .preview-card { grid-column: auto; border-left: 0; }
  .value-line { flex-wrap: wrap; gap: 15px; }
  .section { padding: 72px 0; }
  .section-head, .cta-band { align-items: flex-start; flex-direction: column; }
  .dark-banner, .quote-panel, .contact-form, .india-panel-copy, .cta-band { padding: 34px 26px; }
  .service-detail { grid-template-columns: 1fr; }
  .process-step + .process-step { padding-left: 0; border-left: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
