/* === FONTS === */
@font-face {
  font-family: "Paytone One";
  font-display: swap;
  src: url("/fonts/PaytoneOne-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Rubik";
  font-display: swap;
  src: url("/fonts/Rubik-VariableFont_wght.ttf") format("truetype");
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Rubik", system-ui, -apple-system, sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === VARIABLES === */
:root {
  --gold: #ffb432;
  --gold-dark: #e5a02c;
  --brown: #3a2a1a;
  --brown-light: #5c4033;
  --cream: #fdf8f0;
  --dark: #1a1a1a;
  --gray: #666;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* === LAYOUT === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.text-center { text-align: center; }

h1, h2, h3, h4 { font-family: "Paytone One", sans-serif; line-height: 1.2; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 0.75rem; }
.section-sub { color: var(--gray); max-width: 640px; margin: 0 auto 2.5rem; text-align: center; font-size: 1.05rem; }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--gold);
  color: var(--brown);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(58, 42, 26, 0.95);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.15); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo img { height: 56px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--brown) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
}
.nav-cta:hover { background: var(--gold-dark) !important; }
.nav-cta-alt {
  background: transparent !important;
  color: var(--gold) !important;
  border: 1.5px solid var(--gold);
}
.nav-cta-alt:hover { background: rgba(255,180,50,0.15) !important; }
@media (min-width: 769px) {
  .nav-cta-alt { padding: 0.5rem 2.5rem; }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('/images/9032.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(58,42,26,0.7) 0%, rgba(26,26,26,0.6) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 720px; padding: 2rem 1.5rem; }
.hero-tag {
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  margin-bottom: 0.5rem;
}
.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  opacity: 0.9;
  margin-bottom: 1rem;
}
.hero-desc {
  font-size: 1.05rem;
  opacity: 0.85;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === WHY PARTNER === */
.why-partner { background: var(--cream); text-align: center; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  color: var(--gold);
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.feature-card p { color: var(--gray); font-size: 0.95rem; }

/* === BESTSELLERS === */
.bestsellers { text-align: center; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.product-card:hover { transform: translateY(-4px); }
.product-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.product-card h3 {
  font-size: 1.1rem;
  padding: 1rem 1rem 0.25rem;
}
.product-card p {
  color: var(--gray);
  font-size: 0.9rem;
  padding: 0 1rem 1.25rem;
}

/* === CTA SECTION === */
.cta-section {
  position: relative;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(58, 42, 26, 0.85);
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.cta-content h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin-bottom: 0.5rem;
}
.cta-content h3 {
  color: var(--gold);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.cta-content p { opacity: 0.9; margin-bottom: 2rem; }

/* === SHOWCASE === */
.showcase { background: var(--cream); }
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.showcase-img img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.showcase-text h2 { margin-bottom: 1rem; }
.showcase-text p { color: var(--gray); margin-bottom: 1.5rem; }

/* === CONTACT === */
.contact-section { background: #fff; }
.contact-split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-side {
  background: var(--brown);
  color: #fff;
  padding: 2.5rem;
  border-radius: var(--radius);
}
.contact-bird { width: 60px; margin-bottom: 1.5rem; }
.contact-info-side h3 {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.contact-info-side p { margin-bottom: 0.75rem; font-size: 0.95rem; opacity: 0.9; }
.contact-info-side a { color: var(--gold); }
.contact-info-side a:hover { text-decoration: underline; }

.contact-form-side h2 { margin-bottom: 1.5rem; }
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  background: #fafafa;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.contact-form textarea { margin-bottom: 1rem; resize: vertical; }
.form-status { margin-top: 0.75rem; font-size: 0.9rem; }
.form-status.success { color: #2a7d2a; }
.form-status.error { color: #c0392b; }

/* === FOOTER === */
.footer {
  background: var(--brown);
  color: rgba(255,255,255,0.8);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-about { font-size: 0.9rem; line-height: 1.7; }
.footer h4 {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.footer ul li {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.footer a:hover { color: var(--gold); }
.footer-col p { font-size: 0.9rem; margin-bottom: 0.3rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { opacity: 0.7; }
.footer-legal a:hover { opacity: 1; color: var(--gold); }
.footer-portals {
  display: flex;
  gap: 1.5rem;
  opacity: 0.35;
  font-size: 0.75rem;
}
.footer-portals a:hover { opacity: 1; color: var(--gold); }

/* === FAQ (contact page) === */
.faq-section { background: var(--cream); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: "Paytone One", sans-serif;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-q::after { content: '\2212'; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray);
  font-size: 0.95rem;
}
.faq-item.open .faq-a { max-height: 300px; }

/* === SAMPLE FORM === */
.sample-form-section { background: #fff; }
.sample-form-section .contact-form { max-width: 640px; margin: 0 auto; }

/* === INSIGHTS (blog page) === */
.insights-hero {
  padding-top: 120px;
  padding-bottom: 3rem;
  background: var(--cream);
  text-align: center;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.article-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}
.article-card:hover { transform: translateY(-4px); }
.article-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.article-card-body { padding: 1.5rem; }
.article-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.article-card p { color: var(--gray); font-size: 0.9rem; }

/* === PAGE HEADER (subpages) === */
.page-header {
  padding-top: 120px;
  padding-bottom: 3rem;
  background: var(--brown);
  color: #fff;
  text-align: center;
}
.page-header p { color: rgba(255,255,255,0.7); margin-top: 0.5rem; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--brown);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-cta { text-align: center; margin-top: 0.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 90vh; }
}
