/* ─────────────────────────────────────────
   HOME PAGE STYLES
   ───────────────────────────────────────── */

/* ── HERO ── */
.hw-hero {
  position: relative;
  min-height: calc(100vh - 66px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #f2fffe 0%, #d6f5f2 45%, #b8ede8 100%);
}

/* Animated dot grid */
.hw-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(13,184,168,0.14) 1px, transparent 1px);
  background-size: 32px 32px;
  animation: hw-grid-drift 20s linear infinite;
  pointer-events: none;
}
@keyframes hw-grid-drift {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(32px, 32px); }
}

/* Ambient glow blobs */
.hw-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.45;
}
.hw-hero-blob-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #0db8a8 0%, transparent 70%);
  top: -120px; right: -80px;
  animation: hw-blob-float 8s ease-in-out infinite;
}
.hw-hero-blob-2 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, #07d9c6 0%, transparent 70%);
  bottom: -60px; left: -60px;
  animation: hw-blob-float 11s ease-in-out infinite reverse;
}
@keyframes hw-blob-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-28px) scale(1.06); }
}

.hw-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hw-hero-text { display: flex; flex-direction: column; gap: 1.5rem; }

.hw-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rp-teal);
  opacity: 0;
  animation: hw-fade-up 0.7s 0.1s var(--ease-expo) forwards;
}
.hw-hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1.5px;
  background: var(--rp-teal);
  border-radius: 99px;
}

.hw-hero-title {
  font-family: 'Ethnocentric Rg', 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 200;
  color: var(--rp-text);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  opacity: 0;
  animation: hw-fade-up 0.7s 0.25s var(--ease-expo) forwards;
}
.hw-hero-title span { color: var(--rp-teal); }

.hw-hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-style: italic;
  color: var(--rp-muted);
  margin: 0;
  line-height: 1.6;
  opacity: 0;
  animation: hw-fade-up 0.7s 0.4s var(--ease-expo) forwards;
}

.hw-hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: hw-fade-up 0.7s 0.55s var(--ease-expo) forwards;
}
.hw-hero-actions .rp-btn-solid,
.hw-hero-actions .rp-btn-ghost {
  font-size: 0.85rem;
  padding: 0.55rem 1.3rem;
  border-radius: 12px;
}
.rp-btn-solid { border: 1.5px solid transparent; }

/* Perfume bottle SVG illustration */
.hw-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: hw-fade-up 0.9s 0.35s var(--ease-expo) forwards;
}
.hw-bottle-wrap {
  position: relative;
  width: 260px;
  animation: hw-bottle-float 6s ease-in-out infinite;
}
@keyframes hw-bottle-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-16px) rotate(1deg); }
}
.hw-bottle-shadow {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px; height: 18px;
  background: radial-gradient(ellipse, rgba(13,184,168,0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: hw-shadow-pulse 6s ease-in-out infinite;
}
@keyframes hw-shadow-pulse {
  0%, 100% { transform: translateX(-50%) scaleX(1);   opacity: 0.55; }
  50%       { transform: translateX(-50%) scaleX(0.8); opacity: 0.3; }
}
/* Scent particles */
.hw-scent {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rp-teal);
  opacity: 0;
}
.hw-scent-1 { top: 10%; left: 48%; animation: hw-scent-rise 4s 0.5s ease-out infinite; }
.hw-scent-2 { top: 8%;  left: 54%; animation: hw-scent-rise 4s 1.4s ease-out infinite; }
.hw-scent-3 { top: 6%;  left: 42%; animation: hw-scent-rise 4s 2.2s ease-out infinite; }
@keyframes hw-scent-rise {
  0%   { opacity: 0;    transform: translateY(0)    scale(1); }
  20%  { opacity: 0.6; }
  100% { opacity: 0;    transform: translateY(-60px) scale(0.4); }
}

@keyframes hw-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SECTION COMMONS ── */
.hw-section {
  padding: 6rem 2rem;
  max-width: 1180px;
  margin: 0 auto;
}
.hw-section-full {
  padding: 6rem 2rem;
}

.hw-section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rp-teal);
  margin-bottom: 0.85rem;
}
.hw-section-label::before,
.hw-section-label::after {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--rp-teal);
  opacity: 0.5;
}
.hw-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--rp-text);
  text-align: center;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}
.hw-section-sub {
  font-size: 0.92rem;
  color: var(--rp-muted);
  text-align: center;
  font-style: italic;
  margin: 0 0 3rem;
}

/* ── PERFUMES SECTION ── */
.hw-perfumes {
  background: linear-gradient(180deg, #fff 0%, #f2fffe 100%);
  padding: 6rem 2rem;
}
.hw-perfumes-inner { max-width: 1180px; margin: 0 auto; }

.hw-perfumes-all {
  text-align: center;
  margin-top: 3rem;
}

/* ── ABOUT SECTION ── */
.hw-about {
  background: #0d1f1e;
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
.hw-about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(13,184,168,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hw-about-blob {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,184,168,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
  filter: blur(60px);
}
.hw-about-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.hw-about-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-style: italic;
  font-weight: 400;
  color: #fff;
  line-height: 1.35;
  margin: 0;
}
.hw-about-quote em {
  color: var(--rp-teal);
  font-style: normal;
}
.hw-about-quote-mark {
  font-size: 5rem;
  line-height: 0;
  vertical-align: -1.2rem;
  color: var(--rp-teal);
  opacity: 0.4;
  margin-right: 0.15em;
  font-family: 'Cormorant Garamond', serif;
}

.hw-about-content { display: flex; flex-direction: column; gap: 1.5rem; }
.hw-about-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rp-teal);
}
.hw-about-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--rp-teal);
  display: block;
}
.hw-about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.25;
}
.hw-about-text {
  font-size: 0.96rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.85;
  margin: 0;
}
.hw-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hw-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--rp-teal);
  line-height: 1;
  display: block;
}
.hw-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.3rem;
}
.hw-about-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--rp-teal);
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border: 1.5px solid rgba(13,184,168,0.4);
  border-radius: 12px;
  transition: all 0.28s;
  align-self: flex-start;
}
.hw-about-cta:hover {
  background: rgba(13,184,168,0.12);
  border-color: var(--rp-teal);
  gap: 0.85rem;
}

/* ── CONTACT SECTION ── */
.hw-contact {
  background: linear-gradient(170deg, #f2fffe 0%, #e0f7f5 100%);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.hw-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(13,184,168,0.11) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hw-contact-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.hw-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
  gap: 1.5rem;
}

.hw-contact-card {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(13,184,168,0.18);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s, border-color 0.3s;
}
.hw-contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(13,184,168,0.14);
  border-color: rgba(13,184,168,0.35);
}

.hw-contact-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--rp-teal-light) 0%, rgba(13,184,168,0.25) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hw-contact-icon-wrap svg { color: var(--rp-teal); }

.hw-contact-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rp-muted);
}
.hw-contact-card-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--rp-text);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
}
a.hw-contact-card-value:hover { color: var(--rp-teal); }

/* Social card */
.hw-socials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.hw-social-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(13,184,168,0.15);
  color: var(--rp-text);
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s var(--ease-spring);
}
.hw-social-btn:hover {
  background: var(--rp-teal);
  color: #fff;
  border-color: var(--rp-teal);
  transform: scale(1.04);
}
.hw-social-btn svg { flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .hw-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .hw-hero-eyebrow { justify-content: center; }
  .hw-hero-actions { justify-content: center; }
  .hw-hero-visual { display: none; }
  .hw-about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hw-contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hw-hero { min-height: auto; }
  .hw-hero-inner { padding: 3rem 1.25rem; gap: 2rem; }
  .hw-hero-title { font-size: 1.8rem; }
  .hw-hero-tagline { font-size: 0.95rem; }
  .hw-hero-actions .rp-btn-solid,
  .hw-hero-actions .rp-btn-ghost { font-size: 0.8rem; padding: 0.5rem 1.1rem; border-radius: 10px; }
  .hw-section, .hw-perfumes, .hw-about, .hw-contact { padding: 4rem 1.25rem; }
  .hw-about-inner { gap: 2.5rem; }
  .hw-about-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .hw-stat-value { font-size: 1.6rem; }
  .hw-contact-grid { grid-template-columns: 1fr; }
  .hw-section-title { font-size: 1.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hw-hero::before,
  .hw-hero-blob-1,
  .hw-hero-blob-2,
  .hw-bottle-wrap,
  .hw-scent-1, .hw-scent-2, .hw-scent-3 {
    animation: none;
  }
  .hw-hero-eyebrow,
  .hw-hero-title,
  .hw-hero-tagline,
  .hw-hero-actions,
  .hw-hero-visual {
    opacity: 1;
    animation: none;
  }
}
