/* =====================
   ROOT VARIABLES
===================== */
:root {
  --bg: #f7f6f3;
  --bg-alt: #efece7;
  --dark: #1f1f1f;
  --muted: #6b6b6b;
  --accent: #b59b6a;
  --white: #ffffff;
  --radius: 18px;
}

/* =====================
   RESET
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
}

/* =====================
   GLOBAL
===================== */
.wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

h2 {
  font-size: 2.2rem;
}

.muted {
  color: var(--muted);
}

/* =====================
   HEADER
===================== */
.topbar {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #e5e5e5;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* LOGO FIX (VERY IMPORTANT) */
.logo a.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  width: 40px;        /* FIXED SIZE */
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 1rem;
  color: var(--dark);
}

.nav {
  display: flex;
  gap: 22px;
}

.nav a {
  text-decoration: none;
  color: var(--dark);
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* =====================
   HERO (FIXED HEIGHT)
===================== */
.hero {
  position: relative;
  height: 75vh;           /* NOT TOO BIG */
  min-height: 520px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* NO STRETCH */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-copy {
  position: relative;
  height: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 3rem;
  max-width: 720px;
}

.sub {
  margin: 15px 0 30px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 15px;
}

/* =====================
   BUTTONS
===================== */
.btn {
  padding: 14px 26px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 0.9rem;
  display: inline-block;
}

.btn-ghost {
  background: transparent;
  border: 1px solid white;
}

/* =====================
   SECTIONS
===================== */
.section {
  padding: 80px 0;
}

.section.alt {
  background: var(--bg-alt);
}

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

/* =====================
   CATEGORIES
===================== */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.tile img {
  height: 260px;
  object-fit: cover;
  transition: transform .3s ease;
}

.tile:hover img {
  transform: scale(1.05);
}

.tile-label {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.55);
  color: white;
  padding: 12px;
  text-align: center;
}

/* =====================
   PRODUCTS
===================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.product {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
}

.product img {
  height: 260px;
  object-fit: cover;
}

/* =====================
   PRICING
===================== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.price-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
}

.price-big {
  font-size: 1.4rem;
  color: var(--accent);
}

/* =====================
   STEPS
===================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.step {
  padding: 25px;
  text-align: center;
  border-radius: var(--radius);
  background: white;
}

.step-num {
  font-size: 2rem;
  color: var(--accent);
}

/* =====================
   FAQ
===================== */
.faq {
  display: grid;
  gap: 14px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 16px 18px;
  border-radius: 16px;
  background: white;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 22px;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding: 12px 18px 18px;
  color: #555;
}

/* =====================
   FOOTER
===================== */
.footer {
  background: #111;
  color: #aaa;
  padding: 30px 0;
  text-align: center;
}

/* =====================
   MOBILE
===================== */
@media (max-width: 768px) {
  .hero {
    height: 65vh;
    min-height: 480px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .nav {
    display: none;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: absolute;
    top: 70px;
    right: 20px;
    background: white;
    padding: 16px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  }

  .nav-toggle {
    display: block;
  }
}

/* =====================
   PAGE HERO (OTHER PAGES)
===================== */
.page-hero {
  padding: 90px 0 40px;
  background: var(--bg-alt);
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
}

.center-row {
  display: flex;
  justify-content: center;
}

.dark-outline {
  border: 1px solid var(--dark) !important;
  color: var(--dark) !important;
}
