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

:root {
  --primary: #FF8000;
  --primary-light: #FF9933;
  --foreground: #1E1F1C;
  --background: #FFFFFF;
  --secondary: #F5F0E8;
  --muted: #666;
  --cream: #F7F5F0;
  --radius: 1rem;
  --shadow-soft: 0 4px 20px -4px rgba(30,31,28,0.1);
  --shadow-medium: 0 8px 30px -6px rgba(30,31,28,0.15);
  --shadow-strong: 0 12px 40px -8px rgba(30,31,28,0.2);
  --shadow-orange: 0 8px 30px -6px rgba(255,128,0,0.35);
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'Comfortaa';
  src: url('fonts/Comfortaa-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Comfortaa';
  src: url('fonts/Comfortaa-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Comfortaa';
  src: url('fonts/Comfortaa-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Comfortaa', sans-serif;
  font-weight: 300;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.section { padding: 4rem 0; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }
@media (min-width: 1024px) { .section { padding: 8rem 0; } }

.bg-white { background: var(--background); }
.bg-cream { background: var(--cream); }
.bg-dark { background: var(--foreground); color: #fff; position: relative; overflow: hidden; }

.text-primary { color: var(--primary); }
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.font-semibold { font-weight: 600; }
.text-xl { font-size: 1.25rem; }

.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-8 { margin-top: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; }

.relative-z { position: relative; z-index: 10; }
.items-center { align-items: center; }

.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

.hidden { display: none !important; }

/* ===== TYPOGRAPHY ===== */
.title-section {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}
@media (min-width: 768px) { .title-section { font-size: 1.875rem; } }
@media (min-width: 1024px) { .title-section { font-size: 2.25rem; } }

.title-section-white {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 768px) { .title-section-white { font-size: 2.25rem; } }
@media (min-width: 1024px) { .title-section-white { font-size: 3rem; } }

.body-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
}
@media (min-width: 768px) { .body-text { font-size: 1.125rem; } }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all 0.3s;
}
.header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}
.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.logo-img {
  height: 3rem;
  width: auto;
  object-fit: contain;
  transition: all 0.3s;
}
.logo-img.inverted { filter: brightness(0) invert(1); }
@media (min-width: 768px) { .logo-img { height: 3.5rem; } }

.nav-links {
  display: none;
  gap: 2rem;
}
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-btn {
  font-weight: 600;
  color: #fff;
  transition: color 0.2s;
  font-size: 1rem;
}
.nav-btn:hover { color: var(--primary); }
.header.scrolled .nav-btn { color: var(--foreground); }
.header.scrolled .nav-btn:hover { color: var(--primary); }

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  color: #fff;
}
.header.scrolled .mobile-menu-btn { color: var(--foreground); }
@media (min-width: 768px) { .mobile-menu-btn { display: none; } }

.mobile-menu {
  display: none;
  background: #fff;
  border-radius: 0 0 1rem 1rem;
  padding: 1rem 0;
}
.mobile-menu.open { display: block; }

.mobile-nav-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: var(--foreground);
  border-radius: 0.75rem;
  transition: background 0.2s;
  font-size: 1rem;
}
.mobile-nav-btn:hover { background: var(--cream); color: var(--primary); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 6rem;
}
@media (min-width: 1024px) { .hero { padding-top: 7rem; } }

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30,31,28,0.7), rgba(30,31,28,0.5), rgba(30,31,28,0.8));
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .hero-grid {
    flex-direction: row;
    gap: 3rem;
  }
}

.hero-video-wrap {
  order: 2;
  width: 100%;
  max-width: 200px;
}
@media (min-width: 640px) { .hero-video-wrap { max-width: 220px; } }
@media (min-width: 1024px) {
  .hero-video-wrap { max-width: 260px; order: 1; }
}

.video-frame {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 2px solid rgba(255,255,255,0.2);
}
.video-frame video {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}
@media (min-width: 640px) { .video-frame video { max-height: 420px; } }
@media (min-width: 1024px) { .video-frame video { max-height: 460px; } }

.hero-text {
  order: 1;
  max-width: 36rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .hero-text { order: 2; text-align: left; }
}

.hero-text h1 {
  font-size: 1.875rem;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
@media (min-width: 640px) { .hero-text h1 { font-size: 2.25rem; } }
@media (min-width: 768px) { .hero-text h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-text h1 { font-size: 3.75rem; } }

.hero-text p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  line-height: 1.75;
}
@media (min-width: 640px) { .hero-text p { font-size: 1.125rem; } }
@media (min-width: 768px) { .hero-text p { font-size: 1.25rem; } }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 9999px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px -8px rgba(255,128,0,0.5);
}
.btn-indicator { cursor: default; }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  padding: 0.5rem;
  color: rgba(255,255,255,0.7);
  animation: bounce 1.5s ease-in-out infinite;
}

.hero-curve {
  position: absolute;
  bottom: 0; left: 0; right: 0;
}
.hero-curve svg { width: 100%; height: auto; display: block; }

/* ===== GRIDS ===== */
.grid-2 {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.grid-3 {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
@media (min-width: 1024px) { .grid-3 { gap: 3rem; } }

/* ===== IMAGE MOSAIC ===== */
.image-mosaic { display: flex; flex-direction: column; gap: 1rem; }
.mosaic-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.mosaic-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.mosaic-img {
  width: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-medium);
}
.h-56 { height: 14rem; }
.h-44 { height: 11rem; }

/* ===== HOW IT WORKS ===== */
.wood-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.85);
}

.step-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-medium);
  transition: box-shadow 0.3s;
  height: 100%;
}
.step-card:hover { box-shadow: var(--shadow-strong); }

.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.step-number {
  font-size: 3.75rem;
  font-weight: 700;
  color: rgba(255,128,0,0.2);
}
.step-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: rgba(255,128,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}
@media (min-width: 768px) { .step-card h3 { font-size: 1.5rem; } }
.step-card p {
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}

/* ===== OFFERINGS ===== */
.offering-block {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 5rem;
}
@media (min-width: 1024px) {
  .offering-block { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.offering-block:last-child { margin-bottom: 0; }

.offering-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.offering-img-wrap img {
  width: 100%;
  height: 13rem;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-strong);
}
@media (min-width: 768px) { .offering-img-wrap img { height: 18rem; } }

.offering-category {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.category-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(255,128,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.offering-category span {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
}
.offering-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}
@media (min-width: 768px) { .offering-content h3 { font-size: 1.875rem; } }
.offering-content p {
  color: var(--muted);
  line-height: 1.75;
}

@media (min-width: 1024px) {
  .reverse .order-2-lg { order: 2; }
  .reverse .order-1-lg { order: 1; }
}

/* ===== DARK / WHY SECTION ===== */
.dark-blobs { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(3rem); }
.blob-tl { top: 0; left: 0; width: 16rem; height: 16rem; background: rgba(255,128,0,0.1); }
.blob-br { bottom: 0; right: 0; width: 24rem; height: 24rem; background: rgba(255,128,0,0.05); }

.dark-body {
  font-size: 1.125rem;
  font-weight: 300;
  opacity: 0.9;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) { .dark-body { font-size: 1.25rem; } }
.dark-body p + p { margin-top: 1.5rem; }

.benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
@media (min-width: 768px) { .benefits { gap: 3rem; } }

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.benefit-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: rgba(255,128,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.benefit-item span { font-weight: 600; font-size: 0.875rem; }

/* ===== LOCATIONS ===== */
.location-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s;
}
.location-card:hover { box-shadow: var(--shadow-strong); }
.location-card img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: transform 0.5s;
}
.location-card:hover img { transform: scale(1.05); }
.location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,31,28,0.8), transparent, transparent);
}
.location-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
}
.location-info svg { color: var(--primary); }
.location-info span { font-weight: 600; font-size: 1.125rem; }

/* ===== FAQ ===== */
.faq-list > * + * { margin-top: 1rem; }

.faq-item {
  border-radius: 1rem;
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  text-align: left;
  transition: background 0.2s;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}
.faq-question:hover { background: rgba(247,245,240,0.5); }

.faq-chevron {
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.3s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 200px;
}
.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  color: #fff;
}
.footer-curve { position: relative; }
.footer-curve svg { width: 100%; height: auto; display: block; margin-bottom: -1px; }

.footer-content { padding: 3rem 0; }
@media (min-width: 1024px) { .footer-content { padding: 4rem 0; } }

.footer-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 4rem; } }

.footer-col { display: flex; flex-direction: column; align-items: center; }
@media (min-width: 768px) { .footer-col { align-items: flex-start; } }

.footer-logo { height: 6rem; width: auto; object-fit: contain; margin-bottom: 1rem; }
@media (min-width: 768px) { .footer-logo { height: 7rem; } }

.footer-col h4 { font-weight: 700; font-size: 1.125rem; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li + li { margin-top: 0.75rem; }
.footer-col a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--foreground); }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.footer-bottom p { font-size: 0.875rem; font-weight: 300; opacity: 0.6; }

/* ===== ANIMATIONS ===== */
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.anim-fade {
  opacity: 0;
}
.anim-fade.visible {
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}
.anim-fade.visible[data-anim="slideUp"] { animation-name: slideUp; }
.anim-fade.visible[data-anim="slideInLeft"] { animation-name: slideInLeft; }
.anim-fade.visible[data-anim="slideInRight"] { animation-name: slideInRight; }
