* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #b8a58a;
  color: #1b1b1b;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  animation: pageFade 2.4s ease forwards;
}

/* NAVIGATION */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 58px;
  height: auto;
}

.logo-container h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: #1b1b1b;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.book-btn {
  background: #2f4638;
  color: #f4efe7;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: 0.25s ease;
}

.book-btn:hover {
  background: #3e5a49;
}

/* HEADER */

.page-header {
  min-height: 70vh;
  padding: 40px 8%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background:
    linear-gradient(rgba(184,165,138,0.82), rgba(184,165,138,0.9)),
    url('resources-bg.jpg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-title {
  max-width: 780px;
  margin-top: 120px;
  animation: softRise 2s ease forwards;
}

.page-title h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(72px, 10vw, 130px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}

.page-title p {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.8;
}

/* ABOUT */

.about-page {
  background: #c2b59b;
}

.about-intro {
  padding: 120px 8%;
  max-width: 920px;
  animation: softRise 2s ease forwards;
}

.about-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 36px;
}

.about-intro p {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 24px;
}

/* PHILOSOPHY */

.philosophy-section {
  padding: 0 8% 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.philosophy-block {
  padding: 48px;
  border: 1px solid rgba(27,27,27,0.16);
  min-height: 320px;
  animation: softRise 2s ease forwards;
}

.philosophy-block span {
  display: block;
  font-size: 13px;
  letter-spacing: 0.12em;
  opacity: 0.7;
  margin-bottom: 44px;
}

.philosophy-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 22px;
}

.philosophy-block p {
  font-size: 16px;
  line-height: 1.8;
}

/* BOOKING */

.booking-section {
  padding: 120px 8%;
  background: #b8a58a;
  animation: softRise 2s ease forwards;
}

.booking-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 24px;
}

.booking-section p {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 36px;
}

/* FOOTER */

.footer {
  padding: 40px 8%;
  border-top: 1px solid rgba(27,27,27,0.12);
  font-size: 14px;
  text-align: center;
  animation: softRise 2s ease forwards;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1rem;
}

.social-icons a {
  color: #2f4638;
  font-size: 1.5rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.social-icons a:hover {
  opacity: 0.7;
}

/* MOBILE */

@media (max-width: 768px) {

  .page-header {
    padding: 30px 24px;
    min-height: 70vh;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .nav-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav-links a {
    font-size: 0.78rem;
    letter-spacing: 1px;
  }

  .page-title {
    margin-top: 60px;
    padding-bottom: 40px;
  }

  .page-title h1 {
    font-size: 64px;
    line-height: 0.95;
  }

  .page-title p {
    font-size: 16px;
    line-height: 1.8;
    max-width: 320px;
  }

  .about-intro {
    padding: 80px 24px;
  }

  .about-intro h2 {
    font-size: 38px;
  }

  .philosophy-section {
    grid-template-columns: 1fr;
    padding: 0 24px 80px;
  }

  .philosophy-block {
    padding: 36px 28px;
  }

  .booking-section {
    padding: 80px 24px;
  }

  .booking-section h2 {
    font-size: 38px;
  }

  .footer {
    padding: 32px 24px;
  }

}

/* PAGE TRANSITIONS */

@keyframes pageFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes softRise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   Resources Page
========================================== */

.resources-heading {
    max-width: 1100px;
    margin: 40px auto 20px;
    padding: 0 24px;
}

.resources-heading h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 3rem;
    color: #2F4538;
    margin-bottom: 12px;
}

.resources-heading p {
    max-width: 700px;
    color: #555;
    line-height: 1.8;
}

.resources-grid {
    max-width: 1100px;
    margin: 10px auto 80px;
    padding: 0 24px;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.resource-card {
    background: #ddd0bc;
    border-radius: 20px;
    padding: 36px;
    border: 1px solid rgba(47, 69, 56, 0.12);
    box-shadow: 0 3px 10px rgba(47, 70, 56, 0.04);
    transition: all 0.3s ease;

    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(47, 70, 56, 0.08);
}

.resource-card.featured {
    grid-column: 1 / -1;
}

.resource-tag {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2F4538;
}

.resource-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    color: #2F4538;
    margin-bottom: 18px;
}

.resource-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;

    flex-grow: 1;
}

.resource-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    color: #2F4538;
    transition: gap 0.2s ease;
}

.resource-btn:hover {
    gap: 14px;
}

@media (max-width: 768px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .resource-card.featured {
        grid-column: auto;
    }

    .resource-card {
        padding: 28px;
    }

    .resource-card h3 {
        font-size: 1.8rem;
    }
}

/* ARTICLE PAGE */

.article-page {
  background: #b8a58a;
}

.article-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 35px 32px 110px;
  border-top: 1px solid rgba(47, 70, 56, 0.15);
}

.back-link {
  display: inline-block;
  color: #2f4638;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 50px;
  transition: opacity 0.2s ease;
}

.back-link:hover {
  opacity: 0.7;
}

.article-meta {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: #2f4638;
  margin-bottom: 40px;
}

.article-content p {
  font-size: 1.08rem;
  line-height: 2;
  max-width: 760px;
  margin-bottom: 24px;
}

.article-content ul {
  max-width: 760px;
  margin: 0 0 24px;
  padding-left: 1.2rem;
}

.article-content li {
  font-size: 1.08rem;
  line-height: 1.5;
  margin-bottom: 4px;
}

.article-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  color: #2f4638;
  margin: 72px 0 24px;
}

.article-content h3 {
  font-size: 1.3rem;
  margin: 38px 0 12px;
}

.article-cta {
  margin-top: 90px;
  padding: 56px;
  border: 1px solid rgba(47, 70, 56, 0.25);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.article-cta h2 {
  margin-top: 0;
}

/* Article Title */

.article-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1.05;
  color: #2f4638;
  margin-bottom: 20px;
}

.article-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 48px;
  color: #3f3f3f;
}

.page-subtitle {
  max-width: 620px;
}