@import url('https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,500;6..72,600;6..72,700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #11263f;
  --navy-2: #18395c;
  --navy-3: #0b1b2e;
  --blue: #4778a8;
  --blue-2: #6f9bc4;
  --sky: #eaf4ff;
  --sky-2: #d8eaf9;
  --ice: #f7fbff;
  --white: #ffffff;
  --ink: #162333;
  --muted: #637185;
  --line: #dce7f0;
  --line-strong: #c5d8e8;
  --gold: #c9a84c;
  --gold-2: #e4c96c;
  --gold-pale: #fff8e5;
  --success: #1f6f4a;
  --error: #a43838;
  --shadow: 0 14px 38px rgba(17, 38, 63, 0.09);
  --shadow-soft: 0 8px 22px rgba(17, 38, 63, 0.06);
  --radius: 22px;
  --radius-sm: 16px;
  --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: linear-gradient(180deg, var(--ice) 0%, #fff 260px);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
a { color: var(--navy-2); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }
strong { color: var(--navy); }

.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.narrow { max-width: 820px; }
.center { text-align: center; }
.center-text { margin-left: auto !important; margin-right: auto !important; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.9);
  border-bottom: 1px solid rgba(216,231,240,.75);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 70px; }
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--navy);
  font-size: 1.16rem;
  line-height: 1.05;
  text-rendering: optimizeLegibility;
}
.brand small { display: block; color: var(--muted); font-family: var(--font-body); font-weight: 600; font-size: .68rem; margin-top: 3px; letter-spacing: .01em; }
.nav-links { display: flex; gap: 18px; align-items: center; }
.nav-links a { font-weight: 650; color: var(--navy); font-size: .91rem; }
.nav-links a:hover { color: var(--blue); text-decoration: none; }
.mobile-nav-note { display: none; }

.btn, button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 750;
  font-size: .94rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover, button.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:disabled { cursor: not-allowed; opacity: .7; transform: none; }
.btn-primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-soft); }
.btn-primary:hover { background: #0d1f34; color: #fff; }
.btn-secondary { background: #fff; color: var(--navy); border-color: var(--line-strong); }
.btn-secondary:hover { background: var(--ice); color: var(--navy); border-color: var(--blue-2); }
.btn-light { background: #fff; color: var(--navy); box-shadow: 0 10px 26px rgba(255,255,255,.16); }
.btn-light:hover { background: var(--sky); color: var(--navy); }
.btn-gold { background: var(--gold); color: #101820; box-shadow: 0 14px 38px rgba(201,168,76,.16); }
.btn-gold:hover { background: var(--gold-2); color: #101820; }
.btn-full { width: 100%; }
.text-link { font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }

.hero { padding: 92px 0 76px; position: relative; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute;
  top: -220px;
  right: -180px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111,155,196,.22) 0%, rgba(111,155,196,.11) 32%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -260px;
  left: -160px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,234,249,.62) 0%, transparent 68%);
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.12fr .88fr; gap: 48px; align-items: center; }
.hero h1, .page-hero h1 {
  font-size: clamp(2.35rem, 5.4vw, 4.75rem);
  line-height: .98;
  letter-spacing: -.055em;
  margin: 16px 0 20px;
  color: var(--navy);
  max-width: 11.5ch;
}
.hero h1 em, .page-hero h1 em { font-family: var(--font-display); font-style: italic; font-weight: 700; color: var(--blue); letter-spacing: -.015em; }
.lead { font-size: 1.08rem; color: var(--muted); max-width: 64ch; margin: 0 0 28px; }
.eyebrow, .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--sky);
  color: var(--navy-2);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid var(--sky-2);
}
.hero-actions, .cta-actions, .form-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.card, .hero-card, .service-card, .feature-card, .value-card, .pricing-card, .prose, .contact-card, .mini-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card { padding: 28px; position: relative; overflow: hidden; }
.hero-card::before, .accent-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--navy), var(--blue-2));
}
.deal-badge, .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: var(--gold-pale);
  color: #85660e;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 11px;
}
.hero-card h3, .pricing-card h3, .mini-card h3 { margin: 16px 0 8px; color: var(--navy); font-size: 1.25rem; line-height: 1.2; }
.hero-card p, .mini-card p { color: var(--muted); margin: 0 0 16px; }
.price-row { display: flex; align-items: baseline; gap: 10px; margin: 16px 0 4px; }
.price-old { color: #8997a5; text-decoration: line-through; font-size: 1rem; }
.price-new { color: var(--navy); font-size: 2.4rem; font-weight: 850; letter-spacing: -.04em; }
.price-label { color: var(--muted); font-size: .88rem; margin-bottom: 18px !important; }
.terms-note { font-size: .78rem; color: var(--muted); line-height: 1.5; margin-top: 12px; }
.terms-note a { text-decoration: underline; text-underline-offset: 3px; }

.section { padding: 86px 0; }
.section-tight { padding: 60px 0; }
.band { background: linear-gradient(180deg, #f8fbff 0%, #edf5fb 100%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.deep-band { background: var(--navy); color: #fff; }
.deep-band .section-eyebrow { background: rgba(255,255,255,.1); color: #d8eafa; border-color: rgba(255,255,255,.18); }
.deep-band h2, .deep-band h3, .deep-band strong { color: #fff; }
.deep-band p { color: rgba(255,255,255,.78); }
.gold-band { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; }
.gold-band .section-eyebrow { background: rgba(201,168,76,.12); color: var(--gold-2); border-color: rgba(201,168,76,.32); }
.gold-band h2 { color: #fff; }
.gold-band p { color: rgba(255,255,255,.78); }
.section h2, .page-section h2 {
  font-size: clamp(1.85rem, 3.4vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  color: var(--navy);
  margin: 16px 0 14px;
}
.section-lead { color: var(--muted); max-width: 68ch; margin: 0 0 28px; font-size: 1.02rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-aside { display: grid; grid-template-columns: .95fr 1.05fr; gap: 54px; align-items: start; }
.align-center { align-items: center; }

.service-card, .feature-card, .value-card, .pricing-card, .mini-card { padding: 24px; }
.service-card { position: relative; overflow: hidden; text-align: left; }
.service-card::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 6px; background: linear-gradient(90deg, var(--navy), var(--blue-2)); }
.service-card h3, .feature-card h3, .value-card h3 { margin: 12px 0 8px; color: var(--navy); font-size: 1.08rem; }
.service-card p, .feature-card p, .value-card p, .pricing-card p { margin: 0; color: var(--muted); }
ul.clean-list, .service-card ul { margin: 16px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
ul.clean-list li, .service-card li { position: relative; padding-left: 22px; color: var(--ink); }
ul.clean-list li::before, .service-card li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--blue); font-weight: 850; }
.icon-circle { width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; background: var(--sky); color: var(--navy); border: 1px solid var(--sky-2); font-size: 1.1rem; }

.focus-list { max-width: 760px; margin: 24px auto 0; text-align: left; display: grid; gap: 14px; }
.focus-list p { margin: 0; padding: 18px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-soft); }
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.tag { border-radius: 999px; padding: 9px 14px; background: #fff; border: 1px solid var(--line); color: var(--navy-2); font-weight: 650; font-size: .88rem; }
.deep-band .tag, .gold-band .tag { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; }

blockquote.quote-card {
  margin: 0;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff 0%, var(--ice) 100%);
  box-shadow: var(--shadow);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.35;
  color: var(--navy);
}
.quote-card cite { display: block; margin-top: 14px; color: var(--muted); font-family: var(--font-body); font-size: .82rem; font-style: normal; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

.pricing-card { position: relative; overflow: hidden; }
.pricing-card.featured { border-color: var(--blue-2); background: linear-gradient(180deg, #fff 0%, var(--ice) 100%); }
.pricing-card.featured::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 6px; background: linear-gradient(90deg, var(--navy), var(--blue-2)); }
.pricing-label { color: var(--muted); font-weight: 850; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.pricing-amount { color: var(--navy); font-size: 3rem; line-height: 1; font-weight: 850; letter-spacing: -.05em; margin: 16px 0 6px; }
.pricing-sublabel, .pricing-then, .pricing-fine-print { color: var(--muted); font-size: .92rem; }
.pricing-then { margin-top: 14px; }
.pricing-fine-print { font-size: .8rem; margin-top: 10px; }

.page-hero { padding: 92px 0 64px; background: linear-gradient(180deg, var(--ice) 0%, #fff 100%); border-bottom: 1px solid var(--line); }
.page-hero .lead { margin-bottom: 26px; }
.page-hero h1 { max-width: 13ch; }
.prose { padding: 30px; margin: 24px 0 52px; }
.prose h2 { font-size: 1.28rem; margin: 28px 0 10px; color: var(--navy); letter-spacing: -.015em; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--ink); }
.prose ul { padding-left: 22px; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

.contact-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 28px; align-items: start; }
.contact-card { padding: 26px; }
label { display: block; font-weight: 800; font-size: .94rem; color: var(--navy); margin-bottom: 8px; }
input, select, textarea {
  width: 100%; min-height: 48px; padding: 12px 14px; border-radius: 14px;
  border: 1px solid var(--line-strong); background: #fff; color: var(--ink); font: inherit;
  outline: none; transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(71,120,168,.12); }
textarea { min-height: 140px; resize: vertical; }
.field { margin-bottom: 16px; }
.help { font-size: .84rem; color: var(--muted); margin-top: 6px; }
.notice { padding: 12px 14px; border-radius: 14px; font-size: .95rem; margin-top: 12px; display: none; }
.notice.success { display: block; background: #edf8f2; color: var(--success); border: 1px solid #cfe8da; }
.notice.error { display: block; background: #fdf0f0; color: var(--error); border: 1px solid #efcdcd; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.checkout-notice { margin-top: 14px; }

.site-footer { border-top: 1px solid var(--line); background: #fff; padding: 32px 0 44px; }
.footer-grid { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; flex-wrap: wrap; }
.footer-brand { font-family: var(--font-display); color: var(--navy); font-weight: 700; font-size: 1.03rem; }
.footer-muted { color: var(--muted); font-size: .9rem; margin-top: 4px; }
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.footer-links a { font-size: .88rem; font-weight: 650; }
.footer-meta { color: var(--muted); font-size: .83rem; width: 100%; margin-top: 18px; }


.theme-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.theme-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 260px;
}
.theme-card h3 { margin: 0; color: var(--navy); font-size: 1.08rem; line-height: 1.2; }
.theme-card p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.55; flex: 1; }
.theme-card.is-live { border-color: var(--line-strong); position: relative; overflow: hidden; }
.theme-card.is-live::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--navy), var(--blue-2));
}
.theme-status {
  align-self: flex-start;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: var(--gold-pale);
  color: #85660e;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 10px;
}
.muted-status { border-color: var(--line-strong); background: var(--ice); color: var(--muted); }
.tattoo-page .theme-card {
  background: #222;
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.tattoo-page .theme-card h3 { color: #fff; }
.tattoo-page .theme-card p { color: rgba(255,255,255,.67); }
.tattoo-page .theme-card.is-live { border-color: rgba(201,168,76,.5); }
.tattoo-page .theme-card.is-live::before { background: linear-gradient(90deg, var(--gold), var(--gold-2)); }
.tattoo-page .muted-status { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.08); color: rgba(255,255,255,.66); }

@media (max-width: 1080px) {
  .theme-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .theme-grid { grid-template-columns: 1fr; }
  .theme-card { min-height: 0; }
}

/* Tattoo landing page */
.tattoo-page {
  --navy: #f6f0e5;
  --navy-2: #e8dcc7;
  --ink: #f5efe6;
  --muted: rgba(255,255,255,.67);
  --line: rgba(255,255,255,.12);
  --line-strong: rgba(201,168,76,.38);
  --ice: #181818;
  --white: #202020;
  background: #181818;
  color: #e8e0d2;
}
.tattoo-page .site-header { background: rgba(18,18,18,.94); border-bottom-color: rgba(255,255,255,.1); }
.tattoo-page .brand, .tattoo-page .nav-links a { color: #fff; }
.tattoo-page .brand small { color: rgba(255,255,255,.55); }
.tattoo-page .nav-links a:hover { color: var(--gold-2); }
.tattoo-page .hero { background: #181818; }
.tattoo-page .hero::before { background: radial-gradient(circle, rgba(201,168,76,.14) 0%, transparent 68%); }
.tattoo-page .hero::after { background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,.018) 2px, rgba(255,255,255,.018) 4px); inset: 0; width: auto; height: auto; border-radius: 0; }
.tattoo-page .eyebrow, .tattoo-page .section-eyebrow { background: rgba(201,168,76,.12); color: var(--gold-2); border-color: rgba(201,168,76,.32); }
.tattoo-page .hero h1, .tattoo-page .section h2, .tattoo-page h2, .tattoo-page h3 { color: #fff; }
.tattoo-page .hero h1 em, .tattoo-page .page-hero h1 em { color: var(--gold-2); }
.tattoo-page .card, .tattoo-page .hero-card, .tattoo-page .service-card, .tattoo-page .feature-card, .tattoo-page .value-card, .tattoo-page .pricing-card, .tattoo-page .mini-card {
  background: #222;
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 18px 50px rgba(0,0,0,.24);
}
.tattoo-page .hero-card::before, .tattoo-page .service-card::before, .tattoo-page .pricing-card.featured::before { background: linear-gradient(90deg, var(--gold), var(--gold-2)); }
.tattoo-page .btn-primary { background: var(--gold); color: #151515; }
.tattoo-page .btn-primary:hover { background: var(--gold-2); color: #151515; }
.tattoo-page .btn-secondary { background: transparent; color: rgba(255,255,255,.82); border-color: rgba(255,255,255,.22); }
.tattoo-page .btn-secondary:hover { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.42); }
.tattoo-page .price-new, .tattoo-page .pricing-amount { color: var(--gold-2); }
.tattoo-page .band { background: #222; border-color: rgba(255,255,255,.12); }
.tattoo-page .deep-band { background: #242a21; }
.tattoo-page .gold-band { background: #1f1f1f; }
.tattoo-page ul.clean-list li::before, .tattoo-page .service-card li::before { color: var(--gold-2); }
.tattoo-page .site-footer { background: #111; border-top-color: rgba(255,255,255,.1); }
.tattoo-page .footer-brand { color: #fff; }
.tattoo-page .footer-links a, .tattoo-page .site-footer a { color: rgba(255,255,255,.72); }
.tattoo-page .tag { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: rgba(255,255,255,.86); }

@media (max-width: 920px) {
  .hero-grid, .grid-2, .grid-3, .grid-aside, .contact-layout { grid-template-columns: 1fr; }
  .hero h1, .page-hero h1 { max-width: 14ch; }
  .nav-links { gap: 12px; }
}
@media (max-width: 760px) {
  .nav-wrap { min-height: 64px; }
  .brand small { display: none; }
  .nav-links { display: none; }
  .mobile-nav-note { display: block; }
  .hero { padding: 58px 0 50px; }
  .page-hero { padding: 58px 0 42px; }
  .hero h1, .page-hero h1 { font-size: clamp(2.05rem, 10vw, 3rem); }
  .lead { font-size: 1rem; }
  .section { padding: 56px 0; }
  .hero-card, .service-card, .feature-card, .value-card, .pricing-card, .prose, .contact-card { padding: 22px; }
  .footer-grid, .footer-links { justify-content: flex-start; }
}

/* Contrast safety pass: keep dark-band text readable after generic card/heading rules. */
body:not(.tattoo-page) .deep-band,
body:not(.tattoo-page) .gold-band {
  color: #fff;
}
body:not(.tattoo-page) .section.deep-band h2,
body:not(.tattoo-page) .section.deep-band h3,
body:not(.tattoo-page) .section.deep-band strong,
body:not(.tattoo-page) .section.gold-band h2,
body:not(.tattoo-page) .section.gold-band h3,
body:not(.tattoo-page) .section.gold-band strong {
  color: #fff;
}
body:not(.tattoo-page) .section.deep-band .section-lead,
body:not(.tattoo-page) .section.gold-band .section-lead {
  color: rgba(255,255,255,.84);
}
body:not(.tattoo-page) .section.deep-band .mini-card,
body:not(.tattoo-page) .section.gold-band .mini-card {
  color: #fff;
}
body:not(.tattoo-page) .section.deep-band .mini-card h3,
body:not(.tattoo-page) .section.gold-band .mini-card h3 {
  color: #fff;
}
body:not(.tattoo-page) .section.deep-band .mini-card p,
body:not(.tattoo-page) .section.gold-band .mini-card p {
  color: rgba(255,255,255,.84);
}
body:not(.tattoo-page) .section.deep-band .text-link,
body:not(.tattoo-page) .section.gold-band .text-link {
  color: #fff;
}
body:not(.tattoo-page) .section.deep-band .btn-light,
body:not(.tattoo-page) .section.gold-band .btn-light {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
body:not(.tattoo-page) .section.deep-band .btn-light:hover,
body:not(.tattoo-page) .section.gold-band .btn-light:hover {
  background: var(--sky);
  color: var(--navy);
  border-color: var(--sky);
}
body:not(.tattoo-page) .section.deep-band .btn-secondary,
body:not(.tattoo-page) .section.gold-band .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.42);
}
body:not(.tattoo-page) .section.deep-band .btn-secondary:hover,
body:not(.tattoo-page) .section.gold-band .btn-secondary:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.72);
}
.tattoo-page .btn-light {
  background: #fff;
  color: #151515;
  border-color: #fff;
}
.tattoo-page .btn-light:hover {
  background: var(--gold-pale);
  color: #151515;
  border-color: var(--gold-pale);
}
.tattoo-page .section.deep-band h2,
.tattoo-page .section.deep-band h3,
.tattoo-page .section.gold-band h2,
.tattoo-page .section.gold-band h3 {
  color: #fff;
}
.tattoo-page .section.deep-band .mini-card p,
.tattoo-page .section.gold-band .mini-card p {
  color: rgba(255,255,255,.82);
}
