/* Honor You — marketing site brand system
   Fonts: Lora (display serif) + Inter (body). Palette pulled from honoryou.com:
   sage/olive #595F49 (primary), warm gold #b58a2b, slate ink, cream paper. */

:root {
  --ink: #1c2230;
  --ink-soft: #3a4152;
  --body: #55524b;
  --subtle: #8b867c;
  --cream: #faf7f1;
  --cream-deep: #f3ede2;
  --paper: #ffffff;
  --sage: #595f49;
  --sage-deep: #474c3a;
  --sage-tint: #eef0e9;
  --gold: #b58a2b;
  --gold-soft: #c9a54e;
  --line: #e8e1d4;
  --line-soft: #f0ebe0;
  --shadow: 0 1px 2px rgba(28, 34, 48, .04), 0 12px 40px -18px rgba(28, 34, 48, .18);
  --shadow-sm: 0 1px 2px rgba(28, 34, 48, .05), 0 6px 20px -12px rgba(28, 34, 48, .14);
  --r: 18px;
  --maxw: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--body);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: "Lora", Georgia, serif; color: var(--ink); font-weight: 600; line-height: 1.14; letter-spacing: -.01em; margin: 0; }
h1 { font-size: clamp(2.15rem, 4.6vw, 3.5rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.32rem; }
p { margin: 0 0 1rem; }
em { font-style: italic; color: var(--sage); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.eyebrow {
  font-family: "Inter", sans-serif; font-weight: 600; font-size: .74rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold);
  margin: 0 0 1rem;
}
.lead { font-size: 1.18rem; color: var(--ink-soft); line-height: 1.6; }
.center { text-align: center; }
.measure { max-width: 620px; }
.center.measure { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .55rem; cursor: pointer;
  font-family: "Inter", sans-serif; font-weight: 600; font-size: .97rem;
  padding: 14px 26px; border-radius: 999px; border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
}
.btn-primary { background: var(--sage); color: #fff; box-shadow: 0 10px 24px -12px rgba(89,95,73,.7); }
.btn-primary:hover { background: var(--sage-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--sage); color: var(--sage); transform: translateY(-2px); }
.btn-gold { background: transparent; color: var(--gold); border-color: var(--gold-soft); }
.btn-gold:hover { background: var(--gold); color: #fff; }
.btn svg { width: 17px; height: 17px; }

/* Header */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 241, .82); backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
header.site .bar { display: flex; align-items: center; justify-content: space-between; height: 76px; }
header.site .logo { height: 34px; width: auto; }
header.site nav { display: flex; align-items: center; gap: 34px; }
header.site nav a { font-size: .95rem; font-weight: 500; color: var(--ink-soft); transition: color .15s; }
header.site nav a:hover { color: var(--sage); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.menu-btn { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 82% 8%, rgba(89,95,73,.10), transparent 55%),
    radial-gradient(90% 80% at 8% 100%, rgba(181,138,43,.09), transparent 60%);
  pointer-events: none;
}
.hero .wrap { position: relative; padding: 88px 26px 96px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero p.lead { margin-bottom: 32px; max-width: 30ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 20px; font-size: .9rem; color: var(--subtle); }
.hero-figure { position: relative; }
.hero-img {
  border-radius: 24px; box-shadow: var(--shadow); width: 100%; aspect-ratio: 5/6;
  object-fit: cover; background: var(--cream-deep);
}
.hero-badge {
  position: absolute; left: -22px; bottom: 34px; background: var(--paper);
  border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px;
  box-shadow: var(--shadow-sm); max-width: 230px;
}
.hero-badge strong { font-family: "Lora", serif; color: var(--ink); font-size: 1.5rem; display: block; }
.hero-badge span { font-size: .82rem; color: var(--subtle); }

/* Real photography with a floating product/detail card */
.figure { position: relative; }
.figure-img {
  border-radius: 24px; box-shadow: var(--shadow); width: 100%;
  object-fit: cover; background: var(--cream-deep); display: block;
}
.figure-float {
  position: absolute; background: var(--paper); border: 1px solid var(--line);
  border-radius: 16px; box-shadow: var(--shadow); padding: 16px 18px;
}
.float-bl { left: -20px; bottom: 26px; width: 244px; }
.float-tr { right: -16px; top: 26px; width: 210px; }
.float-logo { width: 158px; height: auto; display: block; }
.float-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }
.float-brand .mono { width: 38px; height: 38px; border-radius: 10px; background: var(--sage); color: #fff; font-family: "Lora", serif; font-weight: 700; font-size: 15px; display: flex; align-items: center; justify-content: center; flex: none; }
.float-brand .fb-name { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.float-title { font-family: "Lora", serif; font-size: 16px; color: var(--ink); line-height: 1.2; margin: 0; }
.float-row { display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--ink-soft); padding: 6px 0; }
.float-row + .float-row { border-top: 1px solid var(--line-soft); }
.float-row .rt { width: 20px; height: 20px; border-radius: 50%; background: var(--sage-tint); display: flex; align-items: center; justify-content: center; flex: none; }
.float-row .rt svg { width: 12px; height: 12px; stroke: var(--sage); }
.float-note { display: flex; align-items: center; gap: 7px; margin-top: 12px; font-size: 11px; color: var(--subtle); }
.float-note svg { width: 12px; height: 12px; stroke: #7d9b73; }

/* Sections */
section { padding: 92px 0; }
section.tight { padding: 68px 0; }
.sec-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.sec-head p { margin-top: 14px; font-size: 1.1rem; color: var(--body); }

/* Trust strip */
.trust { background: var(--cream-deep); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 30px 0; }
.trust .row { display: flex; align-items: center; justify-content: center; gap: 14px 46px; flex-wrap: wrap; text-align: center; }
.trust .row span { font-size: .95rem; color: var(--ink-soft); font-weight: 500; }
.trust .row .dot { color: var(--gold); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 34px 30px; position: relative; box-shadow: var(--shadow-sm);
}
.step .num {
  font-family: "Lora", serif; font-size: 1rem; font-weight: 600; color: var(--sage);
  width: 42px; height: 42px; border-radius: 50%; background: var(--sage-tint);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.step h3 { margin-bottom: 10px; }
.step p { margin: 0; font-size: .98rem; }

/* Feature split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-media { order: 2; }
.feature-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 18px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .tick {
  flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--sage-tint);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.feature-list .tick svg { width: 14px; height: 14px; stroke: var(--sage); }
.feature-list b { color: var(--ink); font-weight: 600; }
.mock {
  background: var(--paper); border: 1px solid var(--line); border-radius: 22px;
  box-shadow: var(--shadow); padding: 26px; position: relative;
}
.mock .mock-top { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.mock .mock-top i { width: 10px; height: 10px; border-radius: 50%; background: var(--line); display: block; }
.mock-line { height: 12px; border-radius: 6px; background: var(--cream-deep); margin-bottom: 12px; }
.mock-card { border: 1px solid var(--line); border-radius: 14px; padding: 16px; margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.mock-card .ico { width: 34px; height: 34px; border-radius: 9px; background: var(--sage-tint); flex: none; display:flex; align-items:center; justify-content:center; }
.mock-card .ico svg { width: 18px; height: 18px; stroke: var(--sage); }
.mock-card .mc-body { flex: 1; }
.mock-card .mc-body .a { height: 10px; width: 60%; background: var(--cream-deep); border-radius: 5px; margin-bottom: 7px; }
.mock-card .mc-body .b { height: 8px; width: 40%; background: var(--line-soft); border-radius: 5px; }
.mock-card .chk { color: var(--sage); }

/* Products */
.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 28px 24px; text-align: left; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product .picon { width: 46px; height: 46px; border-radius: 12px; background: var(--sage-tint); display:flex; align-items:center; justify-content:center; margin-bottom: 18px; }
.product .picon svg { width: 23px; height: 23px; stroke: var(--sage); }
.product h3 { font-size: 1.12rem; margin-bottom: 8px; }
.product p { margin: 0; font-size: .93rem; color: var(--body); }

/* Benefits */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit { padding: 6px 4px; }
.benefit .bi { width: 44px; height: 44px; border-radius: 12px; background: var(--paper); border: 1px solid var(--line); display:flex; align-items:center; justify-content:center; margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.benefit .bi svg { width: 22px; height: 22px; stroke: var(--gold); }
.benefit h3 { font-size: 1.14rem; margin-bottom: 8px; }
.benefit p { margin: 0; font-size: .96rem; }

/* Reminders band */
.band { background: var(--sage); color: #fff; border-radius: 28px; padding: 60px 56px; position: relative; overflow: hidden; }
.band::after { content: ""; position: absolute; right: -60px; top: -60px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.06); }
.band .eyebrow { color: var(--gold-soft); }
.band h2 { color: #fff; }
.band p { color: rgba(255,255,255,.82); }
.band .measure { position: relative; z-index: 1; }
.band-links { margin-top: 22px; display: flex; gap: 22px; flex-wrap: wrap; }
.band-links a { color: #fff; font-weight: 600; font-size: .95rem; border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 2px; }
.band-links a:hover { border-color: #fff; }

/* Enquiry */
.enquire-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.enquire-copy h2 { margin-bottom: 16px; }
.contact-line { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; color: var(--ink-soft); font-weight: 500; }
.contact-line svg { width: 20px; height: 20px; stroke: var(--sage); flex: none; }
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow); padding: 12px; }
#enquiry-form-embed { min-height: 460px; border-radius: 12px; }
/* Placeholder shown until Dave pastes the real embed. Delete when embedding. */
.form-placeholder {
  border: 2px dashed var(--line); border-radius: 12px; min-height: 440px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 40px; color: var(--subtle); background: var(--cream);
}
.form-placeholder svg { width: 34px; height: 34px; stroke: var(--gold); margin-bottom: 14px; }
.form-placeholder code { background: var(--cream-deep); padding: 3px 8px; border-radius: 6px; font-size: .82rem; color: var(--ink-soft); }

/* Footer */
footer.site { background: var(--ink); color: rgba(255,255,255,.7); padding: 64px 0 34px; margin-top: 30px; }
footer.site .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
footer.site .logo { height: 32px; margin-bottom: 18px; }
footer.site p { color: rgba(255,255,255,.6); font-size: .95rem; max-width: 34ch; }
footer.site h4 { color: #fff; font-family: "Inter", sans-serif; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; font-weight: 600; }
footer.site ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
footer.site ul a { color: rgba(255,255,255,.68); font-size: .95rem; }
footer.site ul a:hover { color: var(--gold-soft); }
footer.site .base { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; font-size: .86rem; color: rgba(255,255,255,.45); }
footer.site .base a { color: rgba(255,255,255,.6); }
footer.site .base a:hover { color: #fff; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Legal pages */
.legal { padding: 60px 0 40px; }
.legal .wrap { max-width: 820px; }
.legal h1 { font-size: clamp(2.1rem, 4vw, 3rem); margin-bottom: 10px; }
.legal .updated { color: var(--subtle); font-size: .92rem; margin-bottom: 40px; }
.legal h2 { font-size: 1.5rem; margin: 42px 0 14px; }
.legal h3 { font-size: 1.12rem; margin: 26px 0 10px; color: var(--sage-deep); }
.legal p, .legal li { color: var(--ink-soft); }
.legal ul { padding-left: 22px; margin: 0 0 1rem; }
.legal li { margin-bottom: 8px; }
.legal .callout { background: var(--sage-tint); border: 1px solid #dfe3d5; border-left: 4px solid var(--sage); border-radius: 12px; padding: 18px 22px; margin: 22px 0; }
.legal .callout p:last-child { margin-bottom: 0; }
.legal a.inline { color: var(--sage); text-decoration: underline; text-underline-offset: 2px; }
.legal .toc { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 22px 26px; margin-bottom: 34px; }
.legal .toc ul { columns: 2; gap: 30px; list-style: none; padding: 0; }
.legal .toc a { color: var(--ink-soft); font-size: .92rem; }
.legal .toc a:hover { color: var(--sage); }

/* Responsive */
@media (max-width: 940px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; }
  .hero-figure { max-width: 460px; }
  .hero p.lead { max-width: none; }
  .split, .enquire-grid { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .steps { grid-template-columns: 1fr; }
  .products { grid-template-columns: 1fr 1fr; }
  .benefits { grid-template-columns: 1fr; gap: 30px; }
  footer.site .cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  section { padding: 66px 0; }
  .nav-links { display: none; }
  .menu-btn { display: block; }
  header.site nav.open .nav-links { display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; background: var(--cream); border-bottom: 1px solid var(--line); padding: 18px 26px; gap: 18px; }
  .products { grid-template-columns: 1fr; }
  .band { padding: 44px 28px; }
  .legal .toc ul { columns: 1; }
  footer.site .cols { grid-template-columns: 1fr; }
  .hero-badge { left: 10px; }
  .float-bl { left: 8px; bottom: 14px; width: 200px; }
  .float-tr { right: 8px; top: 14px; width: 190px; }
}
