:root {
  --green: #20aa62;
  --deep-green: #188d58;
  --teal: #2b9cd8;
  --orange: #f28c38;
  --ink: #17312c;
  --muted: #64756f;
  --surface: #ffffff;
  --soft: #f5fbf8;
  --mint: #e9f8f0;
  --line: rgba(23, 49, 44, 0.1);
  --shadow: 0 24px 70px rgba(24, 141, 88, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Cairo", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(242, 140, 56, 0.1), transparent 28rem),
    radial-gradient(circle at 90% 20%, rgba(43, 156, 216, 0.11), transparent 32rem),
    var(--soft);
  line-height: 1.8;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 20;
  transition: 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(23, 49, 44, 0.08);
}

.nav-wrap {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: 0.25s ease;
}

.site-header.scrolled .nav-wrap { min-height: 66px; }

.brand img {
  width: 148px;
  max-height: 52px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #37564f;
}

.nav-links a {
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: -8px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--teal));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.nav-links a:hover { color: var(--deep-green); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta,
.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta,
.nav-action,
.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--teal));
  box-shadow: 0 14px 30px rgba(32, 170, 98, 0.24);
}

.button.ghost {
  color: var(--deep-green);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(32, 170, 98, 0.18);
}

.button.light {
  color: var(--deep-green);
  background: #fff;
  box-shadow: 0 16px 34px rgba(23, 49, 44, 0.14);
}

.button:hover,
.nav-cta:hover,
.nav-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(32, 170, 98, 0.24);
}

.mobile-booking {
  display: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(23, 49, 44, 0.08);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 92px);
  display: grid;
  align-items: center;
  padding: 64px 0 86px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 76px;
  align-items: center;
}

.badge,
.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 16px;
  border-radius: 999px;
  color: var(--deep-green);
  background: rgba(32, 170, 98, 0.1);
  font-size: 0.86rem;
  font-weight: 900;
}

.hero h1,
.section h2,
.story h2 {
  margin: 0;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.9rem);
  font-weight: 900;
}

.hero h1 span,
.section h2 span {
  background: linear-gradient(100deg, var(--deep-green), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-block-start: 34px;
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-block-start: 22px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #48615b;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(32, 170, 98, 0.14);
}

.phone-pill strong { color: var(--orange); direction: ltr; }

.hero-visual {
  position: relative;
  min-height: 560px;
}

.visual-orbit {
  position: absolute;
  inset: 34px 20px 20px 36px;
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(32, 170, 98, 0.17), rgba(43, 156, 216, 0.14)),
    linear-gradient(#fff, #fff);
  transform: rotate(-4deg);
}

.photo-frame {
  position: relative;
  min-height: 530px;
  padding: 36px;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.62)),
    radial-gradient(circle at 20% 18%, rgba(242, 140, 56, 0.16), transparent 18rem);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.clinic-card {
  height: 100%;
  min-height: 458px;
  border-radius: 28px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 32px;
  padding: 40px;
  background:
    radial-gradient(circle at 80% 18%, rgba(242, 140, 56, 0.16), transparent 13rem),
    radial-gradient(circle at 20% 78%, rgba(43, 156, 216, 0.16), transparent 15rem),
    #fff;
  border: 1px solid rgba(32, 170, 98, 0.12);
}

.clinic-card img { width: min(360px, 88%); }

.clinic-lines {
  display: grid;
  gap: 10px;
  width: min(340px, 82%);
}

.clinic-lines span {
  height: 10px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(32, 170, 98, 0.26), rgba(43, 156, 216, 0.15));
}

.clinic-lines span:nth-child(2) { width: 76%; }
.clinic-lines span:nth-child(3) { width: 58%; }

.clinic-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
}

.clinic-points p {
  margin: 0;
  padding: 14px 10px;
  border-radius: 18px;
  color: #42625a;
  background: var(--soft);
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 2px;
  min-width: 148px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(23, 49, 44, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.floating-card strong { color: var(--deep-green); font-size: 1.2rem; }
.floating-card span { color: var(--muted); font-size: 0.84rem; }
.card-one { inset-block-start: 62px; inset-inline-end: -22px; }
.card-two { inset-block-end: 54px; inset-inline-start: -18px; }

.section { padding: 96px 0; }

.about,
.team,
.contact {
  background: #fff;
}

.about-grid,
.why-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  align-items: start;
}

.section h2,
.story h2 {
  font-size: clamp(1.45rem, 2.45vw, 2.25rem);
  font-weight: 800;
}

.section-copy > p:not(.eyebrow),
.booking-panel p,
.story p {
  color: var(--muted);
  font-size: 1.04rem;
}

.values-grid,
.service-grid,
.doctor-grid,
.contact-cards,
.stats-grid {
  display: grid;
  gap: 18px;
}

.values-grid {
  grid-template-columns: repeat(2, 1fr);
}

.values-grid article,
.service-card,
.doctor-card,
.contact-cards article,
.reason-card {
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(23, 49, 44, 0.05);
}

.values-grid article {
  min-height: 176px;
  padding: 24px;
}

.values-grid span,
.icon,
.contact-cards span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--teal));
  font-weight: 900;
}

.values-grid h3,
.service-card h3,
.doctor-card h3,
.reason-card h3,
.contact-cards h3 {
  margin: 18px 0 8px;
  color: var(--ink);
}

.values-grid p,
.service-card p,
.doctor-card p,
.reason-card p,
.contact-cards p {
  margin: 0;
  color: var(--muted);
}

.section-head {
  max-width: 720px;
  margin-block-end: 38px;
}

.services {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(233, 248, 240, 0.62)),
    var(--soft);
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 142px;
  padding: 24px 20px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 0;
  width: 5px;
  height: 0;
  background: var(--orange);
  transition: height 0.22s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(32, 170, 98, 0.25);
  box-shadow: 0 24px 54px rgba(23, 49, 44, 0.1);
}

.service-card:hover::before { height: 100%; }
.service-card:hover .icon { background: linear-gradient(135deg, var(--orange), #ffad67); }
.service-card h3 {
  margin: 14px 0 0;
  font-size: 1.08rem;
}

.why {
  background: linear-gradient(135deg, #17312c, #176347);
  color: #fff;
}

.why .eyebrow {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.why h2,
.why .section h2 { color: #fff; }
.why h2 span { color: #97f0c5; background: none; }

.sticky-title {
  position: static;
}

.reason-list {
  display: grid;
  gap: 18px;
}

.reason-card {
  padding: 28px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.reason-card strong { color: var(--orange); }
.reason-card h3 { color: #fff; }
.reason-card p { color: rgba(255, 255, 255, 0.76); }

.doctor-grid {
  grid-template-columns: repeat(3, 1fr);
}

.doctor-card {
  padding: 18px;
  text-align: center;
}

.doctor-photo {
  display: grid;
  place-items: center;
  height: 250px;
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 4rem;
  font-weight: 900;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.26), transparent 9rem),
    linear-gradient(135deg, rgba(32, 170, 98, 0.9), rgba(43, 156, 216, 0.82));
}

.doctor-card a {
  display: inline-flex;
  margin: 16px 0 8px;
  color: var(--orange);
  font-weight: 900;
}

.journey-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 22px;
  padding: 26px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 10% 18%, rgba(242, 140, 56, 0.16), transparent 18rem),
    linear-gradient(135deg, rgba(32, 170, 98, 0.12), rgba(43, 156, 216, 0.1)),
    #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(23, 49, 44, 0.08);
}

.journey-intro {
  padding: 34px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--deep-green), var(--teal));
}

.journey-intro span {
  display: inline-flex;
  margin-bottom: 54px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 900;
}

.journey-intro h3 {
  margin: 0 0 12px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.25;
}

.journey-intro p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.journey-steps article {
  position: relative;
  min-height: 170px;
  padding: 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(32, 170, 98, 0.12);
}

.journey-steps article::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--orange);
}

.journey-steps strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.16rem;
}

.journey-steps p {
  margin: 0;
  color: var(--muted);
}

.story {
  padding: 110px 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(23, 49, 44, 0.92), rgba(24, 141, 88, 0.82)),
    radial-gradient(circle at 20% 30%, rgba(242, 140, 56, 0.18), transparent 18rem);
}

.story-inner {
  max-width: 820px;
  text-align: center;
}

.story .eyebrow {
  margin-inline: auto;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.story h2 { color: #fff; }
.story p { color: rgba(255, 255, 255, 0.78); }

.stats {
  padding: 44px 0;
  background: #fff;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stats strong {
  display: block;
  color: var(--deep-green);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.stats span {
  color: var(--muted);
  font-weight: 800;
}

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

.booking-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 48px;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(242, 140, 56, 0.28), transparent 17rem),
    linear-gradient(135deg, var(--deep-green), var(--teal));
  box-shadow: var(--shadow);
}

.booking-panel::after {
  content: "+";
  position: absolute;
  inset-inline-end: 34px;
  inset-block-start: -46px;
  color: rgba(255, 255, 255, 0.12);
  font-size: 12rem;
  font-weight: 900;
  line-height: 1;
}

.booking-panel .eyebrow {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.booking-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0;
  font-size: clamp(1.45rem, 2.55vw, 2.3rem);
  line-height: 1.2;
}

.booking-panel p { color: rgba(255, 255, 255, 0.8); }
.booking-panel .button { position: relative; z-index: 1; flex: 0 0 auto; }

.contact-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-cards {
  grid-template-columns: repeat(2, 1fr);
}

.contact-cards article {
  padding: 24px;
}

.map-placeholder {
  grid-column: span 2;
  min-height: 170px;
  display: grid;
  align-content: center;
  background:
    linear-gradient(135deg, rgba(32, 170, 98, 0.08), rgba(43, 156, 216, 0.08)),
    #fff !important;
}

footer {
  padding: 46px 0 18px;
  background: #17312c;
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 42px;
}

.footer-logo {
  width: 360px;
  max-width: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

footer h3 { margin: 0 0 14px; color: #fff; }
footer a,
footer p { display: block; margin: 7px 0; color: rgba(255, 255, 255, 0.72); }

.copyright {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.52);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .brand img {
    width: 138px;
    max-height: 48px;
  }

  .menu-toggle { display: block; }
  .desktop-booking { display: none; }
  .mobile-booking { display: inline-flex; }

  .nav-links {
    position: fixed;
    inset: 82px 20px auto 20px;
    display: grid;
    gap: 4px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 60px rgba(23, 49, 44, 0.16);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
  }

  .nav-links.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .nav-cta { margin-top: 6px; }

  .hero-grid,
  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  .hero-visual { min-height: auto; }
  .photo-frame { min-height: 430px; }
  .clinic-card { min-height: 360px; }
  .sticky-title { position: static; }
  .service-grid,
  .doctor-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-panel {
    grid-template-columns: 1fr;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .booking-panel { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 560px); }
  .nav-wrap { min-height: 70px; }
  .brand img {
    width: 126px;
    max-height: 44px;
  }
  .hero { padding-bottom: 68px; }
  .hero-grid { gap: 32px; }
  .hero h1 { font-size: 2.75rem; }
  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }
  .phone-pill {
    width: 100%;
    justify-content: space-between;
  }
  .photo-frame {
    min-height: 360px;
    padding: 18px;
    border-radius: 26px;
  }
  .clinic-card {
    min-height: 320px;
    padding: 24px 16px;
  }
  .clinic-points { grid-template-columns: 1fr; }
  .floating-card {
    position: static;
    margin-top: 10px;
  }
  .visual-orbit { display: none; }
  .section { padding: 70px 0; }
  .values-grid,
  .service-grid,
  .doctor-grid,
  .journey-steps,
  .contact-cards,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .journey-panel {
    padding: 14px;
    border-radius: 24px;
  }
  .journey-intro {
    padding: 26px 22px;
  }
  .journey-intro span {
    margin-bottom: 34px;
  }
  .doctor-photo { height: 210px; }
  .booking-panel { padding: 30px 22px; border-radius: 24px; }
  .map-placeholder { grid-column: auto; }
}

/* Full-screen image hero */
.site-header {
  position: fixed;
  width: 100%;
  background: rgba(245, 251, 248, 0.62);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.hero {
  min-height: 100vh;
  isolation: isolate;
  padding: 106px 0 42px;
  background: #edf7f2;
}

.hero-bg,
.hero-bg::before,
.hero-bg::after,
.hero-bg img {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -2;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(237, 247, 242, 0.12), rgba(237, 247, 242, 0.12)),
    url("assets/images/einelozeh.jpg");
  background-size: cover;
  background-position: center;
}

.hero-bg::before {
  content: "";
  z-index: -1;
  background: inherit;
  filter: blur(24px) saturate(1.08);
  transform: scale(1.08);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: saturate(1.03) contrast(1);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(9, 50, 43, 0.02) 0%, rgba(9, 50, 43, 0.04) 44%, rgba(9, 50, 43, 0.7) 100%),
    linear-gradient(90deg, rgba(9, 50, 43, 0.18), rgba(9, 50, 43, 0.02) 30%, rgba(9, 50, 43, 0.12));
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 148px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.hero-copy {
  width: min(720px, 100%);
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  text-align: right;
}

.hero .badge {
  color: #eafff4;
  background: rgba(32, 170, 98, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero h1 {
  color: #fff;
  font-size: clamp(1.65rem, 3.1vw, 3.15rem);
  line-height: 1.18;
  max-width: 100%;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
}

.hero h1 span {
  background: linear-gradient(100deg, #ffffff, #d8fff0 42%, #ffb06a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  line-height: 1.95;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.38);
}

.hero-actions {
  justify-content: flex-start;
  margin-block-start: 22px;
}

.hero .button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.hero .phone-pill {
  width: fit-content;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.hero .phone-pill strong {
  color: #ffb06a;
}

@media (max-width: 980px) {
  .hero {
    min-height: 100vh;
    padding: 96px 0 34px;
  }

  .hero-grid {
    min-height: calc(100vh - 130px);
  }

  .hero-copy {
    width: min(620px, 100%);
  }

  .hero h1 {
    font-size: clamp(1.55rem, 5vw, 2.45rem);
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 88px 0 28px;
  }

  .hero-bg img {
    object-fit: contain;
    object-position: center top;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(9, 50, 43, 0.03), rgba(9, 50, 43, 0.16) 44%, rgba(9, 50, 43, 0.86) 100%);
  }

  .hero-grid {
    align-items: flex-end;
    justify-content: flex-start;
    min-height: calc(100vh - 144px);
  }

  .hero-copy {
    padding: 0;
  }

  .hero h1 {
    font-size: 1.55rem;
  }

  .hero-text {
    font-size: 0.94rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
