/* =========================================
   1. Base
========================================= */
:root {
  --cream: #f7f3ec;
  --sage: #bfd8c1;
  --gold: #c9a24a;
  --rose: #d9888c;
  --text: #4f443d;
  --text-soft: #75675d;
  --white: #ffffff;
  --shadow: 0 14px 40px rgba(95, 75, 52, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1200px;
  --transition: 0.25s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(191, 216, 193, 0.18), transparent 35%),
    linear-gradient(180deg, #fcfaf6 0%, var(--cream) 100%);
}

img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 90px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.center {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 54px;
}

.section-kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

h1,
h2,
h3,
.brand-name,
.footer-brand {
  font-family: "Cormorant Garamond", serif;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.8rem;
  line-height: 1.05;
}

p {
  margin: 0 0 16px;
  line-height: 1.75;
  color: var(--text-soft);
  font-size: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: #fffaf3;
  box-shadow: 0 10px 24px rgba(201, 162, 74, 0.28);
}

.btn-primary:hover {
  background: #b98f35;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  border-color: rgba(201, 162, 74, 0.28);
  box-shadow: var(--shadow);
}

.btn-secondary:hover {
  border-color: var(--gold);
}

.btn-nav {
  min-height: 44px;
  padding-inline: 18px;
}

.text-link {
  color: var(--gold);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.text-link:hover {
  text-decoration: underline;
}

/* =========================================
   2. Header
========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(252, 250, 246, 0.75);
  border-bottom: 1px solid rgba(201, 162, 74, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(191,216,193,0.25));
  border: 1px solid rgba(201, 162, 74, 0.18);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}

.brand-c {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
}

.brand-heart {
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: var(--rose);
  font-size: 0.95rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 2rem;
  color: var(--text);
  line-height: 0.9;
}

.brand-sub {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  font-weight: 600;
  color: var(--text);
}

.site-nav a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 162, 74, 0.18);
  border-radius: 14px;
  background: rgba(255,255,255,0.7);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  transition: var(--transition);
}

/* =========================================
   3. Language Switcher
========================================= */
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(201, 162, 74, 0.16);
  box-shadow: var(--shadow);
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--text);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn:hover {
  color: var(--gold);
}

.lang-btn.active {
  background: var(--gold);
  color: #fffaf3;
}

/* =========================================
   4. Hero
========================================= */
.hero {
  padding: 72px 0 50px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.hero-text {
  max-width: 620px;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.point {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(201, 162, 74, 0.16);
  color: var(--text);
  font-weight: 600;
  box-shadow: var(--shadow);
}

.hero-visual {
  position: relative;
}

.hero-card-stack {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-image {
  position: absolute;
  width: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 25px 60px rgba(78, 63, 45, 0.14);
  border: 1px solid rgba(201, 162, 74, 0.16);
}

.hero-card-image img {
  height: 420px;
  object-fit: cover;
}

.card-left {
  left: 20px;
  top: 30px;
  transform: rotate(-7deg);
}

.card-right {
  right: 20px;
  bottom: 20px;
  transform: rotate(8deg);
}

.hero-logo-badge {
  position: relative;
  z-index: 2;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.95), rgba(247,243,236,0.88));
  border: 2px solid rgba(201, 162, 74, 0.22);
  box-shadow: 0 20px 50px rgba(201, 162, 74, 0.18);
  display: grid;
  place-items: center;
}

.badge-c {
  font-family: "Cormorant Garamond", serif;
  font-size: 7rem;
  line-height: 1;
  color: var(--gold);
}

.badge-heart {
  position: absolute;
  right: 58px;
  bottom: 66px;
  color: var(--rose);
  font-size: 1.7rem;
}

.intro-strip {
  padding: 14px 0 0;
}

.intro-strip-inner {
  border-top: 1px solid rgba(201, 162, 74, 0.18);
  padding-top: 22px;
}

.intro-strip p {
  text-align: center;
  margin: 0;
  color: var(--text);
  font-weight: 500;
}

/* =========================================
   5. Split Sections
========================================= */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.section-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 162, 74, 0.14);
  background: rgba(255,255,255,0.7);
}

.section-image img {
  height: 100%;
  max-height: 560px;
  object-fit: cover;
}

/* =========================================
   6. Products
========================================= */
.product-categories {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 36px;
}

.product-category {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(201, 162, 74, 0.15);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
}

.product-category.reverse {
  grid-template-columns: 1.08fr 0.92fr;
}

.product-category.reverse .product-category-image {
  order: 2;
}

.product-category.reverse .product-category-content {
  order: 1;
}

.product-category-image {
  border-radius: 22px;
  overflow: hidden;
}

.product-category-image img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.product-category-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 6px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-item {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(201, 162, 74, 0.14);
  box-shadow: var(--shadow);
}

.gallery-item img {
  height: 280px;
  object-fit: cover;
}

/* =========================================
   Category Slider
========================================= */
.product-category-image.slider {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: 22px;
  background: #f7f3ec;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-category-image.slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  background: #f7f3ec;
}

.product-category-image.slider .slide.active {
  opacity: 1;
  z-index: 1;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
}

.slider-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(79, 68, 61, 0.28);
  transition: background 0.3s ease, transform 0.3s ease;
}

.slider-dots .dot.active {
  background: var(--gold);
  transform: scale(1.15);
}

/* =========================================
   Reviews
========================================= */
.review-highlight {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.82), rgba(191,216,193,0.18));
  border: 1px solid rgba(201, 162, 74, 0.16);
  box-shadow: var(--shadow);
}

.review-score {
  text-align: center;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(201, 162, 74, 0.14);
}

.review-score-number {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--text);
  margin-bottom: 10px;
}

.review-stars,
.testimonial-stars {
  color: var(--gold);
  letter-spacing: 0.18em;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.review-summary h3 {
  margin-bottom: 14px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  padding: 24px 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(201, 162, 74, 0.14);
  box-shadow: var(--shadow);
}

.testimonial-card p {
  margin-bottom: 0;
  font-style: italic;
  color: var(--text);
}

@media (max-width: 900px) {
  .review-highlight,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   7. Personalization
========================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 34px;
}

.step-card {
  padding: 26px 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(201, 162, 74, 0.14);
  box-shadow: var(--shadow);
}

.step-number {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(191,216,193,0.2));
  border: 1px solid rgba(201, 162, 74, 0.16);
  box-shadow: var(--shadow);
}

/* =========================================
   8. Process
========================================= */
.process-grid {
  align-items: start;
}

.timeline {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 16px;
  align-items: start;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 10px;
  box-shadow: 0 0 0 6px rgba(201, 162, 74, 0.14);
}

/* =========================================
   9. Etsy Highlight
========================================= */
.etsy-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(191,216,193,0.22), rgba(255,255,255,0.72));
  border: 1px solid rgba(201, 162, 74, 0.16);
  box-shadow: var(--shadow);
}

/* =========================================
   10. Contact
========================================= */
.contact-box {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  padding: 34px;
  border-radius: 30px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(201, 162, 74, 0.14);
  box-shadow: var(--shadow);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(201, 162, 74, 0.18);
  background: rgba(255,255,255,0.78);
  border-radius: 18px;
  padding: 16px 18px;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 74, 0.12);
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

/* =========================================
   11. Footer
========================================= */
.site-footer {
  padding: 26px 0 90px;
}

.footer-inner {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 162, 74, 0.16);
}

.footer-brand {
  display: block;
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--text-soft);
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--gold);
}

/* =========================================
   12. Sticky Etsy Button
========================================= */
.sticky-etsy {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--gold);
  color: #fffaf3;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(201, 162, 74, 0.28);
}

.sticky-etsy:hover {
  background: #b98f35;
}

/* =========================================
   13. Responsive
========================================= */
@media (max-width: 1100px) {
  .hero-grid,
  .split-grid,
  .contact-box,
  .product-category,
  .product-category.reverse {
    grid-template-columns: 1fr;
  }

  .product-category.reverse .product-category-image,
  .product-category.reverse .product-category-content {
    order: unset;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-card-stack {
    min-height: 720px;
  }

  .card-left {
    left: 40px;
  }

  .card-right {
    right: 40px;
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    top: 84px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(252,250,246,0.96);
    border: 1px solid rgba(201, 162, 74, 0.16);
    box-shadow: var(--shadow);
  }

  .site-nav.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-card-stack {
    min-height: 620px;
  }

  .hero-card-image {
    width: 240px;
  }

  .hero-card-image img {
    height: 340px;
  }

  .hero-logo-badge {
    width: 190px;
    height: 190px;
  }

  .badge-c {
    font-size: 5.6rem;
  }

  .badge-heart {
    right: 44px;
    bottom: 48px;
  }

  .cta-panel,
  .etsy-box,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand-name {
    font-size: 1.7rem;
  }

  .brand-sub {
    display: none;
  }

  .hero-card-stack {
    min-height: 540px;
  }

  .hero-card-image {
    width: 170px;
  }

  .hero-card-image img {
    height: 250px;
  }s

  .card-left {
    left: 0;
    top: 28px;
  }

  .card-right {
    right: 0;
    bottom: 20px;
  }

  .hero-logo-badge {
    width: 150px;
    height: 150px;
  }

  .badge-c {
    font-size: 4.2rem;
  }

  .badge-heart {
    right: 34px;
    bottom: 36px;
    font-size: 1.2rem;
  }

  .gallery-grid,
  .steps-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-box {
    padding: 24px;
  }

  .sticky-etsy {
    left: 16px;
    right: 16px;
    bottom: 16px;
    text-align: center;
    justify-content: center;
  }
}