/* ===== Variables ===== */
:root {
  --color-cream: #faf8f5;
  --color-white: #ffffff;
  --color-dark: #1a1a1a;
  --color-text: #3d3d3d;
  --color-muted: #7a7a7a;
  --color-accent: #47c7e9;
  --color-accent-dark: #2ba8cc;
  --color-green: #81b551;
  --color-green-dark: #6a9a42;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --header-height: 80px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* ===== Typography ===== */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--color-muted);
  font-size: 1.05rem;
  max-width: 540px;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-desc {
  margin-inline: auto;
}

.section {
  padding: 6rem 0;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn--primary {
  background: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-green);
}

.btn--primary:hover {
  background: var(--color-green-dark);
  border-color: var(--color-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(129, 181, 81, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-white);
}

.btn--outline {
  background: var(--color-white);
  color: var(--color-dark);
  border-color: rgba(26, 26, 26, 0.12);
  box-shadow: var(--shadow);
}

.btn--outline:hover {
  border-color: var(--color-green);
  color: var(--color-green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--light {
  background: var(--color-white);
  color: var(--color-dark);
  border-color: var(--color-white);
}

.btn--light:hover {
  background: transparent;
  color: var(--color-white);
}

.btn--full {
  width: 100%;
  justify-content: center;
  margin-top: 1.5rem;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: var(--transition);
}

.header--scrolled {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-dark);
}

.nav__logo img {
  border-radius: 8px;
  object-fit: cover;
}

.nav__logo em {
  font-style: italic;
  color: var(--color-accent);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: 50px;
  transition: var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-green);
}

.nav__link--cta {
  background: var(--color-green);
  color: var(--color-white) !important;
  margin-left: 0.5rem;
}

.nav__link--cta:hover {
  background: var(--color-green-dark);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  transition: var(--transition);
  border-radius: 2px;
}

.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 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(71, 199, 233, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(129, 181, 81, 0.1) 0%, transparent 55%),
    linear-gradient(165deg, #fdfcfa 0%, var(--color-cream) 45%, #f3efe8 100%);
}

.hero__ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: blobFloat 18s ease-in-out infinite;
}

.hero__blob--1 {
  width: 420px;
  height: 420px;
  background: rgba(71, 199, 233, 0.22);
  top: -8%;
  right: 12%;
  animation-delay: 0s;
}

.hero__blob--2 {
  width: 360px;
  height: 360px;
  background: rgba(129, 181, 81, 0.18);
  bottom: 10%;
  left: -5%;
  animation-delay: -6s;
}

.hero__blob--3 {
  width: 280px;
  height: 280px;
  background: rgba(255, 220, 200, 0.35);
  top: 45%;
  left: 40%;
  animation-delay: -12s;
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(24px, -18px) scale(1.06); }
  66% { transform: translate(-16px, 14px) scale(0.96); }
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 5rem;
  min-height: 100vh;
}

.hero__content {
  text-align: left;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 1.25rem;
  padding: 0.45rem 1rem;
  background: rgba(71, 199, 233, 0.1);
  border: 1px solid rgba(71, 199, 233, 0.2);
  border-radius: 50px;
}

.hero__tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.08;
  margin-bottom: 1.25rem;
}

.hero__title-accent {
  font-style: italic;
  background: linear-gradient(135deg, var(--color-accent-dark), var(--color-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-muted);
  max-width: 480px;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.hero__trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.2;
}

.hero__trust-item span {
  font-size: 0.78rem;
  color: var(--color-muted);
  letter-spacing: 0.02em;
}

.hero__trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(26, 26, 26, 0.1);
}

/* Hero visual collage */
.hero__visual {
  position: relative;
  height: clamp(420px, 52vh, 580px);
}

.hero__frame {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--color-white);
}

.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform 0.6s ease;
}

.hero__frame--main {
  inset: 0 0 0 12%;
  z-index: 1;
  border-radius: 24px;
}

.hero__frame--main::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.6);
  z-index: 2;
  pointer-events: none;
}

.hero__frame--main:hover img {
  transform: scale(1.04);
}

.hero__frame-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 45%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero__frame--accent {
  width: 38%;
  aspect-ratio: 3 / 4;
  bottom: -4%;
  left: 0;
  z-index: 3;
  border: 4px solid var(--color-cream);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.hero__frame--accent:hover img {
  transform: scale(1.06);
}

.hero__floating-card {
  position: absolute;
  top: 8%;
  left: 4%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.25rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  animation: cardFloat 5s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero__floating-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent), var(--color-green));
  border-radius: 10px;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero__floating-card strong {
  display: block;
  font-size: 0.85rem;
  color: var(--color-dark);
  margin-bottom: 0.1rem;
}

.hero__floating-card span {
  font-size: 0.75rem;
  color: var(--color-muted);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-green), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Marquee ===== */
.marquee {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 1rem 0;
  overflow: hidden;
}

.marquee__inner {
  display: flex;
  width: max-content;
  animation: marqueeScroll var(--marquee-duration, 30s) linear infinite;
  will-change: transform;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  white-space: nowrap;
}

.marquee__dot {
  color: var(--color-accent);
  font-style: normal;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== About ===== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__image-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about__image-frame:hover img {
  transform: scale(1.03);
}

.about__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--color-accent);
  color: var(--color-white);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about__badge-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}

.about__badge-text {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.about__text p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about__text strong {
  color: var(--color-dark);
}

.about__features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about__features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.about__features li:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
}

.about__feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-green));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about__features strong {
  display: block;
  color: var(--color-dark);
  font-size: 0.95rem;
}

.about__features span {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* ===== Gallery ===== */
.gallery {
  background: var(--color-white);
  padding-bottom: 4rem;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 1rem;
  padding: 0 4vw;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}

.gallery__item--large {
  grid-row: span 2;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__overlay span {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  transform: translateY(10px);
  transition: var(--transition);
}

.gallery__item:hover .gallery__overlay span {
  transform: translateY(0);
}

/* ===== Parallax Banner ===== */
.parallax-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.parallax-banner__bg {
  position: absolute;
  inset: -30% 0;
  z-index: 0;
}

.parallax-banner__bg img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  will-change: transform;
}

.parallax-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.65);
  z-index: 1;
}

.parallax-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 4rem 0;
}

.parallax-banner__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.parallax-banner__content p {
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2rem;
  opacity: 0.9;
  font-weight: 300;
}

/* ===== Products ===== */
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card__image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f0f0, var(--color-cream));
  padding: 1.5rem;
  overflow: hidden;
}

.product-card__image img {
  max-height: 120px;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card--gift .product-card__image img {
  max-height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 0;
}

.product-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.product-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  background: rgba(71, 199, 233, 0.12);
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.product-card__body p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.55;
}

/* ===== Pricing ===== */
.pricing {
  background: var(--color-white);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--color-cream);
  border-radius: var(--radius);
  padding: 2rem;
  border: 2px solid transparent;
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: rgba(71, 199, 233, 0.3);
}

.pricing-card--featured {
  background: var(--color-dark);
  color: var(--color-white);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured .pricing-card__header h3,
.pricing-card--featured .pricing-card__list li {
  color: var(--color-white);
}

.pricing-card--featured .pricing-card__list li span:last-child {
  color: var(--color-accent);
}

.pricing-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-card--featured .pricing-card__header {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.pricing-card__header h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-dark);
}

.pricing-card__icon {
  font-size: 1.5rem;
  opacity: 0.6;
}

.pricing-card__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.95rem;
}

.pricing-card--featured .pricing-card__list li {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.pricing-card__list li span:last-child {
  font-weight: 600;
  color: var(--color-green);
  white-space: nowrap;
  margin-left: 1rem;
}

/* ===== Contact ===== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact__intro {
  color: var(--color-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.contact__cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-lg);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-green));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  flex-shrink: 0;
}

.contact-card strong {
  display: block;
  color: var(--color-dark);
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.contact-card span {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 400px;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

/* ===== Footer ===== */
.footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 2rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__brand img {
  border-radius: 8px;
}

.footer__brand strong {
  display: block;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.footer__brand span {
  font-size: 0.85rem;
}

.footer__nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__nav a {
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer__nav a:hover {
  color: var(--color-accent);
}

.footer__copy {
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ===== FAB ===== */
.fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--color-green);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(129, 181, 81, 0.45);
  transition: var(--transition);
  animation: fabPulse 3s ease-in-out infinite;
}

.fab:hover {
  background: var(--color-green-dark);
  transform: scale(1.1);
}

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(129, 181, 81, 0.45); }
  50% { box-shadow: 0 6px 32px rgba(129, 181, 81, 0.7); }
}

/* ===== Scroll Reveal Animations ===== */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-stagger > * {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-scale {
  transform: scale(0.9);
}

.reveal-stagger > * {
  transform: translateY(30px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible,
.reveal-stagger.visible > * {
  opacity: 1;
  transform: none;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 100ms; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 200ms; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 300ms; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 400ms; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 500ms; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 4rem;
    min-height: auto;
  }

  .hero__content {
    text-align: center;
  }

  .hero__subtitle {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }

  .hero__visual {
    height: 420px;
    max-width: 520px;
    margin-inline: auto;
    width: 100%;
  }

  .hero__frame--main {
    inset: 0 0 0 18%;
  }

  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .gallery__item--large {
    grid-row: span 1;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.25rem;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    box-shadow: var(--shadow);
  }

  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav__link {
    width: 100%;
    text-align: center;
    padding: 0.75rem;
  }

  .nav__link--cta {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .hero__visual {
    height: 360px;
  }

  .hero__frame--main {
    inset: 0 0 0 14%;
  }

  .hero__frame--accent {
    width: 42%;
  }

  .hero__floating-card {
    left: 0;
    top: 4%;
    padding: 0.75rem 1rem;
  }

  .hero__trust-divider {
    display: none;
  }

  .hero__trust {
    gap: 1.5rem;
  }

  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__badge {
    right: 1rem;
    bottom: -1rem;
    width: 100px;
    height: 100px;
  }

  .about__badge-number {
    font-size: 2rem;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
  }

  .pricing-card--featured {
    transform: none;
    order: -1;
  }

  .products__grid {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
    padding: 0 4vw;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

  .section {
    padding: 4rem 0;
  }

  .fab {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 480px) {
  .hero__visual {
    height: 300px;
  }

  .hero__frame--accent {
    width: 46%;
    bottom: -2%;
  }

  .hero__floating-card {
    display: none;
  }

  .hero__trust {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery__item--wide {
    grid-column: span 1;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal, .reveal-left, .reveal-right, .reveal-scale, .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
