/* =========================================================
   YOLKVISUAL THEME — main.css
   Brand: #E8922A orange, #1C1C1A dark, #F5F5F0 off-white
   ========================================================= */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --yolk-orange:   #E8922A;
  --yolk-orange-d: #C97B1C;
  --yolk-dark:     #1C1C1A;
  --yolk-dark2:    #2A2A28;
  --yolk-dark3:    #111110;
  --yolk-mid:      #3A3A38;
  --yolk-light:    #F5F5F0;
  --yolk-white:    #FFFFFF;
  --yolk-gray:     #888;
  --yolk-border-d: #2A2A28;
  --yolk-border-l: #E0E0DA;
  --radius-sm:     6px;
  --radius-md:     10px;
  --radius-lg:     14px;
  --max-w:         1160px;
  --font:          -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--yolk-dark);
  background: var(--yolk-light);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: opacity .15s, transform .1s;
  text-decoration: none;
}
.btn:hover { opacity: .88; }
.btn:active { transform: scale(.98); }

.btn-primary {
  background: var(--yolk-orange);
  color: var(--yolk-dark);
}
.btn-ghost-orange {
  background: transparent;
  color: var(--yolk-orange);
  border: 1.5px solid var(--yolk-orange);
}
.btn-ghost-light {
  background: transparent;
  color: var(--yolk-light);
  border: 1.5px solid rgba(245,245,240,.3);
}
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ---------- EYEBROW ---------- */
.eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yolk-orange);
  margin-bottom: 10px;
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.site-header {
  background: var(--yolk-dark);
  border-bottom: 1px solid var(--yolk-border-d);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon { width: 34px; height: 34px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-brand {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--yolk-orange);
}
.logo-brand span { color: #777; }
.logo-tagline {
  font-size: 8px;
  letter-spacing: 2.5px;
  color: #555;
  margin-top: 3px;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 13px;
  color: #aaa;
  transition: color .15s;
}
.nav-links a:hover { color: var(--yolk-light); }
.nav-cta { margin-left: 8px; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #aaa;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: var(--yolk-dark);
  padding: 72px 0 80px;
  overflow: hidden;
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.hero-left { flex: 1; max-width: 560px; }

.hero-h1 {
  font-size: 46px;
  font-weight: 500;
  line-height: 1.12;
  color: var(--yolk-light);
  margin-bottom: 20px;
  letter-spacing: -.5px;
}
.hero-h1 em {
  color: var(--yolk-orange);
  font-style: normal;
}
.hero-sub {
  font-size: 16px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero visual — faceplate */
.hero-visual {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.faceplate-card {
  background: var(--yolk-dark2);
  border: 1px solid var(--yolk-mid);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.fp-ports {
  display: flex;
  gap: 8px;
  align-items: center;
}
.fp-port-ac {
  width: 32px;
  height: 22px;
  border-radius: 5px;
  border: 2px solid var(--yolk-orange);
  background: var(--yolk-dark);
}
.fp-port-usb {
  width: 16px;
  height: 20px;
  border-radius: 3px;
  border: 2px solid #555;
  background: var(--yolk-dark);
}
.fp-port-hdmi {
  width: 26px;
  height: 18px;
  border-radius: 3px;
  border: 2px solid #777;
  background: var(--yolk-dark);
}
.fp-label {
  font-size: 9px;
  letter-spacing: 2px;
  color: #444;
  text-transform: uppercase;
  text-align: center;
}
.fp-badge {
  background: #2e1a08;
  color: var(--yolk-orange);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}

/* =========================================================
   STATS STRIP
   ========================================================= */
.stats-strip {
  background: var(--yolk-dark3);
  border-bottom: 1px solid var(--yolk-border-d);
}
.stats-inner {
  display: flex;
}
.stat-item {
  flex: 1;
  padding: 20px 0;
  text-align: center;
  border-right: 1px solid var(--yolk-border-d);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 26px;
  font-weight: 500;
  color: var(--yolk-orange);
  line-height: 1.1;
}
.stat-desc {
  font-size: 11px;
  color: #555;
  margin-top: 3px;
  letter-spacing: .5px;
}

/* =========================================================
   BUYERS SECTION
   ========================================================= */
.buyers-section {
  padding: 64px 0;
  background: var(--yolk-light);
}
.section-header { margin-bottom: 36px; }
.section-title {
  font-size: 28px;
  font-weight: 500;
  color: var(--yolk-dark);
  margin-bottom: 6px;
}
.section-sub {
  font-size: 15px;
  color: #666;
}

.buyers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.buyer-card-dark {
  background: var(--yolk-dark2);
  border: 1px solid var(--yolk-mid);
  border-radius: var(--radius-md);
  padding: 28px;
}
.buyer-card-light {
  background: var(--yolk-white);
  border: 1px solid var(--yolk-border-l);
  border-radius: var(--radius-md);
  padding: 28px;
}
.buyer-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
  font-weight: 500;
}
.buyer-tag-orange {
  background: #2e1a08;
  color: var(--yolk-orange);
}
.buyer-tag-gray {
  background: #f0efe8;
  color: #888;
  border: 1px solid var(--yolk-border-l);
}
.buyer-title-white {
  font-size: 17px;
  font-weight: 500;
  color: var(--yolk-light);
  margin-bottom: 10px;
  line-height: 1.3;
}
.buyer-title-dark {
  font-size: 17px;
  font-weight: 500;
  color: var(--yolk-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.buyer-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #999;
}
.buyer-desc-light {
  font-size: 13px;
  line-height: 1.7;
  color: #555;
}
.buyer-cta {
  display: inline-block;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--yolk-orange);
}
.buyer-cta:hover { text-decoration: underline; }

/* =========================================================
   YV-205 PRODUCT SECTION
   ========================================================= */
.product-section {
  padding: 72px 0;
  background: var(--yolk-dark);
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.product-visual {
  background: var(--yolk-dark2);
  border: 1px solid var(--yolk-mid);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.product-photo {
  width: 100%;
  max-width: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--yolk-dark);
}
.product-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.product-photo-placeholder {
  width: 100%;
  height: 180px;
  background: var(--yolk-dark);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--yolk-mid);
}
.product-photo-placeholder .fp-ports { gap: 10px; }
.product-custom-label {
  background: #2e1a08;
  color: var(--yolk-orange);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
}

.product-info .eyebrow { margin-bottom: 8px; }
.product-info h2 {
  font-size: 34px;
  font-weight: 500;
  color: var(--yolk-light);
  margin-bottom: 4px;
}
.product-sku {
  font-size: 11px;
  color: #444;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.product-desc {
  font-size: 15px;
  color: #888;
  line-height: 1.75;
  margin-bottom: 24px;
}
.product-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.product-features li {
  font-size: 14px;
  color: #bbb;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}
.product-features li::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--yolk-orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

/* =========================================================
   MAMPARAS SECTION
   ========================================================= */
.mamparas-section {
  padding: 72px 0;
  background: var(--yolk-dark3);
}
.mamparas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.floorplan-wrap {
  background: #0d0d0c;
  border: 1px solid var(--yolk-border-d);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.mamparas-info h2 {
  font-size: 28px;
  font-weight: 500;
  color: var(--yolk-light);
  margin-bottom: 14px;
  line-height: 1.2;
}
.mamparas-info p {
  font-size: 15px;
  color: #888;
  line-height: 1.75;
  margin-bottom: 24px;
}
.mamparas-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.mamparas-features li {
  font-size: 14px;
  color: #bbb;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.mamparas-features li::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--yolk-orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

/* =========================================================
   PROJECTS / MEDIADORES SECTION
   ========================================================= */
.projects-section {
  padding: 72px 0;
  background: var(--yolk-light);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.project-card {
  background: var(--yolk-white);
  border: 1px solid var(--yolk-border-l);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .2s;
}
.project-card:hover { transform: translateY(-3px); }
.project-img {
  height: 160px;
  background: #e8e6de;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 1px;
  color: #bbb;
  text-transform: uppercase;
}
.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-body { padding: 18px; }
.project-tag {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yolk-orange);
  margin-bottom: 6px;
  font-weight: 500;
}
.project-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--yolk-dark);
  margin-bottom: 6px;
  line-height: 1.35;
}
.project-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.55;
}
.project-quote {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--yolk-border-l);
  font-size: 12px;
  color: #888;
  font-style: italic;
  line-height: 1.5;
}

/* =========================================================
   PROCESS / HOW IT WORKS
   ========================================================= */
.process-section {
  padding: 64px 0;
  background: var(--yolk-white);
  border-top: 1px solid var(--yolk-border-l);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--yolk-orange);
  color: var(--yolk-orange);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--yolk-dark);
}
.step-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* =========================================================
   CTA BLOCK
   ========================================================= */
.cta-section {
  padding: 80px 0;
  background: var(--yolk-dark3);
  border-top: 1px solid var(--yolk-border-d);
  text-align: center;
}
.cta-section h2 {
  font-size: 32px;
  font-weight: 500;
  color: var(--yolk-light);
  margin-bottom: 12px;
  line-height: 1.2;
}
.cta-section p {
  font-size: 16px;
  color: #777;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--yolk-dark);
  border-top: 1px solid var(--yolk-border-d);
  padding: 40px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--yolk-border-d);
  margin-bottom: 28px;
}
.footer-brand .logo-brand { font-size: 15px; }
.footer-tagline {
  font-size: 13px;
  color: #555;
  margin-top: 12px;
  line-height: 1.6;
  max-width: 240px;
}
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 13px;
  color: #666;
  transition: color .15s;
}
.footer-col ul li a:hover { color: var(--yolk-orange); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: 12px; color: #444; }
.footer-contact { font-size: 12px; color: #444; }
.footer-contact a { color: #666; }
.footer-contact a:hover { color: var(--yolk-orange); }

/* =========================================================
   INNER PAGES — basic
   ========================================================= */
.page-hero {
  background: var(--yolk-dark);
  padding: 56px 0;
  border-bottom: 1px solid var(--yolk-border-d);
}
.page-hero h1 {
  font-size: 36px;
  font-weight: 500;
  color: var(--yolk-light);
}
.page-hero p { font-size: 16px; color: #888; margin-top: 8px; }

.page-content {
  padding: 56px 0;
}
.page-content h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--yolk-dark);
}
.page-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 20px;
}

/* =========================================================
   WOOCOMMERCE overrides (minimal)
   ========================================================= */
.woocommerce .woocommerce-ordering select,
.woocommerce .woocommerce-ordering select:focus {
  border: 1px solid var(--yolk-border-l);
  border-radius: var(--radius-sm);
  font-family: var(--font);
}
.woocommerce ul.products li.product .price { color: var(--yolk-orange); }
.woocommerce a.button,
.woocommerce button.button {
  background: var(--yolk-orange) !important;
  color: var(--yolk-dark) !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 500 !important;
  border: none !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover { opacity: .88 !important; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--yolk-dark);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--yolk-border-d);
    z-index: 99;
  }
  .nav-toggle { display: block; }
  .hero { padding: 48px 0; }
  .hero-inner { flex-direction: column; gap: 32px; }
  .hero-h1 { font-size: 32px; }
  .hero-visual { width: 100%; align-items: flex-start; }
  .buyers-grid,
  .product-grid,
  .mamparas-grid,
  .footer-inner { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .stats-inner { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid var(--yolk-border-d); }
}

@media (max-width: 580px) {
  .hero-h1 { font-size: 26px; }
  .projects-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .cta-section h2 { font-size: 24px; }
  .stat-item { flex: 0 0 100%; }
}
