/* ============================================================
   THE WREATH LADY — Styles
   ============================================================ */

:root {
  --rose:       #c9566b;
  --rose-light: #f5c6cf;
  --rose-dark:  #a03a50;
  --sage:       #7a9e7e;
  --sage-light: #d4e8d3;
  --sage-dark:  #4d7451;
  --gold:       #c9a84c;
  --gold-light: #f0e0a0;
  --cream:      #fdf8f2;
  --warm-white: #fffdf9;
  --charcoal:   #2e2a27;
  --mid-gray:   #6b6460;
  --light-gray: #ede8e4;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-script:  'Dancing Script', cursive;
  --ff-body:    'Jost', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background-color: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  font-weight: 600;
}

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

img { max-width: 100%; }

/* ──────────────────────────────────────────
   ANNOUNCEMENT BAR
────────────────────────────────────────── */
.announcement-bar {
  background-color: var(--rose);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 0;
  text-align: center;
  font-family: var(--ff-body);
  font-weight: 500;
}

/* ──────────────────────────────────────────
   NAVBAR
────────────────────────────────────────── */
.site-nav {
  background-color: var(--warm-white);
  border-bottom: 1px solid var(--light-gray);
  padding: 0 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.site-nav .navbar-brand img {
  height: 70px;
  width: auto;
}

.site-nav .nav-link {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal) !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
  color: var(--rose) !important;
}

.nav-icon-btn {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--charcoal);
  padding: 0.4rem 0.5rem;
  transition: color 0.2s;
  position: relative;
}

.nav-icon-btn:hover { color: var(--rose); }

.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--rose);
  color: #fff;
  font-size: 0.6rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-body);
  font-weight: 600;
}

/* ──────────────────────────────────────────
   HERO SECTION
────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/templates/thewreathlady/logo.webp');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.45);
  transform: scale(1.04);
  animation: heroZoom 14s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.10); }
}

/* Soft gradient overlay for text legibility */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20,10,8,0.70) 0%,
    rgba(20,10,8,0.45) 50%,
    rgba(20,10,8,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-eyebrow {
  font-family: var(--ff-script);
  font-size: 1.6rem;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.5rem;
  animation: fadeUp 0.8s ease both;
}

.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1.2rem;
  animation: fadeUp 0.9s 0.15s ease both;
}

.hero-headline em {
  font-style: italic;
  color: var(--rose-light);
}

.hero-sub {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.04em;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 300;
  animation: fadeUp 1s 0.3s ease both;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.2rem;
  animation: fadeUp 1s 0.4s ease both;
}

.hero-tag {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  font-family: var(--ff-body);
  font-weight: 500;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp 1s 0.5s ease both;
}

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

/* ──────────────────────────────────────────
   BUTTONS
────────────────────────────────────────── */
.btn-rose {
  background-color: var(--rose);
  color: #fff;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  border: 2px solid var(--rose);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.btn-rose:hover {
  background-color: var(--rose-dark);
  border-color: var(--rose-dark);
  color: #fff;
}

.btn-outline-cream {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: background 0.25s, border-color 0.25s;
}

.btn-outline-cream:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

.btn-sage {
  background-color: var(--sage);
  color: #fff;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  border: 2px solid var(--sage);
  transition: background 0.25s, border-color 0.25s;
}

.btn-sage:hover {
  background-color: var(--sage-dark);
  border-color: var(--sage-dark);
  color: #fff;
}

.btn-outline-rose {
  background: transparent;
  color: var(--rose);
  border: 2px solid var(--rose);
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s;
}

.btn-outline-rose:hover {
  background: var(--rose);
  color: #fff;
}

/* ──────────────────────────────────────────
   MARQUEE TICKER
────────────────────────────────────────── */
.ticker-wrap {
  background-color: var(--sage);
  overflow: hidden;
  padding: 11px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 40s linear infinite;
}

.ticker-item {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  padding: 0 2.5rem;
}

.ticker-item .dot {
  color: var(--gold-light);
  margin-right: 2.5rem;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ──────────────────────────────────────────
   SECTION LABELS & HEADINGS
────────────────────────────────────────── */
.section-label {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  display: block;
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
}

.section-heading em {
  font-style: italic;
  color: var(--rose);
}

.section-sub {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--mid-gray);
  line-height: 1.75;
  font-weight: 300;
  max-width: 540px;
}

.divider-rose {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  border: none;
  margin: 1.2rem 0 1.5rem;
}

/* ──────────────────────────────────────────
   CATEGORY CARDS
────────────────────────────────────────── */
.category-section { background: var(--cream); }

.cat-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  display: block;
}

.cat-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
  background-color: var(--sage-light);
}

/* Placeholder gradient backgrounds for demo */
.cat-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cat-placeholder i {
  font-size: 2rem;
  color: rgba(255,255,255,0.7);
  transition: transform 0.3s, color 0.3s;
}

.cat-card:hover .cat-placeholder i {
  transform: scale(1.15);
  color: rgba(255,255,255,0.9);
}

.cat-placeholder-1 { background: linear-gradient(160deg, #f5c6cf 0%, #e8939e 50%, #c9566b 100%); }
.cat-placeholder-2 { background: linear-gradient(160deg, #d4e8d3 0%, #9bc49c 50%, #7a9e7e 100%); }
.cat-placeholder-3 { background: linear-gradient(160deg, #f0e0a0 0%, #d4b860 50%, #c9a84c 100%); }
.cat-placeholder-4 { background: linear-gradient(160deg, #ede8e4 0%, #c9bfb7 50%, #a09088 100%); }

.cat-card:hover .cat-placeholder,
.cat-card:hover .cat-card-img {
  transform: scale(1.06);
}

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,10,8,0.70) 0%, rgba(20,10,8,0.20) 50%, transparent 100%);
  transition: background 0.3s;
}

.cat-card:hover .cat-card-overlay {
  background: linear-gradient(to top, rgba(20,10,8,0.75) 0%, rgba(0,0,0,0.1) 55%);
}

.cat-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.cat-card-label {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  display: block;
  margin-bottom: 0.3rem;
}

.cat-card-title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.3rem;
}

.cat-card-sub {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
}

.cat-card-arrow {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}

.cat-card:hover .cat-card-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────────────
   PRODUCT CARDS
────────────────────────────────────────── */
.products-section { background: var(--warm-white); }

.product-card {
  background: #fff;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.product-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  transform: translateY(-4px);
}

.product-card-img-wrap {
  position: relative;
  overflow: hidden;
}

.product-card-img,
.product-card .hp-data-image {
  width: 100% !important;
  max-width: none !important;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  background-color: var(--rose-light);
  border-radius: 0 !important;
  margin-bottom: 0 !important;
}

.product-placeholder {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-img,
.product-card:hover .product-placeholder {
  transform: scale(1.07);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--rose);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.product-badge.custom { background: var(--sage); }
.product-badge.seasonal { background: var(--gold); color: var(--charcoal); }

.product-card-quick {
  position: absolute;
  bottom: -44px;
  left: 0;
  right: 0;
  background: var(--rose);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
  transition: bottom 0.3s;
  cursor: pointer;
}

.product-card:hover .product-card-quick { bottom: 0; }

.product-card-body {
  padding: 1rem 1.1rem 1.2rem;
}

.product-cat-label {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.product-title {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-desc {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  color: var(--mid-gray);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 0.8rem;
}

.product-price {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rose);
}

.product-price .original {
  font-size: 0.9rem;
  color: var(--mid-gray);
  text-decoration: line-through;
  margin-right: 0.4rem;
  font-weight: 400;
}

/* ──────────────────────────────────────────
   CUSTOM ORDER BANNER
────────────────────────────────────────── */
.custom-banner {
  background: linear-gradient(135deg, var(--rose-dark) 0%, var(--rose) 40%, #d4637a 100%);
  position: relative;
  overflow: hidden;
}

.custom-banner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.custom-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.custom-banner-inner { position: relative; z-index: 1; }

.custom-banner .script-accent {
  font-family: var(--ff-script);
  font-size: 1.4rem;
  color: var(--gold-light);
  display: block;
  margin-bottom: 0.4rem;
}

.custom-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
}

.custom-banner p {
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  font-size: 0.97rem;
  line-height: 1.75;
}

.custom-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-steps li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

.custom-steps li .step-num {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ──────────────────────────────────────────
   ABOUT / STORY SECTION
────────────────────────────────────────── */
.about-section { background: var(--cream); }

.about-image-wrap {
  position: relative;
}

.about-image-wrap img,
.about-img-placeholder {
  border-radius: 4px;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-img-placeholder {
  background: linear-gradient(145deg, var(--rose-light), var(--sage-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--rose);
  color: #fff;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 8px 24px rgba(201,86,107,0.35);
}

.about-badge small {
  font-size: 0.65rem;
  font-family: var(--ff-body);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.92rem;
  color: var(--charcoal);
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li i {
  color: var(--sage);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ──────────────────────────────────────────
   STATS ROW
────────────────────────────────────────── */
.stats-section {
  background: var(--charcoal);
  padding: 3.5rem 0;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--rose-light);
  line-height: 1;
  display: block;
}

.stat-label {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 0.4rem;
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.12);
  align-self: center;
}

/* ──────────────────────────────────────────
   TESTIMONIALS
────────────────────────────────────────── */
.testimonials-section { background: var(--warm-white); }

.testimonial-card {
  background: #fff;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  padding: 2rem;
  height: 100%;
}

.testimonial-stars { color: var(--gold); margin-bottom: 1rem; }

.testimonial-text {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-light), var(--sage-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--rose-dark);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--charcoal);
}

.testimonial-loc {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  color: var(--mid-gray);
  font-weight: 300;
}

/* ──────────────────────────────────────────
   NEWSLETTER
────────────────────────────────────────── */
.newsletter-section {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '\1F33F';
  position: absolute;
  font-size: 12rem;
  opacity: 0.07;
  right: -2rem;
  top: -2rem;
  line-height: 1;
}

.newsletter-section .script-accent {
  font-family: var(--ff-script);
  font-size: 1.4rem;
  color: var(--gold-light);
}

.newsletter-section h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.newsletter-section p {
  color: rgba(255,255,255,0.8);
  font-weight: 300;
}

.newsletter-form .form-control {
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-radius: 2px;
  padding: 13px 18px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
}

.newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-form .form-control:focus {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.6);
  box-shadow: none;
  color: #fff;
}

.btn-cream {
  background: var(--cream);
  color: var(--sage-dark);
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 2px;
  border: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-cream:hover {
  background: #fff;
  color: var(--sage-dark);
}

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.65);
}

.footer-top { padding: 4rem 0 3rem; }

.footer-logo img { height: 80px; width: auto; }

.footer-tagline {
  font-family: var(--ff-script);
  font-size: 1.1rem;
  color: var(--gold-light);
  display: block;
  margin-top: 0.5rem;
}

.footer-about {
  font-size: 0.85rem;
  line-height: 1.7;
  font-weight: 300;
  margin-top: 0.75rem;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--rose-light); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}

.social-btn:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
}

.footer-bottom p {
  font-size: 0.78rem;
  margin: 0;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

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

/* ──────────────────────────────────────────
   UTILITIES
────────────────────────────────────────── */
.bg-cream { background-color: var(--cream); }
.bg-warm-white { background-color: var(--warm-white); }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  font-family: var(--ff-body);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.scroll-indicator i { color: rgba(255,255,255,0.45); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ──────────────────────────────────────────
   RESPONSIVE TWEAKS
────────────────────────────────────────── */
@media (max-width: 767px) {
  .about-badge { bottom: -16px; right: -8px; width: 88px; height: 88px; font-size: 0.9rem; }
  .stat-divider { display: none; }
  .hero { min-height: 92vw; }
}