:root {
  --primary-bg: #fdf4f5;
  --accent-primary: #f06292;
  --accent-dark: #c2185b;
  --white: #ffffff;
  --light-pink: #fce4ec;
  --text-dark: #333333;
  --text-light: #666666;
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-hover: 0 10px 24px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', 'Georgia', serif;
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.84;
  font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Didone', serif;
  font-weight: 500;
  letter-spacing: -1px;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.05);
}

h1 {
  font-size: 48px;
  margin-bottom: 32px;
  line-height: 1.2;
}

h2 {
  font-size: 38px;
  margin-bottom: 24px;
  line-height: 1.2;
  margin-top: 40px;
}

h3 {
  font-size: 28px;
  margin-bottom: 16px;
  margin-top: 24px;
}

p {
  max-width: 740px;
  margin-bottom: 16px;
  color: var(--text-dark);
  font-weight: 400;
}

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-dark);
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 84px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 28px;
  }
}

.full-bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0);
  z-index: 100;
  transition: background-color 0.32s ease, box-shadow 0.32s ease;
  padding: 20px 0;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 84px;
}

@media (max-width: 768px) {
  .header-content {
    padding: 0 28px;
  }
}

.logo {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.8px;
}

.logo img {
  height: 40px;
  width: auto;
  margin-right: 12px;
  vertical-align: middle;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-links a:hover {
  color: var(--accent-primary);
}

@media (max-width: 768px) {
  .nav-links {
    gap: 16px;
    font-size: 14px;
  }
}

#hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 140px;
}

#hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(253, 244, 245, 0.65);
  z-index: 1;
}

#hero h1 {
  position: relative;
  z-index: 2;
  color: var(--text-dark);
  text-align: center;
  max-width: 900px;
  font-size: 52px;
}

@media (max-width: 768px) {
  #hero {
    height: 400px;
  }
  
  #hero h1 {
    font-size: 32px;
  }
}

section {
  margin-bottom: 180px;
}

@media (max-width: 768px) {
  section {
    margin-bottom: 100px;
  }
}

.image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin: 32px 0;
}

.image-block {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  transition: box-shadow 0.38s ease;
}

.image-block img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.38s ease;
}

.image-block:hover {
  box-shadow: var(--shadow-hover);
}

.image-block:hover img {
  transform: scale(1.035);
  filter: brightness(0.98) drop-shadow(0 0 8px rgba(240, 98, 146, 0.06));
}

.image-text-layout {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  margin: 80px 0;
}

.image-text-layout.reverse {
  flex-direction: row-reverse;
}

.image-text-layout .content {
  flex: 1;
}

.image-text-layout .image {
  flex: 0 0 62%;
}

.image-text-layout .image.narrow {
  flex: 0 0 38%;
}

@media (max-width: 768px) {
  .image-text-layout,
  .image-text-layout.reverse {
    flex-direction: column;
    gap: 32px;
  }
  
  .image-text-layout .image,
  .image-text-layout .image.narrow {
    flex: 1;
    max-width: 100%;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  background: var(--white);
}

table th {
  background: var(--light-pink);
  padding: 16px;
  text-align: left;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  border-bottom: 2px solid var(--accent-primary);
}

table td {
  padding: 14px 16px;
  border-bottom: 1px solid #e0e0e0;
}

table tr:hover {
  background: #fafafa;
}

.accordion {
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  margin: 16px 0;
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid #e0e0e0;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  background: var(--white);
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: background 0.3s ease;
  user-select: none;
}

.accordion-header:hover {
  background: var(--light-pink);
}

.accordion-header::after {
  content: '+';
  font-size: 24px;
  color: var(--accent-primary);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--light-pink);
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
}

.accordion-content p {
  padding: 20px;
  margin: 0;
  line-height: 1.84;
}

.disclaimer {
  background: var(--light-pink);
  border-left: 4px solid var(--accent-primary);
  padding: 24px;
  margin: 32px 0;
  border-radius: 2px;
}

.disclaimer h3 {
  margin-top: 0;
  color: var(--accent-dark);
}

.cta-button {
  display: inline-block;
  background: var(--accent-primary);
  color: var(--white);
  padding: 14px 28px;
  margin: 16px 12px 16px 0;
  border-radius: 2px;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: 'Lora', serif;
}

.cta-button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.cta-button.secondary {
  background: var(--white);
  color: var(--accent-primary);
  border: 2px solid var(--accent-primary);
  padding: 12px 26px;
}

.cta-button.secondary:hover {
  background: var(--light-pink);
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

form {
  max-width: 600px;
  margin: 32px 0;
  background: var(--light-pink);
  padding: 32px;
  border-radius: 2px;
}

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

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 2px;
  font-family: 'Lora', serif;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: var(--white);
}

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

.form-disclaimer {
  font-size: 13px;
  color: var(--text-light);
  margin: 16px 0;
  padding: 12px;
  background: rgba(240, 98, 146, 0.05);
  border-radius: 2px;
}

footer {
  background: var(--white);
  border-top: 1px solid #e0e0e0;
  padding: 60px 84px;
  margin-top: 140px;
}

@media (max-width: 768px) {
  footer {
    padding: 40px 28px;
  }
}

.footer-content {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.footer-section h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-section p {
  font-size: 14px;
  margin: 8px 0;
}

.footer-section a {
  font-size: 14px;
  display: block;
  margin: 6px 0;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline;
  margin: 0;
  padding: 8px 12px;
  background: var(--light-pink);
  border-radius: 2px;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid #e0e0e0;
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  max-width: 1500px;
  margin: 0 auto;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  overflow: auto;
}

.modal.active {
  display: block;
}

.modal-content {
  background: var(--white);
  margin: 5% auto;
  padding: 40px;
  border-radius: 4px;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 28px;
  font-weight: bold;
  color: var(--text-light);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.modal-close:hover {
  color: var(--accent-primary);
}

.modal h2 {
  margin-top: 0;
}

.modal p {
  line-height: 1.8;
  color: var(--text-dark);
}

.modal ul, .modal ol {
  margin-left: 20px;
  margin-bottom: 16px;
}

.modal li {
  margin-bottom: 8px;
  line-height: 1.8;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid #e0e0e0;
  padding: 20px;
  display: none;
  z-index: 99;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

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

@media (max-width: 768px) {
  .cookie-banner.active {
    flex-direction: column;
    align-items: stretch;
  }
}

.cookie-text {
  flex: 1;
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .cookie-buttons {
    flex-direction: column;
    gap: 8px;
  }
}

.cookie-button {
  padding: 10px 16px;
  border: none;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Lora', serif;
}

.cookie-button.accept {
  background: var(--accent-primary);
  color: var(--white);
}

.cookie-button.accept:hover {
  background: var(--accent-dark);
}

.cookie-button.reject {
  background: #f5f5f5;
  color: var(--text-dark);
  border: 1px solid #ddd;
}

.cookie-button.reject:hover {
  background: #e8e8e8;
}

.cookie-button.info {
  background: transparent;
  color: var(--accent-primary);
  text-decoration: underline;
  padding: 10px 0;
}

.cookie-button.info:hover {
  color: var(--accent-dark);
}

.text-balance {
  text-wrap: balance;
}

.message-text {
  font-size: 15px;
  color: var(--text-light);
  font-style: italic;
  margin: 24px 0;
}

ul, ol {
  margin: 16px 0 16px 24px;
}

li {
  margin-bottom: 8px;
  line-height: 1.8;
}

.section-intro {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 740px;
}
