/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #3d2b1f;
  background: #fefdfb;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; line-height: 1.2; }
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C0603A;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #3d2b1f;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 1.1rem;
  color: #6b5344;
  max-width: 600px;
  line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-desc { margin: 0 auto; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: #C0603A;
  color: #fff;
  border-color: #C0603A;
}
.btn-primary:hover { background: #a84e2c; border-color: #a84e2c; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,96,58,0.35); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }
.btn-light {
  background: #fff;
  color: #C0603A;
  border-color: #fff;
}
.btn-light:hover { background: #fef6f0; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-full { width: 100%; justify-content: center; }

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(254,253,251,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192,96,58,0.1);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(61,43,31,0.08); }
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.05rem;
  color: #3d2b1f;
  line-height: 1.2;
}
.logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C0603A;
}
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #6b5344;
  border-radius: 50px;
  transition: all 0.25s ease;
}
.nav a:hover { color: #C0603A; background: rgba(192,96,58,0.08); }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #C0603A;
  padding: 8px 16px;
  border-radius: 50px;
  background: #fdf0eb;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.nav-phone:hover { background: #fce4d9; }
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #3d2b1f;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== MOBILE MENU ========== */
.mobile-menu {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: rgba(254,253,251,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192,96,58,0.1);
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-120%);
  transition: transform 0.35s ease;
  z-index: 999;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-link {
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #3d2b1f;
  border-radius: 12px;
  transition: all 0.2s ease;
}
.mobile-link:hover { background: rgba(192,96,58,0.08); color: #C0603A; }
.mobile-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #C0603A;
  font-weight: 600;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(192,96,58,0.1);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #3d2b1f;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61,43,31,0.82) 0%,
    rgba(84,40,25,0.72) 50%,
    rgba(109,83,68,0.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 120px 24px 80px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f8c4b5;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fefdfb;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: #f8c4b5;
}
.hero-desc {
  font-size: 1.15rem;
  color: rgba(254,253,251,0.85);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.badge {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(254,253,251,0.9);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}

/* ========== SERVICES ========== */
.services {
  padding: 120px 0;
  background: #fefdfb;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fefdfb;
  border: 1px solid rgba(192,96,58,0.12);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(192,96,58,0.12);
  border-color: rgba(192,96,58,0.25);
}
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #fdf0eb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #3d2b1f;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.95rem;
  color: #6b5344;
  line-height: 1.7;
}

/* ========== ABOUT ========== */
.about {
  padding: 120px 0;
  background: #fdf6ec;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(61,43,31,0.15);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  border-radius: 20px;
  overflow: hidden;
  border: 6px solid #fdf6ec;
  box-shadow: 0 12px 32px rgba(61,43,31,0.15);
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-experience {
  position: absolute;
  top: -20px;
  left: -20px;
  background: #C0603A;
  color: #fff;
  padding: 20px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(192,96,58,0.35);
}
.about-experience .exp-number {
  display: block;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.6rem;
  line-height: 1;
}
.about-experience .exp-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
  line-height: 1.4;
}
.about-content .section-title { margin-top: 4px; }
.about-text {
  font-size: 1.05rem;
  color: #6b5344;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #3d2b1f;
}

/* ========== GALLERY ========== */
.gallery {
  padding: 120px 0;
  background: #fefdfb;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 20px;
  background: linear-gradient(transparent, rgba(61,43,31,0.8));
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ========== SUPPLIES ========== */
.supplies {
  padding: 120px 0;
  background: #fdf6ec;
}
.supplies-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.supplies-text {
  font-size: 1.05rem;
  color: #6b5344;
  line-height: 1.8;
  margin-bottom: 32px;
}
.supplies-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  margin-bottom: 40px;
}
.supply-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #3d2b1f;
}
.supply-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C0603A;
  flex-shrink: 0;
}
.supply-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(61,43,31,0.15);
}
.supply-img img { width: 100%; height: 100%; object-fit: cover; }

/* ========== CTA BANNER ========== */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, #542819 0%, #8a3f24 50%, #C0603A 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f8c4b5;
  margin-bottom: 16px;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fefdfb;
  margin-bottom: 20px;
}
.cta-desc {
  font-size: 1.1rem;
  color: rgba(254,253,251,0.85);
  line-height: 1.75;
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== CONTACT ========== */
.contact {
  padding: 120px 0;
  background: #fefdfb;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-text {
  font-size: 1.05rem;
  color: #6b5344;
  line-height: 1.8;
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}
.contact-detail {
  display: flex;
  gap: 16px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #fdf0eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C0603A;
  margin-bottom: 4px;
}
.contact-detail p, .contact-detail a {
  font-size: 1rem;
  color: #3d2b1f;
  line-height: 1.6;
}
.contact-detail a:hover { color: #C0603A; text-decoration: underline; }
.contact-map { border-radius: 16px; overflow: hidden; }

/* ========== FORM ========== */
.contact-form-wrap {
  background: #fdf6ec;
  border-radius: 24px;
  padding: 48px;
  border: 1px solid rgba(192,96,58,0.1);
}
.contact-form h3 {
  font-size: 1.6rem;
  color: #3d2b1f;
  margin-bottom: 8px;
}
.form-note {
  font-size: 0.9rem;
  color: #6b5344;
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #3d2b1f;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(192,96,58,0.2);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #3d2b1f;
  background: #fefdfb;
  transition: all 0.25s ease;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b89e8e;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #C0603A;
  box-shadow: 0 0 0 4px rgba(192,96,58,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 12px;
  background: #dcfce7;
  color: #166534;
  font-weight: 500;
  margin-top: 16px;
}
.form-success.show { display: flex; }

/* ========== FOOTER ========== */
.footer {
  background: #3d2b1f;
  color: rgba(254,253,251,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}
.logo-light .logo-text { color: #fefdfb; }
.footer-brand p {
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 300px;
}
.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f8c4b5;
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.95rem;
  color: rgba(254,253,251,0.65);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: #f8c4b5; }
.footer-contact ul { display: flex; flex-direction: column; gap: 14px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer-contact a:hover { color: #f8c4b5; text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(254,253,251,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(254,253,251,0.45);
}

/* ========== REVEAL ANIMATIONS ========== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid,
  .supplies-layout,
  .contact-grid { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav, .nav-phone { display: none; }
  .mobile-toggle { display: flex; }
  .hero-content { padding: 100px 20px 60px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-badges { gap: 8px; }
  .badge { font-size: 0.72rem; padding: 6px 14px; }
  .services { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .about { padding: 80px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img-float { width: 160px; bottom: -24px; right: -16px; }
  .about-experience { top: -12px; left: -12px; padding: 14px 18px; }
  .about-features { grid-template-columns: 1fr; }
  .gallery { padding: 80px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .supplies { padding: 80px 0; }
  .supplies-layout { grid-template-columns: 1fr; gap: 48px; }
  .supplies-list { grid-template-columns: 1fr; }
  .cta-banner { padding: 80px 0; }
  .cta-actions { flex-direction: column; align-items: center; }
  .contact { padding: 80px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer { padding: 60px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .header-inner { padding: 0 16px; gap: 16px; }
  .hero-title { font-size: 2.2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
}
