/* ============================================================
   FRANGIPANI PLUMAS — Stylesheet
   Aesthetic: Editorial · Natural · Refined
   ============================================================ */

:root {
  /* Paleta */
  --color-cream: #F4EFE7;
  --color-cream-deep: #EDE6DA;
  --color-cream-light: #FAF6EF;
  --color-ink: #1A1614;
  --color-ink-soft: #2D211B;
  --color-cobre: #A8623D;
  --color-cobre-soft: #C58668;
  --color-text: #2A241F;
  --color-text-muted: #6B5F55;
  --color-line: #D9CFC1;
  --color-line-soft: #E8DFD2;

  /* Tipografía */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 48px);

  /* Transitions */
  --t-fast: 0.2s ease;
  --t-med: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color var(--t-fast); }

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

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  width: 100%;
}

/* ============================================================
   TIPOGRAFÍA GLOBAL
   ============================================================ */

.kicker {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-cobre);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.kicker--light { color: var(--color-cobre-soft); }
.kicker--center { text-align: center; }

.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: var(--color-ink);
  letter-spacing: -0.01em;
}
.section__title em {
  font-style: italic;
  color: var(--color-cobre);
  font-weight: 400;
}
.section__title--light { color: var(--color-cream-light); }
.section__title--center { text-align: center; }

/* ============================================================
   BOTONES
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all var(--t-med);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn--dark {
  background: var(--color-ink);
  color: var(--color-cream-light);
}
.btn--dark:hover {
  background: var(--color-cobre);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--color-ink);
  border-bottom: 1px solid var(--color-ink);
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
}
.btn--ghost:hover {
  color: var(--color-cobre);
  border-bottom-color: var(--color-cobre);
}
.btn--cream {
  background: var(--color-cream-light);
  color: var(--color-ink);
}
.btn--cream:hover {
  background: var(--color-cobre);
  color: var(--color-cream-light);
}
.btn--cobre {
  background: var(--color-cobre);
  color: var(--color-cream-light);
}
.btn--cobre:hover {
  background: var(--color-ink);
}

/* ============================================================
   HEADER
   ============================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-line-soft);
  transition: box-shadow var(--t-med);
}
.header.is-scrolled {
  box-shadow: 0 2px 20px rgba(26, 22, 20, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 2rem;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-cobre);
  flex-shrink: 0;
}
.header__logo-mark {
  width: 44px;
  height: 44px;
}
.header__logo-mark svg {
  width: 100%;
  height: 100%;
}
.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.header__logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-ink);
}
.header__logo-sub {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.header__nav-list {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
.header__nav-list a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-ink);
  position: relative;
  padding-bottom: 4px;
}
.header__nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-cobre);
  transition: width var(--t-med);
}
.header__nav-list a:hover { color: var(--color-cobre); }
.header__nav-list a:hover::after { width: 100%; }

.header__cart {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-ink);
  flex-shrink: 0;
}
.header__cart-icon {
  color: var(--color-cobre);
  font-size: 16px;
}
.header__cart:hover { color: var(--color-cobre); }

.header__menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}
.header__menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-ink);
  transition: var(--t-fast);
}
.header__menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.header__menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.header__mobile {
  background: var(--color-cream);
  border-top: 1px solid var(--color-line-soft);
  padding: 1.5rem var(--gutter);
}
.header__mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.header__mobile a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-ink);
  padding: 0.5rem 0;
  display: block;
  border-bottom: 1px solid var(--color-line-soft);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 80px);
  background: var(--color-cream);
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem var(--gutter);
  position: relative;
  z-index: 2;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--color-ink);
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: italic;
  color: var(--color-cobre);
}

.hero__text {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 2.5rem;
  max-width: 460px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

.hero__footnote {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-top: auto;
  padding-top: 2rem;
}

.hero__image {
  position: relative;
  overflow: hidden;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--color-cream) 0%, rgba(244, 239, 231, 0.85) 8%, transparent 30%);
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   SUB BAR
   ============================================================ */

.subbar {
  background: var(--color-ink-soft);
  color: var(--color-cream-light);
}
.subbar__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  gap: 1rem 2rem;
}
.subbar__list li {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
}
.subbar__plus {
  color: var(--color-cobre-soft);
  margin-right: 0.75rem;
  font-weight: 400;
}

/* ============================================================
   INTRO
   ============================================================ */

.intro {
  padding: 6rem 0 0;
  background: var(--color-cream);
}
.intro__content {
  max-width: 900px;
}
.intro__text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-top: 1.5rem;
  max-width: 560px;
}
.intro__palette {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 4rem;
}
.intro__swatch {
  aspect-ratio: 16 / 11;
}

/* ============================================================
   CATEGORÍAS
   ============================================================ */

.categories {
  padding: 6rem 0;
  background: var(--color-cream);
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.cat-card {
  background: var(--color-cream-deep);
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  transition: all var(--t-med);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}
.cat-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-cobre);
  background: var(--color-cream-light);
}

.cat-card__icon {
  width: 56px;
  height: 56px;
  color: var(--color-cobre);
  margin-bottom: 1.5rem;
}

.cat-card__title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-ink);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.cat-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 1.25rem;
}

.cat-card__small {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-top: auto;
  line-height: 1.8;
}

.cat-card__link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-cobre);
  margin-top: auto;
  align-self: flex-start;
}
.cat-card__link:hover { color: var(--color-ink); }

/* ============================================================
   ABOUT
   ============================================================ */

.about {
  padding: 6rem 0;
  background: var(--color-cream-light);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about__text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text);
  margin-bottom: 1.25rem;
  margin-top: 1.5rem;
  max-width: 500px;
}
.about__text:first-of-type { margin-top: 2rem; }

.about__quote {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--color-cream-deep);
  padding: 1.75rem 2rem;
  margin-top: 2.5rem;
  position: relative;
  border-left: 2px solid var(--color-cobre);
}
.about__quote-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.about__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--color-ink);
}
.about__quote-source {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--color-cobre);
  margin-top: 0.5rem;
}

.about__image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   RITUAL EVENTOS
   ============================================================ */

.ritual {
  padding: 6rem 0;
  background: var(--color-cream);
}
.ritual__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.ritual__sub {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-text);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.ritual__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-line);
  max-width: 480px;
}
.ritual__list-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--color-cobre);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.ritual__list {
  list-style: none;
  margin-bottom: 2.5rem;
}
.ritual__list li {
  font-size: 0.95rem;
  color: var(--color-text);
  padding: 0.65rem 0 0.65rem 1.5rem;
  position: relative;
}
.ritual__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-cobre);
}

.ritual__gallery {
  position: relative;
}
.ritual__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.ritual__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ritual__tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-ink);
  color: var(--color-cream-light);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  padding: 0.5rem 1rem;
}

/* ============================================================
   COLECCIONES
   ============================================================ */

.collections {
  padding: 6rem 0;
  background: var(--color-cream-deep);
}
.collections__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.collections__all {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--color-cobre);
  border-bottom: 1px solid var(--color-cobre);
  padding-bottom: 4px;
  white-space: nowrap;
}
.collections__all:hover { color: var(--color-ink); border-bottom-color: var(--color-ink); }

.collections__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.coll-card {
  display: flex;
  flex-direction: column;
}

.coll-card__image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.coll-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.5rem;
  transition: transform var(--t-med);
}
.coll-card__placeholder span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-cream-light);
  letter-spacing: 0.1em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.coll-card:hover .coll-card__placeholder { transform: scale(1.04); }

.coll-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-ink);
  color: var(--color-cream-light);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 0.5rem 0.85rem;
  z-index: 2;
}
.coll-card__badge--alt {
  background: var(--color-ink);
}

.coll-card__title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--color-ink);
  margin-bottom: 0.5rem;
}

.coll-card__text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.coll-card__link {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-cobre);
  margin-top: auto;
  align-self: flex-start;
}

/* ============================================================
   WHOLESALE (MAYORISTA)
   ============================================================ */

.wholesale {
  padding: 6rem 0;
  background: var(--color-ink-soft);
  color: var(--color-cream-light);
  position: relative;
  overflow: hidden;
}
.wholesale::before {
  content: '';
  position: absolute;
  right: 35%;
  top: 10%;
  width: 30%;
  height: 80%;
  background: url('../images/extra-2.jpeg') center/contain no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.wholesale__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.wholesale__text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-cream-deep);
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 460px;
}

.wholesale__cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.wholesale__card {
  border: 1px solid rgba(245, 235, 220, 0.15);
  padding: 2rem;
  position: relative;
  transition: border-color var(--t-med);
}
.wholesale__card:hover { border-color: var(--color-cobre); }

.wholesale__card-icon {
  width: 48px;
  height: 48px;
  color: var(--color-cobre-soft);
  margin-bottom: 1rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  padding: 8px;
}

.wholesale__card-num {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--color-cobre-soft);
  margin-bottom: 0.5rem;
}

.wholesale__card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-cream-light);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.wholesale__card-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-cream-deep);
  opacity: 0.85;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  padding: 6rem 0;
  background: var(--color-cream-light);
  position: relative;
}
.faq__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.faq__list {
  margin-top: 3rem;
}

.faq__item {
  border-bottom: 1px solid var(--color-line);
}
.faq__item summary {
  display: grid;
  grid-template-columns: 50px 1fr 30px;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }

.faq__num {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-cobre);
}

.faq__q {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--color-ink);
  line-height: 1.3;
}

.faq__icon {
  width: 14px;
  height: 14px;
  position: relative;
  justify-self: end;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--color-ink);
  transition: var(--t-med);
}
.faq__icon::before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
}
.faq__icon::after {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
}
.faq__item[open] .faq__icon::after { transform: rotate(90deg); opacity: 0; }

.faq__answer {
  padding: 0 0 1.5rem 70px;
  max-width: 720px;
}
.faq__answer p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */

.newsletter {
  padding: 6rem 0;
  background: var(--color-cream);
  text-align: center;
}
.newsletter__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter__form { max-width: 700px; margin: 0 auto; }

.newsletter__inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: stretch;
}

.newsletter__field {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  background: var(--color-cream-light);
  border: 1px solid var(--color-line-soft);
  padding: 0 1rem;
  transition: border-color var(--t-fast);
}
.newsletter__field:focus-within {
  border-color: var(--color-cobre);
}
.newsletter__field-icon {
  color: var(--color-cobre);
  display: flex;
  align-items: center;
  margin-right: 0.5rem;
}
.newsletter__field input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 1rem 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  outline: none;
  min-width: 0;
}
.newsletter__field input::placeholder {
  color: var(--color-text-muted);
}

.newsletter__small {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 1.25rem;
}
.newsletter__success {
  background: var(--color-cobre);
  color: var(--color-cream-light);
  padding: 1rem;
  margin-top: 1rem;
  font-size: 14px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--color-ink-soft);
  color: var(--color-cream-deep);
  padding: 4rem 0 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-cobre-soft);
  margin-bottom: 1.25rem;
}
.footer__logo-mark { width: 36px; height: 36px; }
.footer__logo-mark svg { width: 100%; height: 100%; }
.footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  color: var(--color-cream-light);
}

.footer__about {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.footer__contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer__contact a {
  font-size: 13px;
  font-style: italic;
  color: var(--color-cream-deep);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__contact a:hover { color: var(--color-cobre-soft); }

.footer__col-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--color-cream-light);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer__col ul { list-style: none; }
.footer__col li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1rem;
  font-size: 13px;
}
.footer__col li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--color-cobre-soft);
}
.footer__col a {
  color: var(--color-cream-deep);
  opacity: 0.85;
}
.footer__col a:hover { color: var(--color-cobre-soft); opacity: 1; }

.footer__bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 235, 220, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p {
  font-size: 12px;
  opacity: 0.7;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */

.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--color-ink);
  color: var(--color-cream-light);
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 13px;
  font-weight: 500;
  z-index: 50;
  box-shadow: 0 4px 20px rgba(26, 22, 20, 0.25);
  transition: all var(--t-med);
}
.wa-float:hover {
  background: var(--color-cobre);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(168, 98, 61, 0.4);
}
.wa-float__plus {
  color: var(--color-cobre-soft);
  font-size: 18px;
  font-weight: 300;
}
.wa-float:hover .wa-float__plus { color: var(--color-cream-light); }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 1024px) {
  .header__nav-list { gap: 1.5rem; }
  .header__nav-list a { font-size: 10px; }
  .header__cart-text { display: none; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__image { aspect-ratio: 16 / 10; }
  .hero__image::before {
    background: linear-gradient(to bottom, var(--color-cream) 0%, transparent 20%);
  }

  .categories__grid { grid-template-columns: repeat(2, 1fr); }
  .collections__grid { grid-template-columns: repeat(3, 1fr); }
  .about__inner,
  .ritual__inner,
  .wholesale__inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 768px) {
  :root { --gutter: 20px; }

  .header__nav { display: none; }
  .header__cart { display: none; }
  .header__menu-btn { display: flex; }
  .header__logo-name { font-size: 1.1rem; }
  .header__logo-sub { font-size: 9px; }
  .header__logo-mark { width: 36px; height: 36px; }

  .hero__content { padding: 3rem var(--gutter) 2rem; }
  .hero__title { font-size: clamp(2rem, 9vw, 3rem); }
  .hero__ctas { gap: 1rem; flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }

  .subbar__list { gap: 0.75rem; flex-direction: column; }

  .intro { padding-top: 4rem; }
  .intro__palette { margin-top: 2.5rem; gap: 0.5rem; }

  .categories { padding: 4rem 0; }
  .categories__grid { grid-template-columns: 1fr; }
  .cat-card { min-height: 280px; }

  .about, .ritual, .collections, .wholesale, .faq, .newsletter {
    padding: 4rem 0;
  }

  .collections__head { flex-direction: column; align-items: flex-start; }
  .collections__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .coll-card__placeholder span { font-size: 1.1rem; }

  .faq__item summary {
    grid-template-columns: 30px 1fr 20px;
    gap: 0.75rem;
  }
  .faq__q { font-size: 1.05rem; }
  .faq__answer { padding-left: 0; padding-right: 0; }
  .faq__num { font-size: 11px; }

  .newsletter__inputs { flex-direction: column; }

  .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .wa-float {
    bottom: 1rem;
    right: 1rem;
    padding: 0.75rem 1.25rem;
    font-size: 12px;
  }
  .wa-float__text { display: none; }
  .wa-float__plus { display: inline-block; font-size: 22px; }
}

/* ============================================================
   ANIMACIONES SUTILES
   ============================================================ */

@media (prefers-reduced-motion: no-preference) {
  .hero__content > * {
    animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
  }
  .hero__content > *:nth-child(1) { animation-delay: 0.1s; }
  .hero__content > *:nth-child(2) { animation-delay: 0.25s; }
  .hero__content > *:nth-child(3) { animation-delay: 0.4s; }
  .hero__content > *:nth-child(4) { animation-delay: 0.55s; }
  .hero__content > *:nth-child(5) { animation-delay: 0.7s; }

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

/* ============================================================
   SELECTION
   ============================================================ */

::selection {
  background: var(--color-cobre);
  color: var(--color-cream-light);
}
