/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  /* Grape-Collar Color Theme (oklab) */
  --color-spl-1: oklab(74.3% -0.175 -0.055);    /* teal accent */
  --color-spl-2: oklab(44.7% -0.149 -0.11);     /* dark teal */
  --color-spl-3: oklab(95% 0.154 -0.081);        /* light pink bg */
  --color-spl-4: oklab(78.7% 0.006 -0.034);      /* light lavender */
  --color-spl-5: oklab(78.1% 0.027 -0.035);      /* light mauve */
  --color-spl-6: oklab(72.2% 0.052 -0.002);      /* muted rose */

  /* Mapped design tokens */
  --color-bg: var(--color-spl-3);
  --color-white: #ffffff;
  --color-black: var(--color-spl-2);
  --color-dark: var(--color-spl-2);
  --color-brown: var(--color-spl-1);
  --color-brown-light: var(--color-spl-1);
  --color-gray: var(--color-spl-4);
  --color-gray-dark: var(--color-spl-6);
  --color-section-alt: var(--color-spl-5);
  --color-contact-bg: var(--color-spl-4);
  --font-heading: 'DM Serif Display', serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1100px;
  --site-gutter: 5vw;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-black);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

p {
  margin-bottom: 0.75rem;
  color: #333;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--site-gutter);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  cursor: default;
  border: none;
  user-select: none;
  letter-spacing: 0.02em;
}

.btn-dark {
  background: var(--color-dark);
  color: var(--color-white);
}

/* ============================================
   HEADER
   ============================================ */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-bg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem var(--site-gutter);
}

.header-logo img {
  height: auto;
  width: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.header-cta {
  display: none;
}

/* Burger */
.header-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.burger-line {
  width: 24px;
  height: 2px;
  background: var(--color-black);
  transition: transform 0.3s, opacity 0.3s;
}

.header-burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header-burger.active .burger-line:nth-child(2) {
  opacity: 0;
}
.header-burger.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--color-white);
  padding: 1.5rem var(--site-gutter);
}

.mobile-menu.active {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-item {
  font-size: 1.1rem;
  font-weight: 500;
  cursor: default;
}

@media (min-width: 768px) {
  .header-cta {
    display: inline-block;
  }

  .header-burger {
    display: none;
  }
}

/* ============================================
   HERO
   ============================================ */
.section-hero {
  padding: 3rem 0 4rem;
}

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

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
  }
}

.hero-text h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--color-black);
}

.hero-desc {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hero-email-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-email-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--color-spl-4);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--color-white);
  max-width: 260px;
}

.hero-email-input:focus {
  outline: 2px solid var(--color-brown);
  outline-offset: -1px;
}

.hero-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  cursor: default;
}

.hero-social-yt {
  background: var(--color-spl-2);
  color: white;
}

.hero-social-ig {
  background: var(--color-spl-1);
  color: white;
}

.hero-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ============================================
   MISSION
   ============================================ */
.section-mission {
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid var(--color-gray);
  border-bottom: 1px solid var(--color-gray);
}

.mission-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gray-dark);
  margin-bottom: 0.75rem;
}

.mission-text {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   SECTION LABELS
   ============================================ */
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gray-dark);
  margin-bottom: 0.5rem;
}

/* ============================================
   SERVICES
   ============================================ */
.section-services {
  padding: 4rem 0;
}

.services-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .services-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.services-text h2 {
  margin-bottom: 0.75rem;
}

.services-list-text {
  font-size: 0.85rem;
  color: var(--color-gray-dark);
  line-height: 1.8;
}

.services-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

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

@media (min-width: 600px) {
  .services-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-gray);
}

.service-card-icon {
  font-size: 1.5rem;
  color: var(--color-brown);
  margin-bottom: 0.75rem;
}

.service-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.service-card p {
  font-size: 0.8rem;
  color: var(--color-gray-dark);
  margin: 0;
}

/* ============================================
   WHY CHOOSE
   ============================================ */
.section-why-choose {
  padding: 4rem 0;
  background: var(--color-white);
  text-align: center;
}

.why-choose-heading {
  margin-bottom: 0.75rem;
}

.why-choose-desc {
  font-size: 0.85rem;
  color: var(--color-gray-dark);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.benefits-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .benefits-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  text-align: center;
}

.benefit-icon {
  margin-bottom: 1rem;
  color: var(--color-gray-dark);
}

.benefit-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.benefit-card p {
  font-size: 0.8rem;
  color: var(--color-gray-dark);
  margin: 0;
}

/* ============================================
   ABOUT
   ============================================ */
.section-about {
  padding: 4rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-text h2 {
  margin-bottom: 0.75rem;
}

.about-text p {
  font-size: 0.9rem;
  color: var(--color-gray-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ============================================
   CONTACT
   ============================================ */
.section-contact {
  padding: 4rem 0;
  background: var(--color-white);
}

.contact-heading {
  text-align: center;
  margin-bottom: 0.5rem;
}

.contact-desc {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-gray-dark);
  max-width: 550px;
  margin: 0 auto 1.5rem;
}

.contact-info-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gray-dark);
}

.contact-info-item svg {
  flex-shrink: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-spl-4);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  background: var(--color-white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--color-brown);
  outline-offset: -1px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  width: 100%;
  padding: 12px;
  font-size: 0.95rem;
}

/* ============================================
   FAQ
   ============================================ */
.section-faq {
  padding: 4rem 0;
  background: var(--color-white);
}

.faq-heading {
  text-align: center;
  margin-bottom: 0.25rem;
}

.faq-subtitle {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-gray-dark);
  margin-bottom: 2rem;
}

.faq-divider {
  text-align: center;
  padding: 2rem 0;
}

.faq-divider-logo {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.5rem;
}

/* ============================================
   ACCORDION (FAQ style with chevrons)
   ============================================ */
.accordion {
  max-width: 700px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid var(--color-gray);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  background: none;
  border: none;
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}

.accordion-chevron {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.accordion-item.open .accordion-chevron {
  transform: rotate(180deg);
}

.accordion-body {
  display: none;
  padding-bottom: 1rem;
}

.accordion-body p {
  font-size: 0.85rem;
  color: var(--color-gray-dark);
  line-height: 1.7;
  margin: 0;
}

.accordion-item.open .accordion-body {
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 2rem var(--site-gutter);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--color-spl-4);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.powered-by {
  font-size: 0.8rem;
  color: var(--color-spl-4);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 767px) {
  .section-hero {
    padding: 1.5rem 0 3rem;
  }

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

  .section-services,
  .section-why-choose,
  .section-about,
  .section-contact,
  .section-faq {
    padding: 3rem 0;
  }
}
