/* ============================================
   Wild Ginger Studio — styles.css
   Mobile-first responsive design
   ============================================ */

/* --- Custom Properties (Brand Palette) --- */
:root {
  --color-terracotta: #B8502A;
  --color-sage: #5B7F5E;
  --color-cream: #F5EDE0;
  --color-peach: #FAE8D4;
  --color-rose: #D4838A;
  --color-charcoal: #3D3028;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Segoe UI', sans-serif;
  --font-script: 'Dancing Script', cursive;

  --nav-height: 60px;
  --container-max: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(61, 48, 40, 0.1);
  --shadow-hover: 0 8px 30px rgba(61, 48, 40, 0.18);
  --transition: 0.3s ease;
}

/* --- Reset & Base (Mobile-first) --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-charcoal);
  background-color: var(--color-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-terracotta);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover,
a:focus-visible {
  color: var(--color-sage);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Section Titles --- */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: var(--color-terracotta);
  text-align: center;
  margin-bottom: 0.5em;
  line-height: 1.2;
}

.section-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--color-charcoal);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  opacity: 0.85;
}

/* --- Scroll Animation Base --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(245, 237, 224, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(184, 80, 42, 0.1);
  transition: box-shadow var(--transition);
}

.main-nav.scrolled {
  box-shadow: 0 2px 20px rgba(61, 48, 40, 0.12);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.2rem;
  text-decoration: none;
  display: flex;
  gap: 0.25em;
  align-items: baseline;
  flex-shrink: 0;
}

.logo-wild,
.logo-ginger {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-terracotta);
}

.logo-studio {
  font-family: var(--font-script);
  color: var(--color-sage);
  font-size: 1.1em;
}

/* Hamburger (mobile) */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  z-index: 1001;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: var(--color-charcoal);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav links */
.nav-links {
  list-style: none;
  position: fixed;
  top: var(--nav-height);
  right: -100%;
  width: 70%;
  max-width: 300px;
  height: calc(100vh - var(--nav-height));
  background: var(--color-cream);
  flex-direction: column;
  padding: 2rem 1.5rem;
  transition: right var(--transition);
  box-shadow: -4px 0 20px rgba(61, 48, 40, 0.15);
  display: flex;
  gap: 0;
}

.nav-links.open {
  right: 0;
}

.nav-links li a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-charcoal);
  border-bottom: 1px solid rgba(184, 80, 42, 0.1);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-links li a:hover,
.nav-links li a:focus-visible {
  color: var(--color-terracotta);
}

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--nav-height));
  background: rgba(61, 48, 40, 0.3);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.nav-overlay.visible {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--nav-height) 0 2rem;
  overflow: hidden;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  /* Warm watercolor wash matching the illustration's background tones */
  background:
    radial-gradient(ellipse at 30% 40%, rgba(212, 131, 138, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(250, 232, 212, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(91, 127, 94, 0.05) 0%, transparent 40%),
    linear-gradient(180deg, #f5ede0 0%, #f3e8d8 30%, var(--color-cream) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 100%;
  width: 100%;
  padding: 0 10px;
}

/* Hero illustration with edge blending */
.hero-illustration {
  position: relative;
  margin: 0 auto 1rem;
  max-width: 1100px;
}

.hero-illustration::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: var(--radius);
  /* Feathered edges that blend into the background */
  box-shadow:
    inset 0 0 40px 20px var(--color-cream),
    inset 0 -30px 40px 10px var(--color-cream);
}

.hero-illustration-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  /* Match the warm tones — slight warmth boost */
  filter: saturate(1.02);
}

.hero-tagline {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: var(--color-charcoal);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 2rem;
}

.hero-scroll-indicator {
  animation: bounceDown 2s ease-in-out infinite;
}

.hero-scroll-indicator a {
  color: var(--color-sage);
  font-size: 1.5rem;
  padding: 12px;
  display: inline-block;
  min-width: 44px;
  min-height: 44px;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ============================================
   FLORAL DIVIDERS
   ============================================ */
.floral-divider {
  text-align: center;
  padding: 1rem 0;
  overflow: hidden;
}

.floral-divider svg {
  width: 100%;
  max-width: 400px;
  height: 40px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: 4rem 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(250, 232, 212, 0.4) 0%, transparent 60%),
    var(--color-cream);
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.about-photo {
  width: 100%;
  max-width: 280px;
}

.about-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius);
  display: block;
}

.photo-placeholder {
  aspect-ratio: 3 / 4;
  background:
    linear-gradient(135deg, var(--color-peach) 0%, rgba(212, 131, 138, 0.15) 100%);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--color-terracotta);
  opacity: 0.7;
  border: 2px dashed rgba(184, 80, 42, 0.25);
}

.photo-placeholder i {
  font-size: 2.5rem;
}

.photo-placeholder span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-style: italic;
}

.about-text {
  text-align: center;
}

.about-text .section-title {
  text-align: center;
}

.about-intro {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.about-signature {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--color-sage);
  margin-top: 1.5rem;
}

/* ============================================
   CREATIONS SECTION
   ============================================ */
.creations {
  padding: 4rem 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(91, 127, 94, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--color-cream) 0%, var(--color-peach) 50%, var(--color-cream) 100%);
}

.creations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.creation-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.creation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.creation-image-placeholder {
  height: 160px;
  background:
    linear-gradient(135deg, var(--color-peach) 0%, rgba(212, 131, 138, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.creation-image-placeholder i {
  font-size: 2.5rem;
  color: var(--color-sage);
  opacity: 0.5;
}

.creation-content {
  padding: 1.25rem;
}

.creation-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-terracotta);
  margin-bottom: 0.5rem;
}

.creation-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
  padding: 4rem 0;
  background: var(--color-cream);
}

.gallery-grid {
  columns: 1;
  column-gap: 0.75rem;
  max-width: 1000px;
  margin: 0 auto;
}

.gallery-item {
  cursor: pointer;
  border-radius: var(--radius-sm);
  break-inside: avoid;
  margin-bottom: 0.75rem;
  display: flex;
  flex-direction: column;
}

.gallery-item picture {
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: block;
}

.gallery-item:hover picture {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

.like-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  padding: 0.3rem 0.1rem 0;
  cursor: pointer;
  align-self: flex-start;
  transition: transform 0.15s ease;
}

.like-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.like-count {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-light);
  line-height: 1;
}

.like-btn:hover .like-icon {
  transform: scale(1.15);
}

.like-btn.liked {
  pointer-events: none;
}

.like-btn.liked .like-count {
  color: var(--color-terracotta);
}

.gallery-img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-placeholder {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, var(--color-peach) 0%, rgba(212, 131, 138, 0.15) 60%, rgba(91, 127, 94, 0.08) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--color-terracotta);
  opacity: 0.5;
  border: 2px dashed rgba(184, 80, 42, 0.2);
  border-radius: var(--radius-sm);
}

.gallery-placeholder i {
  font-size: 2rem;
}

.gallery-placeholder span {
  font-size: 0.85rem;
  font-style: italic;
}

.gallery-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--color-sage);
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(61, 48, 40, 0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews {
  padding: 4rem 0;
}

.review-form-wrap {
  max-width: 600px;
  margin: 0 auto 3rem;
  background: var(--color-peach);
  border-radius: var(--radius);
  padding: 2rem;
}

/* Star picker */
.star-picker {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.25rem;
}

.star-btn {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #ddd;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.15s ease, transform 0.1s ease;
}

.star-btn.active,
.star-btn:hover {
  color: var(--color-terracotta);
  transform: scale(1.15);
}

/* Reviews list */
.reviews-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .reviews-list {
    grid-template-columns: 1fr 1fr;
  }
}

.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
}

.review-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.review-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text);
}

.review-stars {
  display: flex;
  gap: 0.1rem;
}

.review-star {
  font-size: 0.9rem;
  color: #ddd;
}

.review-star.filled {
  color: var(--color-terracotta);
}

.review-date {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-left: auto;
}

.review-message {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.6;
  margin: 0;
}

.reviews-loading,
.reviews-empty {
  text-align: center;
  color: var(--color-text-light);
  font-style: italic;
  grid-column: 1 / -1;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: 4rem 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(250, 232, 212, 0.5) 0%, transparent 60%),
    linear-gradient(180deg, var(--color-cream) 0%, var(--color-peach) 100%);
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  font-size: 1.3rem;
  color: var(--color-sage);
  margin-top: 0.3rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.contact-item h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--color-terracotta);
  margin-bottom: 0.15rem;
}

.contact-item a {
  font-size: 0.95rem;
  word-break: break-word;
}

.contact-socials {
  margin-top: 0.5rem;
}

.contact-socials h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-terracotta);
  margin-bottom: 0.75rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(91, 127, 94, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sage);
  font-size: 1.2rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.social-links a:hover,
.social-links a:focus-visible {
  background: var(--color-sage);
  color: white;
  transform: translateY(-2px);
}

/* --- Contact Form --- */
.contact-form {
  background: rgba(255, 255, 255, 0.6);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--color-terracotta);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(184, 80, 42, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.8);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 44px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-sage);
  box-shadow: 0 0 0 3px rgba(91, 127, 94, 0.15);
}

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

.form-optional {
  font-size: 0.8rem;
  color: var(--color-sage);
  font-weight: 400;
}

.form-error {
  display: block;
  font-size: 0.85rem;
  color: var(--color-terracotta);
  margin-top: 0.3rem;
  min-height: 1.2em;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 32px;
  background: var(--color-sage);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  min-height: 48px;
  width: 100%;
  justify-content: center;
}

.btn-submit:hover,
.btn-submit:focus-visible {
  background: #4a6b4d;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(91, 127, 94, 0.3);
}

.form-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-charcoal);
  opacity: 0.6;
  margin-top: 1rem;
  font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-charcoal);
  color: rgba(245, 237, 224, 0.8);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.footer-logo {
  font-size: 1.3rem;
}

.footer-logo .logo-wild,
.footer-logo .logo-ginger {
  color: var(--color-peach);
}

.footer-logo .logo-studio {
  color: rgba(91, 127, 94, 0.8);
}

.footer-tagline {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  opacity: 0.7;
  font-style: italic;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(245, 237, 224, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 237, 224, 0.7);
  font-size: 1rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  background: var(--color-sage);
  border-color: var(--color-sage);
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 237, 224, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.5;
}

/* ============================================
   RESPONSIVE BREAKPOINTS (mobile-first)
   ============================================ */

/* --- 480px: Large phones --- */
@media (min-width: 480px) {
  .gallery-grid {
    columns: 2;
    column-gap: 1rem;
  }
}

/* --- 768px: Tablets --- */
@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }

  /* Nav: switch to horizontal */
  .hamburger {
    display: none;
  }

  .nav-links {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background: transparent;
    flex-direction: row;
    padding: 0;
    box-shadow: none;
    display: flex;
    gap: 0;
    align-items: center;
  }

  .nav-links li a {
    padding: 8px 16px;
    font-size: 0.95rem;
    border-bottom: none;
    min-height: auto;
    position: relative;
  }

  .nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--color-terracotta);
    transition: transform var(--transition);
    border-radius: 1px;
  }

  .nav-links li a:hover::after,
  .nav-links li a:focus-visible::after {
    transform: translateX(-50%) scaleX(1);
  }

  /* About: side by side */
  .about-grid {
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
  }

  .about-photo {
    max-width: 250px;
    flex-shrink: 0;
  }

  .about-text {
    text-align: left;
  }

  .about-text .section-title {
    text-align: left;
  }

  .about-text p {
    margin-left: 0;
    margin-right: 0;
  }

  /* Creations: 2 columns */
  .creations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Gallery: 2 columns */
  .gallery-grid {
    columns: 2;
    column-gap: 1rem;
  }

  /* Contact: side by side */
  .contact-grid {
    flex-direction: row;
    align-items: flex-start;
  }

  .contact-info {
    flex: 1;
    min-width: 0;
  }

  .contact-form {
    flex: 1.2;
    min-width: 0;
  }

  .btn-submit {
    width: auto;
  }

  /* Footer: row layout */
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

}

/* --- 1024px: Desktop --- */
@media (min-width: 1024px) {
  :root {
    --nav-height: 70px;
  }

  .nav-logo {
    font-size: 1.35rem;
  }

  .about {
    padding: 5rem 0;
  }

  .about-grid {
    gap: 4rem;
  }

  .about-photo {
    max-width: 300px;
  }

  .creations {
    padding: 5rem 0;
  }

  .creation-image-placeholder {
    height: 200px;
  }

  /* Gallery: 3 columns */
  .gallery-grid {
    columns: 3;
    column-gap: 1.25rem;
  }

  .gallery {
    padding: 5rem 0;
  }

  .contact {
    padding: 5rem 0;
  }

  .contact-form {
    padding: 2.5rem;
  }

}

/* --- 1200px: Wide desktop --- */
@media (min-width: 1200px) {
  .about-photo {
    max-width: 340px;
  }
}

/* --- Accessibility: Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-scroll-indicator {
    animation: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* --- Print styles --- */
@media print {
  .main-nav,
  .hero-scroll-indicator,
  .lightbox,
  .hamburger {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
}
