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

:root {
  --primary-beige: #F5F0E6;
  --accent-teal: #6BAEA5;
  --accent-rust: #C97B63;
  --dark-navy: #1E2A44;
  --white: #FFFFFF;
  --gray-light: #E8E3D8;
  --gray-medium: #D4CCBE;
}

html {
  font-size: 16px;
}

body {
  font-family: Georgia, serif;
  background-color: var(--white);
  color: var(--dark-navy);
  line-height: 1.75;
  font-size: 19px;
}

a {
  color: var(--accent-teal);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

a:hover {
  border-bottom-color: var(--accent-teal);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Avenir Next', 'Avenir', sans-serif;
  font-weight: 700;
  color: var(--dark-navy);
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -1px;
}

h2 {
  font-size: 2.5rem;
  font-weight: 800;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-light);
  padding: 1.5rem 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(30, 42, 68, 0.05);
}

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

header .logo {
  font-family: 'Avenir Next', 'Avenir', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

header .logo img {
  width: 40px;
  height: 40px;
}

header .logo:hover {
  border-bottom: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 3rem;
  align-items: center;
}

nav a {
  font-family: 'Avenir Next', 'Avenir', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-navy);
  transition: color 0.3s ease;
}

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

main {
  margin-top: 100px;
}

.container {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 120px;
}

section {
  padding: 160px 0;
}

section.full-bleed {
  padding: 0;
  margin: 160px 0;
}

.hero-section {
  position: relative;
  height: 600px;
  background: var(--primary-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(30, 42, 68, 0.3);
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.3rem;
  color: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  margin-bottom: 1rem;
}

.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.content-block.image-left {
  grid-template-columns: 1fr 1fr;
}

.content-block.image-right {
  grid-template-columns: 1fr 1fr;
}

.content-block.image-right .image-section {
  order: 2;
}

.content-block.image-right .text-section {
  order: 1;
}

.image-section {
  position: relative;
}

.image-section img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
  max-width: 500px;
}

.image-section:hover img {
  transform: scale(1.02);
  filter: brightness(0.98);
}

.text-section h3 {
  margin-bottom: 1.5rem;
}

.text-section p {
  margin-bottom: 1.5rem;
  color: var(--dark-navy);
}

.text-section ul {
  list-style: none;
  margin-left: 0;
  margin-bottom: 1.5rem;
}

.text-section li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  color: var(--dark-navy);
}

.text-section li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-teal);
  font-weight: bold;
  font-size: 1.2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 4px rgba(30, 42, 68, 0.05);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(107, 174, 165, 0.1), 0 4px 12px rgba(30, 42, 68, 0.1);
}

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

.card-content {
  padding: 2rem;
}

.card-content h4 {
  margin-bottom: 1rem;
  font-family: 'Avenir Next', 'Avenir', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
}

.card-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--dark-navy);
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'Avenir Next', 'Avenir', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--accent-teal);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.highlight-box {
  background: var(--primary-beige);
  padding: 2.5rem;
  border-left: 4px solid var(--accent-teal);
  border-radius: 4px;
}

.highlight-box h4 {
  color: var(--accent-rust);
  margin-bottom: 1rem;
  font-family: 'Avenir Next', 'Avenir', sans-serif;
}

.highlight-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--dark-navy);
}

.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--gray-light);
  padding-bottom: 2rem;
}

.faq-question {
  cursor: pointer;
  font-family: 'Avenir Next', 'Avenir', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent-teal);
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--accent-teal);
  transition: transform 0.3s ease;
}

.faq-toggle.active {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-top: 0;
  color: var(--dark-navy);
}

.faq-answer.active {
  max-height: 500px;
  padding-top: 1.5rem;
}

.soft-invitation {
  background: var(--primary-beige);
  padding: 4rem;
  text-align: center;
  border-radius: 8px;
}

.soft-invitation h3 {
  color: var(--dark-navy);
  margin-bottom: 1rem;
}

.soft-invitation p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  color: var(--dark-navy);
}

.soft-invitation a {
  font-family: 'Avenir Next', 'Avenir', sans-serif;
  font-weight: 600;
  color: var(--accent-teal);
  border-bottom: 2px solid var(--accent-teal);
  transition: color 0.3s ease;
}

.soft-invitation a:hover {
  color: var(--accent-rust);
  border-bottom-color: var(--accent-rust);
}

footer {
  background: var(--dark-navy);
  color: var(--white);
  padding: 4rem 0 2rem 0;
  margin-top: 160px;
}

footer .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding: 0 120px;
}

footer h4 {
  color: var(--white);
  font-family: 'Avenir Next', 'Avenir', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 0.8rem;
}

footer a {
  color: var(--gray-light);
  border-bottom: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

footer .contact-info {
  margin-bottom: 1rem;
}

footer .contact-info p {
  color: var(--gray-light);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  padding: 0 120px;
  margin-top: 2rem;
}

footer .footer-bottom p {
  color: var(--gray-light);
  font-size: 0.85rem;
}

footer .footer-message {
  background: var(--primary-beige);
  color: var(--dark-navy);
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  margin-top: 2rem;
}

.disclaimer {
  background: var(--gray-light);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  border-left: 4px solid var(--accent-rust);
}

.disclaimer h4 {
  color: var(--accent-rust);
  margin-bottom: 0.5rem;
  font-family: 'Avenir Next', 'Avenir', sans-serif;
}

.disclaimer p {
  font-size: 0.95rem;
  color: var(--dark-navy);
  line-height: 1.6;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-family: 'Avenir Next', 'Avenir', sans-serif;
  font-weight: 600;
  color: var(--dark-navy);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  font-family: Georgia, serif;
  font-size: 1rem;
  color: var(--dark-navy);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-teal);
}

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

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--accent-teal);
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Avenir Next', 'Avenir', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.btn:hover {
  background: var(--accent-rust);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-teal);
  border: 2px solid var(--accent-teal);
}

.btn-secondary:hover {
  background: var(--primary-beige);
  color: var(--accent-rust);
  border-color: var(--accent-rust);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-navy);
  color: var(--white);
  padding: 2rem;
  box-shadow: 0 -2px 8px rgba(30, 42, 68, 0.2);
  z-index: 999;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-banner p {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

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

.cookie-buttons button {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Avenir Next', 'Avenir', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  transition: background 0.3s ease;
}

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

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

.cookie-reject {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.thank-you-box {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--primary-beige);
  border-radius: 8px;
  margin: 4rem 0;
}

.thank-you-box h2 {
  color: var(--accent-teal);
  margin-bottom: 1.5rem;
}

.thank-you-box p {
  font-size: 1.1rem;
  color: var(--dark-navy);
  margin-bottom: 2rem;
}

.about-intro {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: var(--dark-navy);
}

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

  header .logo {
    font-size: 1.2rem;
  }

  nav ul {
    gap: 1.5rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  body {
    font-size: 16px;
  }

  .container {
    padding: 0 30px;
  }

  section {
    padding: 80px 0;
  }

  footer .container {
    grid-template-columns: 1fr;
    padding: 0 30px;
  }

  footer .footer-bottom {
    padding: 0 30px;
  }

  .content-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-content p {
    font-size: 1rem;
  }

  .cookie-banner .container {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
