/* Favor International — Contact & Legal site
   Brand: green #2b4d24, gold #e1a730, terracotta #a36d4c, paper #faf7f0. */
:root {
  --green: #2b4d24;
  --green-deep: #1f3a1a;
  --gold: #e1a730;
  --gold-deep: #b9862180;
  --terracotta: #a36d4c;
  --ink: #26261f;
  --ink-soft: #4b4b42;
  --paper: #faf7f0;
  --paper-card: #ffffff;
  --line: #e7e0d3;
  --measure: 44rem;
  --radius: 14px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--gold); }

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky; top: 0; z-index: 10;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand__mark {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--green); color: var(--gold);
  display: grid; place-items: center; font-weight: 800; font-size: 15px; flex: none;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name { font-weight: 800; letter-spacing: .06em; color: var(--green); font-size: 15px; text-transform: uppercase; }
.brand__tag { font-size: 11px; color: var(--terracotta); letter-spacing: .02em; }
.nav { display: flex; gap: 1.25rem; }
.nav a { text-decoration: none; font-size: 14px; font-weight: 600; color: var(--ink-soft); }
.nav a:hover { color: var(--green); }

/* Layout */
.wrap { width: 100%; max-width: 68rem; margin: 0 auto; padding: 1rem 1.4rem; }
main { padding: 2.5rem 0 1rem; }
.doc { max-width: var(--measure); margin: 0 auto; }

/* Hero band */
.hero { background: var(--green); color: #f4efe3; }
.hero .wrap { padding: 3rem 1.4rem; }
.hero .eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 700; }
.hero h1 { font-size: clamp(1.8rem, 5vw, 2.9rem); line-height: 1.1; margin: .5rem 0 .6rem; letter-spacing: -0.01em; }
.hero p { color: #d9e0d2; max-width: 42rem; }

/* Typography in docs */
.doc h2 {
  color: var(--green); font-size: 1.4rem; margin: 2.4rem 0 .8rem;
  padding-top: 1.6rem; border-top: 1px solid var(--line); letter-spacing: -0.01em;
}
.doc h2:first-of-type { border-top: none; padding-top: 0; }
.doc h3 { color: var(--green-deep); font-size: 1.08rem; margin: 1.5rem 0 .4rem; }
.doc p, .doc li { color: var(--ink-soft); margin: 0 0 1rem; }
.doc ul, .doc ol { margin: 0 0 1rem 1.3rem; }
.doc li { margin-bottom: .5rem; }
.doc strong { color: var(--ink); }
.updated { font-weight: 700; color: var(--gold-deep); text-transform: uppercase; letter-spacing: .08em; font-size: 13px; margin-bottom: 2rem; }

/* Callout box for the key SMS/compliance statements */
.callout {
  background: #f3f6ee; border: 1px solid #dfe7d2; border-left: 4px solid var(--green);
  border-radius: 10px; padding: 1.1rem 1.3rem; margin: 1.2rem 0 1.6rem;
}
.callout p:last-child { margin-bottom: 0; }
.callout--gold { background: #fdf6e6; border-color: #f0dfb0; border-left-color: var(--gold); }

/* Cards on the index */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.card {
  display: block; background: var(--paper-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.3rem 1.4rem; text-decoration: none; color: var(--ink);
  transition: border-color .15s, transform .15s;
}
.card:hover { border-color: var(--gold); transform: translateY(-2px); color: var(--ink); }
.card h3 { color: var(--green); margin-bottom: .3rem; font-size: 1.15rem; }
.card p { color: var(--ink-soft); font-size: 14px; margin: 0; }

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.2rem 2rem; margin: 1rem 0 2rem; }
.contact-grid .label { text-transform: uppercase; letter-spacing: .1em; font-size: 11px; font-weight: 700; color: var(--terracotta); margin-bottom: .15rem; }
.contact-grid a { text-decoration: none; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: #f3efe4; margin-top: 3rem; }
.site-footer .wrap { padding: 2rem 1.4rem; }
.site-footer p { color: var(--ink-soft); font-size: 13px; margin-bottom: .5rem; line-height: 1.6; }
.site-footer .foot-brand { font-weight: 800; color: var(--green); letter-spacing: .04em; }
.site-footer a { color: var(--green); }
.foot-links { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: .6rem; }
.foot-links a { font-size: 13px; font-weight: 600; }

.back { display: inline-block; margin-bottom: 1.5rem; font-size: 14px; font-weight: 600; text-decoration: none; color: var(--terracotta); }
.back:hover { color: var(--green); }
