:root {
  --bg: #f4efe8;
  --bg-alt: #ece4da;
  --ink: #14221d;
  --muted: #5b635e;
  --forest: #13382a;
  --forest-mid: #1f4f3d;
  --forest-light: #2f6f56;
  --gold: #caa86a;
  --card: #ffffff;
  --shadow: 0 30px 60px rgba(20, 34, 29, 0.12);
  --shadow-soft: 0 20px 40px rgba(20, 34, 29, 0.08);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #f9f6f1 0%, var(--bg) 55%, var(--bg-alt) 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(20, 34, 29, 0.12) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0);
  opacity: 0.5;
  z-index: 0;
  animation: float 18s ease-in-out infinite;
}

.orb-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 30% 30%, #f3ede7, #e0d0c0);
  top: -220px;
  left: -160px;
}

.orb-2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 70% 40%, #e8f0ea, #b9d1c3);
  bottom: -200px;
  right: -140px;
  animation-delay: -6s;
}

.orb-3 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at 40% 40%, #f8f2e9, #d7c2a2);
  top: 380px;
  right: -120px;
  animation-delay: -12s;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(20, 34, 29, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 34, 29, 0.05) 1px, transparent 1px);
  background-size: 180px 180px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(244, 239, 232, 0.85);
  border-bottom: 1px solid rgba(20, 34, 29, 0.08);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(20, 34, 29, 0.12);
  background: rgba(255, 255, 255, 0.82);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--forest);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #fdfbf9;
  border: 1px solid rgba(20, 34, 29, 0.08);
  padding: 6px;
  box-shadow: var(--shadow-soft);
  display: block;
}

.brand-name {
  font-family: "DM Serif Display", serif;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
}

.brand-tagline {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 6px;
}

.nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--forest-light);
  left: 0;
  bottom: 0;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  display: flex;
  gap: 8px;
}

.lang-btn {
  border: 1px solid rgba(20, 34, 29, 0.2);
  background: transparent;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.lang-btn.is-active {
  background: var(--forest-light);
  color: #fff;
  border-color: transparent;
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 46px;
  padding: 90px 6vw 60px;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: var(--forest-light);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-content h1 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.8rem, 4.8vw, 4rem);
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 18px 30px rgba(19, 56, 42, 0.25);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px rgba(19, 56, 42, 0.3);
}

.btn.secondary {
  background: #fff;
  border-color: rgba(19, 56, 42, 0.2);
  color: var(--forest-mid);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(19, 56, 42, 0.25);
  color: var(--forest-mid);
}

.hero-metrics {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.metric {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(20, 34, 29, 0.08);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
}

.metric-value {
  font-weight: 700;
  color: var(--forest);
}

.metric-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.hero-photo-card {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-photo-panel {
  position: absolute;
  inset: auto 18px 18px 18px;
  background: linear-gradient(135deg, rgba(19, 56, 42, 0.94), rgba(31, 79, 61, 0.84));
  color: #fff;
  border-radius: var(--radius);
  padding: 22px;
  backdrop-filter: blur(12px);
}

.visual-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  opacity: 0.9;
  margin-bottom: 12px;
}

.visual-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 12px;
  background: rgba(202, 168, 106, 0.2);
  border: 1px solid rgba(202, 168, 106, 0.4);
  border-radius: 999px;
  color: #f7e8d1;
  font-size: 0.8rem;
}

.visual-stack {
  display: grid;
  gap: 12px;
}

.stack-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(20, 34, 29, 0.08);
  box-shadow: var(--shadow-soft);
  font-weight: 600;
  color: var(--forest-mid);
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(20, 34, 29, 0.06);
  border-bottom: 1px solid rgba(20, 34, 29, 0.06);
}

.section-title h2 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.1rem, 3.6vw, 2.8rem);
  margin-bottom: 10px;
}

.section-title p {
  color: var(--muted);
  max-width: 720px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.split-text h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.signature {
  margin-top: 18px;
  font-weight: 600;
  color: var(--forest-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature {
  background: #fff;
  border-radius: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(20, 34, 29, 0.06);
  box-shadow: var(--shadow-soft);
}

.feature h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.grid {
  display: grid;
  gap: 22px;
  margin-top: 32px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(20, 34, 29, 0.06);
}

.product {
  position: relative;
  overflow: hidden;
}

.product-media {
  width: 100%;
  height: 220px;
  border-radius: 16px;
  margin-bottom: 18px;
  object-fit: cover;
  display: block;
}

.product-badge {
  display: inline-block;
  background: rgba(202, 168, 106, 0.2);
  color: var(--forest-mid);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.photo-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(20, 34, 29, 0.08);
  background: #f4efe8;
  min-height: 180px;
  display: grid;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-card figcaption {
  padding: 12px 14px 14px;
  font-size: 0.92rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.92);
}

.photo-card.tall {
  min-height: 240px;
}

.photo-card.wide {
  grid-column: span 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.contact-pill {
  margin-top: 16px;
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(19, 56, 42, 0.2);
  color: var(--forest-mid);
  font-weight: 600;
  font-size: 0.85rem;
}

.form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 600;
}

.form input,
.form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(20, 34, 29, 0.2);
  padding: 10px 12px;
  font-family: "Manrope", sans-serif;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 8px;
}

.request-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--ink);
}

.request-list li + li {
  margin-top: 10px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.footer {
  padding: 30px 6vw 40px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@media (max-width: 1024px) {
  .site-header {
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 920px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(20, 34, 29, 0.08);
    box-shadow: var(--shadow-soft);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(20, 34, 29, 0.06);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .header-actions .btn.ghost {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 16px 5vw;
    grid-template-columns: 1fr auto;
  }

  .brand-tagline {
    display: none;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .hero {
    padding: 42px 5vw 36px;
    gap: 28px;
  }

  .section {
    padding: 46px 5vw;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-photo-card {
    min-height: 340px;
  }

  .hero-photo-panel {
    inset: auto 12px 12px 12px;
    padding: 18px;
  }

  .grid.three,
  .contact-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .photo-card.wide {
    grid-column: span 1;
  }

  .photo-card,
  .photo-card.tall {
    min-height: auto;
  }

  .photo-card img {
    aspect-ratio: 4 / 3;
  }

  .product-media {
    height: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bg-orb,
  .reveal {
    animation: none;
    transition: none;
  }
}
