:root {
  --primary: #227675;
  --primary-dark: #1d6463;
  --primary-rgb: 34, 118, 117;
  --primary-soft: #e7f4f3;
  --body-bg: #FFFCF8;
  --light: #F7F3EB;
  --heading: #343434;
  --body: #676767;
  --white: #ffffff;
  --star: #ff8717;
  --danger: #d23636;
  --success: #31a56d;
  --shadow: 0 20px 50px rgba(34, 118, 117, 0.12);
  --radius: 20px;
  --radius-xl: 30px;
  --btn-radius: 50px;
  --container: 1240px;
  --header-h: 88px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Poppins", sans-serif;
  background: var(--body-bg);
  color: var(--body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }
button { cursor: pointer; border: 0; background: none; }

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 24px, 1400px);
  margin-inline: auto;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading);
  font-weight: 600;
  line-height: 1.25;
}

.eyebrow {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  display: inline-block;
  margin-bottom: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--btn-radius);
  padding: 14px 28px;
  font-weight: 500;
  font-size: 15px;
  transition: 0.35s ease;
  border: 2px solid var(--primary);
  white-space: nowrap;
}

.btn:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }
.btn-white { background: #fff; color: var(--primary); border-color: #fff; }
.btn-white:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-outline { background: transparent; color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-square {
  width: 56px; height: 56px; padding: 0; border-radius: 50%;
  font-size: 20px;
}

.check-list li {
  position: relative;
  padding: 6px 0 6px 30px;
  font-weight: 500;
  color: var(--heading);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 18px; height: 18px;
  background: var(--primary);
  border-radius: 50%;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9.2 16.6 4.8 12.2l1.4-1.4 3 3 8-8 1.4 1.4z'/></svg>") center / 12px no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9.2 16.6 4.8 12.2l1.4-1.4 3 3 8-8 1.4 1.4z'/></svg>") center / 12px no-repeat;
}

.check-list.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
}

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: 0.3s ease;
}

.site-header.is-sticky {
  position: fixed;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  border-bottom-color: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: var(--header-h);
  gap: 24px;
}

.logo img, .logo svg { height: 52px; width: auto; }
.logo-dark { display: none; }
.logo-light { display: block; }
.is-sticky .logo-dark { display: block; }
.is-sticky .logo-light { display: none; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-menu a {
  color: #fff;
  font-weight: 500;
  padding: 10px 14px;
  font-size: 16px;
  transition: 0.25s;
}

.nav-menu a:hover, .nav-menu a.active { color: #c8eceb; }
.is-sticky .nav-menu a, .inner-header.is-sticky .nav-menu a { color: var(--heading); }
.is-sticky .nav-menu a:hover,
.is-sticky .nav-menu a.active,
.inner-header.is-sticky .nav-menu a.active { color: var(--primary); }

.header-cta { margin-left: 12px; }
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  margin-left: auto;
}
.menu-toggle span {
  display: block; height: 2px; background: #fff; border-radius: 2px;
  transition: 0.3s;
}
.menu-toggle span:nth-child(1), .menu-toggle span:nth-child(3) { width: 22px; }
.menu-toggle span:nth-child(2) { width: 16px; }
.is-sticky .menu-toggle span, .inner-header.is-sticky .menu-toggle span { background: var(--heading); }

.inner-header {
  position: absolute;
  background: transparent;
}
.inner-header:not(.is-sticky) .nav-menu a { color: #fff; }

/* Hero */
.hero {
  min-height: 760px;
  background: url("../images/hero.jpg") center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 52%;
  background: linear-gradient(90deg, rgba(126,107,89,.72), rgba(126,107,89,.28) 70%, transparent);
  filter: blur(1px);
}
.hero-content { position: relative; z-index: 2; max-width: 620px; padding: 160px 0 80px; }
.hero h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 18px;
  text-transform: capitalize;
}
.hero p { color: #fff; font-size: 20px; font-weight: 300; margin-bottom: 28px; max-width: 480px; }

/* Page banner */
.page-banner {
  min-height: 340px;
  background: url("../images/hero.jpg") center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 70px;
  overflow: visible;
}
.page-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(29,100,99,.88), rgba(34,118,117,.55) 55%, rgba(34,118,117,.25));
}
.page-banner-inner { position: relative; z-index: 2; color: #fff; }
.page-banner h1 { color: #fff; font-size: clamp(34px, 4vw, 56px); margin-bottom: 10px; }
.breadcrumb { display: flex; gap: 8px; color: #e8f4f3; font-size: 14px; }
.breadcrumb a:hover { text-decoration: underline; }

section { padding: 90px 0; }
.bg-white { background: #fff; }
.bg-light { background: var(--light); }

.section-head { margin-bottom: 28px; }
.section-head h2 {
  font-size: clamp(28px, 3vw, 42px);
  text-transform: capitalize;
  margin-bottom: 12px;
}
.section-head p { font-size: 17px; font-weight: 300; max-width: 640px; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-photos {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 420px;
}
.about-photos img:first-child {
  width: 72%;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;
}
.about-photos img:last-child {
  width: 210px;
  height: 260px;
  object-fit: cover;
  border-radius: 24px;
  margin-left: -80px;
  box-shadow: var(--shadow);
}

/* Services tabs */
.services-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 40px;
  align-items: start;
}
.tab-btn {
  width: 100%;
  background: #fff;
  text-align: left;
  padding: 18px 28px;
  border-radius: 50px;
  margin-bottom: 10px;
  font-size: 18px;
  color: var(--heading);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(0,0,0,.03);
}
.tab-btn.active { background: var(--primary); color: #fff; }
.tab-btn svg { width: 18px; flex-shrink: 0; }
.tab-btn.active svg path { fill: #fff; }
.service-panel { display: none; }
.service-panel.active { display: block; }
.service-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  min-height: 420px;
}
.service-media { position: relative; }
.service-media img {
  width: 100%; height: 100%; min-height: 370px;
  object-fit: cover; border-radius: 22px;
}
.service-book {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  background: #fff; color: var(--primary);
  border-radius: 10px; padding: 12px; font-weight: 500;
  text-align: center;
}
.service-book:hover { background: var(--primary); color: #fff; }
.service-info h3 { font-size: 26px; margin-bottom: 10px; }
.service-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 24px;
}
.doc-chip { display: flex; align-items: center; gap: 12px; }
.doc-chip img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.doc-chip small { color: var(--primary); font-weight: 500; }

/* Doctor */
.doctor-media {
  position: relative;
  background: url("../images/logo-mark.svg") left bottom / 92% no-repeat;
}
.doctor-media img { width: 100%; position: relative; z-index: 1; }
.blob-bg {
  background:
    radial-gradient(circle at 20% 80%, #e8f3ef 0 42%, transparent 43%),
    radial-gradient(circle at 80% 20%, #f3eee4 0 30%, transparent 31%);
}

/* Why */
.why-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-photos img { height: 430px; object-fit: cover; border-radius: 24px; width: 100%; }
.why-photos .shift { transform: translateY(40px); }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card { text-align: center; }
.team-photo {
  position: relative;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 360px; object-fit: cover; object-position: top; }
.team-photo::after {
  content: "";
  position: absolute; inset: 0 0 8% 0;
  background: url("../images/logo-mark.svg") center bottom / contain no-repeat;
  opacity: .08;
  pointer-events: none;
}
.team-social {
  position: absolute; left: 16px; right: 16px; bottom: 12px;
  background: var(--primary); border-radius: 40px;
  display: flex; justify-content: center; gap: 4px;
  padding: 8px 10px;
  opacity: 0; transform: translateY(16px); transition: 0.35s;
}
.team-card:hover .team-social { opacity: 1; transform: none; }
.team-social a {
  width: 36px; height: 36px; color: #fff;
  display: grid; place-items: center; border-radius: 50%;
}
.team-card h3 { margin-top: 16px; font-size: 20px; }
.team-card span { font-size: 14px; }

/* Testimonials */
.testimonial-wrap {
  background: #fff;
  border-radius: 40px;
  box-shadow: var(--shadow);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  align-items: center;
}
.quote-mark {
  font-size: 90px; line-height: 0.6; color: var(--primary); font-family: Georgia, serif;
  margin-bottom: 10px;
}
.testimonial-text { font-size: 22px; color: var(--heading); line-height: 1.7; margin-bottom: 24px; }
.testimonial-name { color: var(--primary); font-size: 24px; margin-bottom: 2px; }
.testimonial-photo { position: relative; }
.testimonial-photo img {
  width: 100%; height: 420px; object-fit: cover;
  border-radius: 24px 24px 150px 24px;
}
.rating-card {
  position: absolute; left: -40px; bottom: 40px;
  background: #fff; border-radius: 18px; padding: 16px 22px;
  box-shadow: var(--shadow); min-width: 180px;
}
.stars { color: var(--star); letter-spacing: 2px; margin-bottom: 4px; }

/* Blog home */
.blog-home {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}
.blog-feature {
  position: relative; border-radius: 24px; overflow: hidden; min-height: 560px;
}
.blog-feature img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.blog-feature::after {
  content: ""; position: absolute; inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
}
.blog-feature-copy { position: absolute; inset: auto 0 0; z-index: 2; padding: 36px; color: #fff; }
.blog-feature-copy h3 { color: #fff; font-size: 26px; margin: 10px 0; }
.date-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--primary);
  border-radius: 40px; padding: 6px 16px 6px 14px;
  font-size: 12px; font-weight: 500;
}
.date-pill::before {
  content: ""; width: 6px; height: 6px; background: var(--primary); border-radius: 50%;
}
.blog-side-item {
  display: grid; grid-template-columns: 1fr 220px; gap: 20px;
  align-items: center; padding: 16px; border-radius: 20px;
  transition: 0.3s;
}
.blog-side-item:hover, .blog-side-item.active { background: #fff; }
.blog-side-item h3 { font-size: 22px; margin: 8px 0; }
.blog-side-item img { height: 140px; width: 100%; object-fit: cover; border-radius: 16px; }

/* Footer */
.site-footer {
  background: var(--primary) url("../images/hero.jpg") center / cover;
  background-blend-mode: luminosity;
  color: #bed2e7;
  position: relative;
}
.site-footer::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(29,100,99,.92);
}
.site-footer > * { position: relative; z-index: 1; }
.footer-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 40px 0 20px; border-bottom: 1px solid rgba(255,255,255,.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 60px 0 30px;
}
.site-footer h4 { color: #fff; font-size: 20px; margin-bottom: 18px; font-weight: 500; }
.site-footer p, .site-footer a { color: #d5e8e7; }
.site-footer a:hover { color: #fff; }
.site-footer .btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  font-weight: 600;
}
.site-footer .btn-white:hover {
  background: var(--light);
  color: var(--primary-dark);
  border-color: var(--light);
}
.footer-links li { margin-bottom: 10px; }
.socials { display: flex; gap: 8px; flex-wrap: wrap; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff;
  display: grid; place-items: center;
  transition: 0.3s;
}
.socials a:hover { background: #fff; color: var(--primary); }
.footer-legal {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: 14px;
}
.legal-links { display: flex; gap: 18px; flex-wrap: wrap; }
.newsletter-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  padding: 4px 4px 4px 4px;
}
.newsletter-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 14px 18px;
  font-size: 14px;
  color: #343434;
  background: transparent;
}
.newsletter-form input::placeholder { color: #7a7a7a; }
.newsletter-form button {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.newsletter-form button:hover { background: var(--primary-dark); color: #fff; }
.newsletter-form.error input { box-shadow: 0 0 0 2px var(--danger); }

/* Forms */
.form-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 3;
}
.form-card h3 { margin-bottom: 6px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--heading); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #e6e1d6;
  background: var(--light);
  border-radius: 12px;
  padding: 14px 16px;
  outline: none;
  color: var(--heading);
  transition: 0.25s;
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); background: #fff; }
.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: var(--danger); }
.error-text { color: var(--danger); font-size: 12px; margin-top: 4px; display: none; }
.form-group.error .error-text { display: block; }
.form-success {
  display: none;
  background: #e8f8ef;
  color: #1e6b45;
  border: 1px solid #b7e4c7;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 16px;
  font-weight: 500;
}
.form-success.show { display: block; }
.checkbox { display: grid; grid-template-columns: auto 1fr; gap: 6px 10px; align-items: start; font-size: 13px; }
.form-group.checkbox .error-text { grid-column: 1 / -1; }
.form-group.checkbox input { margin-top: 4px; }

/* Contact extras */
.stat-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: -50px; position: relative; z-index: 3;
}
.stat-card {
  background: #fff; border-radius: 18px; padding: 22px; text-align: center;
  box-shadow: var(--shadow);
}
.stat-card strong { display: block; font-size: 28px; color: var(--primary); }
.cta-banner {
  border-radius: 28px; overflow: hidden; min-height: 320px;
  background: url("../images/cta.jpg") center / cover no-repeat;
  position: relative; display: flex; align-items: center;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(29,100,99,.2), rgba(29,100,99,.75));
}
.cta-banner-copy { position: relative; z-index: 1; margin-left: auto; padding: 40px; max-width: 480px; color: #fff; }
.cta-banner-copy h2 { color: #fff; font-size: 40px; margin-bottom: 16px; }

/* Blog list */
.blog-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; }
.blog-list-item {
  display: grid; grid-template-columns: 220px 1fr; gap: 22px;
  background: #fff; border-radius: 20px; padding: 16px; margin-bottom: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,.04);
}
.blog-list-item img { width: 100%; height: 150px; object-fit: cover; border-radius: 14px; }
.sidebar-widget {
  background: #fff; border-radius: 20px; padding: 24px; margin-bottom: 20px;
}
.sidebar-widget h4 { margin-bottom: 16px; }
.search-box { display: flex; background: var(--light); border-radius: 50px; overflow: hidden; }
.search-box input { flex: 1; border: 0; background: transparent; padding: 12px 16px; outline: 0; }
.search-box button { width: 46px; color: var(--primary); }
.cat-list li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed #eee; }
.recent-item { display: flex; gap: 12px; margin-bottom: 14px; }
.recent-item img { width: 70px; height: 70px; object-fit: cover; border-radius: 12px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud a {
  background: var(--light); border-radius: 40px; padding: 6px 14px; font-size: 13px;
}
.tag-cloud a:hover { background: var(--primary); color: #fff; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.accordion-item {
  background: #fff; border-radius: 16px; margin-bottom: 12px; overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,.04);
}
.accordion-btn {
  width: 100%; text-align: left; padding: 18px 22px;
  font-size: 16px; font-weight: 600; color: var(--heading);
  display: flex; justify-content: space-between; gap: 12px;
}
.accordion-btn span.icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary);
  display: grid; place-items: center; flex-shrink: 0;
}
.accordion-item.open .accordion-btn { color: var(--primary); }
.accordion-body { display: none; padding: 0 22px 18px; }
.accordion-item.open .accordion-body { display: block; }
.rating-box {
  background: #fff; border-radius: 20px; padding: 18px 20px; display: flex; gap: 14px; align-items: center;
  box-shadow: var(--shadow); margin-top: 20px; max-width: 280px;
}

/* Legal */
.legal-content h2 { font-size: 26px; margin: 28px 0 12px; }
.legal-content h3 { font-size: 20px; margin: 22px 0 8px; color: var(--primary); }
.legal-content p, .legal-content li { margin-bottom: 12px; }
.legal-content ul { padding-left: 20px; list-style: disc; }
.legal-content ol { padding-left: 20px; }

.article h2 { font-size: 28px; margin: 28px 0 12px; }
.article p { margin-bottom: 14px; font-size: 16.5px; }
.article ul { padding-left: 20px; list-style: disc; margin-bottom: 16px; }
.article img.cover { width: 100%; height: 420px; object-fit: cover; border-radius: 24px; margin-bottom: 24px; }

.icon-link { color: var(--primary); font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }

.service-pills {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 40px;
}
.service-pills a, .service-pills span {
  background: #fff; border-radius: 40px; padding: 10px 18px; font-size: 14px; font-weight: 500;
}
.service-pills a.active, .service-pills span.active { background: var(--primary); color: #fff; }

.mobile-nav {
  display: none;
  position: fixed; inset: 0 auto 0 0; width: 280px;
  background: #fff; z-index: 200;
  padding: 24px; transform: translateX(-110%);
  transition: 0.4s; overflow: auto;
}
.mobile-nav.open { transform: none; display: block; }
.nav-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 150;
}
.nav-overlay.show { display: block; }

.contact-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 1100px) {
  .nav-menu, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .grid-2, .services-layout, .faq-layout, .blog-home, .blog-layout, .testimonial-wrap, .footer-grid, .form-grid, .service-card, .blog-list-item {
    grid-template-columns: 1fr;
  }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; margin-top: 20px; }
  .check-list.two-col { grid-template-columns: 1fr; }
  .hero::after { width: 85%; }
  .hero { min-height: 620px; }
  .contact-hero-grid { grid-template-columns: 1fr; }
  .why-photos .shift { transform: none; }
  .testimonial-photo img { border-radius: 24px; height: 320px; }
  .rating-card { left: 16px; bottom: 16px; }
  .about-photos img:first-child { height: 340px; }
}

@media (max-width: 700px) {
  section { padding: 60px 0; }
  .team-grid, .stat-row, .why-photos { grid-template-columns: 1fr; }
  .footer-head, .footer-legal { flex-direction: column; text-align: center; }
  .about-photos { min-height: auto; }
  .about-photos img:last-child { display: none; }
  .about-photos img:first-child { width: 100%; }
  .service-media img { min-height: 240px; }
  .blog-side-item { grid-template-columns: 1fr; }
  .cta-banner-copy { margin: 0; }
  .cta-banner-copy h2 { font-size: 28px; }
}
