/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #2C2420;
  background: #FDF8F3;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: #B85042; color: #fff; padding: .5rem 1rem;
  border-radius: 0 0 6px 6px; z-index: 200; font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ===== VARIABLES ===== */
:root {
  --terracotta: #B85042;
  --terracotta-dark: #9A3F32;
  --sand: #F5E6D3;
  --sand-light: #FDF8F3;
  --sand-dark: #E8D5C0;
  --brown-dark: #2C2420;
  --brown-mid: #5C4A3A;
  --brown-light: #8B7355;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(44,36,32,0.08);
  --shadow-md: 0 4px 16px rgba(44,36,32,0.10);
  --shadow-lg: 0 8px 32px rgba(44,36,32,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 1.25rem;
}
.text-terracotta { color: var(--terracotta); }
.section-sub {
  font-size: 1.05rem;
  color: var(--brown-mid);
  max-width: 560px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.75rem; border-radius: 50px;
  font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600;
  transition: var(--transition); cursor: pointer; border: 2px solid transparent;
}
.btn-primary {
  background: var(--terracotta); color: var(--white); border-color: var(--terracotta);
}
.btn-primary:hover { background: var(--terracotta-dark); border-color: var(--terracotta-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent; color: var(--terracotta); border-color: var(--terracotta);
}
.btn-outline:hover { background: var(--terracotta); color: var(--white); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253,248,243,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--sand-dark);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; padding-bottom: 1rem;
}
.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: var(--brown-dark); }
.logo-accent { color: var(--terracotta); }

/* NAV */
.nav-menu { display: flex; align-items: center; gap: 0.25rem; }
.nav-menu a {
  padding: 0.5rem 0.875rem; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500; color: var(--brown-mid);
  transition: var(--transition);
}
.nav-menu a:hover { color: var(--terracotta); background: rgba(184,80,66,0.07); }
.nav-cta { background: var(--terracotta) !important; color: var(--white) !important; border-radius: 50px !important; margin-left: 0.5rem; }
.nav-cta:hover { background: var(--terracotta-dark) !important; }

/* MOBILE NAV TOGGLE */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 0.5rem; color: var(--brown-dark);
}
.nav-line1, .nav-line2, .nav-line3 { transition: var(--transition); transform-origin: center; }
.nav-toggle[aria-expanded="true"] .nav-line1 { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-line2 { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-line3 { transform: translateY(-6px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 8rem 0 6rem; overflow: hidden;
  background: linear-gradient(135deg, var(--sand-light) 0%, var(--sand) 50%, #EDD9C4 100%);
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle at 25% 25%, var(--terracotta) 1px, transparent 1px),
                    radial-gradient(circle at 75% 75%, var(--terracotta) 1px, transparent 1px);
  background-size: 48px 48px, 48px 48px;
  pointer-events: none;
}
.hero .container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(184,80,66,0.1); color: var(--terracotta);
  padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800; line-height: 1.1; color: var(--brown-dark);
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.1rem; color: var(--brown-mid); line-height: 1.75;
  margin-bottom: 2rem; max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-social-proof {
  display: flex; align-items: center; gap: 1.5rem;
  padding-top: 2rem; border-top: 1px solid var(--sand-dark);
}
.proof-item { display: flex; flex-direction: column; }
.proof-number { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--brown-dark); }
.proof-label { font-size: 0.8rem; color: var(--brown-light); font-weight: 500; }
.proof-divider { width: 1px; height: 40px; background: var(--sand-dark); }

/* HERO VISUAL */
.hero-visual {
  position: relative; height: 560px;
}
.hero-card {
  position: absolute; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-1 { width: 260px; height: 340px; top: 0; right: 0; z-index: 1; }
.hero-card-2 { width: 220px; height: 180px; bottom: 60px; right: 140px; z-index: 2; }
.hero-card-3 { width: 160px; height: 160px; bottom: 0; right: 20px; z-index: 3; }
.stat-card {
  background: var(--white); display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--sand-dark);
}
.stat-card-inner { text-align: center; }
.stat-number { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--terracotta); line-height: 1; }
.stat-label { font-size: 0.7rem; font-weight: 600; color: var(--brown-light); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.25rem; }

/* HERO WAVE */
.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; }
.hero-wave svg { display: block; width: 100%; height: auto; }

/* ===== ABOUT ===== */
.about { padding: 6rem 0; background: var(--sand-light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 620px; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: -40px; right: -40px;
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 5px solid var(--white);
}
.about-img-secondary img { width: 300px; height: 220px; object-fit: cover; }
.about-accent-box {
  position: absolute; top: -20px; left: -20px;
  background: var(--terracotta); color: var(--white);
  padding: 1rem 1.25rem; border-radius: var(--radius-md);
  display: flex; align-items: center; gap: 0.75rem;
  box-shadow: var(--shadow-md); font-size: 0.85rem; font-weight: 500;
  max-width: 240px; line-height: 1.4;
}
.about-content p { color: var(--brown-mid); margin-bottom: 1rem; line-height: 1.75; }
.about-features { margin-top: 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.feature-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; font-weight: 500; color: var(--brown-dark);
}
.feature-item svg { flex-shrink: 0; }

/* ===== OFFERINGS ===== */
.offerings { padding: 6rem 0; background: var(--white); }
.section-header { margin-bottom: 3.5rem; }
.offerings-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.offering-card {
  background: var(--sand-light); border-radius: var(--radius-md); overflow: hidden;
  transition: var(--transition); border: 1px solid var(--sand-dark);
}
.offering-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.offering-img { position: relative; overflow: hidden; height: 200px; }
.offering-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.offering-card:hover .offering-img img { transform: scale(1.05); }
.offering-tag {
  position: absolute; top: 0.75rem; right: 0.75rem;
  background: var(--terracotta); color: var(--white);
  padding: 0.25rem 0.75rem; border-radius: 50px;
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em;
}
.offering-body { padding: 1.5rem; }
.offering-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--brown-dark); margin-bottom: 0.5rem; }
.offering-body p { font-size: 0.9rem; color: var(--brown-mid); line-height: 1.65; }

/* ===== DEALERS ===== */
.dealers { padding: 6rem 0; background: var(--sand); }
.dealers-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.dealers-content p { color: var(--brown-mid); line-height: 1.75; margin-bottom: 1.5rem; }
.dealers-list { margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.dealers-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; color: var(--brown-dark); font-weight: 500; }
.dealers-visual { position: relative; }
.dealers-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.dealers-img-grid img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius-md); box-shadow: var(--shadow-md); }

/* ===== VISIT ===== */
.visit { padding: 6rem 0; background: var(--white); }
.visit-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--brown-dark); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.visit-info { padding: 3.5rem; }
.visit-info .section-title { color: var(--white); }
.visit-info .section-label { color: var(--sand-dark); }
.visit-details { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.detail-row { display: flex; align-items: flex-start; gap: 1rem; }
.detail-row svg { flex-shrink: 0; margin-top: 0.15rem; color: var(--terracotta); }
.detail-row strong { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--sand-dark); margin-bottom: 0.2rem; }
.detail-row span, .detail-row a { font-size: 0.95rem; color: var(--sand); }
.detail-row a:hover { color: var(--terracotta); }
.visit-hours {
  background: var(--terracotta); padding: 3.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.visit-hours h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 1.5rem; }
.hours-list { display: flex; flex-direction: column; gap: 0.75rem; }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.2);
  font-size: 0.95rem; color: var(--white);
}
.hours-row:last-of-type { border-bottom: none; }
.hours-closed span:last-child { opacity: 0.7; }
.hours-note { margin-top: 1.25rem; font-size: 0.8rem; color: rgba(255,255,255,0.7); line-height: 1.5; }

/* ===== CONTACT ===== */
.contact { padding: 6rem 0; background: var(--sand-light); }
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info p { color: var(--brown-mid); line-height: 1.75; margin-bottom: 2rem; }
.contact-methods { display: flex; flex-direction: column; gap: 1rem; }
.contact-method {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem; background: var(--white); border-radius: var(--radius-sm);
  border: 1px solid var(--sand-dark); transition: var(--transition);
}
.contact-method:hover { border-color: var(--terracotta); box-shadow: var(--shadow-sm); }
.contact-method svg { flex-shrink: 0; }
.contact-method span { font-size: 0.9rem; color: var(--brown-mid); line-height: 1.5; }
.contact-method a { color: var(--brown-mid); transition: var(--transition); }
.contact-method a:hover { color: var(--terracotta); }

/* FORM */
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: var(--shadow-md); border: 1px solid var(--sand-dark);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--brown-dark); text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.75rem 1rem; border: 1.5px solid var(--sand-dark); border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--brown-dark);
  background: var(--sand-light); transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--terracotta); background: var(--white);
  box-shadow: 0 0 0 3px rgba(184,80,66,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: flex; align-items: center; gap: 0.75rem;
  margin-top: 1rem; padding: 1rem; background: #E8F5E9; border-radius: var(--radius-sm);
  color: #2D6A4F; font-size: 0.9rem; font-weight: 500;
}
.form-success svg { flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer { background: var(--brown-dark); color: var(--sand); padding: 4rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand p { margin-top: 1rem; font-size: 0.9rem; color: rgba(245,230,211,0.6); line-height: 1.65; max-width: 280px; }
.footer-links h4 { font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sand-dark); margin-bottom: 1rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.9rem; color: rgba(245,230,211,0.6); transition: var(--transition); }
.footer-links a:hover { color: var(--terracotta); }
.footer-links address { font-style: normal; font-size: 0.9rem; color: rgba(245,230,211,0.6); line-height: 1.75; }
.footer-links a:hover { color: var(--terracotta); }
.footer-bottom {
  border-top: 1px solid rgba(245,230,211,0.1);
  padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(245,230,211,0.4);
}
.footer-bottom p { margin: 0; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 90;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--terracotta); color: var(--white); border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); cursor: pointer;
  opacity: 0; transform: translateY(20px);
  transition: var(--transition); pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--terracotta-dark); transform: translateY(-2px); }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { max-width: 500px; margin: 0 auto; }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .dealers-split { grid-template-columns: 1fr; }
  .dealers-visual { order: -1; }
  .dealers-img-grid { max-width: 500px; }
  .visit-card { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-menu {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--sand-light); flex-direction: column;
    padding: 5rem 2rem 2rem; gap: 0.5rem;
    box-shadow: var(--shadow-lg); transition: var(--transition);
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { width: 100%; padding: 0.75rem 1rem; }
  .nav-cta { margin-left: 0 !important; text-align: center; }
  .nav-toggle { display: block; }
  .hero { min-height: auto; padding: 7rem 0 4rem; }
  .hero-headline { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .offerings-grid { grid-template-columns: 1fr; }
  .about-img-secondary { right: 0; bottom: -30px; }
  .about-accent-box { left: 0; top: -15px; }
  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-social-proof { flex-direction: column; gap: 1rem; }
  .proof-divider { display: none; }
}
