:root {
  --bg: #faf9f7;
  --bg-soft: #f3f1ee;

  --surface: rgba(255, 255, 255, 0.85);
  --surface-strong: rgba(255, 255, 255, 0.95);

  --text: #2f2f2f;
  --text-soft: #6b6b6b;
  --title: #1e1e1e;

  --primary: #c6a87a; /* champagne gold */
  --primary-strong: #a88d62;

  --secondary: #8c7aa9; /* muted lavender */
  --secondary-soft: #ece7f3;

  --line: rgba(0, 0, 0, 0.08);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);

  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;

  --container: 1180px;
}

@font-face {
  font-family: 'PlayfairDisplay';
  src: url('/assets/fonts/glidaDisplay/GildaDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'PlayfairDisplay';
  src: url('/assets/fonts/glidaDisplay/GildaDisplay-Regular.ttf') format('truetype');
  font-weight: 700;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter/static/Inter_18pt-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter/static/Inter_18pt-Regular.ttf') format('truetype');
  font-weight: 300;
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:linear-gradient(180deg, #faf9f7, #f4f2ef);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.page-glow {
  display: none;
  /* position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.36;
  pointer-events: none;
  z-index: 0; */
}

.glow-left {
  top: 80px;
  left: -120px;
  background: rgba(244, 154, 217, 0.65);
}

.glow-right {
  top: 200px;
  right: -120px;
  background: rgba(176, 132, 255, 0.45);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.9);
  border-bottom: 1px solid var(--line);
  transition: transform 0.4s ease;
}

main {
  padding-top: 90px;
}

.site-header.hide {
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f1e6d6, #e6ddf2);
  color: var(--primary);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: 'PlayfairDisplay', serif;
  font-size: 1.2rem;
  color: var(--title);
}

.brand-text small {
  color: var(--text-soft);
  font-size: 0.88rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-nav a {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--text-soft);
  font-weight: 700;
  transition: 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--primary-strong);
  background: rgba(0,0,0,0.04);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #f1e6d6, #e6ddf2);
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--title);
  margin: 5px auto;
  transition: 0.25s ease;
}

.hero-section {
  padding: 72px 0 50px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.eyebrow,
.section-tag,
.category-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.eyebrow {
  color: var(--primary-strong);
  background: linear-gradient(135deg, #f1e6d6, #e6ddf2);
  border: 1px solid rgba(222, 126, 200, 0.14);
  padding: 12px 18px;
  border-radius: 999px;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}

h1, h2, h3 {
  font-family: 'PlayfairDisplay', serif;
  letter-spacing: 0.5px;
  color: var(--title);
}

.hero-content h1 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1.04;
  margin: 22px 0 18px;
}

.hero-content p {
  max-width: 620px;
  font-size: 1.12rem;
  line-height: 1.8;
  margin: 0 0 28px;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.btn-secondary {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--primary-strong);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(209, 145, 218, 0.16);
  color: var(--text-soft);
  font-weight: 700;
}

.hero-card,
.intro-card,
.contact-card,
.category-row {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 24px;
}

.hero-photo-frame {
  position: relative;
  padding: 16px;
  border-radius: 28px;
  background: linear-gradient(135deg, #fff, #f2efe9);
}

.hero-photo {
  min-height: 420px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.hero-photo::before {
  width: 180px;
  height: 180px;
  top: -24px;
  right: -20px;
}

.hero-photo::after {
  width: 220px;
  height: 220px;
  bottom: -70px;
  left: -50px;
}

.mini-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary-strong);
  font-weight: 800;
  box-shadow: 0 18px 32px rgba(176, 84, 169, 0.16);
}

.mini-card-top {
  top: 20px;
  left: 18px;
}

.mini-card-bottom {
  right: 20px;
  bottom: 24px;
}

.hero-card-text {
  padding: 22px 8px 8px;
  text-align: center;
}

.hero-card-text h2 {
  margin: 0 0 10px;
  font-size: 1.8rem;
}

.hero-card-text p {
  margin: 0;
  line-height: 1.75;
  color: var(--text-soft);
}

.hero-decor {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary);
}

.hero-decor-top {
  top: -14px;
  right: 26px;
}

.hero-decor-bottom {
  bottom: -14px;
  left: 28px;
}

.intro-section,
.categories-section,
.contact-section {
  padding: 40px 0 70px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-tag {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0,0,0,0.04);
  color: var(--primary-strong);
}

.section-heading h2,
.contact-copy h2 {
  margin: 16px 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: 1px;
}

.section-heading p,
.contact-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 1.05rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.intro-card {
  border-radius: var(--radius-lg);
  padding: 28px;
}

.intro-card p {
  margin: 0 0 18px;
  line-height: 1.9;
  color: var(--text-soft);
}

.intro-card p:last-child {
  margin-bottom: 0;
}

.categories-list {
  display: grid;
  gap: 26px;
}

.category-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.category-row:hover,
.category-row:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.2);
}

.category-row.reverse .category-visual {
  order: 2;
}

.category-row.reverse .category-text {
  order: 1;
}

.category-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  isolation: isolate;
}

.category-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.category-visual::before {
  width: 220px;
  height: 220px;
  top: -70px;
  right: -50px;
}

.category-visual::after {
  width: 190px;
  height: 190px;
  bottom: -60px;
  left: -40px;
}

.visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
  z-index: 1;
}

.visual-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #fff;
  text-align: center;
}

.visual-content {
  position: absolute;
  z-index: 2;
}

.visual-content i {
  font-size: 4rem;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.14));
}

.visual-content span {
  font-family: 'PlayfairDisplay', serif;
  font-size: 2rem;
  letter-spacing: 0.02em;
}

.visual-badges {
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.4) 0 7%, transparent 7.1%),
    radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.32) 0 8%, transparent 8.1%),
    linear-gradient(140deg, #ef8ec9 0%, #d17ee7 50%, #b782ff 100%);
}

.visual-crowns {
  background:
    radial-gradient(circle at 25% 22%, rgba(255, 255, 255, 0.42) 0 7%, transparent 7.1%),
    radial-gradient(circle at 74% 70%, rgba(255, 255, 255, 0.28) 0 9%, transparent 9.1%),
    linear-gradient(140deg, #f7a3ca 0%, #dd8ef5 48%, #b06eff 100%);
}

.visual-table {
  background:
    radial-gradient(circle at 20% 70%, rgba(255, 255, 255, 0.3) 0 10%, transparent 10.1%),
    radial-gradient(circle at 76% 24%, rgba(255, 255, 255, 0.34) 0 7%, transparent 7.1%),
    linear-gradient(140deg, #f39cbc 0%, #cf83d9 46%, #9a72f7 100%);
}

.visual-gifts {
  background:
    radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.34) 0 7%, transparent 7.1%),
    radial-gradient(circle at 84% 76%, rgba(255, 255, 255, 0.3) 0 8%, transparent 8.1%),
    linear-gradient(140deg, #ff9ec0 0%, #e57fe2 48%, #a773ff 100%);
}

.category-text {
  padding: 44px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category-kicker {
  color: var(--primary-strong);
  margin-bottom: 14px;
}

.category-text h3 {
  margin: 0 0 16px;
  font-size: 2rem;
  line-height: 1.16;
}

.category-text p {
  margin: 0 0 24px;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-soft);
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-strong);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.contact-copy {
  padding-top: 14px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--primary-strong);
  font-weight: 700;
}

.contact-card {
  border-radius: var(--radius-xl);
  padding: 18px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-radius: 22px;
}

.contact-item+.contact-item {
  border-top: 1px solid rgba(212, 148, 214, 0.14);
}

.contact-item i {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #f3ede4, #e9e4f3);
  color: var(--primary-strong);
  font-size: 1.1rem;
}

.contact-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--title);
}

.contact-item p,
.contact-item a {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.site-footer {
  padding: 0 0 28px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
}

.footer-inner p,
.footer-inner a {
  margin: 0;
  color: var(--text-soft);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.delay-1 {
  transition-delay: 0.12s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.category-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  color: #fff;
  font-weight: 700;
  margin-top: 10px;
  transition: 0.3s ease;
}

.category-button i {
  transition: transform 0.3s ease;
}

.category-row:hover .category-button {
  transform: translateY(-2px);
}

.category-row:hover .category-button i {
  transform: translateX(4px);
}

.category-row {
  cursor: pointer;
}

.footer-inner .wister {
  display: inline-block;
  text-decoration: underline;
  font-weight: bold;
  transition: 0.3s ease;
}

.footer-inner .wister:hover {
  transform: scale(1.02);
}

.product-card {
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 992px) {

  .hero-section {
    padding-top: 0;
  }

  .hero-grid,
  .contact-grid,
  .intro-grid,
  .category-row {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 48px;
  }

  .hero-card {
    order: -1;
  }

  .hero-photo {
    min-height: 340px;
  }

  .category-row.reverse .category-visual,
  .category-row.reverse .category-text {
    order: initial;
  }

  .category-visual {
    min-height: 270px;
  }

  .category-text {
    padding: 30px 24px;
  }

  .footer-inner .wister:hover {
    transform: none;
  }
}

@media (max-width: 768px) {

  .hero-section {
    padding-top: 0;
  }

  .site-header {
    position: sticky;
  }

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

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(214, 142, 214, 0.16);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.25s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 16px;
    border-radius: 18px;
  }

  .menu-toggle[aria-expanded='true'] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded='true'] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded='true'] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p,
  .intro-card p,
  .section-heading p,
  .category-text p,
  .contact-copy p {
    font-size: 1rem;
  }

  .hero-actions,
  .social-links {
    flex-direction: column;
  }

  .btn,
  .social-links a {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {

  main {
    padding-top: 15px;
  }

  .hero-section {
    padding-top: 0 !important;
  }

  .container {
    width: min(calc(100% - 22px), var(--container));
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-icon {
    width: 42px;
    height: 42px;
  }

  .brand-text strong {
    font-size: 1.02rem;
  }

  .hero-section,
  .intro-section,
  .categories-section,
  .contact-section {
    padding: 28px 0 46px;
  }

  .eyebrow,
  .section-tag,
  .hero-badges span {
    font-size: 0.88rem;
  }

  .hero-content h1 {
    font-size: 2.1rem;
  }

  .hero-card,
  .intro-card,
  .contact-card {
    border-radius: 24px;
  }

  .hero-photo {
    min-height: 280px;
  }

  .mini-card {
    padding: 12px 14px;
    font-size: 0.86rem;
  }

  .visual-content i {
    font-size: 3.2rem;
  }

  .visual-content span {
    font-size: 1.65rem;
  }

  .category-text h3 {
    font-size: 1.6rem;
  }

  .contact-item {
    padding: 16px 10px;
    gap: 14px;
  }

  .contact-item i {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }
}

@media (max-width: 768px) {

  .hero-grid {
    gap: 16px;
  }

  .hero-card {
    padding: 12px;
  }

  .hero-photo-frame {
    padding: 8px;
  }

  .hero-photo {
    min-height: 340px;
  }

  .hero-content {
    text-align: center;
    align-items: center;
  }

  .eyebrow {
    display: flex;
    justify-content: center;
  }

  .hero-section {
    padding-bottom: 0;
  }

  .hero-actions {
    margin-bottom: 0;
  }

  .intro-section {
    padding-bottom: 10px;
  }

  .categories-section {
    padding-bottom: 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .social-links {
    flex-direction: row !important;
    justify-content: center;
    gap: 12px;
  }

  .social-links a {
    flex: 1;
    justify-content: center;
  }

  .contact-grid {
    gap: 10px
  }

  .contact-section {
    padding-bottom: 10px;
  }

  #backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: linear-gradient(135deg, #c6a87a, #8c7aa9);
    color: #fff;

    font-size: 18px;
    text-decoration: none;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);

    z-index: 99999;
  }

  #backToTop span {
    display: none;
  }

  #backToTop i {
    margin: 0;
  }

  .footer-inner .wister:hover {
    transform: none;
  }

  .category-button {
    transition: none;
  }

  .category-button i {
    transition: none;
  }

  .category-row:hover .category-button {
    transform: none;
  }

  .category-row:hover .category-button i {
    transform: none;
  }

  .hero-section{
    margin-top: 20px;
  }

  .hero-content{
    padding-top: 10px;
  }

  .hero-photo {
  position: relative;
  z-index: 2;
  background: #fff;
}

.hero-photo-frame {
  padding: 0;
  background: transparent;
}

.hero-decor-top {
  z-index: 10; 
}

.hero-decor {
  z-index: 10;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-row:hover,
.category-row:focus-visible {
  transform: none;
  box-shadow: none;
}

}