/* palette: golden-rose */
:root {
  --primary-color: #8C7000;
  --secondary-color: #B09000;
  --accent-color: #C2185B;
  --background-color: #FFFBE0;
  --dark-color: #111111;
  --text-color: #333333;
  --border-color: rgba(0, 0, 0, 0.12);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.16);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --main-font: 'Merriweather', serif;
  --alt-font: 'Poppins', sans-serif;
}

/* SOFT-ORGANIC PRESET MANDATORY STYLES */
section {
  padding: 56px 16px;
  margin: 0;
}

@media (min-width: 1024px) {
  section {
    padding: 72px 24px;
  }
}

body {
  line-height: 1.85;
  font-family: var(--alt-font);
  background-color: var(--background-color);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.card {
  border-radius: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 40px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.08), 0 16px 48px rgba(0, 0, 0, 0.12);
}

.btn {
  border-radius: 9999px;
  padding: 14px 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-decoration: none;
  min-height: 44px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: var(--accent-color);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #a01048;
  color: #ffffff;
}

.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

.btn-outline:hover {
  background: #ffffff;
  color: var(--dark-color);
}

.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
}

/* TYPOGRAPHY SCALE */
h1, h2, h3, h4 {
  font-family: var(--main-font);
  color: var(--dark-color);
}

h1 {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

h3 {
  font-size: clamp(18px, 2.8vw, 28px);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
}

h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

p {
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.7;
  margin-bottom: 16px;
  color: #444444;
}

.kicker {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-color);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER & CSS-ONLY BURGER */
header {
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  max-height: 42px;
  width: auto;
}

.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.burger-btn .bar {
  height: 3px;
  width: 100%;
  background-color: var(--dark-color);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#menu-toggle:checked ~ .burger-btn .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

#menu-toggle:checked ~ .burger-btn .bar:nth-child(2) {
  opacity: 0;
}

#menu-toggle:checked ~ .burger-btn .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: var(--shadow-md);
  padding: 24px;
  z-index: 999;
}

#menu-toggle:checked ~ .site-nav {
  display: block;
}

.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-nav a {
  text-decoration: none;
  color: var(--dark-color);
  font-weight: 500;
  font-size: 16px;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--accent-color);
}

@media (min-width: 768px) {
  .burger-btn {
    display: none;
  }
  
  .site-nav {
    display: flex !important;
    position: static;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .site-nav ul {
    flex-direction: row;
    gap: 24px;
  }
}

/* HERO SECTION (floating-cards) */
.hero-section {
  position: relative;
  min-height: 88vh;
  background-image: url('./img/bg.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 64px 24px;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.85) 0%, rgba(140, 112, 0, 0.7) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.hero-content {
  color: #ffffff;
}

.hero-content h1 {
  color: #ffffff;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 32px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* FLOATING CARDS ANIMATION */
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-12px) rotate(-1deg);
  }
}

.floating-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.float-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
  animation: float 4s ease-in-out infinite;
}

.float-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.float-card.card-1 {
  animation-delay: 0s;
  transform: rotate(-2deg);
}

.float-card.card-2 {
  animation-delay: 1.2s;
  transform: rotate(2deg);
}

.float-card.card-3 {
  animation-delay: 2.4s;
  transform: rotate(-1deg);
}

/* FEATURES SECTION */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* STATS COUNTER WITH @property */
@property --count {
  syntax: '<integer>';
  initial-value: 0;
  inherits: false;
}

.stats-section {
  background-color: var(--primary-color);
  color: #ffffff;
  border-radius: 32px;
  margin: 32px 16px;
}

@media (min-width: 1024px) {
  .stats-section {
    margin: 48px auto;
  }
}

.stats-section h2, .stats-section p {
  color: #ffffff;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  text-align: center;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
}

.stat-num {
  --target: 80;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  font-family: var(--main-font);
  color: var(--accent-color);
  line-height: 1;
  display: inline-block;
  animation: count-up 2s ease-out forwards;
  animation-timeline: view();
  animation-range: entry 0% entry 60%;
  counter-reset: n var(--count);
}

.stat-num::after {
  content: counter(n);
}

.stat-unit {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--main-font);
  display: inline-block;
  vertical-align: top;
}

@keyframes count-up {
  from { --count: 0; }
  to { --count: var(--target); }
}

.stat-label {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 15px;
  color: var(--text-color) !important;
}

/* ABOUT + IMAGE */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  min-height: 500px;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefits-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefits-list i {
  font-size: 1.25rem;
  margin-top: 4px;
}

.text-accent {
  color: var(--accent-color);
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: #f59e0b;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.quote {
  font-style: italic;
  color: #555555;
  flex-grow: 1;
}

.author-info strong {
  display: block;
  color: var(--dark-color);
}

.author-info span {
  font-size: 0.85rem;
  color: #777777;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  min-height: 440px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 200px);
  }

  .main-img {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.placeholder-1 {
  background: var(--primary-color);
  color: #fff;
}

.placeholder-2 {
  background: var(--secondary-color);
  color: #fff;
}

.placeholder-3 {
  background: var(--accent-color);
  color: #fff;
}

.ph-content {
  height: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  gap: 12px;
}

.ph-content i {
  font-size: 2.5rem;
}

.ph-content span {
  font-weight: 600;
  font-size: 0.95rem;
}

/* CONTACT + FAQ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-item i {
  font-size: 1.25rem;
  color: var(--accent-color);
  margin-top: 4px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-color);
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--alt-font);
  font-size: 0.95rem;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(194, 24, 91, 0.15);
}

.form-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
}

.form-checkbox input {
  margin-top: 4px;
}

.w-full {
  width: 100%;
}

/* OPEN FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  padding: 24px;
  border-left: 4px solid var(--accent-color);
}

.faq-item h4 {
  margin-bottom: 8px;
  color: var(--dark-color);
}

.faq-item p {
  margin-bottom: 0;
  font-size: 15px;
}

/* SCROLL REVEAL ANIMATION */
@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: reveal-up linear both;
  animation-timeline: view();
  animation-range: entry 0% entry 30%;
}

/* FOOTER */
footer {
  background: var(--dark-color);
  color: #ffffff;
  padding: 48px 24px 32px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

footer img[alt="logo"] {
  filter: brightness(0) invert(1);
  max-height: 38px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #ffffff;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}