/* Holt & Gander , studio site design system */
:root {
  --paper: #faf8f3;
  --paper-2: #f3efe6;
  --card: #ffffff;
  --ink: #182a2c;
  --muted: #5c6b6c;
  --faint: #8a9897;
  --line: rgba(20, 40, 40, 0.10);
  --line-strong: rgba(20, 40, 40, 0.18);
  --teal: #0f766e;
  --teal-dark: #0b5b54;
  --teal-soft: rgba(15, 118, 110, 0.08);
  --amber: #c98a33;
  --amber-dark: #a96f22;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(20, 40, 40, .05), 0 18px 40px rgba(20, 40, 40, .06);
  --maxw: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Fraunces', Georgia, 'Times New Roman', serif; font-weight: 500; letter-spacing: -0.01em; line-height: 1.12; margin: 0; }

a { color: var(--teal-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(250, 248, 243, 0.85); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand:hover { text-decoration: none; }
.brand-mark { width: 42px; height: 28px; flex-shrink: 0; }
.brand-name { font-family: 'Fraunces', Georgia, serif; font-size: 20px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.brand-name .amp { color: var(--amber); font-style: italic; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 500; }
.nav-links a:hover { color: var(--ink); text-decoration: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 10px; font-size: 15px; font-weight: 600;
  border: 1px solid var(--line-strong); background: var(--card); color: var(--ink);
  cursor: pointer; transition: transform .05s, box-shadow .15s, background .15s, border-color .15s;
}
.btn:hover { text-decoration: none; border-color: var(--teal); }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--teal); border-color: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); box-shadow: 0 8px 22px rgba(15,118,110,.28); }

/* Hero */
.hero { padding: 92px 0 72px; position: relative; overflow: hidden; }
.hero::after {
  content: ""; position: absolute; right: -160px; top: -120px; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,138,51,0.16), transparent 68%); pointer-events: none;
}
.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); margin: 0 0 18px; }
.hero h1 { font-size: clamp(40px, 6vw, 64px); max-width: 16ch; }
.hero h1 .accent { font-style: italic; color: var(--teal); }
.hero-sub { font-size: 20px; color: var(--muted); max-width: 56ch; margin: 22px 0 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Sections */
.section { padding: 70px 0; }
.section-alt { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 60ch; margin-bottom: 40px; }
.section-head .eyebrow { color: var(--amber-dark); }
.section h2 { font-size: clamp(28px, 4vw, 40px); }
.section-head p { color: var(--muted); font-size: 18px; margin: 14px 0 0; }

/* Story two-column */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.story p { color: var(--muted); margin: 0 0 16px; }
.story p strong { color: var(--ink); font-weight: 600; }
.values { display: flex; flex-direction: column; gap: 18px; }
.value { display: flex; gap: 14px; align-items: flex-start; }
.value-mark { width: 38px; height: 38px; border-radius: 10px; background: var(--teal-soft); color: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.value h3 { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700; margin: 0 0 2px; }
.value p { font-size: 15px; margin: 0; }

/* Product cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 14px;
}
.card-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.card h3 { font-size: 22px; }
.card p { color: var(--muted); font-size: 16px; margin: 0; flex: 1; }
.card-links { display: flex; gap: 16px; align-items: center; font-size: 15px; font-weight: 600; }
.card-soon { border-style: dashed; box-shadow: none; background: transparent; align-items: flex-start; justify-content: center; text-align: center; color: var(--faint); }
.card-soon h3 { color: var(--muted); }

.tag { display: inline-flex; align-items: center; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--teal-dark); background: var(--teal-soft); padding: 4px 10px; border-radius: 999px; }

/* Contact */
.contact { text-align: center; }
.contact h2 { font-size: clamp(28px, 4vw, 40px); }
.contact p { color: var(--muted); font-size: 18px; margin: 14px auto 26px; max-width: 48ch; }
.contact-email { font-family: 'Fraunces', serif; font-size: 24px; }

/* Footer */
.footer { border-top: 1px solid var(--line); padding: 40px 0; color: var(--muted); font-size: 14px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--ink); }

/* Product page hero */
.prod-hero { background: linear-gradient(135deg, #0f2d52, #1a4a82); color: #fff; padding: 64px 0; position: relative; overflow: hidden; }
.prod-hero::after { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(74,158,255,.30), transparent 70%); }
.prod-hero-inner { display: flex; align-items: center; gap: 22px; position: relative; z-index: 1; }
.prod-hero h1 { color: #fff; font-size: clamp(34px, 5vw, 48px); }
.prod-hero p { color: rgba(255,255,255,.7); font-size: 19px; margin: 10px 0 0; }
.prod-icon { width: 76px; height: 76px; border-radius: 18px; background: linear-gradient(135deg, #3b82f6, #8b5cf6); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 10px 30px rgba(59,130,246,.45); }

/* Feature grid */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.feature { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.feature .value-mark { margin-bottom: 12px; }
.feature h3 { font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 700; margin: 0 0 6px; }
.feature p { color: var(--muted); font-size: 15px; margin: 0; }

/* Legal / prose pages */
.prose { max-width: 760px; padding: 56px 0 80px; }
.prose .eyebrow { color: var(--amber-dark); }
.prose h1 { font-size: clamp(32px, 5vw, 44px); margin: 10px 0 6px; }
.prose .updated { color: var(--faint); font-size: 14px; margin: 0 0 36px; }
.prose h2 { font-size: 22px; margin: 36px 0 10px; }
.prose p, .prose li { color: var(--muted); }
.prose ul { padding-left: 22px; }
.prose li { margin: 6px 0; }
.prose a { font-weight: 600; }
.back { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; margin-bottom: 8px; }

@media (max-width: 760px) {
  .story { grid-template-columns: 1fr; gap: 28px; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.btn) { display: none; }
}
