:root {
  --emerald-900: #064e3b;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --cream-50: #faf9f7;
  --cream-100: #f5f3ee;
  --cream-200: #ede9e0;
  --cream-300: #e3ded4;
  --charcoal: #1a1a1a;
  --charcoal-light: #3d3d3d;
  --charcoal-muted: #6b6b6b;
  --white: #ffffff;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--charcoal);
  background-color: var(--cream-50);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* ========== NAVIGATION ========== */
.nav {
  background: rgba(250, 249, 247, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(4, 120, 87, 0.08);
  z-index: 50;
  transition: all 0.4s var(--ease-out-expo);
}

.nav.scrolled {
  background: rgba(250, 249, 247, 0.95);
  box-shadow: 0 1px 0 rgba(4, 120, 87, 0.06);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--charcoal);
}

.nav-logo-dot {
  width: 8px;
  height: 8px;
  background: var(--emerald-600);
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out-expo);
}

.nav-logo:hover .nav-logo-dot {
  transform: scale(1.4);
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

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

.nav-link {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--emerald-600);
  transition: width 0.3s var(--ease-out-expo);
}

.nav-link:hover {
  color: var(--charcoal);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--emerald-700);
  border: 1px solid var(--emerald-700);
  padding: 8px 16px;
  border-radius: 100px;
  transition: all 0.3s var(--ease-out-expo);
}

.nav-cta:hover {
  background: var(--emerald-700);
  color: var(--white);
}

.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 60;
}

.menu-line {
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s var(--ease-out-expo);
  transform-origin: center;
}

.nav-menu-btn.active .menu-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-menu-btn.active .menu-line:nth-child(2) {
  opacity: 0;
}

.nav-menu-btn.active .menu-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(250, 249, 247, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out-expo);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-link {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.mobile-menu-link:hover {
  color: var(--emerald-700);
}

.mobile-menu-cta {
  margin-top: 16px;
  font-family: var(--font-sans) !important;
  font-size: 0.875rem !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--emerald-700) !important;
  border: 1px solid var(--emerald-700);
  padding: 12px 28px;
  border-radius: 100px;
}

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

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(4, 120, 87, 0.04) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(4, 120, 87, 0.03) 0%, transparent 40%);
  pointer-events: none;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
  margin-bottom: 28px;
}

.hero-badge-line {
  width: 28px;
  height: 1px;
  background: var(--emerald-600);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}

.hero-greeting {
  display: block;
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  color: var(--charcoal-muted);
  margin-bottom: 8px;
}

.hero-name {
  display: block;
  font-size: clamp(3rem, 5.5vw, 5rem);
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.05;
}

.hero-subtitle {
  font-size: 1.0625rem;
  font-weight: 300;
  color: var(--charcoal-light);
  max-width: 440px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 100px;
  transition: all 0.3s var(--ease-out-expo);
  cursor: pointer;
}

.btn-primary {
  background: var(--emerald-700);
  color: var(--white);
  border: 1px solid var(--emerald-700);
}

.btn-primary:hover {
  background: var(--emerald-900);
  border-color: var(--emerald-900);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(4, 120, 87, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--cream-300);
}

.btn-outline:hover {
  border-color: var(--emerald-700);
  color: var(--emerald-700);
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Hero Image */
.hero-right {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 200px 200px 24px 24px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.08);
}

.hero-image {
  width: 100%;
  height: 750px;
  object-fit: cover;
  display: block;
}

.hero-image-accent {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--cream-50), transparent);
  pointer-events: none;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.floating-card--top {
  top: 40px;
  left: -40px;
  animation-delay: 0s;
}

.floating-card--mid {
  top: 50%;
  right: -32px;
  transform: translateY(-50%);
  animation-delay: 2s;
}

.floating-card--bottom {
  bottom: 80px;
  left: -24px;
  animation-delay: 4s;
}

.floating-card-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--emerald-700);
  line-height: 1;
}

.floating-card-label {
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--charcoal-muted);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.floating-card svg {
  color: var(--emerald-600);
  flex-shrink: 0;
}

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

.floating-card--mid {
  animation-name: floatMid;
}

@keyframes floatMid {
  0%, 100% { transform: translateY(-50%) translateX(0px); }
  50% { transform: translateY(calc(-50% - 10px)) translateX(0px); }
}

/* ========== SECTION DIVIDER ========== */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.divider-dot {
  width: 5px;
  height: 5px;
  background: var(--emerald-600);
  border-radius: 50%;
  opacity: 0.4;
}

/* ========== SECTION HEADERS ========== */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald-700);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
}

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

/* ========== SERVICES ========== */
.services {
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(4, 120, 87, 0.06);
  transition: all 0.4s var(--ease-out-expo);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}

.service-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 400/280;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.service-card:hover .service-card-image img {
  transform: scale(1.04);
}

.service-card-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
}

.service-card-tag {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--emerald-700);
  padding: 5px 12px;
  border-radius: 100px;
}

.service-card-content {
  padding: 24px 24px 28px;
}

.service-card-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--charcoal-muted);
  line-height: 1.7;
}

/* ========== ABOUT ========== */
.about {
  padding: 100px 0;
}

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

.about-images {
  position: relative;
}

.about-image-main {
  border-radius: 200px 200px 20px 20px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.06);
}

.about-image-main img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  display: block;
}

.about-image-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  border: 6px solid var(--cream-50);
}

.about-image-secondary img {
  width: 400px;
  height: 320px;
  object-fit: cover;
  display: block;
}

.about-image-accent-box {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.accent-box-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--emerald-700);
  line-height: 1;
  margin-bottom: 4px;
}

.accent-box-label {
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--charcoal-muted);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.about-content {
  padding-top: 40px;
}

.about-lead {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.about-body {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--charcoal-muted);
  line-height: 1.85;
  margin-bottom: 40px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.value-icon {
  width: 44px;
  height: 44px;
  background: var(--cream-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-700);
  flex-shrink: 0;
}

.value-title {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.value-desc {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--charcoal-muted);
  line-height: 1.6;
}

/* ========== GALLERY ========== */
.gallery {
  padding: 100px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 600/400;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
  display: block;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(4, 120, 87, 0);
  transition: background 0.3s ease;
  border-radius: 16px;
}

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

.gallery-item:hover::after {
  background: rgba(4, 120, 87, 0.06);
}

/* ========== CONTACT ========== */
.contact {
  padding: 100px 0;
}

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

.contact-intro {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--charcoal-muted);
  line-height: 1.85;
  margin-bottom: 40px;
}

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

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

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--cream-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald-700);
  flex-shrink: 0;
}

.contact-detail-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
  margin-bottom: 4px;
}

.contact-detail-value {
  display: block;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.6;
}

.contact-detail-value a {
  transition: color 0.3s ease;
}

.contact-detail-value a:hover {
  color: var(--emerald-700);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(4, 120, 87, 0.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

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

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-muted);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: 12px;
  padding: 14px 16px;
  outline: none;
  transition: all 0.3s ease;
  -webkit-appearance: none;
}

.form-input::placeholder {
  color: var(--cream-300);
}

.form-input:focus {
  border-color: var(--emerald-600);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.08);
}

.form-select {
  cursor: pointer;
}

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

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(4, 120, 87, 0.06);
  border-radius: 12px;
  margin-top: 16px;
  color: var(--emerald-700);
  font-size: 0.875rem;
  font-weight: 400;
  animation: fadeIn 0.4s var(--ease-out-expo);
}

.form-success svg {
  flex-shrink: 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--charcoal);
  color: var(--cream-200);
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo-dot {
  width: 8px;
  height: 8px;
  background: var(--emerald-500);
  border-radius: 50%;
  margin-bottom: 4px;
}

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.8125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--emerald-500);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
}

.footer-phone, .footer-email {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer-phone:hover, .footer-email:hover {
  color: var(--emerald-500);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 48px;
  }

  .hero-image {
    height: 600px;
  }

  .floating-card--top {
    left: -16px;
  }

  .floating-card--bottom {
    left: -8px;
  }

  .about-image-secondary {
    right: -20px;
    bottom: -24px;
  }

  .about-image-secondary img {
    width: 280px;
    height: 240px;
  }

  .about-grid,
  .contact-grid {
    gap: 48px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-menu-btn {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
  }

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

  .hero-right {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-image {
    height: 480px;
  }

  .floating-card--top {
    top: 16px;
    left: -8px;
  }

  .floating-card--mid {
    right: -16px;
  }

  .floating-card--bottom {
    bottom: 48px;
    left: -8px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

  .about-images {
    max-width: 480px;
    margin: 0 auto;
  }

  .about-image-main img {
    height: 480px;
  }

  .about-image-secondary {
    right: -12px;
    bottom: -20px;
  }

  .about-image-secondary img {
    width: 220px;
    height: 180px;
  }

  .about-content {
    padding-top: 0;
  }

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

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

  .contact-form-wrapper {
    padding: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-contact {
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-image {
    height: 380px;
  }

  .floating-card {
    padding: 12px 14px;
    border-radius: 12px;
  }

  .floating-card-number {
    font-size: 1.125rem;
  }

  .floating-card-label {
    font-size: 0.625rem;
  }

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

  .gallery-item {
    aspect-ratio: 400/300;
  }
}
