/* ───────────────────────────────────────────────────────────
   Sign & Social — Shared site CSS
   Brand: Inked Dark #003468 · Sunny Side Up #f9ab1d · Enchanted Wells #26ad8d
   Fonts: Playfair Display (display) · Montserrat (body)
   ─────────────────────────────────────────────────────────── */

:root {
  /* Navy — primary dark */
  --navy-900: #002347;
  --navy-800: #003468;
  --navy-700: #1a4a7a;
  --navy-600: #3b5066;
  --navy-500: #526a80;

  /* Gold — primary action */
  --gold-600: #d4920a;
  --gold-500: #f9ab1d;
  --gold-400: #fbc54d;
  --gold-300: #fdd97d;

  /* Teal — secondary accent */
  --teal-600: #1e8c72;
  --teal-500: #26ad8d;
  --teal-400: #4bc4a8;
  --teal-300: #7dd8c3;

  /* Neutrals */
  --white:    #ffffff;
  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;

  /* Semantic */
  --success: #22c55e;
  --danger:  #ef4444;

  /* Role aliases */
  --ink:      var(--navy-800);
  --ink-2:    var(--navy-900);
  --paper:    var(--gray-50);
  --paper-2:  var(--white);
  --line:     var(--gray-200);
  --text:     var(--navy-600);
  --text-2:   var(--navy-500);
  --text-mute:var(--gray-400);
  --accent:   var(--gold-500);
  --accent-2: var(--gold-600);
  --accent-lt:var(--gold-400);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--paper-2);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--teal-600); text-decoration: none; }
a:hover { color: var(--teal-500); text-decoration: underline; text-underline-offset: 3px; }

.serif { font-family: "Playfair Display", Georgia, serif; font-weight: 600; letter-spacing: -0.015em; }

h1, h2, h3, h4 { font-family: "Playfair Display", Georgia, serif; color: var(--ink); font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); text-wrap: balance; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); text-wrap: balance; }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text); text-wrap: pretty; }
p + p { margin-top: 1em; }
ul, ol { color: var(--text); padding-left: 1.4em; }
li + li { margin-top: 0.4em; }

/* ───────── Layout containers ───────── */
.wrap   { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px;  margin: 0 auto; padding: 0 24px; }
.tight  { max-width: 920px;  margin: 0 auto; padding: 0 24px; }

section { padding: 72px 0; }
section.tight-pad { padding: 48px 0; }
@media (max-width: 720px) { section { padding: 56px 0; } }

.section-paper { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-ink   { background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%); color: var(--white); }
.section-ink h1, .section-ink h2, .section-ink h3, .section-ink h4 { color: var(--white); }
.section-ink p, .section-ink li { color: rgba(255,255,255,0.85); }

/* ───────── Top nav ───────── */
.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(8px);
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand img { height: 36px; width: auto; display: block; }
.brand-name { font-family: "Playfair Display", Georgia, serif; font-weight: 700; font-size: 1.05rem; color: var(--ink); letter-spacing: -0.01em; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--text); font-size: 0.93rem; font-weight: 500; text-decoration: none; }
.nav-links a:hover { color: var(--accent-2); }
.nav-links a.active { color: var(--ink); font-weight: 600; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--ink);
  padding: 10px 18px; border-radius: 999px;
  font-weight: 700; font-size: 0.88rem;
  text-decoration: none; box-shadow: 0 4px 14px rgba(249,171,29,0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(249,171,29,0.45); color: var(--ink); text-decoration: none; }

.menu-toggle { display: none; background: none; border: 0; color: var(--ink); font-size: 1.4rem; cursor: pointer; padding: 4px 8px; }
@media (max-width: 880px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-block; }
  .nav-links.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--white); border-bottom: 1px solid var(--line); padding: 12px 24px 20px; }
  .nav-links.open a { padding: 12px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .nav-links.open a:last-of-type { border-bottom: 0; }
}

/* ───────── Buttons ───────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 0.95rem;
  text-decoration: none; cursor: pointer; border: 0;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
}
.btn-primary { background: linear-gradient(135deg, var(--gold-500), var(--gold-400)); color: var(--ink); box-shadow: 0 6px 22px rgba(249,171,29,0.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(249,171,29,0.55); color: var(--ink); text-decoration: none; }
.btn-secondary { background: transparent; color: var(--teal-600); border: 2px solid var(--teal-500); }
.btn-secondary:hover { background: var(--teal-500); color: var(--white); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); text-decoration: none; }
.btn-on-dark { background: var(--white); color: var(--ink); }
.btn-on-dark:hover { background: var(--gold-300); color: var(--ink); text-decoration: none; }

/* ───────── Hero ───────── */
.hero { padding: 88px 0 56px; }
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal-600); background: rgba(38,173,141,0.08);
  padding: 8px 16px; border-radius: 999px; border: 1px solid rgba(38,173,141,0.25);
  margin-bottom: 24px;
}
.hero .eyebrow .dot { width: 7px; height: 7px; background: var(--teal-500); border-radius: 50%; box-shadow: 0 0 0 0 rgba(38,173,141,0.6); animation: pulse 2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(38,173,141,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(38,173,141,0); }
  100% { box-shadow: 0 0 0 0 rgba(38,173,141,0); }
}
.hero h1 em { color: var(--accent); font-style: italic; font-weight: 600; }
.hero .lede { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--text); max-width: 680px; margin: 22px 0 32px; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ───────── Cards ───────── */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.card:hover { border-color: rgba(38,173,141,0.4); box-shadow: 0 12px 32px -16px rgba(0,52,104,0.18); transform: translateY(-2px); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.97rem; }

.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(249,171,29,0.18), rgba(249,171,29,0.06));
  border: 1px solid rgba(249,171,29,0.3);
  display: grid; place-items: center;
  color: var(--accent-2);
  margin-bottom: 18px;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ───────── Pillars (5-column hero strip on services/home) ───────── */
.pillar-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 1080px) { .pillar-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .pillar-list { grid-template-columns: 1fr; } }
.pillar {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 22px 20px; transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.pillar:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 10px 24px -14px rgba(249,171,29,0.35); }
.pillar .num { font-family: "Playfair Display", serif; color: var(--accent); font-size: 0.95rem; font-weight: 700; letter-spacing: 0.06em; }
.pillar h4 { margin-top: 4px; margin-bottom: 8px; font-size: 1.08rem; }
.pillar p { font-size: 0.88rem; color: var(--text-2); line-height: 1.5; }

/* ───────── Pricing tiers ───────── */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
@media (max-width: 980px) { .tier-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
.tier {
  background: var(--white); border: 1.5px solid var(--line); border-radius: 20px;
  padding: 32px 28px; display: flex; flex-direction: column; position: relative;
}
.tier.featured { border-color: var(--accent); box-shadow: 0 16px 40px -20px rgba(249,171,29,0.4); transform: translateY(-8px); }
@media (max-width: 980px) { .tier.featured { transform: none; } }
.tier-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400)); color: var(--ink);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; box-shadow: 0 4px 12px rgba(249,171,29,0.4);
}
.tier-name { font-family: "Playfair Display", serif; font-size: 1.4rem; color: var(--ink); margin-bottom: 6px; }
.tier-sub { font-size: 0.85rem; color: var(--text-2); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }
.tier-price { margin: 22px 0 6px; }
.tier-price .amount { font-family: "Playfair Display", serif; font-size: 2.8rem; color: var(--ink); font-weight: 700; }
.tier-price .per { font-size: 0.95rem; color: var(--text-2); font-weight: 500; }
.tier-strike { color: var(--text-mute); text-decoration: line-through; font-size: 0.85rem; margin-bottom: 4px; }
.tier-setup { font-size: 0.85rem; color: var(--text-2); margin-bottom: 18px; }
.tier-setup strong { color: var(--ink); }
.tier ul { list-style: none; padding-left: 0; margin: 16px 0 24px; flex: 1; }
.tier ul li { padding-left: 26px; position: relative; font-size: 0.93rem; margin-top: 10px; color: var(--text); }
.tier ul li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--teal-500) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='white' d='M6.5 11.2 3.3 8l1.1-1.1 2.1 2.1L11.6 4l1.1 1.1z'/></svg>") center/12px no-repeat;
}
.tier ul li.section-divider {
  padding-left: 0; padding-top: 14px; margin-top: 14px;
  border-top: 1px dashed var(--line);
  font-weight: 700; color: var(--ink); font-size: 0.82rem;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.tier ul li.section-divider::before { display: none; }
.tier .btn { width: 100%; }

/* ───────── FAQ accordion ───────── */
.faq-item {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 0; margin-top: 12px; overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 20px 24px; font-family: "Playfair Display", serif; font-size: 1.08rem; font-weight: 600; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: "Montserrat", sans-serif; font-weight: 400;
  font-size: 1.6rem; color: var(--accent); transition: transform 0.2s; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--text); font-size: 0.97rem; line-height: 1.65; }
.faq-item .faq-body p + p { margin-top: 0.8em; }

/* ───────── Forms ───────── */
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; letter-spacing: 0.02em; }
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row textarea,
.form-row select {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--white); color: var(--ink); font-size: 0.96rem; font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: 0; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(249,171,29,0.18);
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-row .help { font-size: 0.8rem; color: var(--text-2); margin-top: 6px; }
.form-row.consent { display: flex; gap: 10px; font-size: 0.85rem; color: var(--text-2); align-items: flex-start; }
.form-row.consent input { margin-top: 3px; flex-shrink: 0; }

/* ───────── Trust strip / value props ───────── */
.value-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 880px) { .value-row { grid-template-columns: 1fr; } }
.value-item .icon { color: var(--teal-600); margin-bottom: 12px; }
.value-item h4 { margin-bottom: 8px; }

/* ───────── Contact / Address ───────── */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 24px;
}
.contact-card + .contact-card { margin-top: 16px; }
.contact-card .label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-600); margin-bottom: 6px; }
.contact-card .value { font-size: 1.05rem; color: var(--ink); font-weight: 600; }
.contact-card a { color: var(--ink); }
.contact-card address { font-style: normal; color: var(--text); line-height: 1.6; margin-top: 6px; }

/* ───────── Footer ───────── */
.site-footer {
  background: var(--navy-900); color: rgba(255,255,255,0.78);
  padding: 56px 0 32px; margin-top: 80px;
}
.site-footer a { color: rgba(255,255,255,0.85); }
.site-footer a:hover { color: var(--gold-400); text-decoration: none; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 40px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 0.9rem; max-width: 320px; }
.footer-col h5 { color: var(--gold-400); font-family: "Montserrat", sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-top: 0; padding: 6px 0; font-size: 0.92rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12); margin-top: 40px; padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
}
.footer-bottom .legal-row a { color: rgba(255,255,255,0.7); margin-right: 18px; }
.social-row { display: flex; gap: 14px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  display: grid; place-items: center; color: rgba(255,255,255,0.85);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.social-row a:hover { background: var(--gold-500); color: var(--ink); border-color: var(--gold-500); text-decoration: none; }

/* ───────── Misc ───────── */
.eyebrow-line { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 14px; }
.divider { height: 1px; background: var(--line); border: 0; margin: 32px 0; }
.note-box { background: rgba(38,173,141,0.06); border-left: 4px solid var(--teal-500); padding: 18px 22px; border-radius: 10px; color: var(--text); font-size: 0.95rem; }
.note-box.warn { background: rgba(249,171,29,0.08); border-left-color: var(--accent); }
.kbd { font-family: "JetBrains Mono", ui-monospace, monospace; background: var(--gray-100); padding: 2px 7px; border-radius: 5px; font-size: 0.85em; border: 1px solid var(--line); color: var(--ink); }

.center { text-align: center; }
.muted { color: var(--text-2); }
.small { font-size: 0.85rem; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  color: var(--white);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(249,171,29,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 90%, rgba(38,173,141,0.10) 0%, transparent 60%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 620px; margin: 0 auto 24px; }
