/* ============================================================
   WaterWorks Cambodia — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --yellow:      #F5D167;
  --blue:        #3F7BA6;
  --navy:        #1B6EC2;
  --muted:       #4A7FC0;
  --deep:        #1256A8;
  --light:       #BDD8EC;
  --white:       #FFFFFF;
  --off-white:   #F8F5EE;
  --cream:       #FDF8EE;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', 'Helvetica Neue', sans-serif;

  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(27,110,194,0.10);
  --shadow-lg:   0 8px 48px rgba(27,110,194,0.18);

  --max-width:   1160px;
  --nav-height:  158px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { color: var(--muted); font-size: 1.05rem; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
  display: block;
}

/* ── Layout Utilities ───────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 5rem 0;
}
.section--dark {
  background: var(--navy);
  color: var(--white);
}
.section--dark h2, .section--dark h3, .section--dark p { color: var(--white); }
.section--dark .section-label { color: var(--yellow); }
.section--cream { background: var(--cream); }
.section--light { background: var(--off-white); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: #E1C05F;
  border-color: #E1C05F;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,209,103,0.45);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-lg { padding: 1.1rem 2.6rem; font-size: 1.05rem; }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 100;
  background: #F5D167;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #E1C05F;
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(245,209,103,0.5); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav__logo img {
  height: 148px;
  width: auto;
}
.nav__logo-text {
  display: none;
}
.nav__logo-text span {
  display: block;
  font-size: 0.7rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nav__links a:hover, .nav__links a.active { color: var(--deep); }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }
.nav__cta {
  margin-left: 1rem;
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  color: var(--white) !important;
}
.nav__cta:hover {
  background: var(--deep) !important;
  border-color: var(--deep) !important;
  box-shadow: 0 6px 20px rgba(27,110,194,0.35) !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
}
.nav__hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Mobile Nav ─────────────────────────────────────────────── */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--yellow);
  padding: 1.5rem;
  border-bottom: 1px solid rgba(228,188,69,0.5);
  box-shadow: var(--shadow-lg);
  z-index: 99;
}
.nav__mobile.open { display: block; }
.nav__mobile a {
  display: block;
  padding: 0.85rem 0;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid rgba(27,110,194,0.15);
  font-size: 1rem;
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile .btn { margin-top: 1rem; width: 100%; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-height);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(27,110,194,0.72) 0%, rgba(18,86,168,0.60) 50%, rgba(63,123,166,0.45) 100%);
  z-index: 1;
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
/* Fallback pattern when no image */
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(63,123,166,0.3) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(245,209,103,0.12) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(18,86,168,0.4) 0%, transparent 50%),
    var(--navy);
}
.hero__water-ripple {
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  z-index: 2;
  line-height: 0;
}
.hero__content {
  position: relative;
  z-index: 3;
  color: var(--white);
  padding: 4rem 0;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,209,103,0.15);
  border: 1px solid rgba(245,209,103,0.4);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.5rem;
}
.hero__badge svg { width: 14px; height: 14px; }
.hero h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
  max-width: 14ch;
}
.hero h1 em {
  color: var(--yellow);
  font-style: normal;
}
.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--light);
  margin-bottom: 1.5rem;
  font-style: italic;
  letter-spacing: 0.02em;
}
.hero__text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 52ch;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(189,216,236,0.2);
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--yellow);
  display: block;
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ── Certifications Bar ─────────────────────────────────────── */
.cert-bar {
  background: var(--cream);
  border-bottom: 1px solid rgba(189,216,236,0.4);
  padding: 1rem 0;
}
.cert-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .cert-bar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
    justify-items: start;
  }
  .cert-divider { display: none; }
}
.cert-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}
.cert-item img { height: 36px; width: auto; }
.cert-item__icon {
  width: 32px; height: 32px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cert-item__icon svg { color: var(--navy); width: 16px; height: 16px; }
.cert-divider {
  width: 1px; height: 28px;
  background: rgba(189,216,236,0.6);
}

/* ── Projects Section ───────────────────────────────────────── */
.projects__header { text-align: center; max-width: 56ch; margin: 0 auto 3.5rem; }
.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.project-card__icon-bar {
  padding: 2rem 2rem 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.project-card__emoji {
  width: 64px; height: 64px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.project-card__emoji--well   { background: rgba(63,123,166,0.12); }
.project-card__emoji--filter { background: rgba(245,209,103,0.2); }
.project-card__emoji--loo    { background: rgba(18,86,168,0.12); }

.project-card__price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  text-align: right;
}
.project-card__price span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.project-card__body { padding: 0 2rem 2rem; flex: 1; display: flex; flex-direction: column; }
.project-card__name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.4rem;
}
.project-card h3 { margin-bottom: 0.75rem; font-size: 1.4rem; }
.project-card p { font-size: 0.95rem; flex: 1; }
.project-card__cta {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue);
  transition: gap 0.2s;
}
.project-card__cta:hover { gap: 0.7rem; }
.project-card__cta svg { width: 16px; }

/* ── Impact Numbers ─────────────────────────────────────────── */
.impact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.impact__stat {
  background: rgba(255,255,255,0.05);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: background 0.3s;
}
.impact__stat:hover { background: rgba(255,255,255,0.09); }
.impact__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--yellow);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.impact__label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ── How It Works ───────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 2rem; }
.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.step__num {
  width: 48px; height: 48px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  flex-shrink: 0;
}
.step__content h4 { margin-bottom: 0.3rem; }
.step__content p { font-size: 0.95rem; }

/* ── CTA Strip ──────────────────────────────────────────────── */
.cta-strip {
  background: var(--yellow);
  padding: 4rem 0;
}
.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-strip h2 { color: var(--navy); font-size: clamp(1.5rem, 3vw, 2.2rem); }
.cta-strip p { color: rgba(27,110,194,0.85); max-width: 44ch; }
.cta-strip .btn-primary {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  flex-shrink: 0;
}
.cta-strip .btn-primary:hover {
  background: var(--deep);
  border-color: var(--deep);
  box-shadow: 0 6px 20px rgba(27,110,194,0.35);
}

/* ── Quote / Testimonial ────────────────────────────────────── */
.quote-block {
  border-left: 4px solid var(--yellow);
  padding: 1.5rem 2rem;
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.quote-block blockquote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.quote-block cite {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Photo Gallery ──────────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}
.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--light);
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery__item:hover img { transform: scale(1.04); }
/* Row 1: 2 images each taking half the width */
.gallery__item:nth-child(1),
.gallery__item:nth-child(2) {
  grid-column: span 3;
  aspect-ratio: 4/3;
}
/* Row 2: 3 images each taking a third of the width */
.gallery__item:nth-child(3),
.gallery__item:nth-child(4),
.gallery__item:nth-child(5) {
  grid-column: span 2;
  aspect-ratio: 4/3;
}
/* Row 3: full-width video */
.gallery__item:nth-child(6) {
  grid-column: span 6;
  aspect-ratio: 16/9;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand img { height: 90px; margin-bottom: 1rem; }
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.footer__tagline {
  font-style: italic;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.footer__desc { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.footer__heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.25rem;
}
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }
.footer__contact-item {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
}
.footer__contact-item svg { width: 16px; flex-shrink: 0; margin-top: 3px; color: var(--light); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__abn {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer__abn strong { color: rgba(255,255,255,0.65); }
.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__social a {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
}
.footer__social a:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}
.footer__social svg { width: 24px; }

/* ── Page Header ────────────────────────────────────────────── */
.page-header {
  background: var(--navy);
  padding: calc(var(--nav-height) + 3rem) 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(63,123,166,0.3) 0%, transparent 60%);
}
.page-header__inner { position: relative; z-index: 1; }
.page-header .section-label { color: var(--yellow); }
.page-header h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-header p  { color: rgba(255,255,255,0.65); max-width: 54ch; font-size: 1.1rem; }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

/* ── Donate page ────────────────────────────────────────────── */
.donate-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.donate-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
}
.donate-card:hover, .donate-card.selected {
  border-color: var(--yellow);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.donate-card__emoji { font-size: 2.5rem; margin-bottom: 1rem; }
.donate-card__price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.donate-card__name { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700; color: var(--blue); margin-bottom: 0.5rem; }
.donate-card p { font-size: 0.88rem; }

.stripe-placeholder {
  background: var(--cream);
  border: 2px dashed var(--light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
}
.stripe-placeholder svg { width: 48px; color: var(--muted); margin: 0 auto 1rem; }
.stripe-placeholder h3 { margin-bottom: 0.5rem; }
.stripe-placeholder p { font-size: 0.95rem; max-width: 44ch; margin: 0 auto; }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease forwards; }
.fade-up--1 { animation-delay: 0.1s; opacity: 0; }
.fade-up--2 { animation-delay: 0.25s; opacity: 0; }
.fade-up--3 { animation-delay: 0.4s; opacity: 0; }
.fade-up--4 { animation-delay: 0.55s; opacity: 0; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .impact__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__logo-text { display: none; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .hero__stats { flex-wrap: wrap; gap: 1.5rem; }
  .cta-strip__inner { flex-direction: column; text-align: center; }
  .donate-options { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery__item--large { grid-column: span 2; }
  .gallery__item:nth-child(1),
  .gallery__item:nth-child(2) { grid-column: span 1; }
  .gallery__item:nth-child(3),
  .gallery__item:nth-child(4),
  .gallery__item:nth-child(5) { grid-column: span 1; }
  .gallery__item:nth-child(6) { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .impact__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .hero__content { padding-left: 1.5rem; padding-right: 1.5rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; }
  .gallery { grid-template-columns: 1fr; }
  .gallery__item--large { grid-column: span 1; }
  .gallery__item:nth-child(1),
  .gallery__item:nth-child(2),
  .gallery__item:nth-child(3),
  .gallery__item:nth-child(4),
  .gallery__item:nth-child(5),
  .gallery__item:nth-child(6) { grid-column: span 1; }
}
