/* Steven Graham Tattoos — shared site styles */
:root {
  --gold: #a8862f;
  --ink: #111111;
  --paper: #ffffff;
  --muted: #555555;
  --line: #e8e4da;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- NAV ---------- */
.sgt-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0));
  transition: background 0.3s ease;
}
.sgt-nav.is-solid {
  background: #0b0b0b;
  box-shadow: 0 2px 14px rgba(0,0,0,0.25);
}
.sgt-nav a.sgt-logo-link { display: flex; align-items: center; }
.sgt-nav img.sgt-logo { height: 46px; width: auto; }
.sgt-nav-links { display: flex; gap: 28px; align-items: center; }
.sgt-nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.sgt-nav-links a.is-current { color: var(--gold); }
.sgt-nav-cta {
  background: var(--gold);
  color: #1a1a1a !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
}
.sgt-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  padding: 8px;
}
@media (max-width: 860px) {
  .sgt-nav-links { display: none; }
  .sgt-menu-btn { display: block; }
  .sgt-nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(78vw, 320px);
    background: #0b0b0b;
    padding: 96px 32px 32px;
    gap: 26px;
    align-items: flex-start;
  }
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- PAGE HERO (non-home) ---------- */
.sgt-page-hero {
  position: relative;
  padding: 168px 24px 72px;
  text-align: center;
  background: #0b0b0b;
  color: #f5f0e6;
}
.sgt-page-hero h1 {
  font-size: clamp(30px, 5.5vw, 52px);
  font-weight: 800;
  margin: 0 0 16px;
}
.sgt-page-hero p {
  color: #d8d2c6;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 17px;
}

/* ---------- HOME HERO ---------- */
.sgt-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #0b0b0b;
}
.sgt-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: sgtHeroZoom 16s ease-in-out infinite alternate;
}
@keyframes sgtHeroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.sgt-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.65));
}
.sgt-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 24px;
}
.sgt-hero h1 {
  color: #f5f0e6;
  font-size: clamp(34px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 20px;
}
.sgt-hero p {
  color: #d8d2c6;
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 32px;
}
.sgt-btn {
  display: inline-block;
  background: var(--gold);
  color: #1a1a1a;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
}
.sgt-btn.sgt-btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.sgt-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: #eee;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
}
.sgt-scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 34px;
  background: #eee;
  margin: 10px auto 0;
  animation: sgtLine 1.8s ease-in-out infinite;
}
@keyframes sgtLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- SECTION SHELL ---------- */
.sgt-section {
  padding: 96px 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.sgt-section.is-narrow { max-width: 760px; }
.sgt-section-dark {
  background: #0b0b0b;
  color: #fff;
}
.sgt-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  margin-bottom: 12px;
}
.sgt-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  text-align: center;
  margin: 0 0 16px;
}
.sgt-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.sgt-section-dark .sgt-body { color: #c9c4b8; }

/* ---------- BEFORE / AFTER SLIDER ---------- */
.sgt-slider {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3 / 4;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
}
.sgt-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.sgt-slider .sgt-after { clip-path: inset(0 0 0 50%); }
.sgt-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.2);
}
.sgt-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23222' stroke-width='2'><path d='M8 7l-5 5 5 5M16 7l5 5-5 5'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
}
.sgt-tag {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.55);
  border-radius: 999px;
  z-index: 3;
}
.sgt-tag.left { left: 16px; }
.sgt-tag.right { right: 16px; }

/* ---------- PORTFOLIO / MAGNIFIER GRID ---------- */
.sgt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.sgt-grid.sgt-grid-4 { grid-template-columns: repeat(4, 1fr); }
.sgt-magnify {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: none;
}
.sgt-magnify img { width: 100%; height: 100%; object-fit: cover; }
.sgt-lens {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  pointer-events: none;
  background-repeat: no-repeat;
  display: none;
  z-index: 4;
}
@media (max-width: 720px) {
  .sgt-grid, .sgt-grid.sgt-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .sgt-lens { display: none !important; }
  .sgt-magnify { cursor: pointer; }
}
.sgt-gallery-heading {
  font-size: 22px;
  font-weight: 700;
  margin: 56px 0 20px;
  text-align: center;
}
.sgt-gallery-heading:first-of-type { margin-top: 0; }
.sgt-view-more {
  text-align: center;
  margin-top: 40px;
}

/* ---------- ABOUT PREVIEW ---------- */
.sgt-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.sgt-about img { border-radius: 12px; }
.sgt-about-text h3 { font-size: 28px; margin: 0 0 16px; }
.sgt-about-text p { color: var(--muted); line-height: 1.7; margin: 0 0 24px; }
@media (max-width: 720px) {
  .sgt-about { grid-template-columns: 1fr; }
}

/* ---------- FEATURE CARDS ---------- */
.sgt-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.sgt-feature-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
}
.sgt-feature-card h4 { font-size: 19px; margin: 0 0 12px; }
.sgt-feature-card p { color: var(--muted); line-height: 1.6; font-size: 15px; margin: 0; }
.sgt-quote {
  max-width: 700px;
  margin: 48px auto 0;
  text-align: center;
  font-size: 19px;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
}
@media (max-width: 820px) {
  .sgt-features { grid-template-columns: 1fr; }
}

/* ---------- PROCESS STEPS ---------- */
.sgt-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: sgt-step;
}
.sgt-step { text-align: center; }
.sgt-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin: 0 auto 16px;
}
.sgt-step h4 { font-size: 17px; margin: 0 0 10px; }
.sgt-step p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0; }
@media (max-width: 820px) {
  .sgt-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .sgt-steps { grid-template-columns: 1fr; }
}

/* ---------- REVIEW CTA ---------- */
.sgt-review {
  text-align: center;
  padding: 64px 24px;
  background: #f6f3ec;
}
.sgt-review h3 { font-size: 24px; margin: 0 0 8px; }
.sgt-review p { color: var(--muted); margin: 0 0 24px; }

/* ---------- FAQ ---------- */
.sgt-faq { max-width: 760px; margin: 0 auto; }
.sgt-faq-item {
  border-bottom: 1px solid var(--line);
}
.sgt-faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 4px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
}
.sgt-faq-q::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.sgt-faq-item.is-open .sgt-faq-q::after { transform: rotate(45deg); }
.sgt-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.sgt-faq-a p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

/* ---------- STUDIO LOCATION ---------- */
.sgt-location {
  background: #f6f3ec;
}

/* ---------- FINAL CTA ---------- */
.sgt-cta {
  background: #0b0b0b;
  color: #fff;
  text-align: center;
  padding: 96px 24px;
}
.sgt-cta h2 { font-size: clamp(28px, 5vw, 42px); margin: 0 0 16px; }
.sgt-cta p { color: #c9c4b8; margin: 0 0 32px; }

/* ---------- AFTERCARE PAGE ---------- */
.sgt-steps-list { max-width: 760px; margin: 0 auto; }
.sgt-steps-list .sgt-step-block { margin-bottom: 28px; }
.sgt-steps-list .sgt-step-block h4 {
  font-size: 17px;
  color: var(--gold);
  margin: 0 0 8px;
}
.sgt-steps-list .sgt-step-block p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.sgt-note-list { max-width: 760px; margin: 0 auto; padding: 0; list-style: none; }
.sgt-note-list li {
  position: relative;
  padding: 0 0 14px 22px;
  color: var(--muted);
  line-height: 1.7;
}
.sgt-note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.sgt-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.sgt-product-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
}
.sgt-product-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.sgt-product-card .sgt-product-name {
  padding: 16px;
  font-weight: 700;
  font-size: 15px;
}
@media (max-width: 720px) {
  .sgt-products { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .sgt-products { grid-template-columns: 1fr; }
}

/* ---------- FOOTER ---------- */
.sgt-footer {
  background: #050505;
  color: #999;
  padding: 56px 24px 32px;
  font-size: 14px;
  line-height: 1.8;
}
.sgt-footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}
.sgt-footer strong { color: #ddd; }
.sgt-footer h5 {
  color: #ddd;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 16px;
}
.sgt-footer nav { display: flex; flex-direction: column; gap: 10px; }
.sgt-footer nav a { color: #999; text-decoration: none; }
.sgt-footer nav a:hover { color: var(--gold); }
.sgt-footer-social { display: flex; gap: 16px; margin-top: 16px; }
.sgt-footer-social a {
  color: #999;
  text-decoration: none;
  border: 1px solid #333;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sgt-footer-bottom {
  max-width: 1080px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid #1e1e1e;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.sgt-footer-bottom a { color: #999; text-decoration: underline; }
@media (max-width: 720px) {
  .sgt-footer-inner { grid-template-columns: 1fr; }
}

/* ---------- COOKIE CONSENT BANNER ---------- */
.sgt-cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  max-width: 560px;
  margin: 0 auto;
  background: #111;
  color: #eee;
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  transform: translateY(140%);
  transition: transform 0.4s ease;
}
.sgt-cookie.is-visible { transform: translateY(0); }
.sgt-cookie p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #cfcac0;
}
.sgt-cookie a { color: var(--gold); text-decoration: underline; }
.sgt-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sgt-cookie-btn {
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.sgt-cookie-btn.accept { background: var(--gold); color: #1a1a1a; }
.sgt-cookie-btn.reject { background: transparent; color: #eee; border: 1px solid #444; }
.sgt-cookie-btn.settings { background: transparent; color: #999; text-decoration: underline; padding: 10px 4px; }

.sgt-cookie-prefs {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.sgt-cookie-prefs.is-visible { display: flex; }
.sgt-cookie-prefs-box {
  background: #fff;
  border-radius: 14px;
  max-width: 480px;
  width: 100%;
  padding: 32px;
  max-height: 86vh;
  overflow-y: auto;
}
.sgt-cookie-prefs-box h3 { margin: 0 0 8px; font-size: 20px; }
.sgt-cookie-prefs-box > p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0 0 24px; }
.sgt-cookie-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.sgt-cookie-row h4 { margin: 0 0 6px; font-size: 15px; }
.sgt-cookie-row p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.5; }
.sgt-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.sgt-toggle input { opacity: 0; width: 0; height: 0; }
.sgt-toggle span {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 999px;
  transition: background 0.2s ease;
  cursor: pointer;
}
.sgt-toggle span::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s ease;
}
.sgt-toggle input:checked + span { background: var(--gold); }
.sgt-toggle input:checked + span::before { transform: translateX(20px); }
.sgt-toggle input:disabled + span { opacity: 0.6; cursor: not-allowed; }
.sgt-cookie-prefs-actions {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
