/* ── 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-weight: 300;
  color: #1a1a1a;
  background: #FDFCF8;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ── Utility ──────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #1B4332;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 1.05rem;
  color: #555;
  max-width: 560px;
  line-height: 1.7;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: all .25s ease;
}
.btn-primary {
  background: #1B4332;
  color: #FDFCF8;
}
.btn-primary:hover { background: #2a5c35; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(27,67,50,.25); }
.btn-ghost {
  background: transparent;
  color: #FDFCF8;
  border: 1px solid rgba(253,252,248,.35);
}
.btn-ghost:hover { border-color: #FDFCF8; background: rgba(253,252,248,.08); }
.btn-full { width: 100%; }

/* ── Nav ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253,252,248,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27,67,50,.08);
  transition: box-shadow .3s ease;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.06); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: #1B4332;
}
.nav-logo-text { letter-spacing: -.01em; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: .85rem;
  font-weight: 400;
  color: #444;
  letter-spacing: .02em;
  transition: color .2s;
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #1B4332;
  transition: width .25s ease;
}
.nav-links a:not(.nav-cta):hover { color: #1B4332; }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  padding: 9px 22px;
  border: 1px solid #1B4332;
  border-radius: 4px;
  color: #1B4332 !important;
  font-weight: 500;
  transition: all .2s;
}
.nav-cta:hover { background: #1B4332; color: #FDFCF8 !important; }
.nav-cta::after { display: none !important; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all .3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a1a1a;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .45;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,33,25,.88) 0%, rgba(27,67,50,.72) 50%, rgba(13,33,25,.6) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(253,252,248,.65);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8fb892;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.hero-headline {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: #FDFCF8;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.hero-em {
  font-style: italic;
  color: #8fb892;
  font-weight: 300;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(253,252,248,.7);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stat-card {
  background: rgba(253,252,248,.07);
  border: 1px solid rgba(253,252,248,.1);
  border-radius: 8px;
  padding: 24px 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all .3s ease;
}
.stat-card:hover {
  background: rgba(253,252,248,.12);
  border-color: rgba(253,252,248,.18);
  transform: translateX(4px);
}
.stat-number {
  display: block;
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: #8fb892;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: .82rem;
  color: rgba(253,252,248,.6);
  line-height: 1.4;
}

/* ── Trust Bar ────────────────────────────────────── */
.trust-bar {
  background: #F5F0E6;
  border-top: 1px solid rgba(27,67,50,.06);
  border-bottom: 1px solid rgba(27,67,50,.06);
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: #5A4C3A;
  font-weight: 400;
  white-space: nowrap;
}
.trust-item svg { color: #1B4332; flex-shrink: 0; }

/* ── Products ─────────────────────────────────────── */
.products { background: #FDFCF8; }
.products .section-header { margin-bottom: 64px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: #FAF8F2;
  border: 1px solid rgba(27,67,50,.07);
  border-radius: 8px;
  overflow: hidden;
  transition: all .3s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(27,67,50,.1);
  border-color: rgba(27,67,50,.14);
}
.product-img {
  height: 220px;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-info {
  padding: 28px;
}
.product-info h3 {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.product-info p {
  font-size: .88rem;
  color: #666;
  line-height: 1.65;
  margin-bottom: 16px;
}
.product-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #1B4332;
  background: rgba(27,67,50,.06);
  padding: 4px 10px;
  border-radius: 3px;
}

/* ── Services ─────────────────────────────────────── */
.services { background: #F5F0E6; }
.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.services-text { position: sticky; top: 120px; }
.services-text .section-desc { margin-bottom: 0; }
.services-steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(27,67,50,.1);
}
.step:first-child { border-top: 1px solid rgba(27,67,50,.1); }
.step-num {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: #8fb892;
  line-height: 1;
  padding-top: 4px;
}
.step h4 {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.step p {
  font-size: .88rem;
  color: #666;
  line-height: 1.7;
}

/* ── About ────────────────────────────────────────── */
.about { background: #FDFCF8; }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}
.about-image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(27,67,50,.12);
  border-radius: 8px;
  z-index: -1;
}
.about-content .section-title { margin-bottom: 28px; }
.about-body {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-signature {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.signature-line {
  width: 48px;
  height: 1px;
  background: #1B4332;
  flex-shrink: 0;
}
.signature-text {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.4;
}
.signature-sub {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 400;
  color: #888;
  letter-spacing: .04em;
}

/* ── Gallery ──────────────────────────────────────── */
.gallery { background: #FAF8F2; }
.gallery .section-header { margin-bottom: 64px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-item-wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ── CTA / Contact ────────────────────────────────── */
.cta { background: #FDFCF8; }
.cta-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}
.cta-content .section-title { margin-bottom: 20px; }
.cta-desc {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.75;
}
.cta-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #5A4C3A;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid rgba(27,67,50,.15);
  border-radius: 4px;
  background: #FAF8F2;
  color: #1a1a1a;
  font-size: .9rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1B4332;
  box-shadow: 0 0 0 3px rgba(27,67,50,.08);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-note {
  font-size: .78rem;
  color: #999;
  text-align: center;
  margin-top: 4px;
}
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
}
.form-success svg { color: #1B4332; }
.form-success h4 {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #1a1a1a;
}
.form-success p {
  font-size: .9rem;
  color: #666;
  line-height: 1.6;
  max-width: 300px;
}

/* Contact info */
.contact-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-item svg { color: #1B4332; margin-bottom: 4px; }
.contact-item strong {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #5A4C3A;
}
.contact-item span,
.contact-item a {
  font-size: .88rem;
  color: #555;
  line-height: 1.5;
}
.contact-item a:hover { color: #1B4332; }

/* ── Footer ───────────────────────────────────────── */
.footer {
  background: #1B4332;
  color: rgba(253,252,248,.6);
  padding: 64px 0 40px;
}
.footer-inner { display: flex; flex-direction: column; gap: 40px; }
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: #FDFCF8;
  width: fit-content;
}
.footer-copy {
  font-size: .88rem;
  color: rgba(253,252,248,.5);
  max-width: 320px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 32px;
}
.footer-links a {
  font-size: .85rem;
  color: rgba(253,252,248,.55);
  transition: color .2s;
}
.footer-links a:hover { color: #FDFCF8; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(253,252,248,.1);
  font-size: .78rem;
  color: rgba(253,252,248,.35);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Reveal animations (progressive enhancement) ─── */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
  }
  [data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Fallback: always visible if JS is disabled */
@media not all and (prefers-reduced-motion: no-preference) {
  [data-reveal] { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-cards { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1; min-width: 160px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .services-layout { grid-template-columns: 1fr; gap: 48px; }
  .services-text { position: static; }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-image img { height: 360px; }
  .cta-card { grid-template-columns: 1fr; gap: 48px; }
  .contact-info { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(253,252,248,.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid rgba(27,67,50,.08);
    transform: translateY(-120%);
    opacity: 0;
    transition: all .3s ease;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-toggle { display: flex; }
  .hero { min-height: auto; padding-top: 72px; }
  .hero-inner { padding: 80px 24px 60px; }
  .hero-cards { flex-direction: column; }
  .stat-card { padding: 20px 24px; }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-wide { grid-column: span 1; aspect-ratio: 4/3; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; }
  .trust-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
