:root {
  --color-ivory: #FDFBF7;
  --color-sage: #A8C4B8;
  --color-rose: #D9B9C8;
  --color-graphite: #4A4A4A;
  --color-white: #FFFFFF;
  --color-light-gray: #F5F5F5;
  --color-gold: #D4AF8C;
}

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

html, body {
  height: 100%;
}

body {
  background-color: var(--color-ivory);
  color: var(--color-graphite);
  font-family: 'Georgia', serif;
  font-size: 19px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--color-graphite);
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 1.2rem;
}

h4 {
  font-family: 'Neue Haas Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

header {
  background-color: var(--color-white);
  border-bottom: 1px solid #E8E8E8;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--color-graphite);
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 1px;
}

.logo:hover {
  color: var(--color-sage);
}

nav {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

nav a {
  color: var(--color-graphite);
  text-decoration: none;
  font-size: 0.95rem;
  font-family: 'Neue Haas Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

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

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-sage);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

main {
  min-height: calc(100vh - 200px);
  max-width: 1620px;
  margin: 0 auto;
  padding: 0 160px;
}

section {
  padding: 180px 0;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
}

.hero-section {
  padding: 0;
  background: linear-gradient(135deg, var(--color-ivory) 0%, #FAF9F6 100%);
}

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

.hero-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 2px;
}

.section-divider {
  border-top: 1px solid #D4AF8C;
  margin: 4rem 0;
  opacity: 0.5;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(168, 196, 184, 0.08), transparent);
  pointer-events: none;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.card h3 {
  color: var(--color-graphite);
  margin-bottom: 1rem;
}

.card p {
  font-size: 0.95rem;
  text-align: left;
  margin-bottom: 1.5rem;
}

.luxury-split {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 4rem;
  align-items: center;
  margin: 3rem 0;
}

.luxury-split.reverse {
  grid-template-columns: 40% 60%;
}

.luxury-split img {
  width: 100%;
  height: auto;
  border-radius: 2px;
}

.faq-item {
  background: var(--color-white);
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--color-sage);
  padding: 0;
  border-radius: 2px;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #F9F7F3;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: #F9F7F3;
}

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

.faq-toggle {
  font-size: 1.2rem;
  color: var(--color-sage);
  transition: transform 0.5s ease;
}

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

button, .btn {
  background-color: var(--color-graphite);
  color: var(--color-white);
  border: none;
  padding: 1.2rem 2.5rem;
  font-size: 1rem;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Neue Haas Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 500;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

button:hover, .btn:hover {
  background-color: var(--color-sage);
  box-shadow: 0 4px 12px rgba(168, 196, 184, 0.3);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--color-sage);
  color: var(--color-graphite);
}

.btn-secondary:hover {
  background-color: var(--color-graphite);
  color: var(--color-white);
}

form {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: 4px;
  max-width: 600px;
  margin: 2rem auto;
}

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

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.8rem;
  font-family: 'Neue Haas Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.95rem;
}

input[type="email"],
textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #D4C0C0;
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  color: var(--color-graphite);
  background-color: #FAFAF8;
  transition: border-color 0.3s ease;
}

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

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

.disclaimer {
  background-color: #F9F7F3;
  border-left: 3px solid var(--color-rose);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 2px;
  font-size: 0.95rem;
  color: var(--color-graphite);
}

.disclaimer p {
  margin-bottom: 0.5rem;
}

.disclaimer p:last-child {
  margin-bottom: 0;
}

footer {
  background-color: var(--color-white);
  border-top: 1px solid #E8E8E8;
  padding: 4rem 160px;
  margin-top: 4rem;
}

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

.footer-section h4 {
  font-family: 'Neue Haas Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-graphite);
}

.footer-section p {
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  text-align: left;
}

.footer-section a {
  color: var(--color-sage);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--color-graphite);
}

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

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin: 3rem 0;
}

.blog-card {
  background: var(--color-white);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.blog-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog-card-content {
  padding: 2rem;
}

.blog-card h3 {
  margin-bottom: 1rem;
}

.blog-card p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.blog-card a {
  color: var(--color-sage);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.blog-card a:hover {
  color: var(--color-graphite);
}

.article-meta {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 1rem;
  font-style: italic;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-top: 1px solid #E8E8E8;
  padding: 1.5rem;
  z-index: 2000;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(500px);
  transition: transform 0.4s ease;
  max-height: 200px;
  overflow-y: auto;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1620px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--color-graphite);
}

.cookie-text a {
  color: var(--color-sage);
  text-decoration: none;
}

.cookie-text a:hover {
  text-decoration: underline;
}

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

.cookie-buttons button {
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  border-radius: 6px;
}

.cookie-buttons .btn-primary {
  background-color: var(--color-sage);
  color: var(--color-graphite);
}

.cookie-buttons .btn-primary:hover {
  background-color: var(--color-graphite);
  color: var(--color-white);
}

.cookie-buttons .btn-secondary {
  background-color: #E8E8E8;
  color: var(--color-graphite);
}

.cookie-buttons .btn-secondary:hover {
  background-color: #D0D0D0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (max-width: 992px) {
  header .container,
  main {
    padding: 0 80px;
  }

  footer {
    padding: 3rem 80px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .luxury-split,
  .luxury-split.reverse {
    grid-template-columns: 1fr;
  }

  nav {
    gap: 1.5rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  footer {
    padding: 2rem 40px;
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  nav {
    gap: 1rem;
    font-size: 0.85rem;
  }

  section {
    padding: 80px 0;
  }

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

  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-buttons button {
    flex: 1;
  }

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

  .hero-image {
    max-height: 300px;
  }
}

@media (max-width: 576px) {
  header .container,
  main {
    padding: 0 20px;
  }

  footer {
    padding: 1.5rem 20px;
  }

  header {
    padding: 1rem 0;
  }

  header .container {
    flex-direction: column;
    gap: 1rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  nav {
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
  }

  section {
    padding: 40px 0;
  }

  button, .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  form {
    padding: 1.5rem;
  }

  .faq-question {
    padding: 1rem;
  }

  .faq-answer {
    padding: 0 1rem;
  }

  .faq-answer.active {
    padding: 1rem;
  }

  .cookie-text {
    font-size: 0.85rem;
  }
}
