:root {
  --bg: #FFF9F2;
  --surface: #FFFFFF;
  --text: #1B1B1F;
  --muted: #6B6273;
  --brand: #C026D3;
  --brand2: #0EA5A4;
  --accent: #B45309;
  --line: rgba(27, 27, 31, 0.14);
  --shadow: 0 18px 40px rgba(27, 27, 31, 0.10);
  --white: #FFFFFF;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(circle at 18% 8%, rgba(192, 38, 211, 0.08), transparent 40%),
    radial-gradient(circle at 80% 12%, rgba(14, 165, 164, 0.08), transparent 35%),
    var(--bg);
  color: var(--text);
  font-family: "Georgia", "Times New Roman", serif;
  line-height: 1.55;
}

body.no-scroll {
  overflow: hidden;
}

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

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

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 249, 242, 0.72);
  backdrop-filter: blur(10px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.logo-mark {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.18rem;
  letter-spacing: 0.02em;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.95rem;
}

.desktop-nav a {
  color: var(--muted);
  padding: 0.3rem 0;
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.12rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 44px;
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  font-family: inherit;
  white-space: nowrap;
}

.btn:focus-visible,
.menu-toggle:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.tab-btn:focus-visible {
  outline: 2px solid var(--brand2);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(120deg, var(--brand), var(--brand2));
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--line);
  color: var(--text);
}

.header-cta {
  margin-left: 0.5rem;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: relative;
  transition: transform 0.2s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  padding: 0.8rem 0 1rem;
  background: rgba(255, 249, 242, 0.98);
}

.mobile-menu.open {
  display: block;
  animation: slideDown 0.22s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-7px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav {
  display: grid;
  gap: 0.2rem;
}

.mobile-nav a {
  border-bottom: 1px solid var(--line);
  padding: 0.68rem 0;
  color: var(--muted);
}

.mobile-menu .btn {
  margin-top: 0.9rem;
  width: 100%;
}

main {
  padding: 1.8rem 0 2.6rem;
}

.hero {
  width: 100vw;
  min-height: 82vh;
  margin-left: calc(50% - 50vw);
  background:
    linear-gradient(130deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.28)),
    linear-gradient(135deg, rgba(192, 38, 211, 0.22), rgba(14, 165, 164, 0.16)),
    url('/images/hero-home-aesthetic.jpg') center/cover no-repeat;
  color: var(--white);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-inner {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(220px, 300px);
  gap: 2rem;
  align-items: end;
  padding: 4.7rem 0 3.7rem;
}

.hero-copy h1 {
  font-size: clamp(2rem, 5.3vw, 4rem);
  line-height: 1.08;
  margin: 0 0 1rem;
}

.hero-copy p {
  font-size: clamp(1rem, 2vw, 1.22rem);
  max-width: 60ch;
  margin: 0 0 1.2rem;
}

.hero-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.chip {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.3rem 0.78rem;
  font-size: 0.78rem;
}

.editors-note {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  border-radius: 20px;
  padding: 1.15rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.note-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.35rem;
}

.section {
  margin-top: 3.4rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.65rem;
}

.section-head h2,
.page-intro h1 {
  margin: 0;
  font-size: clamp(1.55rem, 3.1vw, 2.6rem);
  line-height: 1.15;
}

.section-head p,
.page-intro p {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1rem;
}

.story-primary,
.story-stack article,
.category-tile,
.pick-card,
.text-testimonial,
.faq-card,
.final-cta,
.about-hero,
.process-step,
.tips li,
.contact-shell,
.partnership-card,
.collection-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.story-primary img,
.story-stack img,
.category-tile img,
.pick-card img,
.collection-card img,
.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.story-primary,
.story-stack article {
  padding: 0.65rem;
}

.story-primary {
  min-height: 430px;
  display: grid;
  grid-template-rows: 290px auto;
  gap: 0.8rem;
}

.story-stack {
  display: grid;
  gap: 1rem;
}

.story-stack article {
  min-height: 205px;
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 0.7rem;
}

.separator {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  margin: 2.4rem 0 1rem;
}

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

.category-tile {
  overflow: hidden;
  padding: 0.65rem;
}

.category-tile img {
  height: 170px;
}

.category-tile h3,
.pick-card h3,
.collection-card h3 {
  margin: 0.7rem 0 0.3rem;
}

.category-tile p,
.pick-card p,
.collection-card p,
.story-primary p,
.story-stack p,
.text-testimonial p,
.faq-card p,
.process-step p,
.partnership-card p {
  margin: 0;
  color: var(--muted);
}

.picks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.pick-card {
  padding: 0.65rem;
  display: grid;
  grid-template-rows: 185px auto;
  gap: 0.7rem;
}

.pick-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.6rem;
}

.tag,
.price-badge {
  font-size: 0.74rem;
  border-radius: 999px;
  padding: 0.22rem 0.65rem;
  border: 1px solid var(--line);
}

.tag {
  background: rgba(192, 38, 211, 0.1);
  color: #8c168f;
}

.price-badge {
  background: rgba(180, 83, 9, 0.09);
  color: #874107;
}

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

.text-testimonial,
.faq-card,
.final-cta,
.process-step,
.contact-shell,
.partnership-card {
  padding: 1rem;
}

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

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.page-intro {
  margin-bottom: 1.4rem;
}

.controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.controls-bar select,
.filters input,
.filters select,
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.67rem 0.72rem;
  font: inherit;
  color: var(--text);
  background: var(--surface);
}

.controls-bar select {
  max-width: 250px;
}

.pick-card .btn {
  margin-top: 0.9rem;
  width: 100%;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.56);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 220;
}

.modal.open {
  display: flex;
}

.modal-content {
  width: min(560px, 100%);
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.15rem;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 10px;
  width: 34px;
  height: 34px;
  cursor: pointer;
}

.collections-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1rem;
}

.filters,
.collections-main {
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.filters {
  padding: 1rem;
  position: sticky;
  top: 92px;
  height: fit-content;
}

.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.8rem 0;
}

.tab-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.74rem;
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
}

.tab-btn.active {
  background: linear-gradient(120deg, rgba(192, 38, 211, 0.2), rgba(14, 165, 164, 0.15));
  border-color: rgba(192, 38, 211, 0.4);
}

.collections-main {
  padding: 1rem;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.collection-card {
  padding: 0.65rem;
}

.collection-card img {
  height: 200px;
}

.about-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem;
  padding: 0.9rem;
}

.about-hero img {
  min-height: 310px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.tips {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1rem;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.field-error {
  color: #ac2531;
  font-size: 0.78rem;
  min-height: 1.1em;
  margin-top: 0.2rem;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  background: #18222d;
  color: #fff;
  padding: 0.8rem 0.95rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 250;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  padding: 2rem 0 1.3rem;
}

.footer-col h3,
.footer-news h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.footer-col a,
.footer-col p {
  color: var(--muted);
  display: block;
  margin: 0.27rem 0;
}

.footer-news form {
  display: flex;
  gap: 0.5rem;
}

.footer-news input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
}

.social-list {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.social-list a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-base {
  border-top: 1px solid var(--line);
  padding: 0.85rem 0 1.4rem;
  color: var(--muted);
  font-size: 0.86rem;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.scroll-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 130;
}

.scroll-top.show {
  display: inline-flex;
}

@media (max-width: 1024px) {
  .picks-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-inner,
  .about-hero,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .collection-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .topbar {
    min-height: 64px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: 74vh;
  }

  .story-grid,
  .category-grid,
  .picks-grid,
  .testimonials,
  .faq-preview,
  .tips,
  .field-row,
  .collections-layout {
    grid-template-columns: 1fr;
  }

  .story-primary {
    min-height: 0;
    grid-template-rows: 220px auto;
  }

  .story-stack article {
    grid-template-columns: 1fr;
  }

  .collections-layout {
    display: block;
  }

  .filters {
    position: static;
    margin-bottom: 1rem;
  }

  .final-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-menu {
    display: none;
  }

  .footer-news form {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(1160px, calc(100% - 1.2rem));
  }

  .btn {
    height: 40px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .logo-text {
    font-size: 1.02rem;
  }

  .collection-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
