@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Source+Sans+Pro:wght@400;500;600&display=swap');

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

html, body {
  font-family: 'Source Sans Pro', sans-serif;
  background-color: #ffffff;
  color: #2e2e2e;
  font-size: 17px;
  line-height: 1.85;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5.1rem;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #2e2e2e;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: #2e2e2e;
}

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2e2e2e;
}

p {
  margin-bottom: 1.5rem;
  color: #2e2e2e;
}

a {
  color: #d4a017;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #b2c8b6;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: transparent;
  padding: 2rem 2rem;
  transition: background-color 0.4s ease;
}

header.scrolled {
  background-color: rgba(46, 46, 46, 0.95);
}

header .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #2e2e2e;
  text-decoration: none;
  transition: color 0.3s ease;
}

header.scrolled .brand {
  color: #d4a017;
}

nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: #2e2e2e;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

header.scrolled nav a {
  color: #ffffff;
}

nav a:hover {
  color: #d4a017;
}

.hero {
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #2e2e2e 0%, #8c7853 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 4rem 2rem;
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 60%;
  animation: fadeUpStagger 0.8s ease-out;
}

.hero h1 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero .subtitle {
  color: #d4a017;
  font-size: 1.2rem;
  font-style: italic;
}

section {
  padding: 160px 2rem;
  max-width: 1520px;
  margin: 0 auto;
}

section.alt-layout {
  padding-left: 15%;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4a017, transparent);
  margin: 80px 0;
}

.card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: #d4a017;
  box-shadow: inset 0 0 30px rgba(212, 160, 23, 0.15);
  transform: scale(1.03);
}

.card-with-image {
  background-size: cover;
  background-position: center;
  color: #ffffff;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.card-with-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(212, 160, 23, 0.3) 0%, rgba(46, 46, 46, 0.8) 100%);
}

.card-with-image h3,
.card-with-image p {
  position: relative;
  z-index: 5;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.button {
  display: inline-block;
  background-color: transparent;
  color: #d4a017;
  border: 2px solid #d4a017;
  padding: 0.75rem 2rem;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.button:hover {
  background: linear-gradient(135deg, #b2c8b6, #d4a017);
  color: #2e2e2e;
  transform: scale(1.04);
}

.button:active {
  box-shadow: inset 0 2px 4px rgba(46, 46, 46, 0.3);
}

footer {
  background-color: #2e2e2e;
  color: #ffffff;
  padding: 3rem 2rem;
  margin-top: 4rem;
}

footer a {
  color: #d4a017;
}

footer a:hover {
  color: #b2c8b6;
}

.footer-content {
  max-width: 1520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #ffffff;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #d4a017;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2e2e2e;
  color: #ffffff;
  padding: 1.5rem 2rem;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid #d4a017;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-message {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-button {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-button.accept {
  background-color: #d4a017;
  color: #2e2e2e;
}

.cookie-button.accept:hover {
  background-color: #b2c8b6;
}

.cookie-button.reject {
  background-color: transparent;
  color: #d4a017;
  border: 1px solid #d4a017;
}

.cookie-button.reject:hover {
  background-color: #d4a017;
  color: #2e2e2e;
}

.cookie-button.learn {
  background-color: transparent;
  color: #d4a017;
  border: 1px solid #d4a017;
}

.cookie-button.learn:hover {
  background-color: #d4a017;
  color: #2e2e2e;
}

.disclaimer-block {
  background-color: #f5f5f5;
  border-left: 4px solid #d4a017;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-block h3 {
  color: #2e2e2e;
  margin-bottom: 1rem;
}

.disclaimer-block p {
  color: #2e2e2e;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #2e2e2e;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d4a017;
  border-radius: 4px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #b2c8b6;
  box-shadow: 0 0 0 3px rgba(178, 200, 182, 0.1);
}

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

.form-disclaimer {
  background-color: #f5f5f5;
  padding: 1rem;
  margin-top: 1.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #2e2e2e;
}

.catalog-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.catalog-item:hover {
  border-color: #d4a017;
  box-shadow: inset 0 0 20px rgba(212, 160, 23, 0.1);
}

.catalog-item h3 {
  color: #2e2e2e;
  margin-bottom: 1rem;
}

.catalog-item ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.catalog-item ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #2e2e2e;
}

.catalog-item ul li:before {
  content: '▪';
  position: absolute;
  left: 0;
  color: #d4a017;
}

.thank-you-message {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-message h1 {
  margin-bottom: 1.5rem;
}

.thank-you-message p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

@keyframes fadeUpStagger {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  section {
    padding: 80px 1rem;
  }

  section.alt-layout {
    padding-left: 1rem;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-content {
    max-width: 100%;
  }

  nav {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
  }

  header {
    padding: 1rem;
  }

  header nav {
    width: 100%;
    gap: 0.5rem;
  }
}
