/* ============ Sejal Patel & Co. — Stylesheet ============ */

:root {
  --navy-900: #0A1F36;
  --navy-800: #0E2A47;
  --navy-700: #173658;
  --navy-600: #234A75;
  --gold-500: #B8924A;
  --gold-400: #C9A967;
  --gold-300: #DCC089;
  --cream:    #F8F4EB;
  --bg:       #FFFFFF;
  --bg-alt:   #F6F4EF;
  --ink:      #1A2433;
  --ink-soft: #4B5666;
  --line:     #E6E1D5;
  --line-soft:#EFEBE0;
  --shadow-sm: 0 2px 6px rgba(14,42,71,.06);
  --shadow-md: 0 12px 32px rgba(14,42,71,.10);
  --shadow-lg: 0 20px 50px rgba(14,42,71,.16);
  --radius:   14px;
  --radius-lg:20px;
  --maxw: 1180px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--navy-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-500); }
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--navy-800);
  letter-spacing: .2px;
  margin: 0 0 .5em;
  font-weight: 600;
}
h1 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.2; }
h3 { font-size: 1.35rem; line-height: 1.3; }
h4 { font-size: 1.05rem; line-height: 1.3; }
p  { margin: 0 0 1em; color: var(--ink-soft); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 24px; border-radius: 999px;
  font-weight: 600; font-size: .95rem; letter-spacing: .2px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: .88rem; }
.btn-gold { background: var(--gold-500); color: #fff; box-shadow: 0 6px 18px rgba(184,146,74,.35); }
.btn-gold:hover { background: var(--gold-400); color: #fff; transform: translateY(-1px); }
.btn-outline { color: var(--navy-800); border-color: var(--navy-800); background: transparent; }
.btn-outline:hover { background: var(--navy-800); color: #fff; }
.btn-outline-light { color: #fff; border-color: rgba(255,255,255,.8); background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--navy-800); }

/* Topbar */
.topbar {
  background: var(--navy-900); color: #DCD4C2;
  font-size: .82rem; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar-contacts { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-contacts a, .topbar-loc { color: #DCD4C2; display: inline-flex; align-items: center; gap: 6px; }
.topbar-contacts a:hover { color: var(--gold-300); }
.topbar-meta { color: #B9B0A0; display: flex; gap: 10px; align-items: center; }
.topbar-meta .dot { color: var(--gold-400); }
.ic { font-size: .9em; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo { height: 58px; width: auto; object-fit: contain; display: block; }
.brand-divider { width: 1px; height: 42px; background: var(--line-soft); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 700; color: var(--navy-800); letter-spacing: .4px; }
.brand-sub  { font-size: .72rem; letter-spacing: 2.2px; text-transform: uppercase; color: var(--gold-500); margin-top: 4px; font-weight: 600; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--navy-800); font-weight: 500; font-size: .95rem; }
.nav a:not(.btn):hover { color: var(--gold-500); }

.nav-toggle {
  display: none; background: transparent; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px; background: var(--navy-800); margin: 5px 0; border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 60%, var(--navy-600) 100%);
  color: #EBE5D5;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(184,146,74,.22), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(184,146,74,.10), transparent 50%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  padding: 64px 24px 72px;
}
.hero-copy .eyebrow {
  display: inline-block; font-size: .78rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-300); padding: 6px 14px; border: 1px solid rgba(220,192,137,.4);
  border-radius: 999px; margin-bottom: 16px;
}
.hero-copy h1 { color: #fff; }
.hero-copy h1 .accent { color: var(--gold-400); font-style: italic; }
.lede { color: #D8D2C2; font-size: 1.12rem; max-width: 820px; margin-bottom: 24px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-cta .btn-outline { color: #fff; border-color: rgba(255,255,255,.55); }
.hero-cta .btn-outline:hover { background: #fff; color: var(--navy-800); }
.hero-stats {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 28px;
}
.hero-stats li { display: flex; flex-direction: column; gap: 8px; }
.hero-stats strong { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; color: var(--gold-400); font-weight: 700; line-height: 1; }
.hero-stats span { font-size: .92rem; letter-spacing: 1.2px; text-transform: uppercase; color: #CFC7B4; }

/* Sections */
.section { padding: 64px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--navy-800); color: #DDD6C5; }
.section-head { max-width: 760px; margin: 0 auto 36px; text-align: center; }
.kicker {
  display: inline-block; font-size: .78rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-500); font-weight: 600; margin-bottom: 14px;
}
.kicker.light { color: var(--gold-300); }
.section-head h2 { margin-bottom: 14px; }
.section-head h2.light { color: #fff; }
.section-sub { color: var(--ink-soft); font-size: 1.05rem; }
.section-sub.light { color: #C7C0AE; }

/* About */
.about-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center;
}
.about-copy p { font-size: 1.02rem; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.stat-num {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; color: var(--gold-500); margin-bottom: 4px;
}
.stat-label { font-size: .82rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-soft); }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 0;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transition: width .3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { width: 100%; }
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px;
}
.service-card h3 { color: var(--navy-800); margin-bottom: 12px; }
.service-card ul { padding-left: 18px; margin: 0; }
.service-card li { color: var(--ink-soft); margin-bottom: 6px; font-size: .95rem; }
.service-card li::marker { color: var(--gold-500); }
.service-card li strong { color: var(--navy-800); }

/* Why */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-num {
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem;
  color: var(--gold-500); font-weight: 700; display: block; margin-bottom: 10px;
}
.why-card h4 { color: var(--navy-800); margin-bottom: 8px; }
.why-card p { font-size: .94rem; margin: 0; }

/* Industries */
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.industry-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(220,192,137,.25);
  border-radius: var(--radius);
  padding: 22px 20px; text-align: center;
  font-weight: 500; color: #EFE9D8; font-size: .95rem;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.industry-card:hover {
  background: rgba(184,146,74,.12); border-color: var(--gold-400); transform: translateY(-2px);
}

/* Founder */
.founder-grid {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: center;
}
.founder-photo {
  position: relative;
}
.founder-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 5px solid #fff;
  outline: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.founder-photo::after {
  content: ""; position: absolute; inset: 18px -18px -18px 18px;
  border: 2px solid var(--gold-400); border-radius: var(--radius-lg);
  z-index: -1;
}
.founder-copy h3 { font-size: 1.8rem; margin-bottom: 4px; }
.founder-role { color: var(--gold-500); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; font-size: .82rem; margin-bottom: 18px; }
.founder-creds { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 8px; }
.founder-creds li { padding: 10px 14px; background: var(--bg-alt); border-left: 3px solid var(--gold-500); border-radius: 6px; font-size: .95rem; color: var(--ink); }
.founder-second { color: var(--ink-soft); }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: #fff;
  padding: 44px 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 50%, rgba(184,146,74,.25), transparent 45%);
}
.cta-inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.cta-inner h3 { color: #fff; margin-bottom: 6px; font-size: 1.6rem; }
.cta-inner p { color: #C7C0AE; margin: 0; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.contact-info { display: grid; gap: 24px; align-content: start; }
.contact-block h4 {
  color: var(--gold-500); font-family: 'Inter', sans-serif; font-size: .8rem;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px;
}
.contact-block p { margin: 0; color: var(--ink); font-size: 1rem; line-height: 1.7; }
.contact-block a { color: var(--navy-800); font-weight: 500; }
.contact-block a:hover { color: var(--gold-500); }
.quick-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.contact-map {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
  min-height: 420px;
}
.contact-map iframe { display: block; min-height: 420px; }

/* Footer */
.footer {
  background: var(--navy-900); color: #B9B0A0; padding: 50px 0 28px;
  border-top: 4px solid var(--gold-500);
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 30px; align-items: center;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { height: 60px; width: auto; background: #fff; padding: 6px 10px; border-radius: 10px; object-fit: contain; }
.footer-name { color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; margin: 0; }
.footer-tag  { font-size: .82rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-300); margin: 4px 0 0; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: #DCD4C2; font-size: .95rem; }
.footer-links a:hover { color: var(--gold-400); }
.footer-meta { text-align: right; font-size: .85rem; }
.footer-meta p { margin: 0 0 4px; color: #B9B0A0; }

/* Floating WhatsApp */
.float-wa {
  position: fixed; bottom: 22px; right: 22px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(37,211,102,.4);
  transition: transform .2s ease, box-shadow .2s ease;
}
.float-wa:hover { transform: translateY(-2px) scale(1.04); color: #fff; box-shadow: 0 14px 32px rgba(37,211,102,.5); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { padding: 48px 24px 56px; }
  .about-grid, .founder-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .services-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-meta { text-align: center; }
  .founder-photo::after { display: none; }
}
@media (max-width: 720px) {
  .topbar-meta { display: none; }
  .topbar-contacts { gap: 14px; font-size: .78rem; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch;
    gap: 0; padding: 12px 24px 20px; border-bottom: 1px solid var(--line-soft);
    transform: translateY(-110%); opacity: 0; pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
    box-shadow: var(--shadow-md);
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
  .nav a.btn { margin-top: 10px; align-self: flex-start; }
  .nav-toggle { display: block; }
  .section { padding: 48px 0; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero-stats strong { font-size: 2rem; }
  .services-grid, .why-grid, .industry-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
}
