/* =============================================
   INFLORIA STUDIO — style.css
   Elegant Balloon & Floral Decoration · Vancouver BC
   ============================================= */

/* Google Fonts: Cormorant Garamond + Jost */

:root {
  --cream:       #F6F3EE;
  --warm-white:  #FDFBF8;
  --blush:       #B8C9AD;
  --blush-deep:  #8FAF80;
  --rose:        #607A52;
  --rose-dark:   #445A39;
  --gold:        #A89468;
  --gold-light:  #D4C8A8;
  --charcoal:    #28261E;
  --mid:         #585540;
  --soft:        #9A9780;
  --border:      #E2DDD2;
  --card-bg:     #F9F7F3;
  --shadow:      0 4px 30px rgba(38,36,24,0.07);
  --shadow-md:   0 8px 40px rgba(38,36,24,0.11);
  --shadow-lg:   0 16px 60px rgba(38,36,24,0.15);
  --radius:      16px;
  --radius-lg:   28px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:   'Jost', 'Helvetica Neue', sans-serif;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ---- TYPOGRAPHY ---- */
/* em in headings: elegant serif italic accent */
h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--rose);
  font-family: var(--font-display);
  font-weight: 300;
}
/* em in body text: stays in body font, just italic + rose */
p em, span em, li em {
  font-style: italic;
  color: var(--rose);
  font-family: inherit;
}

/* Explicit font-family on all key text elements for full consistency */
strong, b { font-family: var(--font-body); }
label { font-family: var(--font-body); }
.contact-detail strong,
.contact-detail span { font-family: var(--font-body); }
.form-group label,
.form-group input,
.form-group select,
.form-group textarea { font-family: var(--font-body); }

/* =====================
   NAVIGATION
   ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(246, 243, 238, 0.95);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(44,36,32,0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--rose); }

.nav-cta {
  background: var(--rose) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 500 !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--rose-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* =====================
   HERO
   ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--warm-white);
  padding: 120px 40px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  animation: blobFloat 8s ease-in-out infinite alternate;
}

.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #B8C9AD 0%, transparent 70%);
  top: -100px; right: -100px;
  animation-delay: 0s;
}

.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #D4C8A8 0%, transparent 70%);
  bottom: -50px; left: -80px;
  animation-delay: 2s;
}

.blob-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #C4D4B8 0%, transparent 70%);
  top: 40%; left: 30%;
  animation-delay: 4s;
}

@keyframes blobFloat {
  from { transform: translate(0,0) scale(1); }
  to { transform: translate(20px,-30px) scale(1.05); }
}

.balloons-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.b {
  position: absolute;
  font-size: 2rem;
  animation: balloonRise 6s ease-in-out infinite;
  opacity: 0.25;
}

.b1 { left: 5%; top: 80%; animation-delay: 0s; font-size: 2.5rem; }
.b2 { left: 15%; top: 60%; animation-delay: 1.5s; }
.b3 { right: 8%; top: 70%; animation-delay: 3s; font-size: 2rem; }
.b4 { right: 20%; top: 20%; animation-delay: 0.8s; font-size: 1.5rem; }
.b5 { left: 48%; top: 85%; animation-delay: 2.5s; }

@keyframes balloonRise {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 520px;
  margin: 0 auto 36px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-primary {
  background: var(--rose);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 6px 24px rgba(96,122,82,0.3);
  display: inline-block;
}

.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(96,122,82,0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  padding: 15px 34px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: border-color var(--transition), color var(--transition);
  display: inline-block;
}

.btn-ghost:hover { border-color: var(--rose); color: var(--rose); }

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.badge { text-align: center; }
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
}
.badge-label {
  font-size: 0.75rem;
  color: var(--soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-divider {
  width: 1px; height: 40px;
  background: var(--border);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: 0.5;
}
.hero-scroll span { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); }
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* =====================
   RIBBON
   ===================== */
.ribbon {
  background: var(--rose);
  color: #fff;
  overflow: hidden;
  padding: 14px 0;
}

.ribbon-track {
  display: flex;
  white-space: nowrap;
  animation: ribbonScroll 28s linear infinite;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
}

.ribbon-track span { padding: 0 8px; }

@keyframes ribbonScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =====================
   SECTION SHARED
   ===================== */
section { padding: 100px 40px; }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.8;
}

/* =====================
   SERVICES
   ===================== */
.services { background: var(--warm-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(24px);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blush), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow var(--transition);
}

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

.service-card--featured {
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--charcoal);
}

.service-card--featured h3,
.service-card--featured p { color: rgba(255,255,255,0.9); }

.service-card--featured .service-link { color: var(--gold-light); }

.service-icon { font-size: 2rem; margin-bottom: 18px; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.service-card p { color: var(--mid); font-size: 0.95rem; line-height: 1.75; }

.service-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--rose);
  letter-spacing: 0.03em;
  transition: color var(--transition), letter-spacing var(--transition);
}
.service-link:hover { letter-spacing: 0.1em; }

/* =====================
   GALLERY
   ===================== */
.gallery { background: var(--cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto 32px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.97);
}

.gallery-item.revealed {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,36,32,0.55) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.05em;
  font-style: italic;
}

.gallery-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--mid);
}
.gallery-note a { color: var(--rose); font-weight: 500; }

/* =====================
   PROCESS
   ===================== */
.process {
  background: linear-gradient(135deg, #252820 0%, #343D2C 100%);
  color: #fff;
}

.process .section-eyebrow { color: var(--gold-light); }
.process .section-title { color: #fff; }

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 220px;
  max-width: 260px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}

.step.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: var(--blush-deep);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 12px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}

.step p { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

.step-arrow {
  font-size: 1.5rem;
  color: var(--blush);
  opacity: 0.4;
  margin-top: 56px;
  flex-shrink: 0;
}

/* =====================
   ABOUT
   ===================== */
.about {
  background: var(--warm-white);
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
}

.about-image {
  flex: 0 0 420px;
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--blush) 0%, var(--blush-deep) 60%, var(--rose) 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.about-blob {
  position: absolute;
  width: 120%; height: 120%;
  background: radial-gradient(circle at 70% 70%, rgba(255,255,255,0.15), transparent 60%);
}

.about-center-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: rgba(255,255,255,0.7);
}
.about-big-emoji { font-size: 4rem; display: block; margin-bottom: 8px; }
.about-center-text p { font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; }

.about-content { flex: 1; }

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--mid);
  line-height: 1.85;
  font-size: 0.97rem;
  margin-bottom: 16px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 36px;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.highlight-icon { font-size: 1.1rem; }

/* =====================
   CONTACT / BOOKING
   ===================== */
.contact {
  background: var(--warm-white);
  padding: 100px 40px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.contact-info .section-eyebrow { margin-bottom: 12px; }

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--mid);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 36px;
}

.contact-details { display: flex; flex-direction: column; gap: 16px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.detail-icon { font-size: 1.2rem; margin-top: 2px; }

.contact-detail strong { display: block; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 2px; }
.contact-detail span { font-size: 0.92rem; color: var(--mid); }

/* FORM */
.booking-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--soft); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(96,122,82,0.12);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.btn-submit {
  width: 100%;
  background: var(--rose);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  padding: 18px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 28px rgba(96,122,82,0.3);
  margin-top: 6px;
}

.btn-submit:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(96,122,82,0.4);
}

.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--soft);
  margin-top: 14px;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: 72px 40px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 20px;
}

.social-links { display: flex; gap: 16px; }
.social-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.social-links a:hover { color: var(--blush); }

.footer-links h4 {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links li, .footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--blush); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 22px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }

  .about {
    flex-direction: column;
    gap: 48px;
    max-width: 700px;
    padding: 80px 40px;
  }
  .about-image { flex: none; width: 100%; max-width: 400px; margin: 0 auto; }

  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  section { padding: 70px 24px; }

  .hamburger { display: flex; }
  .nav-inner { padding: 0 24px; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(246,243,238,0.98);
    backdrop-filter: blur(12px);
    padding: 24px;
    gap: 20px;
    border-top: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(44,36,32,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }

  .hero { padding: 100px 24px 70px; }
  .hero-badges { gap: 20px; }
  .hero-title { font-size: clamp(2.5rem, 12vw, 4rem); }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item--wide { grid-column: span 2; }

  .process-steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); margin: 0; }
  .step { max-width: 100%; }

  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial:last-child { display: none; }

  .booking-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }

  .about { padding: 70px 24px; }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item--wide { grid-column: span 1; }
  .hero-actions { flex-direction: column; align-items: center; }
}

/* =====================
   GALLERY REAL IMAGES
   ===================== */
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item {
  position: relative;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* =====================
   ABOUT PLACEHOLDER
   ===================== */
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--blush) 0%, var(--blush-deep) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.about-placeholder-inner {
  text-align: center;
  color: rgba(255,255,255,0.85);
  padding: 24px;
}

.about-placeholder-inner span {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 12px;
}

.about-placeholder-inner p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.9) !important;
}

.about-placeholder-inner small {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  opacity: 0.7;
  text-transform: uppercase;
}

/* About real photo (when added) */
.about-real-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-real-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
