/* ============================================================
   Home Africa Flights — sunset travel-poster theme
   ============================================================ */
:root {
  --ink: #241428;
  --ink-soft: #3a2340;
  --red: #d2361e;
  --red-deep: #a41f10;
  --orange: #ef6a1f;
  --amber: #f79433;
  --gold: #ffc35c;
  --gold-pale: #ffd97a;
  --cream: #fdf1dd;
  --paper: #fff8ec;
  --wa: #128c4b;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Albert Sans", "Helvetica Neue", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

img, svg { display: block; }

a { color: inherit; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
  padding: 15px 32px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn--gold {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 6px 24px rgba(0,0,0,.28);
}
.btn--gold:hover { background: var(--gold-pale); box-shadow: 0 10px 30px rgba(0,0,0,.34); }

.btn--ghost {
  border-color: rgba(255,243,221,.75);
  color: #fff3dd;
  background: rgba(36,20,40,.18);
  backdrop-filter: blur(3px);
}
.btn--ghost:hover { background: rgba(36,20,40,.4); border-color: #fff3dd; }

.btn--ink { background: var(--ink); color: var(--cream); }
.btn--ink:hover { background: var(--ink-soft); box-shadow: 0 10px 26px rgba(36,20,40,.35); }

.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: #0e7a40; box-shadow: 0 10px 26px rgba(18,140,75,.35); }

/* ---------- top strip ---------- */
.topbar {
  background: var(--ink);
  color: var(--cream);
  font-size: .82rem;
  font-weight: 500;
}
.topbar__in {
  display: flex;
  gap: 26px;
  justify-content: center;
  padding: 8px 24px;
  flex-wrap: wrap;
}
.topbar a { text-decoration: none; }
.topbar a:hover { color: var(--gold); }
.topbar__wa a { color: #7fd8a8; }
.topbar__addr { opacity: .75; }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,248,236,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(36,20,40,.08);
}
.nav__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand__mark { width: 42px; height: 42px; }
.brand__logo { height: 78px; width: auto; }
.brand__text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: .01em;
}
.brand__text em {
  font-style: italic;
  background: linear-gradient(100deg, var(--red) 10%, var(--orange) 55%, var(--amber) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand__text--light { color: var(--cream); font-size: 1.5rem; }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  position: relative;
}
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav__links a:not(.nav__cta):hover::after { transform: scaleX(1); }
.nav__cta {
  background: var(--red);
  color: var(--cream) !important;
  padding: 9px 22px;
  border-radius: 999px;
  transition: background .25s ease;
}
.nav__cta:hover { background: var(--orange); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav__burger span {
  width: 26px; height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
}
.hero__scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 120px;
  text-shadow: 0 2px 24px rgba(90,15,5,.35);
}
.hero__kicker {
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold-pale);
  margin-bottom: 18px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 8.5vw, 6.4rem);
  line-height: .98;
  letter-spacing: -.015em;
}
.hero__title span { display: block; }
.hero__title-accent em {
  font-style: italic;
  color: var(--gold-pale);
}
.hero__sub {
  max-width: 520px;
  margin: 26px 0 34px;
  font-size: 1.08rem;
  font-weight: 500;
  color: #ffeeda;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* hero animations */
.sun { animation: sunRise 3.2s cubic-bezier(.2,.7,.3,1) both; transform-origin: 880px 330px; }
@keyframes sunRise {
  from { transform: translateY(190px) scale(.92); opacity: .4; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

.clouds--far  { animation: drift 46s linear infinite alternate; }
.clouds--near { animation: drift 30s linear infinite alternate-reverse; }
@keyframes drift {
  from { transform: translateX(-60px); }
  to   { transform: translateX(60px); }
}

.plane { animation: fly 17s linear infinite; }
@keyframes fly {
  0%   { transform: translate(-320px, 460px) rotate(-8deg); }
  100% { transform: translate(1900px, 130px) rotate(-8deg); }
}
.plane__trail { animation: trailDash 1.1s linear infinite; }
@keyframes trailDash { to { stroke-dashoffset: -44; } }

.bird--1 { animation: birdFly1 26s linear infinite; }
.bird--2 { animation: birdFly2 34s linear infinite; animation-delay: -12s; }
@keyframes birdFly1 {
  0%   { transform: translate(1500px, 260px); }
  100% { transform: translate(-120px, 180px); }
}
@keyframes birdFly2 {
  0%   { transform: translate(1560px, 380px); }
  100% { transform: translate(-140px, 300px); }
}

/* load reveal */
.reveal-load {
  opacity: 0;
  transform: translateY(26px);
  animation: rise .9s cubic-bezier(.2,.7,.3,1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s cubic-bezier(.2,.7,.3,1), transform .8s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-load { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
  .sun, .clouds--far, .clouds--near, .plane, .bird--1, .bird--2, .ticker__track { animation: none !important; }
}

/* ---------- ticker ---------- */
.ticker {
  background: var(--ink);
  color: var(--gold);
  overflow: hidden;
  padding: 14px 0;
  border-top: 3px solid var(--red);
}
.ticker__track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: ticker 36s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker__track i { font-style: normal; color: var(--red); font-size: .8rem; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- sections ---------- */
.section { padding: 96px 0; }
.section--cream { background: var(--cream); }
.section--ink {
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(210,54,30,.25), transparent 60%),
    var(--ink);
  color: var(--cream);
}
.section--sunset {
  background:
    radial-gradient(900px 600px at 15% 0%, rgba(255,217,122,.5), transparent 55%),
    linear-gradient(150deg, var(--amber), var(--orange) 55%, var(--red));
  color: var(--ink);
}

.overline {
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: .75rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 14px;
}
.overline--gold { color: var(--gold); }
.overline--ink { color: var(--ink); }

.section__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin-bottom: 18px;
}
.section__title em { font-style: italic; color: var(--orange); }
.section__title--light { color: var(--cream); }
.section__title--light em { color: var(--gold); }
.section--sunset .section__title em { color: var(--ink); text-decoration: underline; text-decoration-color: rgba(36,20,40,.35); text-underline-offset: 8px; }

.section__lead {
  max-width: 560px;
  font-size: 1.05rem;
  color: rgba(36,20,40,.75);
  margin-bottom: 40px;
}
.section--ink .section__lead { color: rgba(253,241,221,.72); }
.section__lead--ink { color: rgba(36,20,40,.82); }

/* ---------- destination cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 240px;
  padding: 22px 20px 20px;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: var(--cream);
  background: linear-gradient(165deg, var(--c1), var(--c2));
  box-shadow: 0 8px 22px rgba(36,20,40,.16);
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease;
}
.card:hover {
  transform: translateY(-8px) rotate(-.6deg);
  box-shadow: 0 20px 40px rgba(36,20,40,.28);
}
.card svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .9;
  transition: transform .5s ease;
}
.card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .5s ease;
}
.card:hover svg,
.card:hover .card__img { transform: scale(1.06); }
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(36,20,40,.78) 0%, rgba(36,20,40,.06) 58%);
}
.card > span { position: relative; z-index: 2; }
.card__country {
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .68rem;
  font-weight: 700;
  opacity: .85;
}
.card__city {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.55rem;
  line-height: 1.1;
  margin: 4px 0 10px;
}
.card__price {
  align-self: flex-start;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  font-size: .82rem;
  padding: 5px 14px;
  border-radius: 999px;
}
.cards__note {
  margin-top: 34px;
  text-align: center;
  font-size: 1rem;
  color: rgba(36,20,40,.7);
}

/* ---------- gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.gallery__tile {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 10px 26px rgba(36,20,40,.18);
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease;
}
.gallery__tile:nth-child(2),
.gallery__tile:nth-child(5) { margin-top: 30px; }
.gallery__tile:hover {
  transform: translateY(-8px) rotate(.6deg);
  box-shadow: 0 22px 46px rgba(36,20,40,.3);
}
.gallery__tile svg,
.gallery__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cards__note a { color: var(--red); font-weight: 700; }

/* ---------- umrah ---------- */
.umrah {
  position: relative;
  color: #f2fbf7;
  background:
    linear-gradient(to bottom, rgba(8,42,44,.82), rgba(8,42,44,.55) 45%, rgba(8,42,44,.88)),
    url("../images/umrah-kaaba.jpg") center 30% / cover no-repeat;
}
.umrah__overline { color: #9fdcbe; }
.umrah__title { color: #ffffff; text-shadow: 0 2px 18px rgba(0,0,0,.45); }
.umrah__title em { color: var(--gold); }
.umrah__lead { color: rgba(242,251,247,.9); text-shadow: 0 1px 12px rgba(0,0,0,.4); }
.umrah__chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.umrah__chips li {
  background: rgba(8,42,44,.65);
  border: 1px solid rgba(159,220,190,.4);
  backdrop-filter: blur(4px);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: .88rem;
  font-weight: 600;
}
.umrah__form {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  background: linear-gradient(150deg, rgba(247,148,51,.96), rgba(239,106,31,.96) 55%, rgba(210,54,30,.96));
  border: 1px solid rgba(255,217,122,.45);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 26px 60px rgba(0,0,0,.4);
  backdrop-filter: blur(6px);
}
.ufield { display: flex; flex-direction: column; gap: 6px; }
.ufield--1 { grid-column: span 1; }
.ufield--2 { grid-column: span 2; }
.ufield--3 { grid-column: span 3; }
.ufield label {
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ufield input,
.ufield select {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
  background: #fff;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 11px 12px;
  min-width: 0;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.ufield input:focus,
.ufield select:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(36,20,40,.2);
}
.ufield input.is-invalid { border-color: #8f1e0c; background: #ffe9e0; }
.umrah__status {
  grid-column: span 6;
  align-self: center;
  font-weight: 700;
  min-height: 1.3em;
  margin: 0;
}
.umrah__status.is-ok { color: #1c4d2e; }
.umrah__status.is-err { color: #5c0f02; }
.umrah__actions {
  grid-column: span 6;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}
.umrah__subtitle {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0,0,0,.45);
  margin: 52px 0 24px;
  text-align: center;
}
.umrah__services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.uservice {
  background: rgba(8,42,44,.72);
  border: 1px solid rgba(159,220,190,.35);
  border-radius: 18px;
  padding: 24px 22px;
  backdrop-filter: blur(5px);
}
.uservice__icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  font-size: 1.35rem;
  background: var(--gold);
  border-radius: 12px;
  margin-bottom: 14px;
}
.uservice h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--gold-pale);
  margin-bottom: 8px;
}
.uservice p {
  font-size: .9rem;
  color: rgba(242,251,247,.85);
  line-height: 1.55;
}

/* ---------- why ---------- */
.why {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px 60px;
  margin-top: 48px;
}
.why__item { position: relative; padding-left: 74px; }
.why__num {
  position: absolute;
  left: 0; top: -6px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 2.6rem;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
}
.why__item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--gold-pale);
}
.why__item p { color: rgba(253,241,221,.78); font-size: .98rem; }

/* ---------- about ---------- */
.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about__media {
  position: relative;
  margin: 0;
  max-width: 430px;
  justify-self: center;
}
.about__media::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  background: linear-gradient(150deg, var(--gold), var(--orange));
  border-radius: 24px;
  z-index: 0;
}
.about__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 24px;
  border: 4px solid var(--ink);
  box-shadow: 0 22px 50px rgba(36,20,40,.25);
  transform: rotate(-1.5deg);
  transition: transform .4s ease;
}
.about__media:hover img { transform: rotate(0deg) scale(1.01); }
.about__text {
  color: rgba(36,20,40,.78);
  font-size: 1.02rem;
  margin-bottom: 18px;
  max-width: 560px;
}
.about__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 10px; }
.btn--outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn--outline:hover { background: var(--ink); color: var(--cream); }

/* ---------- quote ---------- */
.quote {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 64px;
  align-items: start;
}
.quote__points {
  list-style: none;
  margin-top: 8px;
  font-weight: 600;
}
.quote__points li { padding: 6px 0; }

.quote__form {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  background: var(--paper);
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 24px 60px rgba(90,15,5,.3);
}
.field { grid-column: span 6; display: flex; flex-direction: column; gap: 6px; }
.field--half { grid-column: span 3; }
.field--third { grid-column: span 2; }
.field label {
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.field label small { font-weight: 500; text-transform: none; letter-spacing: 0; }
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 2px solid rgba(36,20,40,.14);
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(239,106,31,.18);
}
.field input.is-invalid,
.field textarea.is-invalid { border-color: var(--red); }
.field textarea { resize: vertical; }

.quote__actions {
  grid-column: span 6;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.quote__status {
  grid-column: span 6;
  font-weight: 600;
  min-height: 1.4em;
}
.quote__status.is-ok { color: #0e7a40; }
.quote__status.is-err { color: var(--red); }

/* ---------- visit ---------- */
.visit {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.visit__details { display: grid; gap: 18px; margin-top: 10px; }
.visit__details dt {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .7rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 2px;
}
.visit__details dd { font-size: 1.02rem; font-weight: 500; }
.visit__details a { color: var(--ink); text-decoration-color: var(--orange); }
.visit__map {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(36,20,40,.2);
  border: 4px solid var(--ink);
}
.visit__map iframe { width: 100%; height: 420px; border: 0; }

/* ---------- footer ---------- */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 56px 0 40px;
  border-top: 4px solid var(--red);
}
.footer__in {
  display: grid;
  gap: 26px;
  text-align: center;
  justify-items: center;
}
.footer__brand p { opacity: .65; font-size: .9rem; margin-top: 12px; }
.footer__logo {
  height: 44px;
  width: auto;
  background: var(--cream);
  padding: 9px 16px;
  border-radius: 12px;
  margin: 0 auto;
}
.footer__links { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; }
.footer__links a {
  text-decoration: none;
  font-weight: 600;
  font-size: .92rem;
  opacity: .85;
}
.footer__links a:hover { color: var(--gold); opacity: 1; }
.footer__legal { font-size: .8rem; opacity: .5; line-height: 1.7; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--wa);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(18,140,75,.45);
  transition: transform .25s ease;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .ufield--1, .ufield--2, .ufield--3 { grid-column: span 4; }
  .umrah__services { grid-template-columns: repeat(2, 1fr); }
  .umrah__status { grid-column: span 12; }
  .umrah__actions { grid-column: span 12; justify-content: stretch; }
  .umrah__actions .btn { flex: 1; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .gallery__tile:nth-child(2), .gallery__tile:nth-child(5) { margin-top: 0; }
  .gallery__tile:nth-child(even) { margin-top: 24px; }
  .about { grid-template-columns: 1fr; gap: 48px; }
  .about__media { max-width: 440px; margin: 0 auto; }
  .quote { grid-template-columns: 1fr; gap: 40px; }
  .visit { grid-template-columns: 1fr; gap: 36px; }
  .why { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 720px) {
  .section { padding: 68px 0; }
  .topbar__addr { display: none; }

  .brand__logo { height: 60px; }
  .nav__burger { display: flex; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--paper);
    border-bottom: 1px solid rgba(36,20,40,.1);
    padding: 10px 24px 20px;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 10px 0; font-size: 1.05rem; }
  .nav__cta { margin-top: 8px; }

  .hero__content { padding-bottom: 90px; }
  .field--half, .field--third { grid-column: span 6; }
  .quote__form { padding: 24px 20px; }
  .ufield--1, .ufield--2, .ufield--3 { grid-column: span 6; }
  .umrah__form { padding: 22px 18px; }
}

@media (max-width: 520px) {
  .cards { grid-template-columns: 1fr; }
  .card { min-height: 200px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery__tile:nth-child(even) { margin-top: 0; }
  .umrah__services { grid-template-columns: 1fr; }
}
