/* =========================================================
   ELO FAVOUR HOSPITAL AND MATERNITY
   HTML + CSS only
   ========================================================= */

:root {
  --navy:   #0a3d2e;   /* deep hospital green */
  --blue:   #0e7c5b;   /* primary medical green */
  --blue-2: #12a376;   /* lighter green accent */
  --sky:    #e6f7f2;   /* pale green tint */
  --cyan:   #d0f0e8;   /* soft mint */
  --white:  #ffffff;
  --ink:    #0f2d22;
  --muted:  #5a7a6e;
  --line:   #c8e6dc;
  --soft:   #f2fbf7;   /* very light mint background */
  --red:    #d62828;   /* emergency red — kept */
  --gold:   #f0a500;   /* warm accent for stars/highlights */
  --shadow: 0 18px 45px rgba(10, 61, 46, .12);
  --radius: 18px;
  --max:    1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.hospital-image{
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

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

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

button,
a,
label,
summary {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(92%, var(--max));
  margin-inline: auto;
}

.narrow {
  max-width: 850px;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.hospital-logo{
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  color: var(--navy);
  font-size: 14px;
  letter-spacing: .04em;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: .12em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta) {
  color: #2d5244;
  position: relative;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--blue);
  transition: right .25s ease;
}

.main-nav > a:not(.nav-cta):hover::after {
  right: 0;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 9px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.nav-cta {
  color: var(--white);
  background: var(--blue);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(14,124,91,.28);
}

.nav-toggle,
.menu-button {
  display: none;
}

.emergency-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
  height: 42px;
  background: #d62828;
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  border-radius: 8px;
  white-space: nowrap;
  animation: pulse-ring 2s ease-out infinite;
  transition: background .2s ease, transform .2s ease;
}

.emergency-btn:hover {
  background: #a91f1f;
  transform: translateY(-2px);
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(214,40,40,.55); }
  70%  { box-shadow: 0 0 0 10px rgba(214,40,40,.00); }
  100% { box-shadow: 0 0 0 0 rgba(214,40,40,.00); }
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 575px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(18,163,118,.30), transparent 30%),
    linear-gradient(110deg, #052418 0%, #0a3d2e 52%, #0e7c5b 100%);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('gallery/hospitapicture.webp') center/cover no-repeat;
  opacity: 0.18;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  border: 70px solid rgba(255,255,255,.06);
  border-radius: 50%;
  right: -180px;
  bottom: -250px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,36,24,.35), transparent);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: center;
  gap: 70px;
  padding: 90px 0;
}

.eyebrow {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero .eyebrow {
  color: #a7f0d4;
}

.hero h1 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.04;
  letter-spacing: -2.5px;
  margin-bottom: 22px;
}

.hero-text {
  max-width: 650px;
  color: #d4f5ea;
  font-size: 18px;
  margin-bottom: 32px;
}

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

.btn-primary {
  color: var(--white);
  background: var(--blue);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--line);
}

.hero-card {
  padding: 34px;
  color: var(--white);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: var(--radius);
  box-shadow: 0 25px 60px rgba(0,0,0,.12);
  backdrop-filter: blur(10px);
}

.hero-card h2 {
  font-size: 25px;
  margin: 16px 0 8px;
}

.hero-card p {
  color: #c2ede0;
  margin-bottom: 20px;
}

.hero-card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  font-size: 30px;
  font-weight: 300;
}

.text-link {
  color: var(--white);
  font-weight: 700;
}

/* QUICK */
.quick-section {
  position: relative;
  z-index: 5;
  margin-top: -45px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  box-shadow: var(--shadow);
}

.quick-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 100px;
  padding: 20px 24px;
  background: var(--white);
  border-right: 1px solid var(--line);
  transition: transform .2s ease, background .2s ease;
}

.quick-card:first-child {
  border-radius: 14px 0 0 14px;
}

.quick-card:last-child {
  border-right: 0;
  border-radius: 0 14px 14px 0;
}

.quick-card:hover {
  transform: translateY(-4px);
  background: #f0faf6;
}

.quick-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--blue);
  background: var(--sky);
  font-size: 20px;
}

.quick-card > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.quick-card strong {
  font-size: 15px;
}

.quick-card small {
  color: var(--muted);
  margin-top: 2px;
}

.quick-card b {
  margin-left: auto;
  color: var(--blue);
}

/* GENERAL SECTIONS */
.section {
  padding: 105px 0;
}

.section-soft {
  background: var(--soft);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.contact-section h2,
.trust-strip h2 {
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 15px;
}

.content-copy h2 {
  color: var(--navy);
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 15px;
}

.section-heading > p:last-child {
  color: var(--muted);
}

/* CARDS */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card,
.action-card,
.visit-card {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card:hover,
.action-card:hover,
.visit-card:hover {
  transform: translateY(-6px);
  border-color: #8ecfb8;
  box-shadow: var(--shadow);
}

.service-card {
  padding: 0;
  overflow: hidden;
}

.service-card-banner {
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-emoji {
  font-size: 52px;
  line-height: 1;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.12));
}

.service-card-body {
  padding: 26px 28px 28px;
}

.service-card-body h3,
.action-card h3,
.visit-card h3 {
  color: var(--navy);
  font-size: 21px;
  margin-bottom: 10px;
}

.action-card p,
.visit-card p {
  color: var(--muted);
}

.visit-card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 700;
}

/* ABOUT */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.image-frame {
  min-height: 500px;
}

.image-placeholder {
  min-height: 500px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  color: var(--blue);
  background:
    linear-gradient(135deg, rgba(18,100,181,.10), rgba(228,247,251,.9)),
    repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(18,100,181,.04) 18px, rgba(18,100,181,.04) 36px);
  border: 1px dashed #b8d5ea;
  text-align: center;
}

.image-placeholder span {
  font-size: 25px;
  font-weight: 800;
}

.image-placeholder small {
  max-width: 260px;
  margin-top: 8px;
  color: var(--muted);
}

.content-copy > p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 22px;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: #1e4d3a;
}

.check-list span {
  color: var(--blue);
  font-weight: 800;
}

/* ACTIONS */
.action-card {
  display: block;
  padding: 30px;
}

.action-card > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
}

.action-card h3 {
  margin-top: 18px;
}

/* PLACEHOLDER */
.placeholder-panel {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: var(--white);
  border: 1px dashed #a9c6de;
  border-radius: var(--radius);
}

.placeholder-symbol {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--sky);
  font-size: 30px;
}

.placeholder-panel h3 {
  color: var(--navy);
  margin-bottom: 5px;
}

.placeholder-panel p {
  color: var(--muted);
}

/* VISIT */
.visit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.visit-card {
  padding: 26px;
}

.visit-icon {
  display: block;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--blue);
  background: var(--sky);
  font-size: 21px;
  margin-bottom: 20px;
}

.visit-card p a {
  color: var(--blue);
}

.visit-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--sky);
  border-left: 4px solid var(--blue);
  border-radius: 10px;
  color: var(--ink);
  font-size: 15px;
}

.visit-note span {
  font-size: 22px;
  line-height: 1.4;
}

.visit-note p {
  color: var(--ink);
  line-height: 1.6;
}

/* TRUST / STATS */
.trust-strip {
  padding: 90px 0;
  color: var(--white);
  background: linear-gradient(110deg, #052418, #0a3d2e 55%, #0e7c5b 100%);
}

.trust-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.trust-strip .eyebrow {
  color: #a7f0d4;
}

.trust-strip h2 {
  color: var(--white);
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.trust-sub {
  color: #b8e8d4;
  font-size: 16px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform .2s ease, background .2s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,.16);
}

.stat-num {
  display: block;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: #6ee7c0;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.stat-card p {
  color: #b8e8d4;
  font-size: 14px;
  line-height: 1.5;
}

/* PHOTO STRIP */
.photo-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  margin-top: 10px;
}

.photo-side {
  display: grid;
  gap: 20px;
}

.photo-main,
.photo-feature {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-main {
  height: 420px;
}

.photo-feature {
  height: 195px;
}

.photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.photo-main:hover .photo-img,
.photo-feature:hover .photo-img {
  transform: scale(1.04);
}

.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(5,36,24,.88));
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.photo-caption strong {
  font-size: 15px;
}

.photo-caption span {
  font-size: 12px;
  color: #a7f0d4;
}

/* TESTIMONIALS */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 10px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .22s ease, box-shadow .22s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card > p {
  color: var(--muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 18px;
}

.testimonial-author strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
}

.testimonial-author small {
  color: var(--muted);
  font-size: 13px;
}

/* TEAM CARDS */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.team-avatar {
  font-size: 42px;
  margin-bottom: 16px;
  line-height: 1;
}

.team-card h3 {
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 4px;
}

.team-role {
  display: block;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.team-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 12px;
}

details {
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  color: var(--navy);
  font-weight: 700;
  position: relative;
  padding-right: 35px;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 24px;
  color: var(--blue);
}

details[open] summary::after {
  content: "−";
}

details p {
  padding: 0 0 20px;
  color: var(--muted);
}

details p a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
}

/* CONTACT */
.contact-section {
  padding: 90px 0;
  background: var(--soft);
  border-top: 4px solid var(--blue);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 70px;
  align-items: center;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.contact-list > div {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-list > div > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  color: var(--blue);
  background: var(--white);
  border-radius: 10px;
}

.contact-list small {
  display: block;
  color: var(--muted);
  margin-bottom: 2px;
}

.contact-list a {
  color: var(--blue);
  font-weight: 700;
}

.contact-list p {
  color: var(--ink);
}

.contact-note {
  padding: 38px;
  border-radius: 22px;
  color: var(--white);
  background: linear-gradient(145deg, #0e7c5b, #052418);
  box-shadow: var(--shadow);
}

.contact-note .hero-card-icon {
  color: var(--blue);
}

.contact-note h3 {
  margin: 18px 0 8px;
  font-size: 26px;
}

.contact-note p {
  color: #c2ede0;
  margin-bottom: 25px;
}

/* FOOTER */
.site-footer {
  color: #b8d4c8;
  background: #041a10;
  padding-top: 65px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 55px;
}

.footer-brand .brand-text strong {
  color: var(--white);
}

.footer-brand .hospital-logo {
  mix-blend-mode: normal;
  opacity: 0.85;
}

.footer-brand .brand-text small {
  color: #6aab90;
}

.footer-copy {
  max-width: 280px;
  margin-top: 18px;
  color: #6aab90;
}

.footer-grid h3 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 15px;
}

.footer-grid > div:not(:first-child) a {
  display: block;
  color: #7abfa4;
  margin: 9px 0;
}

.footer-grid > div:not(:first-child) a:hover {
  color: var(--white);
}

.footer-grid > div:last-child p {
  color: #7abfa4;
  margin: 7px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #5a9478;
  font-size: 12px;
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: var(--white);
  font-size: 22px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(10,61,46,.30);
  transition: transform .2s ease, background .2s ease, opacity .3s ease, visibility .3s ease;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--navy);
  transform: translateY(-4px);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .main-nav {
    gap: 14px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 500px;
  }

  .cards-3 {
    grid-template-columns: 1fr 1fr;
  }

  .visit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-main {
    height: 320px;
  }

  .photo-side {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (max-width: 780px) {
  .nav-wrap {
    min-height: 70px;
  }

  .menu-button {
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 9px;
    cursor: pointer;
  }

  .menu-button span {
    width: 20px;
    height: 2px;
    background: var(--navy);
    transition: transform .2s ease;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 8px 4%;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 15px 25px rgba(10,61,46,.10);
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }

  .main-nav a {
    padding: 14px 0;
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    text-align: center;
    margin: 8px 0 12px;
  }

  .nav-toggle:checked ~ .site-header .main-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle:checked ~ .site-header .menu-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked ~ .site-header .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked ~ .site-header .menu-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .quick-grid {
    grid-template-columns: 1fr;
  }

  .quick-card,
  .quick-card:first-child,
  .quick-card:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .quick-card:first-child {
    border-radius: 14px 14px 0 0;
  }

  .quick-card:last-child {
    border-bottom: 0;
    border-radius: 0 0 14px 14px;
  }

  .split,
  .trust-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .image-frame,
  .image-placeholder {
    min-height: 360px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom .container {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 650px;
  }

  .hero-grid {
    padding: 65px 0 90px;
  }

  .hero h1 {
    font-size: 40px;
    letter-spacing: -1.5px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 75px 0;
  }

  .cards-3,
  .visit-grid,
  .stats-grid,
  .team-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid,
  .photo-side {
    grid-template-columns: 1fr;
  }

  .placeholder-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    min-width: 0;
  }

  .brand-text strong {
    font-size: 12px;
  }

  .brand-text small {
    font-size: 7px;
  }
}
