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

body {
  font-family: 'Segoe UI', 'Noto Sans', sans-serif;
  color: var(--brand-ink);
  background: var(--brand-sand);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- Header: dropdown-style multi-category nav ---- */
.site-header { background: var(--brand-sand); border-bottom: 1px solid var(--brand-line); position: sticky; top: 0; z-index: 50; }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.header-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.25rem; color: var(--brand-char); white-space: nowrap; }
.header-logo span { color: var(--brand-orange); }
.header-nav { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.nav-link { font-size: 0.92rem; font-weight: 700; color: var(--brand-char); text-transform: uppercase; letter-spacing: .02em; }
.nav-link:hover { color: var(--brand-orange); }
.header-cta { background: var(--brand-orange); color: #fff; font-weight: 700; font-size: 0.85rem; padding: 12px 24px; white-space: nowrap; }

/* ---- Hero: full-bleed image carousel feel ---- */
.hero { position: relative; min-height: 560px; display: flex; align-items: center; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(26,25,23,0.82) 0%, rgba(26,25,23,0.35) 55%, rgba(26,25,23,0.1) 100%); }
.hero-content { position: relative; z-index: 2; color: #fff; padding: 60px 24px; max-width: 1200px; margin: 0 auto; width: 100%; }
.hero-eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.82rem; color: var(--brand-orange); font-weight: 800; margin-bottom: 14px; }
.hero-content h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); font-weight: 800; max-width: 700px; margin-bottom: 18px; }
.hero-content p { max-width: 540px; font-size: 1.04rem; color: #e6ddd0; margin-bottom: 26px; }
.btn { display: inline-block; padding: 14px 30px; font-weight: 700; font-size: 0.9rem; letter-spacing: .02em; text-transform: uppercase; transition: opacity .15s ease; }
.btn:hover { opacity: .88; }
.btn-solid { background: var(--brand-orange); color: #fff; }
.btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-char { background: var(--brand-char); color: #fff; }

/* ---- Intro split section ---- */
.intro-section { padding: 90px 24px; text-align: center; }
.intro-section .kicker { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.8rem; font-weight: 800; color: var(--brand-orange); margin-bottom: 16px; }
.intro-section h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); color: var(--brand-char); margin-bottom: 20px; max-width: 760px; margin-left: auto; margin-right: auto; }
.intro-section p { max-width: 640px; margin: 0 auto 28px; color: #55524b; font-size: 1.02rem; }

/* ---- Section heading ---- */
.section-heading { text-align: center; max-width: 660px; margin: 0 auto 50px; }
.section-heading .kicker { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.8rem; font-weight: 800; color: var(--brand-orange); margin-bottom: 14px; }
.section-heading h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); color: var(--brand-char); }

/* ---- Category blocks (repeated brand-style sections) ---- */
.category-block { padding: 88px 24px; }
.category-block:nth-child(even) { background: var(--brand-sand-soft); }
.category-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.category-grid.reverse .category-text { order: 2; }
.category-grid.reverse .category-imgs { order: 1; }
.category-text .kicker { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.78rem; font-weight: 800; color: var(--brand-orange); margin-bottom: 12px; }
.category-text h3 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--brand-char); margin-bottom: 16px; }
.category-text p { color: #55524b; margin-bottom: 22px; }
.category-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.category-imgs img { width: 100%; height: 260px; object-fit: cover; }
.category-imgs img:nth-child(2) { margin-top: 30px; }

/* ---- Product/course grid (4-col cards) ---- */
.products-section { padding: 96px 24px; background: var(--brand-char); }
.products-section .section-heading h2 { color: #fff; }
.products-section .section-heading .kicker { color: #e89a63; }
.product-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card { background: var(--brand-sand); overflow: hidden; transition: transform .15s ease; }
.product-card:hover { transform: translateY(-4px); }
.product-card img { width: 100%; height: 180px; object-fit: cover; }
.product-card-body { padding: 18px; }
.product-card-body h3 { font-size: 0.98rem; color: var(--brand-char); margin-bottom: 8px; }
.product-card-body .price { font-weight: 800; color: var(--brand-orange); font-size: 1.05rem; }

/* ---- Blog cards (3-col carousel look) ---- */
.blog-section { padding: 96px 24px; }
.blog-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card img { width: 100%; height: 210px; object-fit: cover; margin-bottom: 18px; }
.blog-card h3 { font-size: 1.08rem; color: var(--brand-char); margin-bottom: 10px; }
.blog-card .meta { font-size: 0.8rem; color: #8a8478; text-transform: uppercase; letter-spacing: .03em; }

/* ---- Custom order CTA banner ---- */
.cta-banner-section { position: relative; padding: 90px 24px; text-align: center; }
.cta-banner-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-banner-overlay { position: absolute; inset: 0; background: rgba(26,25,23,0.72); }
.cta-banner-content { position: relative; z-index: 2; color: #fff; max-width: 700px; margin: 0 auto; }
.cta-banner-content h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin-bottom: 18px; }
.cta-banner-content p { color: #e6ddd0; margin-bottom: 28px; }

/* ---- Footer ---- */
.site-footer { background: var(--brand-char-dark); color: #b8b2a6; padding: 60px 24px 26px; }
.footer-top { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid #3a382f; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand-name { color: #fff; font-weight: 800; font-size: 1.15rem; }
.footer-contact { font-size: 0.9rem; color: #b8b2a6; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid #4a473c; display: flex; align-items: center; justify-content: center; font-size: 0.82rem; }
.footer-nav-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 30px; flex-wrap: wrap; justify-content: center; padding: 30px 0; }
.footer-nav-inner a { font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: .02em; }
.footer-nav-inner a:hover { color: var(--brand-orange); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 18px; border-top: 1px solid #3a382f; font-size: 0.8rem; color: #7a7568; text-align: center; }

/* ---- Inner page hero ---- */
.page-hero { background: var(--brand-char); color: #fff; padding: 70px 24px; text-align: center; }
.page-hero .kicker { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.8rem; color: #e89a63; font-weight: 800; margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.breadcrumb-inline { font-size: 0.85rem; color: #b8b2a6; margin-top: 14px; }
.breadcrumb-inline a { color: #e89a63; }

.content-section { padding: 80px 24px; }
.content-narrow { max-width: 820px; margin: 0 auto; }
.content-narrow h2 { color: var(--brand-char); font-size: 1.5rem; margin: 36px 0 16px; }
.content-narrow h2:first-child { margin-top: 0; }
.content-narrow p { color: #55524b; margin-bottom: 16px; }
.content-narrow ul { margin: 0 0 16px 0; }
.content-narrow ul li { color: #55524b; margin-bottom: 8px; padding-left: 22px; position: relative; }
.content-narrow ul li::before { content: '—'; position: absolute; left: 0; color: var(--brand-orange); }

/* ---- Contact form ---- */
.contact-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h3 { color: var(--brand-char); margin-bottom: 14px; font-size: 1.1rem; }
.contact-info p { color: #55524b; margin-bottom: 22px; }
.contact-form label { display: block; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--brand-char); margin-bottom: 8px; }
.contact-form .form-row { margin-bottom: 20px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 13px 14px; border: 1px solid var(--brand-line); font-family: inherit; font-size: 0.95rem; background: #fff; }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form button { background: var(--brand-orange); color: #fff; border: none; padding: 14px 30px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; font-size: 0.9rem; cursor: pointer; }

@media (max-width: 900px) {
  .category-grid, .contact-grid { grid-template-columns: 1fr; }
  .category-grid.reverse .category-text, .category-grid.reverse .category-imgs { order: unset; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .header-nav { display: none; }
  .footer-top { flex-direction: column; }
}
