:root {
  --bg: #0b0b0a;
  --surface: #151514;
  --surface-soft: #20201e;
  --text: #f7f4eb;
  --muted: #c9c2b3;
  --line: rgba(255, 255, 255, 0.14);
  --gold: #d9b15e;
  --gold-dark: #a77c2f;
  --green: #25d366;
  --green-dark: #128c4a;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 7vw;
  background: linear-gradient(180deg, rgba(4, 4, 4, 0.9), rgba(4, 4, 4, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-logo {
  display: inline-flex;
  width: 70px;
  height: 58px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: #000;
  flex: 0 0 auto;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  font-weight: 800;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a {
  opacity: 0.9;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold);
}

.nav-cta {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("assets/ogochi-storefront.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 28%, rgba(0, 0, 0, 0.4) 62%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(0deg, rgba(11, 11, 10, 0.98) 0%, rgba(11, 11, 10, 0.1) 38%);
}

.hero-content {
  width: min(var(--max), 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 160px 32px 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  max-width: 740px;
  margin-bottom: 26px;
  font-size: 78px;
}

h2 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
}

.hero-actions,
.final-cta-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 14px 22px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: #111;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #e5c77d;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--gold);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(720px, 100%);
  margin-top: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.stats div {
  padding: 24px;
}

.stats div + div {
  border-left: 1px solid var(--line);
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  margin-bottom: 6px;
  font-size: 21px;
}

.stats span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: 96px 32px;
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.about-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(217, 177, 94, 0.14), transparent 32%),
    var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 62px;
  align-items: center;
}

.portrait-frame {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.portrait-frame img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center top;
}

.section-copy p,
.section-heading p,
.feature-product p,
.brand-panel p,
.process-grid p,
.final-cta p {
  color: var(--muted);
  font-size: 17px;
}

.section-copy p {
  max-width: 660px;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-points span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 800;
}

.products-section {
  background: #11110f;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
}

.feature-product {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.feature-product img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
}

.feature-product div {
  padding: 28px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.product-grid article,
.process-grid article,
.brand-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.product-grid article {
  min-height: 210px;
  padding: 26px;
}

.product-grid span {
  display: block;
  margin-bottom: 32px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.product-grid p {
  color: var(--muted);
}

.brands-section {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.18)),
    url("assets/ogochi-interior.png") center/cover fixed;
}

.brand-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: stretch;
}

.brand-panel > div:first-child {
  padding: 54px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid var(--line);
}

.brand-panel h2 {
  font-size: 66px;
}

.brand-card {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(21, 21, 20, 0.92);
}

.brand-card-logo {
  display: inline-flex;
  width: 190px;
  height: 138px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000;
}

.brand-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-card strong {
  margin-bottom: 10px;
  font-size: 22px;
}

.process-section {
  background: var(--bg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-grid article {
  padding: 28px;
}

.process-grid strong {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #111;
}

.final-cta {
  padding: 86px 32px;
  background: linear-gradient(135deg, #171714, #0c0c0b);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.final-cta-inner {
  justify-content: space-between;
  gap: 28px;
}

.final-cta h2 {
  max-width: 680px;
}

.final-cta p {
  max-width: 650px;
  margin-bottom: 0;
}

.footer-promo {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: 32px;
  align-items: center;
  padding: 84px max(32px, 7vw);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(217, 177, 94, 0.22), transparent 34%),
    #080807;
  border-top: 1px solid var(--line);
}

.footer-promo-copy {
  max-width: 430px;
}

.footer-promo-copy p {
  color: var(--muted);
}

.footer-promo img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 7vw 110px;
  color: var(--muted);
  background: #080807;
  font-size: 14px;
}

.site-footer span {
  display: block;
}

.site-footer a {
  color: var(--gold);
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3);
  font-weight: 900;
  text-transform: uppercase;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: var(--green-dark);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    padding: 18px 24px;
  }

  .nav-links {
    max-width: 430px;
    flex-wrap: wrap;
    gap: 10px 18px;
    font-size: 12px;
  }

  .hero-content {
    padding: 150px 24px 74px;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .about-grid,
  .product-showcase,
  .brand-panel {
    grid-template-columns: 1fr;
  }

  .portrait-frame img {
    height: 520px;
  }

  .brand-panel > div:first-child {
    padding: 34px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-header {
    position: fixed;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(4, 4, 4, 0.84);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
  }

  .brand {
    min-width: 0;
    margin-bottom: 0;
    flex: 0 0 auto;
    gap: 9px;
  }

  .brand-logo {
    width: 48px;
    height: 42px;
    border-radius: 6px;
  }

  .brand strong {
    font-size: 15px;
    line-height: 1.05;
  }

  .brand small {
    max-width: 92px;
    font-size: 9px;
    line-height: 1.15;
  }

  .nav-links {
    flex: 1 1 auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 10px;
  }

  .nav-cta {
    border-color: rgba(217, 177, 94, 0.72);
  }

  .hero-bg {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.7)),
      linear-gradient(0deg, rgba(11, 11, 10, 0.98) 0%, rgba(11, 11, 10, 0.18) 48%);
  }

  h1 {
    max-width: 11ch;
    font-size: 40px;
    line-height: 0.98;
  }

  h2,
  .brand-panel h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  h3 {
    font-size: 20px;
  }

  .section,
  .final-cta {
    padding: 58px 18px;
  }

  .hero-content {
    min-height: auto;
    padding: 128px 18px 46px;
  }

  .hero-copy,
  .section-copy p,
  .section-heading p,
  .feature-product p,
  .brand-panel p,
  .process-grid p,
  .final-cta p {
    font-size: 16px;
  }

  .hero-copy {
    max-width: 36ch;
    margin-bottom: 24px;
    font-weight: 600;
  }

  .hero-actions,
  .final-cta-inner {
    align-items: stretch;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .stats {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .stats div {
    padding: 16px;
  }

  .stats div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .portrait-frame img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .feature-product img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .feature-product div,
  .product-grid article,
  .process-grid article {
    padding: 22px;
  }

  .product-grid article {
    min-height: auto;
  }

  .product-grid span {
    margin-bottom: 18px;
  }

  .brands-section {
    background-attachment: scroll;
    background-position: center;
  }

  .brand-card {
    padding: 28px;
  }

  .brand-card-logo {
    width: 150px;
    height: 110px;
  }

  .footer-promo {
    grid-template-columns: 1fr;
    padding: 58px 18px;
    gap: 22px;
  }

  .footer-promo img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
  }

  .site-footer {
    display: block;
    padding: 28px 20px 104px;
  }

  .site-footer span {
    display: block;
    margin-bottom: 6px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    left: 16px;
    justify-content: center;
    min-height: 54px;
  }
}

@media (max-width: 420px) {
  .brand-logo {
    width: 44px;
    height: 39px;
  }

  .brand strong {
    font-size: 14px;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    padding: 7px 9px;
  }

  .nav-cta {
    padding: 7px 10px;
  }

  .hero-content {
    padding-top: 118px;
  }

  h1 {
    font-size: 34px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .button {
    min-height: 50px;
    padding: 12px 16px;
    font-size: 13px;
  }
}
