/* ===========================
   PROFESSOR PRANAV PANDYA
   Main Stylesheet
   =========================== */

/* ── CSS Variables ── */
:root {
  --cream: #faf7f3;
  --rose: #e8d5cc;
  --rose-mid: #d4a99a;
  --rose-deep: #b87a6b;
  --sage: #c5cfc0;
  --sage-deep: #8a9e84;
  --mauve: #d3c0cc;
  --mauve-deep: #9a7a8f;
  --gold: #c9a96e;
  --text-dark: #2c2019;
  --text-mid: #5c4a3a;
  --text-light: #9a8878;
  --white: #ffffff;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Jost", sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(44, 32, 25, 0.08);
  --shadow-lg: 0 12px 48px rgba(44, 32, 25, 0.12);
  --transition: 0.3s ease;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text-dark);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ── Typography ── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}
h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
}
h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
}
h4 {
  font-size: 1.1rem;
}

em {
  font-style: italic;
  color: var(--rose-deep);
}

p {
  margin-bottom: 1.2rem;
  color: var(--text-mid);
}

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.7rem 1.8rem;
  border-radius: 40px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--text-mid);
  border-color: var(--text-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: transparent;
  border-color: var(--rose-deep);
  color: var(--rose-deep);
}
.btn-secondary:hover {
  background: var(--rose-deep);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 0.9rem 2.4rem;
  font-size: 0.85rem;
}

/* ── Sections ── */
.section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 0.5rem;
}

.section-title {
  margin-bottom: 1.2rem;
}

.section-subtitle {
  font-size: 1.07rem;
  color: var(--text-light);
  max-width: 560px;
}

.section-header.centered {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* ── Image Placeholders ── */
.image-placeholder {
  background: linear-gradient(
    135deg,
    var(--rose) 0%,
    var(--mauve) 60%,
    var(--sage) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  color: var(--text-mid);
  font-size: 0.8rem;
  font-family: var(--font-sans);
  text-align: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
  background-size: cover;
}

.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23B87A6B' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.image-placeholder span {
  position: relative;
  z-index: 1;
  opacity: 0.7;
}

/* ── Flower Decorations (SVG inline via CSS) ── */
.flower-bg-right,
.flower-bg-left,
.footer-flower {
  position: absolute;
  pointer-events: none;
  opacity: 0.06;
  z-index: 0;
}

.flower-bg-right {
  right: -80px;
  top: -40px;
  width: 400px;
  height: 400px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%23B87A6B' stroke-width='1'%3E%3Ccircle cx='100' cy='100' r='80'/%3E%3Ccircle cx='100' cy='100' r='60'/%3E%3Ccircle cx='100' cy='100' r='40'/%3E%3Cline x1='100' y1='20' x2='100' y2='180'/%3E%3Cline x1='20' y1='100' x2='180' y2='100'/%3E%3Cellipse cx='100' cy='60' rx='20' ry='35'/%3E%3Cellipse cx='100' cy='140' rx='20' ry='35'/%3E%3Cellipse cx='60' cy='100' rx='35' ry='20'/%3E%3Cellipse cx='140' cy='100' rx='35' ry='20'/%3E%3Cellipse cx='71' cy='71' rx='20' ry='35' transform='rotate(45 71 71)'/%3E%3Cellipse cx='129' cy='129' rx='20' ry='35' transform='rotate(45 129 129)'/%3E%3Cellipse cx='129' cy='71' rx='20' ry='35' transform='rotate(-45 129 71)'/%3E%3Cellipse cx='71' cy='129' rx='20' ry='35' transform='rotate(-45 71 129)'/%3E%3Ccircle cx='100' cy='100' r='12'/%3E%3C/g%3E%3C/svg%3E")
    center/contain no-repeat;
}

.flower-bg-left {
  left: -60px;
  bottom: 0;
  width: 350px;
  height: 350px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%23B87A6B' stroke-width='1'%3E%3Ccircle cx='100' cy='100' r='80'/%3E%3Ccircle cx='100' cy='100' r='60'/%3E%3Ccircle cx='100' cy='100' r='40'/%3E%3Cline x1='100' y1='20' x2='100' y2='180'/%3E%3Cline x1='20' y1='100' x2='180' y2='100'/%3E%3Cellipse cx='100' cy='60' rx='20' ry='35'/%3E%3Cellipse cx='100' cy='140' rx='20' ry='35'/%3E%3Cellipse cx='60' cy='100' rx='35' ry='20'/%3E%3Cellipse cx='140' cy='100' rx='35' ry='20'/%3E%3Cellipse cx='71' cy='71' rx='20' ry='35' transform='rotate(45 71 71)'/%3E%3Cellipse cx='129' cy='129' rx='20' ry='35' transform='rotate(45 129 129)'/%3E%3Cellipse cx='129' cy='71' rx='20' ry='35' transform='rotate(-45 129 71)'/%3E%3Cellipse cx='71' cy='129' rx='20' ry='35' transform='rotate(-45 71 129)'/%3E%3Ccircle cx='100' cy='100' r='12'/%3E%3C/g%3E%3C/svg%3E")
    center/contain no-repeat;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(44, 32, 25, 0.08);
}

.header-top {
  background: var(--cream);
  border-bottom: 1px solid var(--rose);
  padding: 0.4rem 0;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.social-links {
  display: flex;
  gap: 0.6rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--text-mid);
  transition: var(--transition);
}
.social-icon:hover {
  color: var(--rose-deep);
}

.header-contact {
  font-size: 0.9rem;
  color: var(--text-light);
  letter-spacing: 0.03em;
}

.header-main {
  padding: 1rem 0;
}

.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  max-width: 200px;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.logo-tag {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--text-light);
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 0.4rem 0.4rem;
  border-radius: 4px;
  transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--rose-deep);
}

.main-nav .btn {
  margin-left: 1rem;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero_main {
  width: 100%;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 0;
  font-size: 0.85rem;
  background: linear-gradient(135deg, #e8d5cc 0%, #d3c0cc 40%, #c5cfc0 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 30%,
    transparent 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 20px rgba(44, 32, 25, 0.3);
}

.hero-subtitle {
  font-size: 1.07rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.4rem;
  max-width: 500px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  border-top: 3px solid var(--rose-deep);
  padding: 2rem 0;
  box-shadow: var(--shadow);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.trust-number {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--rose-deep);
}

.trust-label {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--rose);
}

/* ── INTRO SECTION ── */
.intro-section {
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.portrait-placeholder {
  aspect-ratio: 3/4;
  width: 100%;
  background-size: cover;
}

.intro-card {
  background: var(--white);
  border-left: 3px solid var(--rose-deep);
  padding: 1.4rem 1.6rem;
  margin-top: -3rem;
  margin-right: -2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.intro-card-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.intro-card-attr {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
  text-transform: uppercase;
}

.intro-text-col p {
  margin-bottom: 1.1rem;
}

/* ── SERVICES SECTION ── */
.services-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: block;
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-deep), var(--mauve-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rose);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card--highlight {
  background: linear-gradient(135deg, var(--rose) 0%, var(--mauve) 100%);
}

.service-icon {
  width: 52px;
  height: 52px;
  color: var(--rose-deep);
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
}

.service-card p {
  font-size: 1.07rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.card-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--rose-deep);
}

.services-cta {
  text-align: center;
}

/* ── WHY SECTION ── */
.why-section {
  background: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.why-image-col {
  position: relative;
}

.why-placeholder {
  aspect-ratio: 4/5;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.why-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -2rem;
  background: var(--rose-deep);
  color: var(--white);
  padding: 1.2rem 1.6rem;
  border-radius: var(--radius);
  text-align: center;
  font-family: var(--font-sans);
  line-height: 1.4;
  box-shadow: var(--shadow-lg);
}
.why-badge img {
  width: 100px;
}
.why-badge span {
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  display: block;
}
.why-badge strong {
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin: 2rem 0 2.4rem;
}

.why-list li {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.why-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose-deep);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.why-list strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--text-dark);
}

.why-list p {
  margin: 0;
  font-size: 1.07rem;
}

/* ── VIDEO TEASER ── */
.video-teaser-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.video-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.video-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.video-thumb-placeholder {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--rose) 0%, var(--mauve) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-mid);
  font-size: 0.72rem;
}
.video-thumb-placeholder iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-deep);
  box-shadow: var(--shadow);
}
.play-btn svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
}

.video-card h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
  padding: 1rem 1.2rem 1.2rem;
  line-height: 1.4;
}

/* ── CTA BANNER ── */
.cta-banner {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  text-align: center;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin-top: -400px;
}
.cta-placeholder {
  height: 100%;
  width: 100%;
  border-radius: 0;
  background: linear-gradient(
    135deg,
    var(--rose) 0%,
    var(--mauve) 50%,
    var(--sage) 100%
  );
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 32, 25, 0.55);
  z-index: 1;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.cta-banner-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner-content p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.cta-phone {
  margin-top: 1.2rem;
  font-size: 1.03rem;
  color: rgba(255, 255, 255, 0.7);
}
.cta-phone a {
  color: var(--white);
  text-decoration: underline;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 5rem 0 0;
  position: relative;
  overflow: hidden;
}

.footer-flower {
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  opacity: 0.04;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1'%3E%3Ccircle cx='100' cy='100' r='80'/%3E%3Ccircle cx='100' cy='100' r='60'/%3E%3Ccircle cx='100' cy='100' r='40'/%3E%3Cellipse cx='100' cy='60' rx='20' ry='35'/%3E%3Cellipse cx='100' cy='140' rx='20' ry='35'/%3E%3Cellipse cx='60' cy='100' rx='35' ry='20'/%3E%3Cellipse cx='140' cy='100' rx='35' ry='20'/%3E%3Ccircle cx='100' cy='100' r='12'/%3E%3C/g%3E%3C/svg%3E")
    center/contain no-repeat;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand img {
  max-width: 200px;
}
.footer-brand .logo-name {
  color: var(--white);
  font-size: 1.2rem;
}
.footer-brand .logo-tag {
  color: rgba(255, 255, 255, 0.4);
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.2rem;
}
.footer-social .social-icon {
  color: rgba(255, 255, 255, 0.5);
}
.footer-social .social-icon:hover {
  color: var(--rose-mid);
}

.site-footer h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.2rem;
}

.site-footer ul li {
  margin-bottom: 0.5rem;
}
.site-footer ul a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}
.site-footer ul a:hover {
  color: var(--rose-mid);
}

.site-footer .footer-col p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.site-footer .footer-col a {
  color: rgba(255, 255, 255, 0.65);
}
.site-footer .footer-col a:hover {
  color: var(--rose-mid);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem 0;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}
.footer_text {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--rose) 0%,
    var(--mauve) 60%,
    var(--sage) 100%
  );
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 300px;
  height: 300px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.15'%3E%3Ccircle cx='100' cy='100' r='80'/%3E%3Ccircle cx='100' cy='100' r='60'/%3E%3Cellipse cx='100' cy='60' rx='20' ry='35'/%3E%3Cellipse cx='100' cy='140' rx='20' ry='35'/%3E%3Cellipse cx='60' cy='100' rx='35' ry='20'/%3E%3Cellipse cx='140' cy='100' rx='35' ry='20'/%3E%3Ccircle cx='100' cy='100' r='12'/%3E%3C/g%3E%3C/svg%3E")
    center/contain no-repeat;
}

.page-hero-content {
  max-width: 700px;
}
.page-hero p.section-eyebrow {
  margin-bottom: 0.6rem;
}
.page-hero h1 {
  margin-bottom: 1rem;
}
.page-hero .lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 580px;
}

/* ── ABOUT PAGE ── */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.bio-image-stack {
  position: relative;
}

.bio-primary {
  aspect-ratio: 3/4;
  width: 100%;
}

.bio-secondary {
  position: absolute;
  bottom: -2rem;
  right: -2.5rem;
  width: 55%;
  aspect-ratio: 1;
}

.bio-text h2 {
  margin-bottom: 1.2rem;
}
.bio-text p {
  margin-bottom: 1rem;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.credential-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--rose-deep);
  box-shadow: var(--shadow);
}
.credential-item strong {
  display: block;
  font-size: 0.8rem;
  color: var(--rose-deep);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}
.credential-item span {
  font-size: 0.98rem;
  color: var(--text-mid);
}

.roles-list {
  margin: 1.5rem 0 2rem;
}
.roles-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--rose);
  font-size: 1.03rem;
  color: var(--text-mid);
}
.roles-list li::before {
  content: "◆";
  color: var(--rose-deep);
  font-size: 0.5rem;
  margin-top: 0.45rem;
  flex-shrink: 0;
}

/* ── SCANS PAGE ── */
.scan-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--rose);
}
.scan-type.reverse {
  direction: rtl;
}
.scan-type.reverse > * {
  direction: ltr;
}

.scan-image-placeholder {
  aspect-ratio: 4/3;
  width: 100%;
}

.scan-content h3 {
  margin-bottom: 0.8rem;
}
.scan-content p {
  margin-bottom: 1rem;
}

.scan-facts {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin: 1.2rem 0;
}
.scan-facts dt {
  font-size: 1.03rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-deep);
}
.scan-facts dd {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 0.7rem;
}

/* ── VIDEO FAQs PAGE ── */
.video-faqs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.video-faq-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.video-faq-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.video-embed-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  background: #1a1a2e;
  overflow: hidden;
}

.video-embed-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder-card {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--rose) 0%, var(--mauve) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-mid);
  font-size: 0.72rem;
  text-align: center;
  padding: 1rem;
}
.video-placeholder-card iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-faq-info {
  padding: 1.2rem 1.4rem 1.6rem;
}

.video-faq-info h4 {
  font-family: var(--font-sans);
  font-size: 1.03rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
  line-height: 1.4;
}
.video-faq-info p {
  font-size: 1.03rem;
  color: var(--text-light);
  margin: 0;
}

/* ── FETAL MEDICINE PAGE ── */
.fm-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin: 3rem 0;
}

.condition-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--rose-mid);
  transition: var(--transition);
}
.condition-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.condition-card h4 {
  margin-bottom: 0.4rem;
  font-size: 1.4rem;
}
.condition-card p {
  font-size: 1.03rem;
  color: var(--text-light);
  margin: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--rose-deep);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.process-step h4 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.process-step p {
  font-size: 1.03rem;
  color: var(--text-light);
  margin: 0;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 1.2rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rose);
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  background: var(--rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rose-deep);
}
.contact-detail-icon svg {
  width: 16px;
  height: 16px;
}

.contact-detail dt {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}
.contact-detail dd {
  font-size: 1.03rem;
  color: var(--text-mid);
}
.contact-detail a {
  color: var(--rose-deep);
}

.map-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--sage) 0%, var(--mauve) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-top: 2rem;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
}

/* ── APPOINTMENT FORM ── */
.appointment-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.appointment-section h3 {
  margin-bottom: 0.5rem;
}
.appointment-section > p {
  margin-bottom: 1.8rem;
  font-size: 1.03rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1.5px solid var(--rose);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  transition: var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rose-deep);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  margin-top: 0.5rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .intro-grid,
  .why-grid,
  .bio-grid,
  .fm-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .bio-image-stack {
    max-width: 500px;
  }
  .bio-secondary {
    display: none;
  }
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
  .hero {
    min-height: 70vh;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .video-grid,
  .video-faqs-grid {
    grid-template-columns: 1fr;
  }
  .scan-type,
  .scan-type.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .conditions-grid {
    grid-template-columns: 1fr;
  }
  .credentials-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .trust-bar-inner {
    gap: 1rem;
  }
  .trust-divider {
    display: none;
  }
  .intro-card {
    margin: 0;
  }
  .why-badge {
    position: static;
    display: inline-block;
    margin-top: 1rem;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 2rem 2rem;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--rose);
    gap: 0.3rem;
    align-items: flex-start;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav .btn {
    width: 100%;
    text-align: center;
    margin-left: 0;
    margin-top: 0.5rem;
  }
  .header-main {
    position: relative;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 0.8rem;
  }
  .hero-ctas .btn {
    width: fit-content;
  }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content > * {
  animation: fadeUp 0.8s ease both;
}
.hero-eyebrow {
  animation-delay: 0.1s;
}
.hero-title {
  animation-delay: 0.25s;
}
.hero-subtitle {
  animation-delay: 0.4s;
}
.hero-ctas {
  animation-delay: 0.55s;
}
.public_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
.public_list p {
  margin-bottom: 10px;
}
.public_list a {
  display: block;
  color: #b87a6b;
}

.accordion {
  border: 1px solid #ddd;
  margin-bottom: 10px;
}

.accordion-btn {
  width: 100%;
  padding: 15px;
  text-align: left;
  border: 0;
  background: #f5f5f5;
  cursor: pointer;
  font-size: 20px;
  font-family: var(--font-sans);
}

.accordion-content {
  display: none;
  padding: 15px;
}

.accordion.active .accordion-content {
  display: block;
}
.footer_btn {
  display: none;
}
@media (max-width: 767px) {
  .footer_btn {
    position: fixed;
    width: 100%;
    padding: 10px;
    bottom: 0px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    background-color: #fff;
    z-index: 2;
  }
  .footer_btn .btn {
    padding: 0.7rem 15px;
  }
}
