/*
Theme Name: By Mama Jo
Theme URI: https://bymamajo.com
Author: Noelte Technologies
Author URI: https://noelte.tech
Description: A handcrafted bilingual (EN/ES) theme for By Mama Jo — a one-woman floral studio. Pink romantic palette, auto-advancing hero slider with morph transitions, scroll animations, floating petals, and a built-in language toggle. Designed and developed by Noelte Technologies.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bymamajo
Tags: one-page, custom-background, custom-logo, featured-images
*/

/* ═══════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════ */
:root {
  --rose-white: #fdf5f6;
  --wine: #2d1f24;
  --rose: #c75480;
  --rose-light: #e87da3;
  --petal: #fce8ee;
  --blush: #f7d4de;
  --white: #ffffff;
  --plum: #3d2d33;
  --gold: #c9956c;

  --font-display: 'Cormorant', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--plum);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
  font-size: 16px;
}
::selection { background: var(--rose); color: var(--white); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* WP admin bar */
body.admin-bar .site-nav { top: 32px; }
body.admin-bar .lang-toggle { top: calc(1.25rem + 32px); }
body.admin-bar .demo-banner { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .site-nav { top: 46px; }
  body.admin-bar .lang-toggle { top: calc(1rem + 46px); }
  body.admin-bar .demo-banner { top: 46px; }
}

/* ═══════════════════════════════════════════
   DEMO DISCLAIMER BANNER
   ═══════════════════════════════════════════ */
.demo-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--wine);
  color: rgba(255,255,255,0.8);
  text-align: center;
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.4;
  border-bottom: 2px solid var(--rose);
}
.demo-banner a {
  color: var(--rose-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.demo-banner a:hover { color: var(--white); }
.demo-banner .demo-close {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}
.demo-banner .demo-close:hover { color: var(--white); }

/* Push everything down when banner is visible */
body.has-demo-banner .site-nav { top: 36px; }
body.has-demo-banner .lang-toggle { top: calc(1.25rem + 36px); }
body.has-demo-banner.admin-bar .site-nav { top: 68px; }
body.has-demo-banner.admin-bar .lang-toggle { top: calc(1.25rem + 68px); }
@media (max-width: 768px) {
  .demo-banner { font-size: 0.6rem; padding: 0.4rem 2rem 0.4rem 0.5rem; }
  body.has-demo-banner .site-nav { top: 44px; }
  body.has-demo-banner .lang-toggle { top: calc(1rem + 44px); }
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.85s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }
.reveal-d4 { transition-delay: 0.48s; }

/* ═══════════════════════════════════════════
   LANGUAGE TOGGLE
   ═══════════════════════════════════════════ */
.lang-toggle {
  position: fixed;
  top: 1.25rem; right: 1.25rem;
  z-index: 200;
  display: flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(199,84,128,0.2);
  border-radius: 100px;
  padding: 0.3rem 0.65rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--wine);
  transition: all 0.3s ease;
}
.lang-toggle:hover { background: var(--rose); color: var(--white); border-color: var(--rose); }
.lang-toggle .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--rose); transition: background 0.3s; }
.lang-toggle:hover .dot { background: var(--white); }

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 150;
  padding: 1.5rem 2rem;
  display: flex; align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}
.site-nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 0.8rem 2rem;
  box-shadow: 0 1px 0 rgba(199,84,128,0.12);
}
.site-nav.scrolled .nav-brand { color: var(--wine); }
.site-nav.scrolled .nav-links a { color: var(--plum); }
.site-nav.scrolled .menu-btn span { background: var(--wine); }

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  transition: color 0.4s ease;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none; position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0;
  width: 0%; height: 1px;
  background: var(--rose);
  transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav-links a:hover::after { width: 100%; }

/* Mobile hamburger */
.menu-btn {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 26px; height: 18px;
  position: relative; z-index: 201;
}
.menu-btn span {
  display: block; width: 100%; height: 1.5px;
  background: var(--white);
  position: absolute; left: 0;
  transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-btn span:nth-child(1) { top: 0; }
.menu-btn span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-btn span:nth-child(3) { bottom: 0; }
.menu-btn.active span { background: var(--wine) !important; }
.menu-btn.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 199;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 400;
  color: var(--wine); text-decoration: none;
  letter-spacing: 0.04em;
}
.mobile-menu a:hover { color: var(--rose); }

/* ═══════════════════════════════════════════
   HERO — Full-screen Slider
   ═══════════════════════════════════════════ */
.hero {
  position: relative; width: 100%;
  height: 100vh; min-height: 550px;
  overflow: hidden; background: var(--wine);
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transform: scale(1.08);
  transition: opacity 1.4s cubic-bezier(0.4,0,0.2,1),
              transform 6s cubic-bezier(0.4,0,0.2,1),
              filter 1.2s cubic-bezier(0.4,0,0.2,1);
  filter: blur(8px);
  will-change: opacity, transform, filter;
}
.hero-slide.active { opacity: 1; transform: scale(1); filter: blur(0); z-index: 1; }
.hero-slide.leaving { opacity: 0; transform: scale(1.12); filter: blur(6px); z-index: 2; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 5; pointer-events: none;
  background: linear-gradient(to bottom,
    rgba(45,31,36,0.5) 0%, rgba(45,31,36,0.15) 35%,
    rgba(45,31,36,0.05) 60%, rgba(45,31,36,0.6) 100%);
}

.hero-content {
  position: absolute; inset: 0; z-index: 10;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; padding: 2rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 300; color: var(--white);
  line-height: 0.95; letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.hero-title em { font-style: italic; font-weight: 300; color: var(--blush); }
.hero-title .word {
  display: inline-block; opacity: 0;
  transform: translateY(100%);
  animation: wordReveal 0.9s cubic-bezier(0.23,1,0.32,1) forwards;
}
@keyframes wordReveal { to { opacity: 1; transform: translateY(0); } }

.hero-sub {
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s 1.2s cubic-bezier(0.23,1,0.32,1) forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 0.9rem 2.2rem;
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
  opacity: 0;
  animation: fadeUp 1s 1.5s cubic-bezier(0.23,1,0.32,1) forwards;
}
.hero-cta:hover { background: var(--white); color: var(--wine); border-color: var(--white); }
.hero-cta svg { width: 14px; height: 14px; transition: transform 0.3s; }
.hero-cta:hover svg { transform: translateX(3px); }

/* Slider dots */
.hero-dots {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 15;
  display: flex; gap: 8px;
  opacity: 0;
  animation: fadeUp 1s 2s cubic-bezier(0.23,1,0.32,1) forwards;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50px; border: none;
  background: rgba(255,255,255,0.3);
  cursor: pointer; padding: 0;
  transition: all 0.5s cubic-bezier(0.23,1,0.32,1);
}
.hero-dot.active { width: 28px; background: rgba(255,255,255,0.9); }

/* Floating petals */
.hero-petal {
  position: absolute; z-index: 8;
  width: 18px; height: 26px;
  pointer-events: none;
  animation: petalFall linear infinite;
}
@keyframes petalFall {
  0% { transform: translateY(-10vh) rotate(0deg) translateX(0); opacity: 0; }
  10% { opacity: 0.18; }
  50% { transform: translateY(50vh) rotate(180deg) translateX(30px); }
  90% { opacity: 0.18; }
  100% { transform: translateY(110vh) rotate(360deg) translateX(-20px); opacity: 0; }
}

/* ═══════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════ */
.about {
  padding: 6rem 2rem;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-visual { position: relative; }
.about-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--petal);
}
.about-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.23,1,0.32,1);
}
.about-img-wrap:hover img { transform: scale(1.04); }
.about-frame {
  position: absolute;
  top: -14px; left: -14px;
  width: calc(100% + 28px); height: calc(100% + 28px);
  border: 1px solid var(--blush);
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.about-visual:hover .about-frame { transform: translate(8px, 8px); }

.about-content { max-width: 500px; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 0.75rem;
}
.heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; color: var(--wine);
  line-height: 1.15; margin-bottom: 1.5rem;
}
.heading em { font-style: italic; color: var(--rose); }
.body-text {
  font-size: 0.92rem; color: var(--plum);
  line-height: 1.85; margin-bottom: 1.25rem;
}
.signature {
  font-family: var(--font-display);
  font-size: 1.5rem; font-style: italic;
  color: var(--rose); margin-top: 1.5rem;
}

/* ═══════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════ */
.marquee-wrap {
  background: var(--wine);
  padding: 1.1rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 2.5rem;
  animation: marqueeScroll 35s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.8rem);
  font-weight: 300; font-style: italic;
  color: var(--blush); white-space: nowrap;
  display: flex; align-items: center; gap: 1.5rem;
}
.marquee-sep {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════ */
.services {
  padding: 6rem 2rem;
  background: var(--petal);
}
.services-inner { max-width: 1100px; margin: 0 auto; }
.section-header {
  text-align: center;
  max-width: 550px;
  margin: 0 auto 3.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-card {
  background: var(--white);
  padding: 2.5rem 1.8rem;
  position: relative; overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1),
              box-shadow 0.5s cubic-bezier(0.23,1,0.32,1);
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(199,84,128,0.08);
}
.svc-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--rose-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.23,1,0.32,1);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-icon { width: 44px; height: 44px; margin-bottom: 1.5rem; }
.svc-icon svg {
  width: 100%; height: 100%;
  stroke: var(--rose); fill: none;
  stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round;
}
.svc-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 400;
  color: var(--wine); margin-bottom: 0.6rem;
}
.svc-card p {
  font-size: 0.86rem; line-height: 1.75;
  color: var(--plum); opacity: 0.75;
}

/* ═══════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════ */
.gallery { padding: 6rem 2rem; background: var(--white); }
.gallery-inner { max-width: 1200px; margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 280px;
  gap: 0.75rem;
}
.gal-item {
  position: relative; overflow: hidden;
  cursor: pointer; background: var(--petal);
}
.gal-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 3; }
.gal-item:nth-child(2) { grid-column: 6 / 9; }
.gal-item:nth-child(3) { grid-column: 9 / 13; }
.gal-item:nth-child(4) { grid-column: 6 / 10; }
.gal-item:nth-child(5) { grid-column: 10 / 13; }
.gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.23,1,0.32,1);
}
.gal-item:hover img { transform: scale(1.06); }
.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(45,31,36,0.65) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.45s ease;
  display: flex; align-items: flex-end; padding: 1.25rem;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span {
  font-family: var(--font-display);
  font-size: 1.05rem; font-style: italic; color: var(--white);
}

/* ═══════════════════════════════════════════
   QUOTE
   ═══════════════════════════════════════════ */
.quote-section {
  padding: 6rem 2rem;
  background: var(--rose);
  text-align: center;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem; color: rgba(255,255,255,0.25);
  line-height: 0.5; margin-bottom: 1.5rem;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.2vw, 2.5rem);
  font-weight: 300; font-style: italic;
  color: var(--white); line-height: 1.4;
  max-width: 720px; margin: 0 auto;
}
.quote-author {
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-top: 1.5rem;
}

/* ═══════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════ */
.process { padding: 6rem 2rem; background: var(--white); }
.process-inner { max-width: 1000px; margin: 0 auto; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 26px; left: 14%; right: 14%;
  height: 1px; background: var(--blush);
}
.step { text-align: center; padding: 0 0.5rem; position: relative; }
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--blush);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 400; color: var(--rose);
  position: relative; z-index: 2;
  transition: all 0.4s ease;
}
.step:hover .step-num { background: var(--rose); color: var(--white); border-color: var(--rose); }
.step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 400;
  color: var(--wine); margin-bottom: 0.4rem;
}
.step p { font-size: 0.82rem; color: var(--plum); opacity: 0.65; line-height: 1.6; }

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact {
  padding: 6rem 2rem;
  background: var(--wine);
  text-align: center;
  position: relative; overflow: hidden;
}
.contact::before {
  content: ''; position: absolute;
  top: -40%; left: 20%; width: 60%; height: 180%;
  background: radial-gradient(ellipse, rgba(199,84,128,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.contact .eyebrow { color: var(--blush); }
.contact .heading { color: var(--white); }
.contact .heading em { color: var(--rose-light); }
.contact-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  max-width: 480px; margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.social-links {
  display: flex; justify-content: center;
  gap: 1.25rem; margin-bottom: 2.5rem;
}
.social-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  padding: 0.85rem 1.8rem;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
}
.social-link:hover { background: var(--rose); border-color: var(--rose); }
.social-link svg { width: 16px; height: 16px; }
.contact-handle {
  font-family: var(--font-display);
  font-size: 1rem; font-style: italic;
  color: rgba(255,255,255,0.35);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
  padding: 1.5rem 2rem;
  background: var(--wine);
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.4rem;
}
.footer-credit {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.2);
}
.footer-credit a {
  color: var(--rose-light);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-credit a:hover { color: var(--white); }

/* ═══════════════════════════════════════════
   MOBILE RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }
  .gal-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gal-item:nth-child(n+2) { grid-column: span 1; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .mobile-menu { display: flex; }
  .lang-toggle { right: 58px; top: 1rem; font-size: 0.65rem; }

  .hero { min-height: 100svh; min-height: 550px; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 4.5rem); }
  .hero-sub { font-size: 0.68rem; letter-spacing: 0.15em; margin-bottom: 2rem; }
  .hero-cta { font-size: 0.7rem; padding: 0.8rem 1.8rem; }

  .about {
    grid-template-columns: 1fr; gap: 2.5rem;
    padding: 4rem 1.5rem;
  }
  .about-visual { max-width: 340px; margin: 0 auto; }

  .services { padding: 4rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card { padding: 2rem 1.5rem; }

  .gallery { padding: 4rem 1.5rem; }
  .gallery-grid { gap: 0.5rem; grid-auto-rows: 180px; }

  .quote-section { padding: 4rem 1.5rem; }

  .process { padding: 4rem 1.5rem; }

  .contact { padding: 4rem 1.5rem; }
  .social-links { flex-direction: column; align-items: center; }
  .social-link { width: 100%; max-width: 260px; justify-content: center; }

  .site-footer { padding: 1.25rem 1rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.6rem; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .gal-item:nth-child(1) { grid-column: span 1; }
  .process-steps { grid-template-columns: 1fr; gap: 2rem; }
  .about-visual { max-width: 100%; }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
  .hero-slide { transition: opacity 0.3s ease !important; filter: none !important; transform: none !important; }
  .hero-petal { display: none; }
}
