/* ─── HESHEME studio — base styles ─── */
:root {
  --bg: #faf6f0;
  --bg-alt: #f3ece2;
  --ink: #1d1a16;
  --ink-2: #4a443b;
  --muted: #8a8175;
  --line: rgba(29, 26, 22, 0.12);
  --accent: #e0783c;
  --accent-deep: #c25f27;
  --radius: 14px;
  --font: "Inter", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: var(--bg);
  padding: 10px 16px; border-radius: 0 0 10px 0; z-index: 100;
}
.skip-link:focus { left: 0; }

.container { width: 100%; max-width: 1060px; margin: 0 auto; padding: 0 24px; }

/* ─── Nav ─── */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(250, 246, 240, 0.85); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: 1060px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 30px; height: 30px; }
.brand-name { font-weight: 700; letter-spacing: 0.18em; font-size: 15px; }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 14.5px; }
.nav-links a:not(.nav-cta) { color: var(--ink-2); transition: color 0.2s; }
.nav-links a:not(.nav-cta):hover { color: var(--ink); }
.nav-cta {
  background: var(--ink); color: var(--bg) !important;
  padding: 8px 16px; border-radius: 100px; font-weight: 600;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-deep); }

/* ─── Hero ─── */
.hero { padding: clamp(96px, 14vw, 160px) 24px clamp(72px, 10vw, 120px); text-align: center; }
.hero-inner { max-width: 780px; margin: 0 auto; }
.eyebrow, .section-label {
  display: inline-block; font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-deep);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(44px, 8vw, 84px); line-height: 1.02; letter-spacing: -0.03em;
  font-weight: 800;
}
.hero h1 em {
  font-style: normal; color: var(--accent);
  background: linear-gradient(120deg, var(--accent), var(--accent-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.lede {
  margin: 28px auto 0; max-width: 560px; font-size: clamp(16px, 2.2vw, 19px);
  color: var(--ink-2);
}
.hero-actions { margin-top: 40px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block; padding: 13px 26px; border-radius: 100px;
  font-weight: 600; font-size: 15px; transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 26px rgba(224, 120, 60, 0.28); }
.btn-primary:hover { transform: translateY(-2px); background: var(--accent-deep); }
.btn-ghost { border: 1.5px solid var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-lg { padding: 16px 34px; font-size: 16px; }

/* ─── Sections ─── */
.section { padding: clamp(72px, 10vw, 120px) 0; }
.section-alt { background: var(--bg-alt); }
.section h2 { font-size: clamp(30px, 4.5vw, 46px); letter-spacing: -0.02em; line-height: 1.12; margin-bottom: 40px; }

/* ─── Work ─── */
.product-card {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px); box-shadow: 0 1px 0 rgba(29,26,22,0.03);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(29,26,22,0.10); }
.product-info { max-width: 640px; }
.product-tag { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 14px; }
.product-card h3 { font-size: clamp(24px, 3.4vw, 32px); letter-spacing: -0.01em; margin-bottom: 12px; }
.product-card p { color: var(--ink-2); margin-bottom: 20px; }
.product-link { font-weight: 600; color: var(--accent-deep); }
.product-chip {
  flex-shrink: 0; width: 96px; height: 96px; border-radius: 22px;
  background: linear-gradient(150deg, var(--accent), var(--accent-deep));
  color: #fff; display: grid; place-items: center; text-align: center;
  font-weight: 800; font-size: 22px; line-height: 1; letter-spacing: 0.02em;
}

/* ─── About ─── */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.about-lead { font-size: clamp(18px, 2.6vw, 22px); color: var(--ink); line-height: 1.6; }
.about-facts { list-style: none; }
.about-facts li { padding: 16px 0; border-top: 1px solid var(--line); font-size: 15px; }
.about-facts li strong { display: block; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.about-facts li span { color: var(--ink-2); }

/* ─── Contact ─── */
.contact { text-align: center; }
.contact h2 { margin-bottom: 16px; }
.contact-sub { color: var(--ink-2); margin-bottom: 36px; }

/* ─── Footer ─── */
.footer { border-top: 1px solid var(--line); padding: 48px 0 32px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.footer-name { font-weight: 700; letter-spacing: 0.18em; }
.footer-brand p { color: var(--muted); font-size: 14px; margin-top: 6px; }
.footer-links { display: flex; gap: 24px; font-size: 14.5px; }
.footer-links a { color: var(--ink-2); }
.footer-links a:hover { color: var(--accent-deep); }
.footer-bottom { display: flex; justify-content: space-between; gap: 8px; flex-wrap: wrap; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }

/* ─── Responsive ─── */
@media (max-width: 720px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .product-card { flex-direction: column; align-items: flex-start; }
  .product-chip { width: 72px; height: 72px; font-size: 18px; }
  .footer-inner, .footer-bottom { flex-direction: column; }
}
