/* Vikas Sharma — Shreemay Management Consultancy */

:root {
  --brand: #e4572e;
  --brand-dark: #9c2b15;
  --brand-light: #fbeae3;
  --ink: #221a18;
  --muted: #6b5f5c;
  --bg: #ffffff;
  --bg-alt: #fbf7f5;
  --border: #eee0da;
  --radius: 14px;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 { line-height: 1.2; margin: 0 0 0.5em; }
h1 { font-size: clamp(2rem, 4vw + 1rem, 3rem); }
h2 { font-size: clamp(1.5rem, 2vw + 1rem, 2.1rem); }
h3 { font-size: 1.1rem; }
p { margin: 0 0 1em; color: var(--ink); }
.lede { font-size: 1.1rem; color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 1.5em;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--brand); color: var(--brand-dark); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 0.6em;
  display: block;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  color: var(--ink);
}
.logo span { color: var(--brand); }
.nav-links {
  display: none;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a { text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.nav-links a:hover { color: var(--brand-dark); }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

.mobile-nav {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  background: #fff;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.9rem 20px;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* Hero */
.hero { padding: 56px 0 64px; background: var(--bg-alt); overflow: hidden; }
.hero .wrap {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero .wrap { grid-template-columns: 1.1fr 0.9fr; }
}
.hero-copy p.lede { max-width: 46ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.hero-meta { margin-top: 1.75rem; display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hero-meta div { font-size: 0.9rem; color: var(--muted); }
.hero-meta strong { display: block; font-size: 1.4rem; color: var(--ink); }

.hero-photo { position: relative; max-width: 360px; margin: 0 auto; }
.hero-photo .blob {
  position: absolute;
  inset: -18px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border-radius: 62% 38% 55% 45% / 45% 55% 45% 55%;
  z-index: 0;
  opacity: 0.9;
}
.hero-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 32px;
  border: 6px solid #fff;
  box-shadow: 0 24px 48px -20px rgba(156, 43, 21, 0.35);
}

/* Trust strip */
.trust { padding: 36px 0; border-bottom: 1px solid var(--border); }
.trust-eyebrow { text-align: center; width: 100%; }
.trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.trust-list li {
  font-weight: 700;
  color: var(--muted);
  font-size: 0.95rem;
  white-space: nowrap;
}

/* Sections */
section { padding: 72px 0; }
.section-head { max-width: 62ch; margin-bottom: 2.5rem; }

/* About */
.about .wrap { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 900px) {
  .about .wrap { grid-template-columns: 0.8fr 1.2fr; }
}
.about-photo img {
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.about-facts {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
.about-facts li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--ink);
}
.about-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

/* Services */
.services { background: var(--bg-alt); }
.service-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--brand-dark);
}
.service-card h3 { margin-bottom: 0.4em; }
.service-card p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* Why / EEAT */
.why-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.stat {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.stat strong { display: block; font-size: 2rem; color: var(--brand-dark); }
.stat span { font-size: 0.85rem; color: var(--muted); }

/* FAQ */
.faq-list { display: grid; gap: 0.75rem; max-width: 76ch; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.faq-item h3 { margin-bottom: 0.5em; font-size: 1.05rem; }
.faq-item p { margin: 0; color: var(--muted); }

/* Contact */
.contact { background: var(--bg-alt); }
.contact-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; }
}
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.contact-card p { color: var(--muted); }
.contact-card .btn-primary { margin-top: 0.5rem; }

form.contact-form {
  display: grid;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.form-field { display: grid; gap: 0.4rem; }
.form-field label { font-weight: 600; font-size: 0.9rem; }
.form-field input, .form-field textarea {
  padding: 0.75em 0.9em;
  border: 1px solid var(--border);
  border-radius: 10px;
  font: inherit;
}
.form-field input:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown) {
  border-color: #c0392b;
}
.field-error {
  color: #c0392b;
  font-size: 0.82rem;
  min-height: 1em;
}
.form-status {
  font-weight: 600;
  min-height: 1.2em;
}
.form-status.success { color: #1e7d3b; }
.form-status.error { color: #c0392b; }

/* Footer */
footer.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}
footer.site-footer a { color: var(--brand-dark); text-decoration: none; font-weight: 600; }
