@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital@0;1&family=Playfair+Display:wght@400;600;700&display=swap');

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

html, body {
  scroll-behavior: smooth;
}

body {
  background-color: #f5ead8;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(212, 186, 140, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 90, 43, 0.08) 0%, transparent 50%);
  color: #2b1f14;
  font-family: 'Crimson Text', serif;
  font-size: 18px;
  line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: #1a0f08;
  letter-spacing: 0.5px;
}

h1 {
  font-size: clamp(32px, 8vw, 64px);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(28px, 6vw, 48px);
  margin-bottom: 20px;
}

h3 {
  font-size: clamp(22px, 4vw, 32px);
  margin-bottom: 16px;
}

p {
  margin-bottom: 18px;
  color: #3d2817;
  font-style: normal;
}

a {
  color: #8b5a2b;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
}

a:hover {
  color: #d4ba8c;
}

header {
  background: linear-gradient(180deg, #faf6f0 0%, #f5ead8 100%);
  border-bottom: 2px solid #e8dcc8;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(43, 31, 20, 0.08);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a0f08;
  letter-spacing: 1px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo::before {
  content: '✧';
  font-size: 20px;
  color: #d4ba8c;
}

nav {
  display: none;
}

nav.active {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #faf6f0;
  border-bottom: 2px solid #e8dcc8;
  padding: 20px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

nav a {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: #2b1f14;
  transition: all 0.25s ease;
}

nav a:hover {
  color: #d4ba8c;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #1a0f08;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.cta-button {
  padding: 12px 32px;
  border: 2px solid #8b5a2b;
  background: transparent;
  color: #8b5a2b;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #8b5a2b;
  z-index: -1;
  transition: left 0.25s ease;
}

.cta-button:hover {
  color: #faf6f0;
  transform: scale(1.03);
}

.cta-button:hover::before {
  left: 0;
}

.wax-seal-button {
  padding: 14px 36px;
  background: radial-gradient(circle at 30% 30%, #d4ba8c, #8b5a2b);
  border: 3px solid #6b4423;
  color: #faf6f0;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: 
    inset 0 -2px 5px rgba(0,0,0,0.3),
    0 4px 8px rgba(43, 31, 20, 0.2);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.wax-seal-button::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px dashed #faf6f0;
  border-radius: 50%;
  opacity: 0.6;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wax-seal-button:hover {
  transform: scale(1.05);
  box-shadow: 
    inset 0 -2px 5px rgba(0,0,0,0.4),
    0 6px 12px rgba(43, 31, 20, 0.3);
}

section {
  padding: 60px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.organic-shape {
  position: relative;
  border-radius: 65% 35% 52% 48% / 55% 48% 52% 45%;
  overflow: hidden;
}

.organic-shape.rotated-1 {
  border-radius: 72% 28% 66% 34% / 40% 50% 50% 60%;
}

.organic-shape.rotated-2 {
  border-radius: 45% 55% 60% 40% / 63% 35% 65% 37%;
}

.organic-shape.rotated-3 {
  border-radius: 25% 75% 42% 58% / 51% 71% 29% 49%;
}

.asymmetric-wave {
  clip-path: polygon(0 0, 100% 5%, 100% 85%, 85% 95%, 50% 100%, 15% 92%, 0 80%);
  padding: 40px;
}

.crinkled-page {
  box-shadow: 
    -2px 4px 8px rgba(43, 31, 20, 0.15),
    -5px 12px 20px rgba(43, 31, 20, 0.1);
  position: relative;
}

.crinkled-page::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 15%;
  width: 20%;
  height: 20px;
  border: 2px solid rgba(139, 90, 43, 0.3);
  border-radius: 50%;
  transform: rotate(-15deg);
  opacity: 0.5;
}

.ink-bleed {
  background: linear-gradient(135deg, transparent 0%, rgba(139, 90, 43, 0.08) 100%);
  position: relative;
}

.ink-bleed::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 20% 80%, rgba(139, 90, 43, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.parchment-overlay {
  background: 
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(139, 90, 43, 0.02) 2px, rgba(139, 90, 43, 0.02) 4px),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(139, 90, 43, 0.02) 2px, rgba(139, 90, 43, 0.02) 4px);
  position: relative;
}

.text-overlay {
  position: relative;
  z-index: 2;
}

.floated-image {
  max-width: 100%;
  height: auto;
  border-radius: 8% 92% 78% 22% / 32% 58% 42% 68%;
  box-shadow: 
    2px 8px 16px rgba(43, 31, 20, 0.15),
    -3px 2px 8px rgba(139, 90, 43, 0.1);
  position: relative;
}

.floated-image::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: rgba(139, 90, 43, 0.2);
  border-radius: inherit;
  z-index: -1;
  opacity: 0.7;
}

@media (max-width: 768px) {
  nav {
    display: none;
  }

  nav.active {
    display: flex;
    flex-direction: column;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .menu-toggle {
    display: flex;
  }

  section {
    padding: 40px 16px;
  }

  .wax-seal-button {
    width: 110px;
    height: 110px;
    font-size: 12px;
  }
}

@media (min-width: 769px) {
  nav {
    display: block !important;
  }

  nav ul {
    flex-direction: row;
  }
}

footer {
  background: linear-gradient(180deg, #3d2817 0%, #2b1f14 100%);
  color: #f5ead8;
  padding: 60px 20px;
  margin-top: 60px;
  border-radius: 85% 15% 72% 28% / 32% 65% 35% 68%;
  margin-left: 20px;
  margin-right: 20px;
}

footer h3 {
  color: #d4ba8c;
  font-size: 18px;
}

footer a {
  color: #d4ba8c;
}

footer a:hover {
  color: #faf6f0;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-column p {
  font-size: 16px;
  margin-bottom: 12px;
  color: #e8dcc8;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(43, 31, 20, 0.95);
  color: #f5ead8;
  padding: 20px;
  z-index: 9999;
  display: none;
  border-top: 3px solid #d4ba8c;
}

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  flex: 1;
  min-width: 200px;
}

.cookie-banner button {
  padding: 10px 20px;
  background: #d4ba8c;
  color: #2b1f14;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.25s ease;
  border-radius: 4px;
  font-family: 'Playfair Display', serif;
}

.cookie-banner button:hover {
  background: #faf6f0;
  transform: scale(1.02);
}

.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/hero-banner.jpg') center/cover no-repeat;
  border-radius: 45% 55% 52% 48% / 48% 45% 55% 52%;
  overflow: hidden;
  margin: 20px;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(139, 90, 43, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #faf6f0;
  padding: 40px 20px;
  max-width: 700px;
}

.hero-content h1 {
  color: #faf6f0;
  text-shadow: 2px 2px 4px rgba(43, 31, 20, 0.5);
  margin-bottom: 20px;
}

.hero-content .subtitle {
  font-size: 20px;
  font-style: italic;
  margin-bottom: 40px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(43, 31, 20, 0.3);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin: 40px 0;
}

@media (min-width: 769px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: #faf6f0;
  border: 2px solid #e8dcc8;
  border-radius: 35% 65% 42% 58% / 61% 38% 62% 39%;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 
    0 4px 12px rgba(43, 31, 20, 0.1),
    inset 0 1px 2px rgba(255, 255, 255, 0.5);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: scale(1.03);
  box-shadow: 
    0 8px 20px rgba(43, 31, 20, 0.2),
    inset 0 1px 2px rgba(255, 255, 255, 0.5);
}

.product-card-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.product-card-content {
  padding: 24px;
}

.product-badge {
  display: inline-block;
  background: #d4ba8c;
  color: #1a0f08;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

.product-name {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1a0f08;
}

.product-meta {
  font-size: 14px;
  color: #8b5a2b;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8dcc8;
}

.product-description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #3d2817;
}

.product-price {
  font-size: 18px;
  font-weight: bold;
  color: #8b5a2b;
  margin: 16px 0;
  font-family: 'Playfair Display', serif;
}

.product-button {
  width: 100%;
  padding: 12px;
  background: #8b5a2b;
  color: #faf6f0;
  border: none;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
}

.product-button:hover {
  background: #6b4423;
  transform: scale(0.98);
}

.switch-buttons {
  display: flex;
  gap: 12px;
  margin: 30px 0;
  justify-content: center;
  flex-wrap: wrap;
}

.switch-btn {
  padding: 12px 24px;
  background: #e8dcc8;
  border: 2px solid #8b5a2b;
  color: #1a0f08;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  border-radius: 45% 55% 50% 50% / 50% 50% 50% 50%;
}

.switch-btn.active {
  background: #8b5a2b;
  color: #faf6f0;
}

.switch-btn:hover {
  transform: scale(1.03);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  margin-bottom: 8px;
  color: #1a0f08;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e8dcc8;
  background: #faf6f0;
  color: #2b1f14;
  font-family: 'Crimson Text', serif;
  font-size: 16px;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8b5a2b;
  box-shadow: 0 0 8px rgba(139, 90, 43, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 4px;
  cursor: pointer;
}

.checkbox-group label {
  margin: 0;
  font-size: 14px;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: #8b5a2b;
  color: #faf6f0;
  border: none;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  letter-spacing: 1px;
  transition: all 0.25s ease;
  text-transform: uppercase;
}

.form-submit:hover {
  background: #6b4423;
  transform: scale(0.98);
}

.thank-you-content {
  text-align: center;
  padding: 60px 20px;
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-content h1 {
  margin-bottom: 30px;
}

.thank-you-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.back-button {
  display: inline-block;
  padding: 12px 32px;
  background: #8b5a2b;
  color: #faf6f0;
  border: none;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.25s ease;
  text-decoration: none;
  text-transform: uppercase;
}

.back-button:hover {
  background: #6b4423;
  transform: scale(1.02);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.legal-content li {
  margin-bottom: 12px;
}

.row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  margin: 40px 0;
}

@media (min-width: 769px) {
  .row {
    grid-template-columns: 1fr 1fr;
  }
}

.row img {
  max-width: 100%;
  height: auto;
}

.text-column {
  padding: 20px;
}

.image-column {
  padding: 20px;
}

.colored-section {
  background: linear-gradient(135deg, #3d2817 0%, #2b1f14 100%);
  color: #faf6f0;
}

.colored-section h2,
.colored-section h3 {
  color: #d4ba8c;
}

.colored-section p {
  color: #e8dcc8;
}

.colored-section a {
  color: #d4ba8c;
}

.testimonial-block {
  background: #e8dcc8;
  padding: 30px;
  border-radius: 45% 55% 50% 50% / 50% 50% 45% 55%;
  margin: 20px 0;
  border-left: 4px solid #8b5a2b;
}

.testimonial-block p {
  font-style: italic;
  color: #2b1f14;
  margin-bottom: 12px;
}

.testimonial-author {
  font-weight: bold;
  color: #1a0f08;
  font-size: 16px;
}

.inline-image {
  float: left;
  margin: 0 20px 20px 0;
  max-width: 200px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(43, 31, 20, 0.2);
}

@media (max-width: 768px) {
  .inline-image {
    float: none;
    margin: 0 0 20px 0;
    max-width: 100%;
  }
}

.highlight-text {
  color: #d4ba8c;
  font-weight: bold;
  font-style: italic;
}

.decorative-divider {
  text-align: center;
  font-size: 24px;
  color: #8b5a2b;
  margin: 40px 0;
  opacity: 0.6;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
