/* ============================================================
   TAILORMADE HEALTH & WELLNESS — STYLESHEET
   Primary:  #de968d  (dusty rose)
   Dark:     #27252a
   Light bg: #f0e8e8
   Font H:   Libre Baskerville
   Font B:   Manrope
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:    #de968d;
  --primary-dk: #c97e75;
  --dark:       #27252a;
  --mid:        #5a5560;
  --light-bg:   #f0e8e8;
  --white:      #ffffff;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(39,37,42,0.10);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  color: var(--dark);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: 'Libre Baskerville', serif;
  line-height: 1.2;
}

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

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dk); border-color: var(--primary-dk); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }

.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-full { width: 100%; text-align: center; }

/* ---- SECTION LABELS ---- */
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(222,150,141,0.15);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 2px 20px rgba(39,37,42,0.08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
}
.logo-sub {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav > a,
.nav > .nav-dropdown {
  padding: 0 18px;
}
.nav .btn { margin-left: 8px; }

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mid);
  transition: color var(--transition);
}
.nav a:hover { color: var(--primary); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--dark);
  cursor: pointer;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f0e8e8 0%, #fdf5f4 50%, #ede4e4 100%);
  overflow: hidden;
}

/* Decorative circles */
.hero::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222,150,141,0.18) 0%, transparent 70%);
  top: -100px;
  right: -80px;
}
.hero::after {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222,150,141,0.12) 0%, transparent 70%);
  bottom: -60px;
  left: 5%;
}

.hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: var(--dark);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--mid);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   MISSION
   ============================================================ */
.mission {
  padding: 90px 0;
  background: var(--dark);
  text-align: center;
}

.mission-inner {
  max-width: 720px;
}

.mission .section-tag { color: var(--primary); }

.mission h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 24px;
}
.mission h2 em {
  color: var(--primary);
  font-style: italic;
}
.mission p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 100px 0;
  background: var(--white);
}

.services h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 12px;
}

.section-intro {
  color: var(--mid);
  font-size: 1rem;
  margin-bottom: 56px;
  max-width: 480px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--dark);
}
.service-card p {
  font-size: 0.93rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  transition: color var(--transition);
}
.service-link:hover { color: var(--primary-dk); }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 100px 0;
  background: var(--light-bg);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 20px; }
.about-text p { color: var(--mid); margin-bottom: 18px; font-size: 0.97rem; }
.about-text .btn { margin-top: 8px; }

.specialty-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 24px;
}
.specialty-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
}
.specialty-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 24px;
  padding-bottom: 16px;
}

.about-photo-wrap {
  position: relative;
  display: inline-block;
}

.about-photo {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 12px 48px rgba(39,37,42,0.18);
  display: block;
}

.about-badge {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 26px;
  box-shadow: var(--shadow);
  text-align: center;
}
.badge-number {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.badge-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}

.testimonials h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 48px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.stars {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--mid);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.95rem; color: var(--dark); }
.testimonial-author span { font-size: 0.82rem; color: var(--mid); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 100px 0;
  background: var(--dark);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.contact-info .section-tag { color: var(--primary); }
.contact-info h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--white); margin-bottom: 36px; }

.info-block {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.info-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.info-block strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}
.info-block p, .info-block a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}
.info-block a:hover { color: var(--primary); }

/* ---- FORM ---- */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
}
.contact-form-wrap h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.3rem;
  margin-bottom: 28px;
  color: var(--dark);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid #e0d8d8;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.93rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; }

.form-note {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #4caf50;
  font-weight: 600;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1e1c21;
  color: rgba(255,255,255,0.65);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding: 72px 24px 48px;
}

.footer-brand .logo-main { color: var(--white); font-size: 1.1rem; }
.footer-brand .logo-sub { color: var(--primary); font-size: 0.7rem; }
.footer-brand p {
  font-size: 0.88rem;
  margin-top: 14px;
  line-height: 1.7;
  max-width: 220px;
}
.social-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  transition: var(--transition);
}
.social-link:hover { background: var(--primary); color: var(--white); }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links strong {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-links a, .footer-links span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-bottom div { display: flex; gap: 24px; }
.footer-bottom a { font-size: 0.82rem; color: rgba(255,255,255,0.50); }
.footer-bottom a:hover { color: var(--primary); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--primary);
  padding: 64px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 8px;
}
.cta-inner p { color: rgba(255,255,255,0.85); font-size: 1rem; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-banner .btn-primary { background: var(--white); color: var(--primary); border-color: var(--white); }
.cta-banner .btn-primary:hover { background: var(--dark); border-color: var(--dark); color: var(--white); }
.cta-banner .btn-outline { border-color: var(--white); color: var(--white); }
.cta-banner .btn-outline:hover { background: var(--white); color: var(--primary); }

/* ============================================================
   NAV DROPDOWN
   ============================================================ */
.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  /* padding-top creates an invisible bridge so mouse stays in hover zone */
  padding-top: 12px;
  min-width: 190px;
  z-index: 200;
}
.dropdown-menu-inner {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px 0;
}
.dropdown-menu a {
  display: block;
  padding: 11px 20px;
  font-size: 0.9rem;
  color: var(--mid);
  transition: color var(--transition), background var(--transition);
}
.dropdown-menu a:hover, .dropdown-menu a.active { color: var(--primary); background: var(--light-bg); }
/* Show on hover (desktop) — hover zone covers the gap via padding-top */
.nav-dropdown:hover .dropdown-menu { display: block; }
/* Also togglable via JS for click */
.nav-dropdown.open .dropdown-menu { display: block; }
.nav a.active { color: var(--primary); font-weight: 600; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #3a3740 100%);
  padding: 80px 0 72px;
  text-align: center;
}
.page-hero .hero-eyebrow { color: var(--primary); margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ============================================================
   SERVICE INTRO SECTION
   ============================================================ */
.service-intro { padding: 90px 0; background: var(--white); }
.service-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.service-intro-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 20px; }
.service-intro-text p { color: var(--mid); margin-bottom: 18px; font-size: 0.97rem; }
.service-intro-text .btn { margin-top: 8px; }

.info-highlight-box {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--dark);
}
.highlight-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   PRICING NOTE
   ============================================================ */
.pricing-note-section { padding: 80px 0; background: var(--white); }
.pricing-note-box {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 52px 48px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.pricing-note-box h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 20px; }
.pricing-note-box p { color: var(--mid); margin-bottom: 16px; font-size: 0.97rem; line-height: 1.75; }
.pricing-note-box .btn { margin-top: 8px; }

/* ============================================================
   IV HYDRATION CARDS
   ============================================================ */
.iv-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.iv-card { display: flex; flex-direction: column; }
.iv-price {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.iv-duration { font-size: 0.85rem; color: var(--mid); margin-bottom: 14px; }
.iv-ingredients {
  background: var(--white);
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 12px;
  font-size: 0.88rem;
}
.iv-ingredients strong { display: block; color: var(--dark); margin-bottom: 6px; }
.iv-ingredients span { display: block; color: var(--mid); padding: 2px 0; }
.iv-ingredients span::before { content: '• '; color: var(--primary); }

/* ============================================================
   MASSAGE PRICING TABLE
   ============================================================ */
.pricing-table-wrap { overflow-x: auto; margin-top: 8px; }
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pricing-table thead tr { background: var(--primary); }
.pricing-table thead th {
  padding: 18px 24px;
  text-align: left;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pricing-table thead th:not(:first-child) { text-align: center; }
.pricing-table tbody tr { border-bottom: 1px solid #f0e8e8; transition: background var(--transition); }
.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody tr:hover { background: var(--light-bg); }
.pricing-table tbody td {
  padding: 22px 24px;
  vertical-align: top;
}
.pricing-table tbody td strong { display: block; font-size: 1rem; color: var(--dark); margin-bottom: 6px; }
.pricing-table tbody td span { font-size: 0.88rem; color: var(--mid); line-height: 1.6; }
.price-cell {
  text-align: center;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  vertical-align: middle !important;
}
.table-note {
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--mid);
}
.table-note a { color: var(--primary); text-decoration: underline; }

/* ============================================================
   CREDENTIALS SECTION
   ============================================================ */
.credentials { padding: 90px 0; background: var(--white); }
.credentials h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 48px; }
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.credential-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.credential-icon { font-size: 2rem; color: var(--primary); margin-bottom: 16px; }
.credential-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--dark); }
.credential-card p { font-size: 0.88rem; color: var(--mid); }

/* ============================================================
   BEFORE & AFTER GALLERY
   ============================================================ */
.ba-gallery { padding: 90px 0; background: var(--white); }
.ba-gallery h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 12px; }

.ba-upload-notice {
  background: var(--light-bg);
  border: 2px dashed var(--primary);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: center;
  margin-bottom: 56px;
}
.upload-icon { font-size: 2.4rem; margin-bottom: 12px; }
.ba-upload-notice h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--dark); }
.ba-upload-notice p { font-size: 0.92rem; color: var(--mid); }
.ba-upload-notice code { background: var(--white); padding: 2px 6px; border-radius: 4px; font-size: 0.88rem; color: var(--primary); }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 36px;
}
.ba-card { background: var(--light-bg); border-radius: var(--radius); overflow: hidden; }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; }
.ba-img-placeholder {
  aspect-ratio: 3/4;
  background: #e0d4d4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}
.ba-img-placeholder.after { background: #c8bebe; }
.ba-label {
  padding: 14px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
}
.ba-disclaimer { font-size: 0.85rem; color: var(--mid); }

.ba-weight-loss {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 36px;
}
.ba-full-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 860px;
  width: 100%;
}
.ba-full-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius) var(--radius) 0 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { min-height: 200px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .service-intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}

@media (max-width: 768px) {
  /* === MOBILE NAV === */
  .nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: var(--white);
    padding: 12px 0 20px;
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 8px 32px rgba(39,37,42,0.12);
    z-index: 99;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }

  .nav > a,
  .nav > .nav-dropdown {
    padding: 0;
  }
  .nav > a {
    padding: 14px 24px;
    font-size: 1rem;
    border-bottom: 1px solid #f5efef;
  }
  .nav > a:last-of-type { border-bottom: none; }
  .nav .btn { margin-left: 0; }

  /* Services dropdown on mobile */
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle {
    display: block;
    padding: 14px 24px;
    font-size: 1rem;
    color: var(--mid);
    font-weight: 500;
    border-bottom: 1px solid #f5efef;
    width: 100%;
  }
  .nav-dropdown:hover .dropdown-menu { display: none; } /* disable hover on mobile */
  .nav-dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu {
    position: static;
    padding-top: 0;
    width: 100%;
  }
  .dropdown-menu-inner {
    background: var(--light-bg);
    border-radius: 0;
    box-shadow: none;
    padding: 4px 0;
  }
  .dropdown-menu a {
    padding: 12px 36px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(222,150,141,0.12);
  }
  .dropdown-menu a:last-child { border-bottom: none; }

  /* Buttons in mobile nav */
  .nav .btn {
    margin: 8px 24px 0;
    text-align: center;
  }

  /* Hero */
  .hero { min-height: 75vh; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { text-align: center; }

  /* Sections */
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr 1fr; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .footer-bottom div { flex-wrap: wrap; justify-content: center; }

  /* Misc */
  .pricing-note-box { padding: 36px 24px; }
  .ba-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; flex-direction: column; align-items: center; }
  .page-hero { padding: 60px 0 52px; }
  .about-photo { max-width: 100%; }
}
