@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  /* Purples */
  --blue-deep:    #2D1B5C;
  --blue-mid:     #5B3A9E;
  --blue-soft:    #7B5BB8;
  --blue-light:   #A98DD6;
  --blue-pale:    #DDD0F5;
  --blue-ghost:   #EFE9FA;
  --blue-wash:    #F7F4FD;

  /* Warm neutrals */
  --cream:        #FAFBFC;
  --white:        #FFFFFF;
  --dark:         #1E1530;
  --mid:          #5A4870;
  --light:        #9A88B0;

  /* Accent — warm rose for contrast */
  --gold:         #C4527A;
  --gold-pale:    #FDE8EF;

  /* Mauve as subtle second accent */
  --sage:         #9A7AB8;

  --shadow-soft:  0 4px 28px rgba(45, 27, 92, 0.10);
  --shadow-card:  0 8px 48px rgba(45, 27, 92, 0.14);
  --r-sm:  10px;
  --r-md:  18px;
  --r-lg:  32px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--blue-wash);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }

/* ══════════════════════════
   NAV
══════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  background: rgba(240, 246, 251, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(27,58,92,.1); }

.nav-brand { display: flex; align-items: center; }
.nav-logo-svg {
  width: 200px;
  height: 40px;
  flex-shrink: 0;
  display: block;
}

.nav-links { display: flex; align-items: center; gap: 2.4rem; }
.nav-links a {
  font-size: .86rem; font-weight: 500;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--mid); position: relative; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 2px; background: var(--blue-mid);
  border-radius: 2px; transition: width .25s;
}
.nav-links a:hover { color: var(--blue-mid); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--blue-mid) !important; color: #fff !important;
  padding: 9px 22px; border-radius: 50px; font-size: .85rem !important;
  transition: background .2s, transform .2s !important;
  box-shadow: 0 4px 16px rgba(46,96,148,.28);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--blue-deep) !important; transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px;
}
.mobile-nav {
  display: none; position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--blue-wash);
  border-bottom: 1px solid var(--blue-pale);
  padding: 1.5rem 6%;
  flex-direction: column; gap: 1.2rem; z-index: 99;
  box-shadow: var(--shadow-soft);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-weight: 500; color: var(--mid); }
.mobile-nav a:hover { color: var(--blue-mid); }
.mobile-nav .nav-cta {
  background: var(--blue-mid) !important; color: #fff !important;
  padding: 12px 24px; border-radius: 50px; text-align: center;
}

/* ══════════════════════════
   HERO
══════════════════════════ */
#home {
  min-height: 100vh;
  padding-top: 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  grid-template-areas:
    "top photo"
    "bottom photo";
  align-items: center;
  background: var(--blue-wash);
  position: relative;
  overflow: hidden;
}

/* Soft atmospheric blobs in blue tones — sit behind photo */
.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.blob-1 {
  width: 600px; height: 600px;
  background: var(--blue-pale);
  opacity: .55;
  right: -80px; top: 50%;
  transform: translateY(-50%);
}
.blob-2 {
  width: 280px; height: 280px;
  background: var(--blue-ghost);
  opacity: .8;
  right: 32%; top: 6%;
}
.blob-3 {
  width: 200px; height: 300px;
  background: var(--blue-pale);
  opacity: .45;
  right: 8%; bottom: 0;
  border-radius: 55% 45% 40% 60% / 50% 55% 45% 55%;
  animation: blobDrift 10s ease-in-out infinite;
}
@keyframes blobDrift {
  0%,100% { border-radius: 55% 45% 40% 60% / 50% 55% 45% 55%; }
  50%      { border-radius: 40% 60% 55% 45% / 55% 45% 60% 40%; }
}

/* LEFT: text — split into top and bottom for mobile ordering */
.hero-content-top {
  grid-area: top;
  padding: 4rem 4% 1rem 6%;
  position: relative; z-index: 2;
  min-width: 0;
}
.hero-content-bottom {
  grid-area: bottom;
  padding: 1rem 4% 4rem 6%;
  position: relative; z-index: 2;
  min-width: 0;
}
.hero-photo-col { grid-area: photo; }
.hero-content-top > *, .hero-content-bottom > * {
  opacity: 0; animation: fadeUp .65s ease forwards;
}
.hero-content-top > *:nth-child(1) { animation-delay: .10s; }
.hero-content-top > *:nth-child(2) { animation-delay: .22s; }
.hero-content-top > *:nth-child(3) { animation-delay: .32s; }
.hero-content-bottom > *:nth-child(1) { animation-delay: .42s; }
.hero-content-bottom > *:nth-child(2) { animation-delay: .52s; }
.hero-content-bottom > *:nth-child(3) { animation-delay: .62s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(46,96,148,.1);
  border: 1px solid rgba(46,96,148,.22);
  color: var(--blue-deep);
  font-size: .75rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 1.6rem;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px;
  background: var(--blue-mid); border-radius: 50%;
}

.hero-h1 {
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 700; line-height: 1.08;
  color: var(--dark); margin-bottom: .45rem;
}
.hero-h1 em { font-style: italic; color: var(--blue-mid); }

.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 400; font-style: italic;
  color: var(--light); letter-spacing: .03em;
  margin-bottom: 1.8rem;
}

.hero-para {
  font-size: 1rem; color: var(--mid);
  line-height: 1.85; max-width: 460px;
  margin-bottom: 2.2rem;
}

.hero-stats { display: flex; gap: 2.5rem; margin-bottom: 2.6rem; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--blue-mid); line-height: 1;
}
.stat-lbl {
  font-size: .73rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .09em;
  color: var(--light); margin-top: 4px;
}

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

/* RIGHT: photo column — transparent PNG floats on blue-wash */
.hero-photo-col {
  position: relative; z-index: 2;
  height: calc(100vh - 70px);
  min-height: 520px;
  /* background intentionally NOT set — inherits blue-wash from #home */
}

/*
 * PHOTO: plain <img>, no filter, no height, no object-fit, no crossorigin.
 * width constraint only. This is the simplest possible rendering and
 * guarantees the transparent PNG background shows through correctly.
 */
.hero-photo-col img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 86%;
  max-width: 450px;
  /* height / object-fit intentionally omitted */
  /* filter intentionally omitted */
  z-index: 2;
  animation: imgRise .9s ease .2s both;
}
@keyframes imgRise {
  from { opacity: 0; transform: translateX(-50%) translateY(28px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Floating credential card */
.hero-creds {
  position: absolute; bottom: 56px; left: 0; z-index: 3;
  background: var(--white); border-radius: var(--r-md);
  padding: 15px 20px; border: 1px solid var(--blue-pale);
  box-shadow: var(--shadow-card); min-width: 196px;
}
.cred-row {
  display: flex; align-items: center; gap: 9px;
  font-size: .75rem; font-weight: 600; color: var(--dark);
  padding: 3.5px 0;
}
.cred-row::before {
  content: ''; width: 7px; height: 7px; flex-shrink: 0;
  background: var(--sage); border-radius: 50%;
}

/* Floating years badge */
.hero-badge {
  position: absolute; top: 90px; right: 14px; z-index: 3;
  background: var(--blue-mid); color: #fff;
  border-radius: var(--r-md); padding: 14px 18px; text-align: center;
  box-shadow: 0 6px 24px rgba(46,96,148,.35);
}
.badge-big {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; font-weight: 700; line-height: 1;
}
.badge-sm {
  font-size: .67rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  opacity: .88; margin-top: 3px;
}

/* ══════════════════════════
   BUTTONS
══════════════════════════ */
.btn-fill {
  display: inline-block;
  background: var(--blue-mid); color: #fff;
  padding: 13px 30px; border-radius: 50px;
  font-size: .93rem; font-weight: 600; font-family: 'DM Sans', sans-serif;
  border: none; cursor: pointer;
  box-shadow: 0 5px 22px rgba(46,96,148,.3);
  transition: background .22s, transform .18s, box-shadow .22s;
}
.btn-fill:hover {
  background: var(--blue-deep); transform: translateY(-2px);
  box-shadow: 0 9px 30px rgba(46,96,148,.38);
}
.btn-outline {
  display: inline-block;
  background: transparent; color: var(--mid);
  padding: 13px 30px; border-radius: 50px;
  font-size: .93rem; font-weight: 600; font-family: 'DM Sans', sans-serif;
  border: 2px solid var(--blue-pale); cursor: pointer;
  transition: all .22s;
}
.btn-outline:hover {
  border-color: var(--blue-mid); color: var(--blue-mid);
  transform: translateY(-2px);
}

/* ══════════════════════════
   SCROLL REVEAL
══════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════
   SECTION HELPERS
══════════════════════════ */
.eyebrow {
  font-size: .73rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--blue-mid); margin-bottom: .7rem;
}
.sec-title {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 600; color: var(--dark); margin-bottom: 1rem;
}
.sec-sub { font-size: .98rem; color: var(--mid); max-width: 540px; line-height: 1.85; }

/* ══════════════════════════
   ABOUT
══════════════════════════ */
#about { background: var(--white); padding: 7rem 8%; }
.about-grid {
  max-width: 780px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; align-items: start;
}
.about-body { font-size: .97rem; color: var(--mid); line-height: 1.88; margin-bottom: 1.1rem; }

.quals { margin-top: 1.8rem; display: flex; flex-direction: column; gap: .9rem; }
.qual {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 13px 17px; background: var(--blue-wash);
  border-radius: var(--r-sm); border-left: 3px solid var(--blue-soft);
}
.qual-ico { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.qual-t { font-weight: 600; font-size: .89rem; color: var(--dark); margin-bottom: 2px; }
.qual-s { font-size: .8rem; color: var(--light); }

.tl-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem; font-weight: 600; color: var(--dark); margin-bottom: 1.8rem;
}
.timeline { position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 13px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-mid), var(--blue-pale));
  border-radius: 2px;
}
.tl-item { position: relative; padding: 0 0 1.9rem 3rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: 6px; top: 5px;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--blue-mid); border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue-mid);
}
.tl-date { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--blue-mid); margin-bottom: 3px; }
.tl-role { font-weight: 600; font-size: .93rem; color: var(--dark); margin-bottom: 2px; }
.tl-org  { font-size: .83rem; color: var(--mid); line-height: 1.65; }

/* ══════════════════════════
   SERVICES
══════════════════════════ */
#services { background: var(--blue-wash); padding: 7rem 8%; }
.services-wrap { max-width: 1100px; margin: 0 auto; }
.services-hd { text-align: center; margin-bottom: 3.5rem; }
.services-hd .sec-sub { margin: 0 auto; }

.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.svc-card {
  background: var(--white); border-radius: var(--r-md);
  padding: 2rem 1.8rem;
  border: 1px solid rgba(46,96,148,.09);
  box-shadow: var(--shadow-soft);
  transition: transform .28s, box-shadow .28s;
  position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue-light));
  opacity: 0; transition: opacity .28s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.svc-card:hover::after { opacity: 1; }
.svc-ico { font-size: 2rem; margin-bottom: 1rem; display: block; }
.svc-t {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 600; color: var(--dark); margin-bottom: .6rem;
}
.svc-d { font-size: .88rem; color: var(--mid); line-height: 1.78; }
.svc-card.featured {
  background: linear-gradient(140deg, var(--blue-mid) 0%, var(--blue-deep) 100%);
}
.svc-card.featured .svc-t { color: #fff; }
.svc-card.featured .svc-d { color: rgba(255,255,255,.85); }
.svc-card.featured::after { display: none; }

/* ══════════════════════════
   FEES
══════════════════════════ */
#fees { background: var(--white); padding: 7rem 8%; }
.fees-wrap  { max-width: 1100px; margin: 0 auto; }
.fees-hd    { text-align: center; margin-bottom: 3.5rem; }
.fees-hd .sec-sub { margin: 0 auto; }
.fees-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }

.fees-card {
  background: var(--blue-wash); border-radius: var(--r-md);
  padding: 2.4rem; border: 1px solid var(--blue-pale);
}
.fees-card-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600; color: var(--dark); margin-bottom: .3rem; }
.fees-card-note  { font-size: .83rem; color: var(--light); margin-bottom: 1.8rem; }

.fees-tbl { width: 100%; border-collapse: collapse; }
.fees-tbl tr { border-bottom: 1px solid var(--blue-pale); }
.fees-tbl tr:last-child { border-bottom: none; }
.fees-tbl td { padding: 13px 0; font-size: .9rem; color: var(--mid); }
.fees-tbl td:last-child {
  text-align: right; font-weight: 600;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; color: var(--blue-mid);
}
.fees-notice {
  margin-top: 1.4rem; padding: 13px 17px;
  background: rgba(106,154,130,.12);
  border-left: 3px solid var(--sage);
  font-size: .83rem; color: var(--mid); line-height: 1.72;
}

.booking-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600; color: var(--dark); margin-bottom: .35rem; }
.booking-intro { font-size: .97rem; color: var(--mid); line-height: 1.82; margin-bottom: 1.6rem; }

.steps { display: flex; flex-direction: column; gap: .85rem; margin-bottom: 1.8rem; }
.step {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem; background: var(--blue-wash); border-radius: var(--r-sm);
}
.step-n {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--blue-mid); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: .82rem; flex-shrink: 0;
}
.step-body { font-size: .9rem; color: var(--mid); line-height: 1.6; padding-top: 4px; }
.step-body strong { color: var(--dark); display: block; margin-bottom: 2px; }
.booking-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.booking-tel { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600; color: var(--blue-mid); margin-top: .65rem; }

/* ══════════════════════════
   CONTACT
══════════════════════════ */
#contact { background: var(--blue-wash); padding: 7rem 8%; position: relative; overflow: hidden; }
#contact::before {
  content: ''; position: absolute;
  width: 480px; height: 480px; border-radius: 50%;
  background: var(--blue-pale); opacity: .45;
  top: -160px; right: -100px; z-index: 0;
}
.contact-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
  position: relative; z-index: 1;
}
.contact-details { margin-top: 2.2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.c-item { display: flex; align-items: flex-start; gap: 1rem; }
.c-ico {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--white); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; box-shadow: var(--shadow-soft);
  border: 1px solid var(--blue-pale);
}
.c-lbl { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--light); margin-bottom: 3px; }
.c-val { font-size: .94rem; color: var(--dark); line-height: 1.6; }
.c-val a { color: var(--blue-mid); transition: opacity .2s; }
.c-val a:hover { opacity: .75; }

.form-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 2.5rem; box-shadow: var(--shadow-card);
  border: 1px solid var(--blue-pale);
}
.form-card h3 { font-family: 'Playfair Display', serif; font-size: 1.65rem; font-weight: 600; color: var(--dark); margin-bottom: .3rem; }
.form-card > p { font-size: .86rem; color: var(--light); margin-bottom: 1.6rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: 5px; margin-bottom: .9rem; }
.fg label { font-size: .73rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--light); }
.fg input, .fg select, .fg textarea {
  background: var(--blue-wash); border: 1.5px solid var(--blue-pale);
  border-radius: var(--r-sm); padding: 11px 15px;
  font-size: .93rem; color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  outline: none; width: 100%;
  transition: border-color .22s, background .22s;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--light); opacity: .7; }
.fg select option { color: var(--dark); background: #fff; }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--blue-mid); background: var(--white);
}
.fg textarea { resize: vertical; min-height: 108px; }
.form-submit {
  width: 100%; background: var(--blue-mid); color: #fff;
  padding: 14px; border-radius: 50px; border: none; cursor: pointer;
  font-size: .95rem; font-weight: 600; font-family: 'DM Sans', sans-serif;
  box-shadow: 0 5px 22px rgba(46,96,148,.28);
  transition: background .22s, transform .18s, box-shadow .22s; margin-top: .4rem;
}
.form-submit:hover {
  background: var(--blue-deep); transform: translateY(-2px);
  box-shadow: 0 9px 30px rgba(46,96,148,.35);
}
.form-ok { display: none; text-align: center; padding: 2.5rem 1rem; }
.form-ok-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.form-ok h4 { font-family: 'Playfair Display', serif; font-size: 1.7rem; color: var(--dark); margin-bottom: .4rem; }
.form-ok p  { font-size: .92rem; color: var(--mid); }

/* ══════════════════════════
   FOOTER
══════════════════════════ */
footer {
  background: var(--blue-deep); color: rgba(255,255,255,.5);
  padding: 2.2rem 8%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; color: #fff; }
.footer-brand span { color: var(--blue-light); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: .82rem; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-links a:hover { color: var(--blue-light); }
.footer-copy { font-size: .8rem; text-align: right; }

/* ══════════════════════════
   RESPONSIVE
══════════════════════════ */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px) {
  #home {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: none;
    min-height: auto;
    padding-top: 70px;
    align-items: start;
  }
  .hero-content-top    { grid-area: unset; padding: 3.5rem 6% 1rem; text-align: center; }
  .hero-content-bottom { grid-area: unset; padding: 1rem 6% 2rem; text-align: center; }
  .hero-photo-col {
    grid-area: unset;
    height: 75vw;
    min-height: 300px;
    overflow: hidden;
    position: relative;
  }
  .hero-photo-col img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: none;
    max-width: none;
    animation: none;
  }
  .hero-para  { margin: 0 auto 2rem; }
  .hero-stats { justify-content: center; }
  .hero-btns  { justify-content: center; }
  .hero-creds, .hero-badge { display: none; }
  .blob-1 { width: 300px; height: 300px; right: -60px; }
  .blob-2 { display: none; }
  .about-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .fees-layout   { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  nav .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  #about, #services, #fees, #contact { padding: 4.5rem 6%; }
  .svc-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; }
  .footer-copy { text-align: center; }
}
