/* ============================================
   MAYKO'S FLOWER SHOP — STYLESHEET
   ============================================ */

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

:root {
  --emerald: #064E3B;
  --emerald-light: #065F46;
  --emerald-dark: #022C22;
  --cream: #FFFBF0;
  --cream-dark: #F5F0E1;
  --gold: #D97706;
  --gold-light: #FCD34D;
  --white: #FFFFFF;
  --black: #1A1A1A;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }

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

a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- NAV --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 251, 240, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(6, 78, 59, 0.08);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(255, 251, 240, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--emerald);
}

.logo-dot { color: var(--gold); }
.logo-text-light { color: var(--cream); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--emerald);
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--emerald);
  color: var(--cream) !important;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}

.nav-cta::after { display: none; }

.nav-cta:hover {
  background: var(--emerald-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(6, 78, 59, 0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--emerald);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

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

.shape { position: absolute; }

.shape-circle-1 {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.06) 0%, rgba(6, 78, 59, 0.02) 100%);
  top: -150px;
  right: -100px;
}

.shape-circle-2 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(217, 119, 6, 0.07);
  bottom: 10%;
  left: -80px;
}

.shape-rect-1 {
  width: 120px;
  height: 120px;
  background: var(--gold-light);
  border-radius: var(--radius-md);
  top: 20%;
  left: 8%;
  transform: rotate(15deg);
  opacity: 0.5;
}

.shape-rect-2 {
  width: 80px;
  height: 200px;
  background: var(--emerald);
  border-radius: var(--radius-lg);
  bottom: 15%;
  right: 5%;
  transform: rotate(-10deg);
  opacity: 0.06;
}

.shape-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 60px 100px 60px;
  border-color: transparent transparent var(--gold) transparent;
  opacity: 0.08;
  top: 30%;
  right: 15%;
  transform: rotate(20deg);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--emerald);
  color: var(--cream);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--emerald-dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-title .accent {
  color: var(--gold);
  position: relative;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
}

.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 800; color: var(--emerald); }
.stat-label { font-size: 0.8rem; color: var(--gray); font-weight: 500; }

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-light);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--emerald);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--emerald-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 78, 59, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--emerald);
  border: 2px solid var(--emerald);
}

.btn-secondary:hover {
  background: var(--emerald);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--emerald);
  border: 2px solid var(--emerald);
}

.btn-outline:hover {
  background: var(--emerald);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* HERO VISUAL */
.hero-visual { position: relative; }

.hero-image-stack { position: relative; }

.hi-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hi-card-main {
  width: 420px;
  height: 560px;
  position: relative;
}

.hi-card-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hi-card-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  border-radius: var(--radius-md);
  z-index: -1;
}

.hi-card-float {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}

.hi-card-float img { width: 100%; height: 100%; object-fit: cover; }

.hi-card-top { top: -30px; right: -40px; }
.hi-card-bottom { bottom: 40px; left: -50px; }

.hi-badge {
  position: absolute;
  bottom: -10px;
  right: 20px;
  background: var(--white);
  color: var(--black);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hi-badge svg { color: var(--gold); }

/* --- SECTION TAGS & TITLES --- */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--emerald-dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-title .accent { color: var(--gold); }

/* --- ABOUT --- */
.about {
  padding: 120px 0;
  background: var(--cream);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100px;
  height: 100px;
  background: var(--gold-light);
  border-radius: var(--radius-md);
  z-index: -1;
}

.about-floating-card {
  position: absolute;
  bottom: -24px;
  left: 30px;
  background: var(--emerald);
  color: var(--cream);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-floating-card .afc-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
}

.about-floating-card .afc-label {
  font-size: 0.8rem;
  opacity: 0.8;
  font-weight: 500;
}

.about-content p {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.af-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.af-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(6, 78, 59, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.af-item strong {
  display: block;
  font-size: 1rem;
  color: var(--emerald-dark);
  margin-bottom: 4px;
}

.af-item span {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* --- SERVICES --- */
.services {
  padding: 120px 0;
  background: var(--emerald);
  position: relative;
  overflow: hidden;
}

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

.s-bg-shape {
  position: absolute;
  border-radius: 50%;
}

.s-bg-shape-1 {
  width: 400px;
  height: 400px;
  background: rgba(253, 211, 77, 0.06);
  top: -100px;
  right: -100px;
}

.s-bg-shape-2 {
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.03);
  bottom: -50px;
  left: 5%;
}

.s-bg-shape-3 {
  width: 150px;
  height: 150px;
  background: rgba(217, 119, 6, 0.08);
  top: 40%;
  left: 15%;
}

.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 1;
}

.services-header .section-tag { color: var(--gold-light); }

.services-header .section-title { color: var(--cream); }

.services-header .section-title .accent { color: var(--gold-light); }

.services-sub {
  color: rgba(255, 251, 240, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.svc-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.svc-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.svc-card-visual {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.svc-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.svc-card:hover .svc-card-visual img { transform: scale(1.05); }

.svc-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 44, 34, 0.4) 0%, transparent 60%);
}

.svc-card-body { padding: 28px; }

.svc-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--emerald-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.svc-card-body h3 {
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 10px;
}

.svc-card-body p {
  font-size: 0.9rem;
  color: rgba(255, 251, 240, 0.65);
  line-height: 1.7;
}

/* --- GALLERY --- */
.gallery {
  padding: 120px 0;
  background: var(--cream-dark);
}

.gallery-header {
  text-align: center;
  margin-bottom: 64px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.gal-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 78, 59, 0.6);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gal-overlay span {
  color: var(--cream);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
}

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

.gal-item--wide { grid-column: span 7; height: 300px; }
.gal-item:not(.gal-item--wide):not(.gal-item--tall) { height: 280px; }
.gal-item--tall { grid-column: span 3; height: 596px; }

/* --- CTA BANNER --- */
.cta-banner {
  padding: 100px 0;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}

.cta-shapes { position: absolute; inset: 0; pointer-events: none; }

.cta-shape {
  position: absolute;
  border-radius: 50%;
}

.cta-shape-1 {
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  top: -80px;
  left: -80px;
}

.cta-shape-2 {
  width: 200px;
  height: 200px;
  background: rgba(6, 78, 59, 0.1);
  bottom: -60px;
  right: 10%;
}

.cta-shape-3 {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  top: 20%;
  right: 30%;
  border-radius: var(--radius-md);
  transform: rotate(45deg);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-content { flex: 1; }

.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--emerald-dark);
  margin-bottom: 16px;
}

.cta-title .accent { color: var(--white); }

.cta-text {
  font-size: 1.05rem;
  color: rgba(2, 44, 34, 0.7);
  line-height: 1.7;
  max-width: 480px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cta-actions .btn-primary {
  background: var(--emerald-dark);
  color: var(--cream);
}

.cta-actions .btn-primary:hover {
  background: var(--emerald);
}

.cta-actions .btn-outline {
  border-color: var(--emerald-dark);
  color: var(--emerald-dark);
}

.cta-actions .btn-outline:hover {
  background: var(--emerald-dark);
  color: var(--cream);
}

/* --- CONTACT --- */
.contact {
  padding: 120px 0;
  background: var(--cream);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-desc {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.cd-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cd-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(6, 78, 59, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cd-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--emerald-dark);
  margin-bottom: 4px;
}

.cd-item span, .cd-item a {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

.cd-item a:hover { color: var(--emerald); }

.contact-map { border-radius: var(--radius-md); overflow: hidden; }

/* CONTACT FORM */
.contact-form-wrap {
  position: sticky;
  top: 100px;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-light);
}

.contact-form-card h3 {
  font-size: 1.6rem;
  color: var(--emerald-dark);
  margin-bottom: 8px;
}

.form-note {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

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

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--emerald);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--black);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(6, 78, 59, 0.1);
}

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

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(6, 78, 59, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success h4 {
  font-size: 1.4rem;
  color: var(--emerald-dark);
  margin-bottom: 8px;
}

.form-success p { color: var(--gray); font-size: 0.95rem; }

.contact-form.hidden, .form-success.hidden { display: none; }

/* --- FOOTER --- */
.footer {
  background: var(--emerald-dark);
  color: var(--cream);
  padding: 80px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand p {
  color: rgba(255, 251, 240, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.fl-col { display: flex; flex-direction: column; gap: 12px; }

.fl-col strong {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.fl-col a, .fl-col span {
  font-size: 0.9rem;
  color: rgba(255, 251, 240, 0.6);
  transition: var(--transition);
  line-height: 1.6;
}

.fl-col a:hover { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(255, 251, 240, 0.1);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 251, 240, 0.4);
}

.footer-bottom a {
  color: rgba(255, 251, 240, 0.5);
  transition: var(--transition);
}

.footer-bottom a:hover { color: var(--cream); }

/* --- ANIMATIONS --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: flex; justify-content: center; }
  .hi-card-main { width: 320px; height: 420px; }
  .hi-card-float { width: 150px; height: 150px; }
  .hi-card-top { right: -20px; }
  .hi-card-bottom { left: -20px; }
  
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { sticky: unset; top: unset; }
  
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gal-item--wide { grid-column: span 2; height: 260px; }
  .gal-item--tall { grid-column: span 1; height: 280px; }
  .gal-item:not(.gal-item--wide):not(.gal-item--tall) { height: 260px; }
  
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-text { margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid var(--gray-light);
    transform: translateY(-120%);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
  }
  
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero-title { font-size: 2.4rem; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 1.2rem; }
  
  .services-grid { grid-template-columns: 1fr; }
  
  .gallery-grid { grid-template-columns: 1fr; }
  .gal-item--wide { grid-column: span 1; }
  
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  
  .form-row { grid-template-columns: 1fr; }
  
  .contact-form-card { padding: 28px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-image-stack { display: none; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
