/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #2d2d2d;
  line-height: 1.7;
  background: #faf8f5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #b87333;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #8b5e2c;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
  color: #1a1a1a;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER / NAV ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 2px solid #f0e6d6;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #5a3e2b;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #5a3e2b;
}

.nav-list {
  display: flex;
  gap: 8px;
  list-style: none;
  flex-wrap: wrap;
}

.nav-list a {
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #5a3e2b;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.nav-list a:hover {
  background: #f5ede3;
  color: #8b5e2c;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #f5ede3 0%, #e8d9c8 100%);
  padding: 80px 0 60px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #3d2817;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #7a5e44;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.hero-desc {
  font-size: 1rem;
  color: #5a3e2b;
  margin-bottom: 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-primary {
  background: #b87333;
  color: #fff;
}

.btn-primary:hover {
  background: #8b5e2c;
  color: #fff;
}

/* ===== SECTIONS ===== */
.section {
  padding: 64px 0;
}

.section-light {
  background: #fff;
}

.section-accent {
  background: #faf5ef;
}

.section-cta {
  background: linear-gradient(135deg, #5a3e2b 0%, #3d2817 100%);
  color: #fff;
}

.section-cta h2 {
  color: #fff;
}

.section-cta .section-sub {
  color: #d4c5b3;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #3d2817;
}

.section-sub {
  font-size: 1.1rem;
  color: #7a5e44;
  max-width: 650px;
  margin: 0 auto;
}

/* ===== CARDS ===== */
.card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #f0e6d6;
  margin-bottom: 20px;
}

.card p {
  margin-bottom: 12px;
}

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

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

.card-icon {
  text-align: center;
  padding: 32px 24px;
}

.card-icon .icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.card-icon h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #5a3e2b;
}

.card-icon p {
  font-size: 0.95rem;
  color: #555;
}

/* ===== ACCORDION ===== */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid #e8d9c8;
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
  background: #fff;
}

.accordion-header {
  width: 100%;
  padding: 18px 24px;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #3d2817;
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.accordion-header:hover {
  background: #faf5ef;
}

.accordion-icon {
  font-size: 1.3rem;
  color: #b87333;
  transition: transform 0.2s;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}

.accordion-content.open {
  max-height: 600px;
  padding: 0 24px 18px;
}

.accordion-content p {
  color: #555;
  font-size: 0.95rem;
}

/* ===== CALLOUTS ===== */
.callout {
  padding: 18px 20px;
  border-radius: 8px;
  margin: 16px 0;
  font-size: 0.95rem;
}

.callout-info {
  background: #f0e6d6;
  border-left: 4px solid #b87333;
}

.callout-recommendation {
  background: #e8f0e8;
  border-left: 4px solid #5a8a5a;
}

/* ===== TOGGLE DETAILS ===== */
.toggle-details {
  margin: 16px 0;
  background: #fff;
  border: 1px solid #e8d9c8;
  border-radius: 8px;
  overflow: hidden;
}

.toggle-details summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  color: #3d2817;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toggle-details summary:hover {
  background: #faf5ef;
}

.toggle-details .toggle-icon {
  transition: transform 0.2s;
}

.toggle-details[open] .toggle-icon {
  transform: rotate(90deg);
}

.toggle-content {
  padding: 0 20px 20px;
}

.toggle-content h4 {
  font-size: 1rem;
  margin: 14px 0 4px;
  color: #5a3e2b;
}

.toggle-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 8px;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid #e8d9c8;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 12px;
}

.faq-item h3 {
  font-size: 1.1rem;
  color: #5a3e2b;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 8px;
}

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

/* ===== CONTACT ===== */
.contact-info {
  max-width: 500px;
  margin: 0 auto;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 1rem;
}

.contact-label {
  font-size: 1.3rem;
}

/* ===== FOOTER ===== */
.footer {
  background: #2a1f14;
  color: #b8a99a;
  padding: 32px 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer-inner p {
  margin-bottom: 4px;
}

.footer-corgi {
  color: #8b7a6a;
  font-style: italic;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero {
    padding: 50px 0 40px;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 2px solid #f0e6d6;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  .nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 4px;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

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

  .card {
    padding: 24px 20px;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  animation: fadeInUp 0.5s ease-out;
}
