/* ============================================================
   Livia Fashion — Global Stylesheet
   ============================================================ */

:root {
  --bg: #faf6f1;
  --bg-soft: #f3ece2;
  --bg-warm: #ece1d1;
  --cream: #fffaf3;
  --ink: #2a1f1a;
  --ink-soft: #5b4a40;
  --muted: #8a786c;
  --line: #e6dccd;

  --rose: #c98b8b;
  --rose-deep: #a96b6b;
  --blush: #f4d9d2;
  --sage: #9bb09b;
  --terracotta: #c97a55;
  --gold-1: #c9a26a;
  --gold-2: #8a6a3b;
  --mocha: #4a342a;

  --shadow-sm: 0 1px 2px rgba(74,52,42,.06), 0 4px 12px rgba(74,52,42,.05);
  --shadow-md: 0 8px 24px rgba(74,52,42,.10);
  --shadow-lg: 0 24px 60px rgba(74,52,42,.18);

  --radius: 14px;
  --radius-lg: 22px;

  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-script: "Italianno", "Allura", "Cormorant Garamond", cursive;
  --font-body: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .25s ease, color .25s ease; }
a:hover { opacity: .75; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; letter-spacing: -.01em; line-height: 1.1; margin: 0 0 .4em; }
p { margin: 0 0 1em; color: var(--ink-soft); }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold-1);
}

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-title {
  font-size: clamp(36px, 5vw, 60px);
  margin-top: 12px;
  margin-bottom: 18px;
}
.section-title em {
  font-style: italic;
  color: var(--rose-deep);
  font-weight: 400;
}
.section-lead {
  max-width: 620px;
  font-size: 17px;
  color: var(--muted);
}

/* ============== Buttons ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn .arrow {
  display: inline-block;
  transition: transform .3s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--mocha);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  opacity: 1;
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  opacity: 1;
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--ink);
  padding: 8px 0;
  border-radius: 0;
  border-bottom: 1px solid var(--ink);
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.btn-whatsapp:hover {
  opacity: 1;
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}

/* ============== Brand Wordmark ============== */
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  text-decoration: none;
  position: relative;
}
.brand .brand-name {
  font-family: var(--font-script);
  font-size: 38px;
  font-weight: 400;
  background: linear-gradient(135deg, #b08254 0%, #d9b07d 35%, #8a6a3b 70%, #c98b8b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: .01em;
  position: relative;
  padding-right: 6px;
}
.brand .brand-name::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 4px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-1), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.brand:hover .brand-name::after { transform: scaleX(1); }
.brand .brand-tag {
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: .55em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-top: 2px;
  padding-left: 4px;
  font-weight: 600;
}
.brand:hover { opacity: 1; }

/* ============== Navbar ============== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(250, 246, 241, 0.65);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: padding .3s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.nav.is-scrolled {
  padding: 12px 0;
  background: rgba(250, 246, 241, 0.92);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--rose-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.icon-btn {
  width: 42px; height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.icon-btn:hover { transform: translateY(-1px); border-color: var(--ink); }
.cart-badge {
  position: relative;
}
.cart-badge::after {
  content: "0";
  position: absolute;
  top: -2px; right: -4px;
  background: var(--rose-deep);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
}
.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--cream);
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform .3s ease, opacity .3s ease;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform .3s ease;
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle.is-open span { background: transparent; }
.menu-toggle.is-open span::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span::after { transform: translateY(-6px) rotate(-45deg); }

/* ============== Mobile Drawer ============== */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  padding: 110px 32px 40px;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer a {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -.01em;
}
.mobile-drawer .drawer-foot {
  margin-top: auto;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .15em;
  text-transform: uppercase;
}

/* ============== Hero ============== */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(46px, 7vw, 92px);
  margin: 16px 0 24px;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--rose-deep);
  font-weight: 400;
}
.hero-copy p {
  font-size: 18px;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero-meta {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 480px;
}
.hero-meta div { font-size: 13px; }
.hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--ink);
  font-weight: 600;
}
.hero-meta span { color: var(--muted); letter-spacing: .12em; text-transform: uppercase; font-size: 11px; }
.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-image.in-view img { transform: scale(1); }
.hero-image .badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255,250,243,.92);
  backdrop-filter: blur(8px);
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-image .badge .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--sage); animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(155,176,155,.6); }
  50% { box-shadow: 0 0 0 10px rgba(155,176,155,0); }
}

/* ============== Marquee ============== */
.marquee {
  background: var(--mocha);
  color: var(--cream);
  overflow: hidden;
  padding: 16px 0;
  border-radius: 0;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee span {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  letter-spacing: .03em;
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.marquee span::after {
  content: "✦";
  color: var(--gold-1);
  font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============== Services ============== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-deep);
}
.service-card .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--rose-deep);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 8px;
}
.service-card p { font-size: 14px; color: var(--muted); margin: 0; }

/* ============== Featured / Products ============== */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.product {
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
  aspect-ratio: 3/4;
}
.product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.product:hover .product-media img { transform: scale(1.06); }
.product-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--cream);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--rose-deep);
}
.product-quick {
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
  display: flex;
  gap: 8px;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity .35s ease, transform .35s ease;
}
.product:hover .product-quick { opacity: 1; transform: translateY(0); }
.product-quick .btn {
  flex: 1;
  padding: 12px 18px;
  font-size: 12px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 999px;
  justify-content: center;
}
.product-quick .btn:hover { background: var(--ink); color: var(--cream); }
.product-info {
  padding: 18px 4px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.product-info h4 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0 0 4px;
  font-weight: 500;
}
.product-info .desc { font-size: 13px; color: var(--muted); margin: 0; }
.product-info .price {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
}

/* ============== Trending Banner ============== */
.trending {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  min-height: 460px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.trending::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, var(--bg-warm) 0%, var(--bg-warm) 50%, transparent 50%);
  z-index: -1;
}
.trending img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}
.trending-copy {
  padding: 60px;
}
.trending-copy h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 16px;
}
.trending-copy h2 em { font-style: italic; color: var(--rose-deep); font-weight: 400; }

/* ============== Collection Showcase ============== */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.showcase.reverse > .showcase-img { order: 2; }
.showcase-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.showcase-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.showcase-img:hover img { transform: scale(1.04); }
.showcase-copy h2 {
  font-size: clamp(34px, 4.5vw, 52px);
  margin: 14px 0 18px;
}
.showcase-copy h2 em { font-style: italic; color: var(--rose-deep); font-weight: 400; }
.showcase-feats {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: grid;
  gap: 14px;
}
.showcase-feats li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--ink-soft);
}
.showcase-feats li::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--rose-deep);
  flex-shrink: 0;
}

/* ============== About ============== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.about-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-img .ribbon {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--cream);
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.about-img .ribbon strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--rose-deep);
}
.about-img .ribbon span {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.about-copy h2 {
  font-size: clamp(36px, 5vw, 56px);
  margin: 14px 0 24px;
}
.about-copy h2 em { font-style: italic; color: var(--rose-deep); font-weight: 400; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.about-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--ink);
  font-weight: 500;
}
.about-stats span {
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============== Testimonials ============== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.testimonial {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial .stars {
  color: var(--gold-1);
  letter-spacing: 4px;
  margin-bottom: 18px;
  font-size: 16px;
}
.testimonial blockquote {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
}
.testimonial blockquote::before { content: "\201C"; font-size: 60px; line-height: 0; vertical-align: -28px; color: var(--rose-deep); margin-right: 6px; }
.testimonial-meta { display: flex; align-items: center; gap: 14px; }
.testimonial-meta .avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--bg-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--rose-deep);
  font-weight: 500;
}
.testimonial-meta div strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}
.testimonial-meta div span {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ============== Newsletter ============== */
.newsletter {
  background: var(--mocha);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 70px 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.newsletter h2 {
  color: var(--cream);
  font-size: clamp(30px, 4vw, 48px);
  margin: 12px 0 14px;
}
.newsletter h2 em { color: var(--gold-1); font-style: italic; font-weight: 400; }
.newsletter p { color: rgba(255,250,243,.75); margin: 0; }
.newsletter form { display: flex; gap: 8px; }
.newsletter input {
  flex: 1;
  padding: 16px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,250,243,.2);
  background: rgba(255,250,243,.06);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color .25s ease, background .25s ease;
}
.newsletter input::placeholder { color: rgba(255,250,243,.5); }
.newsletter input:focus { border-color: var(--gold-1); background: rgba(255,250,243,.1); }
.newsletter .eyebrow { color: var(--gold-1); }
.newsletter .eyebrow::before { background: var(--gold-1); }

/* ============== Contact ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.contact-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1px solid var(--line);
}
.contact-card h2 { font-size: clamp(30px, 4vw, 44px); margin: 12px 0 14px; }
.contact-card h2 em { color: var(--rose-deep); font-style: italic; font-weight: 400; }

.field { display: block; margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--rose-deep);
  box-shadow: 0 0 0 3px rgba(201,139,139,.15);
}
.field textarea { min-height: 130px; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.contact-info .row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink);
}
.contact-info .row:last-of-type { border-bottom: none; }
.contact-info .row .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-deep);
  flex-shrink: 0;
}
.contact-info .row span {
  display: block;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.contact-info .row strong { font-family: var(--font-display); font-size: 22px; font-weight: 500; }
.contact-info .actions { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }

/* ============== Footer ============== */
.footer {
  background: var(--mocha);
  color: rgba(255,250,243,.78);
  padding: 80px 0 30px;
  margin-top: 60px;
}
.footer .brand .brand-name {
  background: linear-gradient(135deg, #f7d9a6 0%, #d9b07d 50%, #f4d9d2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer .brand .brand-tag { color: var(--gold-1); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,250,243,.12);
}
.footer h4 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 600;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer ul a { font-size: 14px; }
.footer-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: .1em;
  color: rgba(255,250,243,.55);
  flex-wrap: wrap;
  gap: 12px;
}
.socials { display: flex; gap: 12px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,250,243,.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.socials a:hover { border-color: var(--gold-1); color: var(--gold-1); opacity: 1; }

/* ============== Page Header (sub pages) ============== */
.page-head {
  padding: 160px 0 70px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  text-align: center;
}
.page-head h1 {
  font-size: clamp(48px, 7vw, 86px);
  margin: 14px 0 14px;
}
.page-head h1 em { font-style: italic; color: var(--rose-deep); font-weight: 400; }
.page-head p { max-width: 640px; margin: 0 auto; font-size: 17px; color: var(--muted); }
.crumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.crumbs a { color: var(--gold-2); font-weight: 600; }
.crumbs span { opacity: .5; }

/* ============== Filters ============== */
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}
.filter-chip {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--cream);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink-soft);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.filter-chip:hover { border-color: var(--ink); color: var(--ink); }
.filter-chip.is-active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* ============== Toast ============== */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translate(-50%, 30px);
  background: var(--ink);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.toast.is-show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.toast .check {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--sage);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* ============== Floating WhatsApp ============== */
.fab-whats {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(37,211,102,.45);
  z-index: 90;
  transition: transform .3s ease;
  animation: floatY 3s ease-in-out infinite;
}
.fab-whats:hover { transform: scale(1.08); opacity: 1; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ============== Reveal animations ============== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
.reveal.delay-4 { transition-delay: .32s; }
.reveal.delay-5 { transition-delay: .40s; }
.reveal.delay-6 { transition-delay: .48s; }
.reveal.delay-7 { transition-delay: .56s; }
.reveal.delay-8 { transition-delay: .64s; }

/* page transition fade-in */
body.is-loaded main { animation: pageIn .6s cubic-bezier(.2,.7,.2,1) both; }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============== Responsive ============== */
@media (max-width: 1024px) {
  .hero-grid,
  .showcase,
  .about-grid,
  .contact-grid,
  .trending,
  .newsletter { grid-template-columns: 1fr; }
  .trending::before { background: var(--bg-warm); }
  .showcase.reverse > .showcase-img { order: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .newsletter { padding: 50px 36px; }
  .trending-copy { padding: 40px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions .icon-btn { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero { padding: 130px 0 60px; }
  .hero-image img { aspect-ratio: 3/4; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-card, .contact-info { padding: 30px; }
  .testimonial { padding: 28px; }
  .marquee span { font-size: 16px; gap: 40px; }
  .brand .brand-name { font-size: 32px; }
  .page-head { padding: 130px 0 50px; }
  .about-img .ribbon { padding: 14px 16px; bottom: 16px; left: 16px; }
  .about-img .ribbon strong { font-size: 22px; }
  .hero-meta { flex-wrap: wrap; gap: 18px; }
  .footer-foot { flex-direction: column; align-items: flex-start; }
  .nav-actions .menu-toggle { display: inline-flex; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .filter-chip { padding: 8px 16px; font-size: 12px; }
}
