/* Oriental Enterprises — static site styles
   Brand: gold #cb9d06, ember #f4511e, ink #1c1c1c */

:root {
  --brand-50: #fbf7e9;
  --brand-100: #f5ebc4;
  --brand-400: #d4a91f;
  --brand-500: #cb9d06;
  --brand-600: #a87f08;
  --brand-700: #85620e;
  --ember-500: #f4511e;
  --ember-600: #d83c0c;
  --ink-700: #2b2b2b;
  --ink-800: #1c1c1c;
  --ink-900: #121212;
  --muted: #6b6b6b;
  --line: rgba(20, 20, 20, 0.08);
  --shadow-card: 0 8px 30px -10px rgba(0, 0, 0, 0.15);
  --shadow-soft: 0 18px 50px -18px rgba(0, 0, 0, 0.25);
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink-800);
  line-height: 1.65;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; line-height: 1.15; color: var(--ink-900); font-weight: 800; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.bg-cream { background: linear-gradient(180deg, rgba(251,247,233,.55), #fff); }
.bg-soft { background: var(--brand-50); }
.bg-dark { background: var(--ink-900); color: #fff; }
.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px; font-weight: 600; font-size: 15px;
  cursor: pointer; border: 1px solid transparent; transition: all .2s ease; white-space: nowrap;
}
.btn-primary { background: var(--brand-500); color: #fff; box-shadow: var(--shadow-card); }
.btn-primary:hover { background: var(--brand-600); transform: translateY(-2px); }
.btn-ghost { background: #fff; color: var(--ink-900); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand-500); color: var(--brand-600); }
.btn-light { background: #fff; color: var(--ink-900); }
.btn-light:hover { background: var(--brand-50); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* Eyebrow + headings */
.eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--brand-600); margin-bottom: 14px; }
.section-title { font-size: clamp(28px, 4vw, 40px); }
.section-sub { color: var(--muted); font-size: 18px; max-width: 640px; margin: 16px auto 0; }
.lead { font-size: 19px; color: var(--ink-700); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent; transition: box-shadow .3s, border-color .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-card); border-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.nav__logo img { height: 50px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 34px; list-style: none; padding: 0; }
.nav__links a { font-size: 15px; font-weight: 500; color: var(--ink-700); position: relative; padding: 4px 0; }
.nav__links a::after { content: ''; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0; background: var(--brand-500); transition: width .25s; }
.nav__links a:hover, .nav__links a.active { color: var(--brand-600); }
.nav__links a.active::after, .nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 10px; width: 44px; height: 44px; align-items: center; justify-content: center; cursor: pointer; }
.nav__toggle svg { width: 22px; height: 22px; }

@media (max-width: 940px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: inline-flex; }
  .mobile-menu { display: block; }
}
.mobile-menu { display: none; background: #fff; border-top: 1px solid var(--line); max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.mobile-menu.open { max-height: 420px; }
.mobile-menu ul { list-style: none; padding: 12px 24px 24px; margin: 0; }
.mobile-menu a { display: block; padding: 13px 12px; border-radius: 10px; font-weight: 500; color: var(--ink-700); }
.mobile-menu a:hover { background: var(--brand-50); color: var(--brand-700); }
.mobile-menu .btn-primary { width: 100%; justify-content: center; margin-top: 8px; }

main { padding-top: 78px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(135deg, #faf4e2 0%, #fdf9ef 45%, #ffffff 100%); }
.hero__blob { position: absolute; width: 640px; height: 640px; right: -180px; top: -200px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle at center, rgba(203,157,6,.22), rgba(203,157,6,0) 70%); }
.hero .container { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 72px 0 92px; }
.hero h1 { font-size: clamp(36px, 5.5vw, 62px); letter-spacing: -0.02em; color: var(--ink-900); }
.hero h1 .accent { color: var(--brand-500); }
.hero p.lead { margin-top: 22px; max-width: 540px; }
.hero__actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__ticks { margin-top: 30px; display: flex; gap: 26px; flex-wrap: wrap; color: var(--muted); font-size: 15px; }
.hero__ticks span { display: inline-flex; align-items: center; gap: 8px; }
.hero__ticks svg { width: 18px; height: 18px; color: var(--brand-600); }
.hero__media { position: relative; }
.hero__media::before { content: ''; position: absolute; inset: 26px -18px -26px 30px; border-radius: 30px; z-index: 0;
  background: linear-gradient(150deg, var(--brand-100), rgba(203,157,6,.12)); }
.hero__card { position: relative; z-index: 1; background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 20px; box-shadow: var(--shadow-soft); }
.hero__card img { border-radius: 16px; width: 100%; aspect-ratio: 4/3; object-fit: contain; background: #fff; }
@media (max-width: 860px) { .hero__grid { grid-template-columns: 1fr; gap: 48px; padding: 48px 0 70px; } .hero__media::before { inset: 18px -10px -18px 18px; } }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-card); }
.stats .stat { background: #fff; padding: 30px 18px; text-align: center; }
.stats .stat b { font-family: 'Plus Jakarta Sans'; font-size: clamp(26px, 3.5vw, 38px); color: var(--brand-600); display: block; }
.stats .stat span { color: var(--muted); font-size: 14px; }
@media (max-width: 620px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 28px; box-shadow: var(--shadow-card); transition: transform .25s, box-shadow .25s; height: 100%; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.card .ico { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--brand-50); color: var(--brand-600); margin-bottom: 18px; }
.card .ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }

/* Product / supply cards */
.product { background: #fff; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-card); transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; height: 100%; }
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.product__img { background: linear-gradient(160deg, var(--brand-50), #fff); padding: 26px; aspect-ratio: 1/1; display: grid; place-items: center; }
.product__img img { max-height: 100%; width: auto; object-fit: contain; mix-blend-mode: multiply; }
.product__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product__body h3 { font-size: 18px; }
.product__body p { color: var(--muted); font-size: 14px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 8px; }
.tag { font-size: 12px; font-weight: 600; color: var(--brand-700); background: var(--brand-50); border: 1px solid var(--brand-100); padding: 4px 10px; border-radius: 999px; }

/* Split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split img { border-radius: 22px; box-shadow: var(--shadow-card); }
.feature-figure { border: 1px solid var(--line); border-radius: 26px; padding: 26px; background: linear-gradient(160deg, var(--brand-50), #fff); box-shadow: var(--shadow-card); }
.feature-figure figcaption { text-align: center; color: var(--muted); font-size: 14px; margin-top: 14px; }

/* List with checks */
.checklist { list-style: none; padding: 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 10px; color: var(--ink-700); font-size: 15px; }
.checklist svg { width: 18px; height: 18px; color: var(--brand-600); flex: 0 0 auto; margin-top: 3px; }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 10px 18px; font-size: 14px; font-weight: 500; box-shadow: var(--shadow-card); }
.chip svg { width: 16px; height: 16px; color: var(--brand-600); }

/* Quote / founder */
.quote { max-width: 760px; margin: 0 auto; text-align: center; }
.quote p { font-family: 'Plus Jakarta Sans'; font-size: clamp(22px, 3vw, 30px); font-weight: 600; color: #fff; line-height: 1.35; }
.quote .who { margin-top: 22px; font-size: 14px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--brand-400); }
.quote svg { width: 40px; height: 40px; color: var(--brand-500); margin: 0 auto 10px; }

/* CTA band */
.cta-band { background: var(--ink-900); border-radius: 28px; padding: 56px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; font-size: clamp(26px, 3.5vw, 38px); }
.cta-band p { color: rgba(255,255,255,.7); max-width: 520px; margin: 14px auto 28px; }
.cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: linear-gradient(180deg, var(--brand-50), #fff); padding: 64px 0 48px; text-align: center; }
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); letter-spacing: -0.02em; }
.page-hero p { color: var(--muted); font-size: 18px; max-width: 620px; margin: 16px auto 0; }

/* ---------- Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 980px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .post-grid { grid-template-columns: 1fr; } }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-card); transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.post-card__img { aspect-ratio: 16/10; overflow: hidden; position: relative; background: var(--ink-900); }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.post-card:hover .post-card__img img { transform: scale(1.05); }
.post-card__cat { position: absolute; left: 14px; bottom: 14px; background: rgba(255,255,255,.92); color: var(--ink-900); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; padding: 5px 12px; border-radius: 999px; }
.post-card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card__meta { font-size: 13px; color: var(--muted); }
.post-card__body h3 { font-size: 19px; line-height: 1.3; }
.post-card__body p { color: var(--muted); font-size: 14px; }
.post-card__more { margin-top: auto; color: var(--brand-600); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }

/* Article */
.article-hero { background: var(--ink-900); color: #fff; padding: 56px 0 44px; }
.article-hero .eyebrow { color: var(--brand-400); }
.article-hero .cat { display: inline-block; background: var(--brand-500); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: .05em; }
.article-hero h1 { color: #fff; font-size: clamp(28px, 4.5vw, 48px); margin: 18px 0 14px; max-width: 820px; }
.article-hero .meta { color: rgba(255,255,255,.6); font-size: 14px; }
.article-hero .back { color: rgba(255,255,255,.7); font-size: 14px; font-weight: 500; display: inline-flex; gap: 6px; align-items: center; margin-bottom: 18px; }
.article-hero .back:hover { color: #fff; }
.article-cover { margin: -36px auto 0; max-width: 900px; }
.article-cover img { width: 100%; aspect-ratio: 16/8; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow-soft); }
.prose { max-width: 760px; margin: 0 auto; padding: 50px 0 20px; font-size: 17px; color: var(--ink-700); }
.prose h2 { font-size: 26px; margin: 38px 0 14px; color: var(--ink-900); }
.prose h3 { font-size: 21px; margin: 28px 0 10px; }
.prose p { margin: 0 0 18px; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--ink-900); }
.prose a { color: var(--brand-600); text-decoration: underline; }
.prose blockquote { border-left: 4px solid var(--brand-500); padding: 6px 0 6px 20px; margin: 22px 0; color: var(--ink-800); font-style: italic; background: var(--brand-50); border-radius: 0 12px 12px 0; }
.prose code { background: var(--brand-50); padding: 2px 7px; border-radius: 6px; font-size: 15px; }
.prose table { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: 15px; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }
.prose th { background: var(--brand-50); }

/* Clients */
.clients { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px 24px; align-items: center; }
@media (max-width: 760px) { .clients { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .clients { grid-template-columns: repeat(2, 1fr); } }
.clients img { height: 52px; width: auto; margin: 0 auto; object-fit: contain; filter: grayscale(1); opacity: .7; transition: all .3s; }
.clients img:hover { filter: grayscale(0); opacity: 1; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-900); color: rgba(255,255,255,.7); padding: 64px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__logo img { height: 54px; margin-bottom: 18px; }
.footer h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer a:hover { color: var(--brand-400); }
.footer .reg { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 16px; line-height: 1.7; }
.footer .contact-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer .contact-row svg { width: 18px; height: 18px; color: var(--brand-400); flex: 0 0 auto; margin-top: 4px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.5); }
.footer__bottom .heart { color: var(--ember-500); }

/* Reveal animation — only hides content when JS is active, so the site
   is fully visible even if the script fails to load. */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.js .reveal.in { opacity: 1; transform: none; }

/* Forms */
.form-grid { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
label { font-size: 14px; font-weight: 500; color: var(--ink-800); margin-bottom: 6px; display: block; }
input, textarea { width: 100%; padding: 12px 15px; border: 1px solid var(--line); border-radius: 12px; font: inherit; font-size: 15px; background: #fff; transition: border-color .2s, box-shadow .2s; }
input:focus, textarea:focus { outline: none; border-color: var(--brand-500); box-shadow: 0 0 0 3px rgba(203,157,6,.18); }
.form-note { display: none; border-radius: 12px; padding: 14px 16px; font-size: 14px; margin-bottom: 18px; }
.form-note--ok { background: #eaf6ec; border: 1px solid #bfe3c6; color: #1f6b34; }
.form-note--err { background: #fdecea; border: 1px solid #f6c7bf; color: #b23a23; }
.info-card { background: var(--brand-50); border: 1px solid var(--line); border-radius: 16px; padding: 20px; }
.info-list { list-style: none; padding: 0; display: grid; gap: 18px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-list .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--brand-50); color: var(--brand-600); display: grid; place-items: center; flex: 0 0 auto; }
.info-list .ico svg { width: 20px; height: 20px; }
.info-list .lbl { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.info-list a, .info-list .val { font-weight: 600; color: var(--ink-900); }

.mt-0 { margin-top: 0; }
.section-head { text-align: center; margin-bottom: 48px; }

/* Default sizing for inline icon SVGs that don't have a sized wrapper */
.btn svg { width: 18px; height: 18px; }
.article-hero .back svg { width: 18px; height: 18px; flex: 0 0 auto; }
.article-hero .back { white-space: nowrap; }
.post-card__more svg { width: 16px; height: 16px; }
