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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #222;
  background: #f7f6f4;
  line-height: 1.6;
}

/* Layout helpers */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 246, 244, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

/* ✅ LOGO + TEXT */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
}

.logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f3c46b, #f0a93c);
  color: #222;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1.1rem;
}

.logo-text {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Main nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #444;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: #f0a93c;
  transition: width 0.25s ease;
}

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

/* Products dropdown in header */
.nav-item.has-dropdown {
  position: relative;
}

.nav-link {
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  color: #444;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: #f0a93c;
  transition: width 0.25s ease;
}

.nav-item.has-dropdown:hover .nav-link::after {
  width: 100%;
}

.dropdown {
  position: absolute;
  top: 140%;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding: 1.2rem 1.6rem;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  transform: translateY(10px);
  z-index: 999;
  max-width: 680px;
}

.nav-item.has-dropdown:hover .dropdown,
.dropdown:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-group {
  min-width: 150px;
  display: flex;
  flex-direction: column;
}

.dropdown-group h4 {
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: #333;
}

.dropdown-group a {
  text-decoration: none;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.35rem;
  transition: color 0.2s;
}

.dropdown-group a:hover {
  color: #f0a93c;
}

/* Hero */
.hero {
  padding: 4rem 0 3.5rem;
  background: radial-gradient(
    circle at top left,
    #f3e3cf,
    #f7f6f4 42%,
    #f7f6f4 100%
  );
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 3vw + 1.6rem, 3.1rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-text p {
  max-width: 34rem;
  margin-bottom: 2rem;
  color: #444;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  max-width: 320px;
  padding: 2.25rem 2rem;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 22px 40px rgba(15, 14, 10, 0.12);
}

.hero-tagline {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: #a68242;
  margin-bottom: 0.75rem;
}

.hero-highlight {
  font-size: 0.98rem;
  color: #333;
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section-header {
  text-align: left;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 1.7rem;
  margin-bottom: 0.75rem;
}

/* About */
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 2rem;
  align-items: flex-start;
}

.about-card {
  padding: 1.75rem 1.8rem;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
}

.about-card h3 {
  margin-bottom: 0.75rem;
}

/* Products section */
.products {
  background: #f2f1ee;
}

.product-filters {
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-btn {
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

.filter-btn.active {
  background: #222;
  color: #f8f5ef;
  border-color: #222;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.6rem 1.7rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.product-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #a68242;
  margin-bottom: 0.75rem;
}

.product-card p {
  font-size: 0.92rem;
  color: #444;
}

.product-details {
  margin-top: 0.5rem;
  margin-bottom: 1.2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.92rem;
  padding: 0.6rem 1.4rem;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: #222;
  color: #f8f5ef;
}

.btn-primary:hover {
  background: #000;
}

.btn-secondary {
  background: #f9f3e6;
  color: #503715;
}

.btn-secondary:hover {
  background: #f0e1c8;
}

/* Contact */
.contact {
  background: #fff;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.6fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-details p {
  margin-bottom: 0.35rem;
}

.contact-details a {
  color: #222;
}

.contact-details .note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #777;
}

.contact-form-wrapper {
  padding: 1.75rem 1.8rem;
  border-radius: 1.25rem;
  background: #f7f6f4;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h3 {
  margin-bottom: 1rem;
}

.form-row {
  margin-bottom: 0.9rem;
}

.form-row label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 0.9rem;
  font-family: inherit;
  background: #fff;
}

.form-row textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.8rem;
  color: #777;
  margin-bottom: 0.8rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1.4rem 0 1.6rem;
  background: #f7f6f4;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.footer-brand {
  font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner,
  .two-column,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  /* if you want the menu on mobile, remove the next block */
  .main-nav {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }
}

@media (max-width: 600px) {
  .logo-img {
    height: 32px;
  }

  .product-card {
    padding: 1.3rem 1.25rem 1.2rem;
  }

  .contact-form-wrapper {
    padding: 1.4rem 1.3rem;
  }
}
.product-price {
  margin: 0.4rem 0 0.9rem;
  font-size: 0.95rem;
  color: #333;
}

.product-price span {
  color: #a68242;
  font-weight: 700;
}
/* =========================
   Nicer header + bigger logo
   ========================= */

/* Header shell */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 246, 244, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* More breathing room */
.header-inner {
  padding: 0.95rem 0;
}

/* Brand (logo + text) */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.brand:hover {
  background: rgba(255, 255, 255, 0.65);
  transform: translateY(-1px);
}

/* Bigger + cleaner logo */
.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.65);
  padding: 6px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Brand name more “lux” */
.brand-name {
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 1.05rem;
  line-height: 1;
}

/* Nav looks nicer as a pill */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #333;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  position: relative;
  transition:
    background 0.18s ease,
    transform 0.18s ease;
}

/* Remove your underline animation look for this header style */
.main-nav a::after {
  display: none;
}

.main-nav a:hover {
  background: rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

/* Mobile: keep logo visible, hide nav like you had */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    font-size: 1.1rem;
  }
}
