@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --cream: #f3efe2;
  --yellow: #f6dd9c;
  --dark: #2b2620;
  --gold: #d9a441;
  --text-dark: #2b2620;
  --text-muted: #5a5346;
  font-size: 16px;
}

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

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

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 28px 0;
}

.site-header.solid {
  position: relative;
  background: var(--dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  min-width: 0;
  flex-shrink: 1;
}

.logo img {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.logo-text { min-width: 0; }

.logo-text .brand {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-width: 100%;
}

.logo-text .tagline {
  font-size: 0.62rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.85;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-width: 100%;
}

.main-nav {
  display: flex;
  gap: 36px;
}

.main-nav a {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.phone-pill {
  background: #fff;
  color: var(--dark);
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 3px;
  font-size: 0.95rem;
  white-space: nowrap;
}

/* Mobile hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 20;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.solid .nav-toggle span { background: #fff; }

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-panel {
  display: none;
}

.mobile-nav-panel.open {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--dark);
  padding: 10px 0 20px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.25);
}

.mobile-nav-panel a {
  display: block;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.92rem;
  padding: 14px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav-panel a.active { color: var(--gold); }

.mobile-nav-panel .mobile-phone {
  display: block;
  margin: 16px 40px 0;
  background: var(--gold);
  color: var(--dark);
  text-align: center;
  font-weight: 700;
  padding: 12px;
  border-radius: 3px;
  text-transform: none;
  letter-spacing: normal;
}

/* Hero */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 26, 20, 0.55);
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 40px 60px;
  width: 100%;
}

.hero h1 {
  color: #fff;
  font-size: 3.4rem;
  max-width: 760px;
  margin-bottom: 28px;
}

.hero-flex {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-copy {
  max-width: 420px;
  color: #fff;
}

.hero-copy p {
  margin-bottom: 20px;
  opacity: 0.92;
}

.btn {
  display: inline-block;
  background: var(--dark);
  color: #fff;
  padding: 14px 30px;
  font-weight: 700;
  border-radius: 3px;
  font-size: 0.95rem;
}

.btn.outline {
  background: transparent;
  border: 1px solid var(--dark);
  color: var(--dark);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--dark);
  color: var(--dark);
  padding: 14px 24px;
  font-weight: 700;
  border-radius: 3px;
}

/* Sub hero (About/Contact) */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 26, 20, 0.6);
}

.page-hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 40px 60px;
  width: 100%;
}

.page-hero h1 {
  color: #fff;
  font-size: 3rem;
  position: relative;
  padding-left: 24px;
}

.page-hero h1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 40px;
  height: 4px;
  background: var(--gold);
}

/* Sections */
section {
  padding: 90px 0;
}

.section-cream { background: var(--cream); }
.section-yellow { background: var(--yellow); }
.section-dark { background: var(--dark); color: #fff; }

.section-title {
  font-size: 2.2rem;
  max-width: 780px;
  margin-bottom: 20px;
}

.section-lede {
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 50px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.feature-grid h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.feature-grid p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* About / Mission split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.split img {
  border-radius: 4px;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 4 / 3;
  align-self: start;
}

.split h2 {
  font-size: 2.4rem;
  margin-bottom: 24px;
}

.split p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.mv-block {
  margin-bottom: 40px;
}

.mv-block h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.mv-block p {
  color: var(--text-muted);
}

/* Why choose us */
.why-choose p {
  color: var(--text-muted);
  max-width: 800px;
  margin-bottom: 24px;
}

.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 60px;
  border-radius: 4px;
  overflow: hidden;
}

.cta-split .yellow-panel {
  background: var(--yellow);
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.cta-split .yellow-panel h3 {
  font-size: 1.5rem;
  max-width: 260px;
}

.cta-split img {
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

/* Final CTA */
.final-cta h2 {
  font-size: 2.4rem;
  max-width: 600px;
  margin-bottom: 40px;
  color: #fff;
}

/* Disclaimer + footer */
.disclaimer {
  background: var(--cream);
  padding: 70px 0 0;
}

.disclaimer h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 30px;
}

.disclaimer p {
  color: var(--text-muted);
  max-width: 900px;
  margin: 0 auto 20px;
}

footer {
  background: var(--cream);
  border-top: 1px solid rgba(43,38,32,0.15);
  margin-top: 60px;
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  gap: 50px;
}

.footer-logo {
  background: #3a3428;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 3px;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.footer-col p, .footer-col a {
  color: var(--text-muted);
  display: block;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a::before { content: '✓ '; color: var(--gold); }

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(43,38,32,0.12);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Contact page */
.contact-details {
  margin-bottom: 60px;
}

.contact-details h1 {
  font-size: 2rem;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 30px;
}

.contact-details .we-help {
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-details .we-help + p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contact-line {
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* Provider cards */
.provider-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.provider-card {
  background: #fff;
  border: 1px solid rgba(43,38,32,0.1);
  border-radius: 6px;
  padding: 32px;
  position: relative;
}

.provider-card.popular { border-color: var(--gold); }

.pcard-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--yellow);
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
}

.pcard-name { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.2rem; }
.pcard-type { font-size: 0.82rem; color: var(--text-muted); }

.provider-card ul { list-style: none; margin: 20px 0 24px; }
.provider-card ul li { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 10px; padding-left: 22px; position: relative; }
.provider-card ul li::before { content: '✓'; color: var(--gold); font-weight: 700; position: absolute; left: 0; }

.pcard-cta { display: inline-block; width: 100%; text-align: center; background: var(--dark); color: #fff; font-weight: 700; padding: 12px; border-radius: 3px; font-size: 0.92rem; }
.pcard-cta.outline { background: transparent; color: var(--dark); border: 1px solid var(--dark); }

.reseller-banner {
  margin-top: 60px;
  background: var(--dark);
  color: #fff;
  border-radius: 6px;
  padding: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.reseller-banner h3 { font-size: 1.4rem; margin-bottom: 10px; }
.reseller-banner p { color: #cfc8b8; max-width: 480px; margin-bottom: 14px; }
.reseller-banner .badge-line { display: flex; gap: 20px; font-size: 0.9rem; color: var(--gold); flex-wrap: wrap; }

/* Steps */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; margin-top: 50px; }
.step-number { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 800; color: var(--gold); margin-bottom: 12px; }
.step-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.step-card p { color: var(--text-muted); font-size: 0.92rem; }

/* FAQ accordion (native details/summary, no JS needed) */
.faq-list { max-width: 820px; margin: 50px auto 0; }
.faq-item { border-bottom: 1px solid rgba(43,38,32,0.15); }
.faq-item summary { cursor: pointer; list-style: none; padding: 22px 0; font-weight: 600; font-size: 1.02rem; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--gold); font-weight: 400; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { color: var(--text-muted); padding-bottom: 22px; max-width: 700px; }

/* Contact form */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; }
.contact-form-card { background: #fff; border: 1px solid rgba(43,38,32,0.1); border-radius: 6px; padding: 40px; }
.contact-form-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.contact-form-card > p { color: var(--text-muted); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 1px solid rgba(43,38,32,0.2); border-radius: 3px; font-family: inherit; font-size: 0.95rem; background: var(--cream); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-submit { width: 100%; background: var(--dark); color: #fff; border: none; padding: 15px; font-weight: 700; font-size: 0.95rem; border-radius: 3px; cursor: pointer; }
.form-submit:hover { background: #423a2c; }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 12px; }

/* Legal pages */
.legal-content h2 { font-size: 1.25rem; margin: 34px 0 12px; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { color: var(--text-muted); margin-bottom: 14px; }
.legal-content ul { padding-left: 22px; margin-bottom: 16px; }
.legal-content ul li { color: var(--text-muted); margin-bottom: 8px; }
.legal-content a { color: var(--gold); text-decoration: underline; }
.legal-date { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 36px; }
.legal-highlight { background: var(--yellow); border-radius: 4px; padding: 22px 26px; margin-top: 30px; }
.legal-highlight p { color: var(--text-dark); margin-bottom: 4px; }
.breadcrumb { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 30px; }
.breadcrumb a { color: var(--dark); font-weight: 600; text-decoration: underline; }

/* ===== Responsive ===== */

/* Tablet (900px and below): hide desktop nav, show hamburger */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-inner { position: relative; }

  .hero h1 { font-size: 2.6rem; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split img { max-height: 320px; }
  .cta-split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .provider-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .page-hero h1 { font-size: 2.4rem; }
  .reseller-banner { flex-direction: column; align-items: flex-start; }
  section { padding: 60px 0; }
  .container { padding: 0 28px; }
  .header-inner { padding: 0 28px; }
}

/* Small tablet / large phone */
@media (max-width: 700px) {
  .hero h1 { font-size: 2.1rem; }
  .hero-inner { padding: 130px 28px 50px; }
  .page-hero-inner { padding: 130px 28px 50px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .feature-grid { grid-template-columns: 1fr; }
  .provider-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section-title { font-size: 1.7rem; }
}

/* Mobile phones */
@media (max-width: 480px) {
  :root { font-size: 15px; }
  .header-inner { padding: 0 16px; gap: 10px; }
  .header-actions { gap: 10px; }
  .logo { gap: 8px; }
  .logo img { width: 28px; height: 28px; }
  .logo-text .brand { font-size: 0.8rem; }
  .logo-text .tagline { font-size: 0.5rem; }
  .phone-pill { padding: 8px 12px; font-size: 0.75rem; }
  .nav-toggle { width: 28px; height: 28px; }
  .hero h1 { font-size: 1.7rem; }
  .hero-inner { padding: 100px 18px 40px; }
  .page-hero-inner { padding: 100px 18px 40px; }
  .page-hero h1 { font-size: 1.9rem; }
  .container { padding: 0 18px; }
  section { padding: 46px 0; }
  .btn, .btn-arrow { width: 100%; text-align: center; justify-content: center; }
  .cta-split .yellow-panel { padding: 34px 26px; }
  .disclaimer { padding-top: 46px; }
}

/* Very small phones (e.g. iPhone SE) */
@media (max-width: 360px) {
  .logo-text .tagline { display: none; }
  .header-inner { gap: 8px; }
  .phone-pill { padding: 7px 10px; font-size: 0.68rem; }
}
