/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #1A1D20;
  color: #F0EDE8;
  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; }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ───────────────────────────────────── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; color: #F0EDE8; }
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E07A5F;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 20px;
}
.section-desc {
  font-size: 1.05rem;
  color: #9A9790;
  max-width: 540px;
  line-height: 1.7;
}
.centered { text-align: center; }
.centered .section-desc { margin: 0 auto; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: #E07A5F;
  color: #fff;
}
.btn-primary:hover {
  background: #c9664e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 122, 95, 0.3);
}
.btn-ghost {
  background: transparent;
  color: #F0EDE8;
  border: 1.5px solid rgba(240, 237, 232, 0.25);
}
.btn-ghost:hover {
  border-color: #E07A5F;
  color: #E07A5F;
}

/* ── Header ───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 29, 32, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240, 237, 232, 0.06);
  transition: background 0.3s;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
  color: #F0EDE8;
}
.logo-accent { color: #E07A5F; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #9A9790;
  transition: color 0.2s;
  position: relative;
}
.nav-menu a:hover { color: #F0EDE8; }
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #E07A5F;
  transition: width 0.3s;
}
.nav-menu a:hover::after { width: 100%; }
.nav-cta {
  color: #E07A5F !important;
  border: 1.5px solid #E07A5F;
  padding: 8px 20px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: #E07A5F; color: #fff !important; }

/* Nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #F0EDE8;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #1A1D20;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(224,122,95,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E07A5F;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: #F0EDE8;
}
.hero-headline em {
  font-style: normal;
  color: #E07A5F;
}
.hero-sub {
  font-size: 1.1rem;
  color: #9A9790;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #F0EDE8;
  font-size: 0.875rem;
  font-weight: 500;
}
.trust-item svg { color: #E07A5F; flex-shrink: 0; }

/* Hero visual */
.hero-visual {
  position: relative;
  height: 680px;
}
.hero-img-main {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
}
.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img-float {
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 240px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 4px solid #1A1D20;
}
.hero-img-float img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(26,29,32,0.9));
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E07A5F;
}
.hero-accent-bar {
  position: absolute;
  top: 40px;
  right: -20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-accent-bar span {
  display: block;
  width: 4px;
  height: 48px;
  border-radius: 4px;
  background: #E07A5F;
  opacity: 0.6;
}
.hero-accent-bar span:nth-child(2) { height: 72px; opacity: 1; }
.hero-accent-bar span:nth-child(3) { height: 32px; opacity: 0.4; }

/* ── About ────────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: #1E2125;
}
.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 60px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.about-stat {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #E07A5F;
  padding: 16px 24px;
  border-radius: 4px;
}
.about-stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.about-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.about-content { padding: 0 8px; }
.about-content > p {
  font-size: 1.05rem;
  color: #9A9790;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #F0EDE8;
}

/* ── Products ─────────────────────────────────────── */
.products {
  padding: 120px 0;
  background: #1A1D20;
}
.section-header { margin-bottom: 64px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: #1E2125;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(240,237,232,0.05);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}
.product-img {
  height: 200px;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  padding: 20px 20px 8px;
  color: #F0EDE8;
}
.product-card p {
  font-size: 0.875rem;
  color: #9A9790;
  line-height: 1.65;
  padding: 0 20px 24px;
}

/* ── Why Us ───────────────────────────────────────── */
.why-us {
  padding: 120px 0;
  background: #1E2125;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-content { padding-right: 20px; }
.why-intro {
  font-size: 1.05rem;
  color: #9A9790;
  line-height: 1.8;
  margin-bottom: 48px;
}
.why-feature {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.why-feature:last-child { margin-bottom: 0; }
.why-feature-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #E07A5F;
  line-height: 1;
  padding-top: 4px;
}
.why-feature h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #F0EDE8;
}
.why-feature p {
  font-size: 0.9rem;
  color: #9A9790;
  line-height: 1.7;
}
.why-visual { position: relative; padding-top: 40px; }
.why-img-stack { position: relative; height: 560px; }
.why-img-stack img {
  position: absolute;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.why-img-stack img:first-child {
  width: 360px;
  height: 300px;
  top: 0;
  right: 0;
}
.why-img-stack img:last-child {
  width: 260px;
  height: 200px;
  bottom: 0;
  left: 0;
}
.why-img-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #E07A5F;
  opacity: 0.15;
  filter: blur(40px);
}

/* ── Visit ────────────────────────────────────────── */
.visit {
  padding: 120px 0;
  background: #1A1D20;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.visit-info { padding: 8px 0; }
.visit-info > .section-eyebrow { margin-bottom: 12px; }
.visit-details {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.visit-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.visit-detail svg { flex-shrink: 0; margin-top: 2px; }
.visit-detail strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E07A5F;
  margin-bottom: 4px;
}
.visit-detail span,
.visit-detail a {
  font-size: 0.95rem;
  color: #9A9790;
  line-height: 1.7;
}
.visit-detail a:hover { color: #E07A5F; }
.visit-map {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.visit-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  min-height: 400px;
}
.map-cta {
  position: absolute;
  bottom: 24px;
  left: 24px;
}

/* ── Footer ───────────────────────────────────────── */
.site-footer {
  background: #15171A;
  padding: 80px 0 0;
  border-top: 1px solid rgba(240,237,232,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-brand p {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #6B6860;
  line-height: 1.75;
  max-width: 300px;
}
.footer-links h4,
.footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E07A5F;
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.9rem;
  color: #6B6860;
  transition: color 0.2s;
}
.footer-links a:hover { color: #F0EDE8; }
.footer-contact ul { display: flex; flex-direction: column; gap: 14px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: #6B6860;
  line-height: 1.6;
}
.footer-contact a { color: #6B6860; transition: color 0.2s; }
.footer-contact a:hover { color: #E07A5F; }
.footer-contact svg { flex-shrink: 0; margin-top: 3px; color: #E07A5F; }
.footer-bottom {
  border-top: 1px solid rgba(240,237,232,0.06);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: #4A4740;
}

/* ── Scroll animations ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 480px; order: -1; }
  .hero-text { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { max-height: 400px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-content { padding-right: 0; }
  .why-img-stack { height: 400px; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(26, 29, 32, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(240,237,232,0.06);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.4s, opacity 0.4s;
    pointer-events: none;
  }
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-toggle { display: flex; }
  .hero { min-height: auto; padding-top: 100px; padding-bottom: 60px; }
  .hero-visual { height: 360px; }
  .hero-img-float { width: 160px; left: -16px; bottom: -20px; }
  .hero-accent-bar { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .product-img { height: 180px; }
  .why-img-stack { height: 320px; }
  .why-img-stack img:first-child { width: 240px; height: 200px; }
  .why-img-stack img:last-child { width: 180px; height: 140px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .visit-map img { min-height: 260px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; align-items: center; gap: 12px; }
  .about-stat { padding: 12px 16px; }
  .about-stat-number { font-size: 1.2rem; }
}
