:root {
  --espresso: #2B1810;
  --espresso-tint: #3D2A20;
  --copper: #B8722E;
  --copper-light: #D4915A;
  --copper-tint: #F0E4D6;
  --cream: #F5F0E8;
  --white: #FFFFFF;
  --max-width: 1180px;
  --nav-h: 68px;
  --banner-h: 42px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  color: var(--espresso);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 42px;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 114, 46, 0.12);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--espresso);
  text-transform: uppercase;
}

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

.main-nav ul {
  display: flex;
  gap: 28px;
}

.main-nav ul a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--espresso-tint);
  transition: color 180ms ease;
  padding: 6px 0;
  display: inline-block;
}

.main-nav ul a:hover {
  color: var(--copper);
}

.nav-cta {
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle-bar {
  width: 26px;
  height: 2.5px;
  background: var(--espresso);
  border-radius: 2px;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease;
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 44px;
}

.btn-filled {
  background: var(--copper);
  color: var(--white);
  border-color: var(--copper);
}

.btn-filled:hover {
  background: var(--espresso);
  border-color: var(--espresso);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--espresso);
  border-color: var(--espresso);
}

.btn-outline:hover {
  background: var(--espresso);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== Eyebrow ===== */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 18px;
}

.eyebrow.light {
  color: var(--copper-light);
}

/* ===== Hero ===== */
.hero {
  min-height: calc(100vh - var(--nav-h) - var(--banner-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg svg {
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-title {
  font-weight: 700;
  font-size: clamp(2.2rem, 7vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--espresso);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 400;
  color: var(--espresso-tint);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Trust ===== */
.trust {
  background: var(--white);
  padding: 110px 24px;
  text-align: center;
}

.trust-inner {
  max-width: 900px;
  margin: 0 auto;
}

.trust-sentence {
  font-size: clamp(1.5rem, 4.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--espresso);
}

/* ===== Products ===== */
.products {
  background: var(--cream);
  padding: 110px 24px;
}

.section-head {
  text-align: center;
  margin-bottom: 70px;
}

.section-title {
  font-weight: 700;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--espresso);
  line-height: 1.1;
}

.product-rows {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 50px 0;
  border-bottom: 1px solid rgba(184, 114, 46, 0.15);
}

.product-row:last-child {
  border-bottom: none;
}

.product-row.reverse .product-text {
  order: 2;
}

.product-row.reverse .product-visual {
  order: 1;
}

.product-num {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--copper);
  margin-bottom: 12px;
}

.product-text h3 {
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--espresso);
  margin-bottom: 14px;
  line-height: 1.15;
}

.product-text p {
  font-size: 1.05rem;
  color: var(--espresso-tint);
  line-height: 1.55;
  max-width: 420px;
}

.product-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.motif {
  width: 160px;
  height: 160px;
}

/* ===== About ===== */
.about {
  background: var(--white);
  padding: 110px 24px;
}

.about-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-text .section-title {
  text-align: left;
  margin-bottom: 28px;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--espresso-tint);
  line-height: 1.6;
  margin-bottom: 18px;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-map {
  width: 100%;
  max-width: 340px;
  height: auto;
}

/* ===== Final CTA ===== */
.final-cta {
  background: var(--espresso);
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(184, 114, 46, 0.08) 0%, transparent 60%);
}

.final-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.final-title {
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.05;
}

.final-sub {
  font-size: 1.1rem;
  color: var(--copper-tint);
  margin-bottom: 50px;
  line-height: 1.5;
}

.location-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.location-card {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
}

.location-card-inner {
  background: rgba(184, 114, 46, 0.1);
  border: 1px solid rgba(184, 114, 46, 0.3);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.location-card:hover .location-card-inner {
  background: rgba(184, 114, 46, 0.2);
  border-color: var(--copper);
  transform: translateY(-4px);
}

.location-card h3 {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.location-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 14px;
}

.location-link {
  font-size: 0.95rem;
  color: var(--copper-tint);
  font-weight: 500;
}

.final-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--copper-light);
  min-height: 1em;
  letter-spacing: 0.02em;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--espresso-tint);
  padding: 70px 24px 30px;
  color: var(--copper-tint);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 280px;
  color: var(--copper-tint);
  opacity: 0.85;
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 18px;
}

.footer-links li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.footer-links a {
  color: var(--copper-tint);
  opacity: 0.85;
  transition: color 180ms ease, opacity 180ms ease;
}

.footer-links a:hover {
  color: var(--copper-light);
  opacity: 1;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(184, 114, 46, 0.2);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--copper-tint);
  opacity: 0.6;
}

/* ===== Reveal animation ===== */
[data-reveal] {
  opacity: 1;
  transform: none;
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-hidden {
  opacity: 0;
  transform: translateY(24px);
}

/* ===== Responsive ===== */
@media (max-width: 700px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: calc(var(--banner-h) + var(--nav-h));
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(184, 114, 46, 0.12);
    transition: max-height 320ms ease, padding 320ms ease;
  }

  .main-nav.open {
    max-height: 380px;
    padding: 20px 24px;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav ul li {
    border-bottom: 1px solid rgba(184, 114, 46, 0.1);
  }

  .main-nav ul a {
    display: block;
    padding: 16px 0;
    font-size: 0.95rem;
    min-height: 44px;
  }

  .nav-cta {
    margin-top: 20px;
    width: 100%;
    margin-left: 0;
  }

  .hero {
    min-height: auto;
    padding: 60px 20px;
  }

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

  .hero-ctas .btn {
    width: 100%;
  }

  .trust {
    padding: 70px 24px;
  }

  .products {
    padding: 70px 20px;
  }

  .section-head {
    margin-bottom: 40px;
  }

  .product-row,
  .product-row.reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 36px 0;
    text-align: center;
  }

  .product-row.reverse .product-text {
    order: 1;
  }

  .product-row.reverse .product-visual {
    order: 2;
  }

  .product-text p {
    margin: 0 auto;
  }

  .motif {
    width: 120px;
    height: 120px;
  }

  .about {
    padding: 70px 20px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text .section-title {
    text-align: center;
  }

  .about-text p {
    text-align: center;
  }

  .final-cta {
    padding: 80px 20px;
  }

  .location-cards {
    flex-direction: column;
    align-items: stretch;
  }

  .location-card {
    max-width: none;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 420px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-tagline {
    margin: 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    transition: none;
  }

  .btn {
    transition: none;
  }
}