/* ============================================================
   TANISHA'S BIRTHDAY WEBSITE — style.css
   Palette: rose-gold, soft pinks, champagne, deep plum
   ============================================================ */

/* ---------- RESET & TOKENS ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rose:       hsl(340, 80%, 65%);
  --rose-dark:  hsl(340, 60%, 45%);
  --rose-light: hsl(340, 100%, 92%);
  --gold:       hsl(42, 90%, 58%);
  --gold-light: hsl(42, 100%, 85%);
  --plum:       hsl(300, 40%, 18%);
  --cream:      hsl(35, 60%, 96%);
  --white:      #fff;
  --grad-bg:    linear-gradient(135deg, hsl(330,60%,10%) 0%, hsl(280,50%,12%) 50%, hsl(340,55%,8%) 100%);
  --grad-card:  linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  --shadow-glow: 0 0 60px hsla(340,80%,65%,0.25);
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Lato', system-ui, sans-serif;
  --font-script: 'Dancing Script', cursive;
  --radius-card: 24px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--grad-bg);
  color: var(--cream);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ---------- PARTICLES CANVAS ---------- */
#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ---------- BALLOONS ---------- */
.balloons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 1;
}

.balloon {
  position: absolute;
  bottom: -120px;
  width: 60px;
  height: 72px;
  background: radial-gradient(circle at 30% 30%, hsl(var(--hue),90%,80%), hsl(var(--hue),70%,55%));
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: balloon-rise 8s ease-in infinite;
  opacity: 0.85;
  filter: drop-shadow(0 4px 12px hsla(var(--hue),80%,50%,0.5));
}

.balloon::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 20px;
  background: hsla(var(--hue),60%,60%,0.7);
}

@keyframes balloon-rise {
  0%   { transform: translateY(0) rotate(-5deg); opacity: 0.9; }
  25%  { transform: translateY(-25vh) rotate(5deg); }
  50%  { transform: translateY(-50vh) rotate(-3deg); }
  75%  { transform: translateY(-75vh) rotate(4deg); }
  100% { transform: translateY(-110vh) rotate(-5deg); opacity: 0; }
}

/* ---------- SECTION UTILITIES ---------- */
.section-label {
  font-family: var(--font-script);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--gold);
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  background: linear-gradient(135deg, var(--rose-light), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn--primary {
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: var(--white);
  box-shadow: 0 8px 30px hsla(340,80%,55%,0.4);
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 40px hsla(340,80%,55%,0.6);
}

.btn--ghost {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn--ghost:hover {
  background: hsla(42,90%,58%,0.12);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 30px hsla(42,90%,58%,0.3);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 8vw, 8rem);
  overflow: hidden;
  z-index: 2;
}

.hero__glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(340,80%,60%,0.18) 0%, transparent 70%);
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
  from { opacity: 0.6; transform: translate(-50%,-50%) scale(1); }
  to   { opacity: 1;   transform: translate(-50%,-50%) scale(1.15); }
}

.hero__content { z-index: 2; }

.hero__eyebrow {
  font-family: var(--font-script);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gold);
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
  animation: fade-up 0.8s ease both;
}

.hero__title {
  font-family: var(--font-serif);
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero__title--line1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--rose-light);
  animation: fade-up 0.9s 0.1s ease both;
}

.hero__title--line2 {
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 700;
  background: linear-gradient(120deg, var(--gold-light), var(--rose), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fade-up 0.9s 0.2s ease both;
}

.hero__name-wrapper {
  position: relative;
  display: inline-block;
  margin: 0.8rem 0 1rem;
  animation: fade-up 0.9s 0.3s ease both;
}

.hero__name {
  font-family: var(--font-script);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--rose-light), var(--rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px hsla(340,80%,70%,0.6));
}

.hero__name-underline {
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold), transparent);
  border-radius: 2px;
  margin-top: 4px;
  animation: grow-line 1s 1s ease both;
  transform-origin: left;
}

@keyframes grow-line {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: hsla(35,60%,92%,0.75);
  margin-bottom: 2.2rem;
  letter-spacing: 0.03em;
  animation: fade-up 0.9s 0.4s ease both;
}

.hero__subtitle strong {
  color: var(--gold);
  font-size: 1.2em;
}

.hero__cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fade-up 0.9s 0.5s ease both;
}

/* ---------- PHOTO FRAME ---------- */
.hero__photo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  animation: fade-up 1.1s 0.4s ease both;
}

.photo-frame {
  position: relative;
  width: clamp(250px, 35vw, 420px);
  aspect-ratio: 3 / 4;
}

.photo-frame__ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  animation: spin 20s linear infinite;
}

.photo-frame__ring--1 {
  inset: -18px;
  border-color: hsla(340,80%,70%,0.35);
  animation-direction: normal;
}

.photo-frame__ring--2 {
  inset: -8px;
  border-color: hsla(42,90%,60%,0.4);
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 30s;
}

@keyframes spin { to { transform: rotate(360deg); } }

.photo-frame__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  box-shadow:
    0 0 0 4px hsla(340,80%,70%,0.3),
    0 0 0 8px hsla(42,90%,60%,0.15),
    0 30px 80px hsla(300,50%,10%,0.6),
    var(--shadow-glow);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.photo-frame__img:hover {
  transform: scale(1.03);
  box-shadow:
    0 0 0 6px hsla(340,80%,70%,0.5),
    0 0 0 12px hsla(42,90%,60%,0.25),
    0 40px 100px hsla(300,50%,10%,0.7),
    0 0 80px hsla(340,80%,65%,0.5);
}

.photo-frame__sparkle {
  position: absolute;
  font-size: 1.4rem;
  color: var(--gold);
  filter: drop-shadow(0 0 6px var(--gold));
  animation: sparkle 2s ease-in-out infinite;
}

.photo-frame__sparkle--tl { top: -10px; left: -10px; animation-delay: 0s; }
.photo-frame__sparkle--tr { top: -10px; right: -10px; animation-delay: 0.5s; }
.photo-frame__sparkle--bl { bottom: -10px; left: -10px; animation-delay: 1s; }
.photo-frame__sparkle--br { bottom: -10px; right: -10px; animation-delay: 1.5s; }

@keyframes sparkle {
  0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
  50%       { opacity: 0.4; transform: scale(1.3) rotate(45deg); }
}

/* ---------- SCROLL INDICATOR ---------- */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-indicator__arrow {
  width: 28px;
  height: 28px;
  border-right: 2px solid var(--rose-light);
  border-bottom: 2px solid var(--rose-light);
  transform: rotate(45deg);
  animation: bounce-down 1.5s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes bounce-down {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(8px); }
}

/* ============================================================
   COUNTER SECTION
   ============================================================ */
.counter-section {
  position: relative;
  z-index: 2;
  padding: 5rem clamp(1.5rem, 8vw, 8rem);
  background: linear-gradient(180deg, transparent, hsla(340,50%,10%,0.6), transparent);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.counter-card {
  background: var(--grad-card);
  border: 1px solid hsla(340,80%,70%,0.2);
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  cursor: default;
}

.counter-card:hover {
  border-color: hsla(340,80%,70%,0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px hsla(340,80%,50%,0.2);
}

.counter-card__number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--rose-light), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.counter-card__label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsla(35,60%,90%,0.6);
}

/* ============================================================
   MESSAGE SECTION
   ============================================================ */
.message-section {
  position: relative;
  z-index: 2;
  padding: 5rem clamp(1.5rem, 8vw, 8rem);
}

.message-card {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  background: var(--grad-card);
  border: 1px solid hsla(42,90%,60%,0.25);
  border-radius: var(--radius-card);
  padding: clamp(2rem, 5vw, 4rem) clamp(2rem, 5vw, 3.5rem);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px hsla(300,50%,8%,0.5), var(--shadow-glow);
  overflow: hidden;
}

.message-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-family: var(--font-serif);
  font-size: 14rem;
  color: hsla(340,80%,65%,0.06);
  line-height: 1;
  pointer-events: none;
}

.message-card__deco {
  position: absolute;
  font-size: 2rem;
  opacity: 0.35;
  pointer-events: none;
}

.message-card__deco--tl { top: 1.2rem; left: 1.2rem; }
.message-card__deco--tr { top: 1.2rem; right: 1.2rem; }
.message-card__deco--bl { bottom: 1.2rem; left: 1.2rem; }
.message-card__deco--br { bottom: 1.2rem; right: 1.2rem; }

.message-card__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--rose-light);
  margin-bottom: 1.5rem;
}

.message-card__body {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.9;
  color: hsla(35,60%,92%,0.88);
  margin-bottom: 1.2rem;
}

.message-card__body strong { color: var(--gold); font-weight: 700; }
.message-card__body em { color: var(--rose-light); font-style: italic; }

.message-card__sign {
  margin-top: 2.5rem;
  font-style: italic;
  color: hsla(35,60%,90%,0.65);
  font-size: 0.95rem;
  line-height: 1.8;
}

.message-card__sign-name {
  font-family: var(--font-script);
  font-size: 1.6rem;
  font-style: normal;
  color: var(--rose);
  filter: drop-shadow(0 0 8px hsla(340,80%,65%,0.4));
}

/* ============================================================
   REASONS SECTION
   ============================================================ */
.reasons-section {
  position: relative;
  z-index: 2;
  padding: 5rem clamp(1.5rem, 8vw, 8rem);
  background: linear-gradient(180deg, transparent, hsla(280,40%,8%,0.5), transparent);
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.reason-card {
  background: var(--grad-card);
  border: 1px solid hsla(340,80%,70%,0.15);
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  animation: fade-up 0.6s ease both;
}

.reason-card:hover {
  border-color: hsla(340,80%,70%,0.45);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px hsla(340,80%,50%,0.2);
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
}

.reason-card__num {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  min-width: 1.8rem;
  padding-top: 2px;
}

.reason-card__text {
  font-size: 0.93rem;
  line-height: 1.6;
  color: hsla(35,60%,92%,0.85);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  position: relative;
  z-index: 2;
  padding: 5rem clamp(1.5rem, 8vw, 8rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
}

.gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: hsla(340,50%,15%,0.6);
}

.gallery-card--feature {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.gallery-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-card__img {
  transform: scale(1.07);
}

.gallery-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(300,50%,10%,0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-card:hover .gallery-card__overlay { opacity: 1; }

.gallery-card__caption {
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: var(--cream);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.8));
}

.gallery-hint {
  text-align: center;
  font-size: 0.85rem;
  color: hsla(35,60%,90%,0.45);
  max-width: 600px;
  margin: 0 auto;
}

.gallery-hint code {
  background: hsla(340,80%,70%,0.12);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  color: var(--rose-light);
}

/* ============================================================
   CAKE SECTION
   ============================================================ */
.cake-section {
  position: relative;
  z-index: 2;
  padding: 5rem clamp(1.5rem, 8vw, 8rem);
  text-align: center;
}

.cake-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
}

.cake {
  position: relative;
  transition: transform 0.2s;
  user-select: none;
}

.cake-wrapper:hover .cake { transform: scale(1.04); }
.cake-wrapper:active .cake { transform: scale(0.97); }

/* Candles */
.candles {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: -4px;
  position: relative;
  z-index: 5;
}

.candle {
  width: 14px;
  height: 55px;
  background: linear-gradient(180deg, hsl(340,90%,75%), hsl(340,70%,55%));
  border-radius: 3px 3px 0 0;
  position: relative;
  box-shadow: inset -3px 0 6px hsla(0,0%,0%,0.2);
}

.candle:nth-child(2) { background: linear-gradient(180deg, hsl(42,100%,75%), hsl(42,80%,55%)); height: 65px; }
.candle:nth-child(3) { background: linear-gradient(180deg, hsl(280,80%,75%), hsl(280,60%,55%)); }

.flame {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 28px;
  background: linear-gradient(180deg, hsl(42,100%,90%), hsl(30,100%,65%), hsl(15,100%,50%));
  border-radius: 50% 50% 20% 20%;
  filter: blur(1.5px);
  animation: flicker 0.7s ease-in-out infinite alternate;
  transform-origin: bottom center;
}

.flame__inner {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 14px;
  background: linear-gradient(180deg, hsl(55,100%,95%), hsl(42,100%,75%));
  border-radius: 50%;
  filter: blur(1px);
}

@keyframes flicker {
  0%   { transform: translateX(-50%) scaleX(1) scaleY(1) rotate(-2deg); }
  100% { transform: translateX(-50%) scaleX(0.85) scaleY(1.1) rotate(2deg); }
}

.flame.blown { display: none; }

/* Cake Layers */
.cake__layer {
  position: relative;
  border-radius: 8px;
}

.cake__layer--top {
  width: 180px;
  height: 50px;
  background: linear-gradient(180deg, hsl(340,80%,75%), hsl(340,70%,60%));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 0 hsl(340,60%,50%), inset 0 4px 8px hsla(0,0%,100%,0.3);
}

.cake__deco {
  font-size: 0.65rem;
  color: white;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  text-align: center;
}

.cake__layer--mid {
  width: 220px;
  height: 60px;
  background: linear-gradient(180deg, hsl(42,90%,80%), hsl(42,80%,65%));
  margin: 0 auto;
  box-shadow: 0 4px 0 hsl(42,70%,50%), inset 0 4px 8px hsla(0,0%,100%,0.3);
}

.cake__layer--bot {
  width: 260px;
  height: 70px;
  background: linear-gradient(180deg, hsl(280,60%,75%), hsl(280,50%,60%));
  margin: 0 auto;
  box-shadow: 0 4px 0 hsl(280,45%,45%), inset 0 4px 8px hsla(0,0%,100%,0.3);
}

.cake__plate {
  width: 280px;
  height: 16px;
  background: linear-gradient(180deg, hsl(35,30%,88%), hsl(35,20%,75%));
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 4px 16px hsla(0,0%,0%,0.4);
}

.cake__hint {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--gold);
  filter: drop-shadow(0 0 6px hsla(42,90%,60%,0.4));
  animation: pulse-text 2s ease-in-out infinite;
}

@keyframes pulse-text {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}

.cake__wish-text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-style: italic;
  color: var(--rose-light);
  min-height: 2.5rem;
  filter: drop-shadow(0 0 10px hsla(340,80%,65%,0.5));
  animation: fade-in 0.6s ease;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem 3rem;
  text-align: center;
  border-top: 1px solid hsla(340,80%,70%,0.12);
}

.footer__love {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.footer__heart {
  display: inline-block;
  animation: heartbeat 1.2s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  30%       { transform: scale(1.3); }
  60%       { transform: scale(1); }
  80%       { transform: scale(1.15); }
}

.footer__date {
  font-size: 0.85rem;
  color: hsla(35,60%,90%,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer__emojis {
  font-size: 1.4rem;
  letter-spacing: 0.5em;
  opacity: 0.5;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 5rem;
  }

  .hero__content { order: 2; }
  .hero__photo-wrapper { order: 1; }
  .hero__cta-group { justify-content: center; }
  .hero__name-underline { margin: 4px auto 0; }

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

  .gallery-card--feature {
    grid-column: 1 / 3;
    grid-row: auto;
  }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card--feature { grid-column: auto; }
  .counter-grid { grid-template-columns: 1fr 1fr; }
}
