*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f5f0e8;
  --dark: #1e1b16;
  --accent: #7a5c3a;
  --accent-light: #c49a6c;
  --surface: #fffdf8;
  --border: #d6cfc2;
  --text: #2e2a22;
  --muted: #7a7468;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--bg);
  color: var(--text);
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
  padding: 1.4rem 2rem;
}

.navbar.scrolled {
  background: var(--dark);
  padding: 0.8rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 38px;
  width: auto;
}

.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 400;
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: rgba(255,255,255,0.08);
}

.nav-cta {
  background: var(--accent) !important;
  color: white !important;
  border-radius: 4px;
  padding: 0.5rem 1.1rem !important;
}

.nav-cta:hover { background: #5e4429 !important; }

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.5rem 0;
  list-style: none;
  min-width: 160px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1.1rem;
  font-size: 14px;
  color: rgba(255,255,255,0.8) !important;
  background: transparent !important;
  border-radius: 0;
}

.dropdown-menu li a:hover {
  color: white !important;
  background: rgba(255,255,255,0.06) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  text-decoration: none;
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 400;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(196,154,108,0.035) 60px,
    rgba(196,154,108,0.035) 61px
  );
}

.hero-content {
  position: relative;
  text-align: center;
  color: white;
  padding: 2rem 1.5rem;
  max-width: 700px;
  animation: heroFadeUp 0.9s ease both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-light);
  margin-bottom: 1.4rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 1.4rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-light);
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0.82;
  max-width: 520px;
  margin: 0 auto 2.4rem;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: white;
  text-decoration: none;
  padding: 14px 2rem;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover { background: #5e4429; }
.btn-primary:active { transform: scale(0.98); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: white;
  text-decoration: none;
  padding: 14px 2rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.35);
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.06);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  animation: bob 2s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--accent);
  padding: 1.6rem 1.5rem;
}

.trust-bar-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-item {
  flex: 1;
  text-align: center;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.trust-item strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}

.trust-item span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.72;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

/* ─── INTRO ─── */
.intro {
  padding: 6rem 1.5rem;
}

.intro-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-eyebrow.center { text-align: center; }
.section-eyebrow.light { color: var(--accent-light); }

.intro-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.2rem;
  color: var(--text);
}

.intro-text p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.6rem;
}

.link-arrow {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: letter-spacing 0.2s;
}

.link-arrow:hover { letter-spacing: 1px; }

.img-placeholder {
  background: var(--border);
  border-radius: 12px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  border: 1px solid var(--border);
}

/* ─── MODELS ─── */
.models {
  padding: 5rem 1.5rem 6rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.models-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text);
}

.section-title.light { color: white; }

.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.model-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.model-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(30,27,22,0.1);
}

.model-card.featured {
  border-color: var(--accent-light);
  border-width: 2px;
}

.model-img {
  position: relative;
  height: 200px;
}

.model-img .img-placeholder {
  height: 100%;
  border-radius: 0;
  border: none;
}

.model-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
}

.model-body {
  padding: 1.4rem;
}

.model-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.model-body p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 1rem;
}

.model-specs {
  display: flex;
  gap: 12px;
  margin-bottom: 1.2rem;
}

.model-specs span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent);
  background: rgba(122,92,58,0.1);
  padding: 4px 10px;
  border-radius: 4px;
}

.btn-card {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: var(--accent);
  color: white;
  text-decoration: none;
  padding: 10px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  transition: background 0.2s;
}

.btn-card:hover { background: #5e4429; }

/* ─── PROCESS ─── */
.process {
  background: var(--dark);
  padding: 5.5rem 1.5rem;
}

.process-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 3rem;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--accent-light);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.process-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
}

.process-arrow {
  color: var(--accent-light);
  font-size: 1.4rem;
  opacity: 0.4;
  padding-top: 1rem;
  flex-shrink: 0;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: 5.5rem 1.5rem;
}

.testimonials-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem 1.5rem;
}

.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.4rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: var(--text);
}

.testimonial-author span {
  font-size: 12px;
  color: var(--muted);
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--accent);
  padding: 5rem 1.5rem;
  text-align: center;
}

.cta-banner-inner { max-width: 600px; margin: 0 auto; }

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.8rem;
}

.cta-banner p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-banner .btn-primary {
  background: white;
  color: var(--accent);
}

.cta-banner .btn-primary:hover { background: var(--bg); }

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-light);
  display: block;
  margin-bottom: 0.8rem;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.footer-col a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 12px;
  padding: 1.2rem;
  color: rgba(255,255,255,0.3);
}

/* ─── FADE IN ─── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .models-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-arrow { transform: rotate(90deg); }
  .hero h1 { font-size: 3rem; }
}

@media (max-width: 600px) {
  .intro-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .trust-bar-inner { flex-wrap: wrap; }
  .trust-item { flex: 0 0 50%; padding: 0.5rem 0; }
  .trust-divider { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.4rem; }
}