/* phonenumberstore.com — shared design tokens & components */

:root {
  --bg: #F1EEE7;
  --bg-panel: #E9E4D9;
  --ink: #17150F;
  --ink-soft: #5B584F;
  --line: #D9D3C4;
  --cream: #F8F6F1;
  --black: #141210;
  --white: #FFFFFF;
  --accent-green: #2F5D3A;

  --font-display: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --container: 1200px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  font-size: 16px;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}

em { font-style: italic; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}

/* ---------- Nav ---------- */

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.logo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
}

.logo .tld { font-style: normal; font-weight: 400; color: var(--ink-soft); }

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a:hover { color: var(--ink-soft); }
.nav-links a.active { text-decoration: underline; text-underline-offset: 6px; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: var(--ink);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: #2A2723; }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--bg-panel); }

.btn-sm { padding: 10px 18px; font-size: 13px; }

/* ---------- Trust bar ---------- */

.trust-bar {
  padding: 26px 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-panel);
}

.trust-bar .wrap {
  display: flex;
  align-items: center;
  gap: 0;
}

.trust-bar .label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  padding: 0 32px;
  flex-shrink: 0;
}

.trust-bar .label:first-child { padding-left: 0; }
.trust-bar .label:last-child { padding-right: 0; margin-left: auto; }

.brand-logos {
  display: flex;
  align-items: center;
  flex: 1;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.brand-logos span {
  padding: 0 32px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: var(--ink);
  opacity: 0.75;
  border-right: 1px solid var(--line);
}

.brand-logos span:last-child { border-right: none; }

/* ---------- Feature grid ---------- */

.feature-grid {
  background: var(--black);
  color: var(--cream);
  padding: 56px 40px;
}

.feature-grid .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 36px;
  border-left: 1px solid rgba(255,255,255,0.12);
}

.feature:first-child { padding-left: 0; border-left: none; }

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}

.feature-icon svg { width: 18px; height: 18px; }

.feature h3 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.feature p {
  margin: 0;
  font-size: 14px;
  color: rgba(248,246,241,0.72);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--black);
  color: var(--cream);
  padding: 80px 40px 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-brand .logo { color: var(--cream); }

.footer-brand p {
  color: rgba(248,246,241,0.6);
  font-size: 14px;
  line-height: 1.6;
  margin: 16px 0 22px;
  max-width: 280px;
}

.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
}
.social-row a svg { width: 16px; height: 16px; }
.social-row a:hover { border-color: rgba(255,255,255,0.6); }

.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: rgba(248,246,241,0.55);
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(248,246,241,0.85); }
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(248,246,241,0.5);
}

/* ---------- Cards ---------- */

.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
}

/* ---------- Section spacing ---------- */

.section { padding: 72px 40px; }
.section-tight { padding: 40px 40px; }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .feature-grid .wrap { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
