/* ─────────────────────────────────────────
   TRIMS BY TRENT v2 — style.css
   Brush-marker / paint-splatter theme
   ───────────────────────────────────────── */

/* ── TOKENS ── */
:root {
  --bg:          #1B1B1B;
  --surface:     #222222;
  --border:      #2A2A2A;
  --border2:     #3A3A3A;
  --dash:        #333333;

  --text:        #F3EFE8;
  --text-muted:  #C2BAAD;
  --text-dim:    #9A9388;
  --text-dimmer: #8A8378;
  --input-text:  #5A5A5A;

  --red:    #FF3B5C;
  --yellow: #FFD23F;
  --teal:   #2EC4B6;
  --blue:   #4D7FFF;
  --purple: #C77DFF;

  --font-display: 'Permanent Marker', cursive;
  --font-script:  'Caveat', cursive;
  --font-body:    'Archivo', sans-serif;

  --transition: 0.25s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
/* subtle grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: repeating-radial-gradient(circle at 20% 30%, #fff 0px, transparent 2px);
  background-size: 8px 8px;
  z-index: 1000;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }
img { display: block; max-width: 100%; }

/* ── NAV ── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 2px solid var(--border);
}
.nav-name {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--yellow);
  transform: rotate(-1deg);
}
.nav-links { display: none; }
.nav-link {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color var(--transition);
}
.nav-link:hover { color: var(--yellow); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ── BARBER SPLATTER LOGO ── */
.splat-wrap {
  position: relative;
  width: 270px;
  height: 270px;
  flex-shrink: 0;
  margin: 0 auto;
}
.splat-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.5));
}
.splat-bg {
  position: absolute;
  inset: 0;
  border-radius: 46% 54% 52% 48% / 48% 46% 54% 52%;
  background:
    radial-gradient(circle at 25% 28%, var(--red) 0%, transparent 36%),
    radial-gradient(circle at 72% 22%, var(--yellow) 0%, transparent 38%),
    radial-gradient(circle at 78% 70%, var(--teal) 0%, transparent 40%),
    radial-gradient(circle at 22% 75%, var(--blue) 0%, transparent 38%),
    radial-gradient(circle at 50% 50%, var(--purple) 0%, transparent 52%);
  filter: contrast(1.15) saturate(1.15);
}
.splat-drip {
  position: absolute;
  border-radius: 0 0 50% 50%;
}
.splat-drip1 { width: 9px;  height: 28px; background: var(--red);    top: 160px; left: 52px;  transform: rotate(4deg); }
.splat-drip2 { width: 7px;  height: 20px; background: var(--blue);   top: 164px; left: 122px; transform: rotate(-3deg); }
.splat-drip3 { width: 6px;  height: 14px; background: var(--yellow); top: 4px;   left: 90px; }

.splat-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.splat-text .l1,
.splat-text .l3 {
  font-family: var(--font-display);
  font-size: 30px;
  color: #fff;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.35);
}
.splat-text .l1 { transform: rotate(-2deg); }
.splat-text .l3 { transform: rotate(1.5deg); }
.splat-text .l2 {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin: -5px 0;
  transform: rotate(1deg);
}

/* ── HERO ── */
.hero {
  padding: 6px 18px 26px;
  text-align: center;
}
.hero-tag {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 10px 0 12px;
  font-weight: 600;
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 12px;
  transform: rotate(-0.5deg);
}
.hero-h1 .accent { color: var(--yellow); }
.hero-body {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.hero-body strong { color: var(--text); font-weight: 700; }

.cta {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: var(--yellow);
  color: #1B1B1B;
  font-size: 11.5px;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 4px;
  border: 2px solid #1B1B1B;
  cursor: pointer;
  transition: opacity var(--transition);
}
.btn-primary:hover { opacity: 0.9; }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 4px;
  border: 2px solid var(--border2);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}
.btn-secondary:hover {
  border-color: #555;
  color: var(--yellow);
}

/* ── RAINBOW TAPE DIVIDER ── */
.tape {
  height: 4px;
  margin: 0 16px;
  background: linear-gradient(
    90deg,
    var(--red),
    var(--yellow),
    var(--teal),
    var(--blue),
    var(--purple)
  );
}

/* ── SECTION LABELS (shared) ── */
.sec-eyebrow {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 22px;
  color: var(--yellow);
  display: inline-block;
  transform: rotate(-2deg);
  margin-bottom: 2px;
}
.sec-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text);
  margin-bottom: 14px;
}
.sec-body {
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ── ABOUT ── */
.about-section {
  padding: 24px 18px;
}
.about-body {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── SERVICES ── */
.services {
  padding: 24px 18px;
}
.svc-grid {
  display: flex;
  flex-direction: column;
}
.svc-row {
  display: flex;
  align-items: center;
  padding: 13px 0;
  border-bottom: 2px dashed var(--dash);
}
.svc-row:last-child { border-bottom: none; }
.svc-left {
  display: flex;
  align-items: center;
  gap: 13px;
}
.svc-num {
  font-family: var(--font-display);
  font-size: 12px;
  color: #555;
  width: 20px;
  flex-shrink: 0;
}
.svc-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 8px;
}
.svc-title {
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
}
.svc-sub {
  font-size: 10.5px;
  color: var(--text-dimmer);
  margin-top: 2px;
}

/* ── CONTACT ── */
.contact-section {
  padding: 28px 18px;
}
.contact-header { margin-bottom: 20px; }
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.alt-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 2px dashed var(--dash);
}
.alt-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.alt-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--yellow);
}
.alt-value {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.alt-link { transition: color var(--transition); }
.alt-link:hover { color: var(--text); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hp-field { position: absolute; left: -9999px; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.form-group input,
.form-group textarea {
  background: var(--surface);
  border: 2px solid var(--border2);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  padding: 11px 13px;
  border-radius: 4px;
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--input-text); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--yellow);
}
.btn-submit {
  display: inline-block;
  width: 100%;
  background: var(--yellow);
  color: #1B1B1B;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: opacity var(--transition);
}
.btn-submit:hover { opacity: 0.9; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-msg {
  font-size: 12.5px;
  letter-spacing: 0.3px;
  padding: 11px 14px;
  border-radius: 4px;
  margin-top: 2px;
}
.form-msg.success {
  background: rgba(46,196,182,0.1);
  border: 2px solid rgba(46,196,182,0.3);
  color: var(--teal);
}
.form-msg.error {
  background: rgba(255,59,92,0.1);
  border: 2px solid rgba(255,59,92,0.3);
  color: var(--red);
}

/* ── FOOTER ── */
.footer {
  padding: 20px 18px;
  border-top: 2px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--text);
}
.footer-sub {
  font-size: 10px;
  color: var(--text-dimmer);
}
.footer-sub a { transition: color var(--transition); }
.footer-sub a:hover { color: var(--yellow); }

/* ── THANK YOU PAGE ── */
.thanks-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}
.thanks-title {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.4;
  margin-bottom: 18px;
  max-width: 480px;
}
.thanks-title .accent { color: var(--yellow); display: block; }
.thanks-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 28px;
}

/* ── RESPONSIVE: TABLET (≥700px) ── */
@media (min-width: 700px) {
  .nav { padding: 18px 32px; }
  .nav-name { font-size: 16px; }
  .nav-toggle { display: none; }
  .nav-links {
    display: flex;
    gap: 24px;
  }
  .nav-link { font-size: 11px; }

  .hero {
    padding: 36px 32px;
    display: flex;
    align-items: center;
    gap: 28px;
    text-align: left;
  }
  .splat-wrap { width: 240px; height: 240px; margin: 0; }
  .splat-text .l1, .splat-text .l3 { font-size: 24px; }
  .splat-text .l2 { font-size: 14px; margin: -4px 0; }
  .splat-drip1 { top: 144px; left: 46px; }
  .splat-drip2 { top: 148px; left: 110px; }
  .splat-drip3 { top: 2px; left: 80px; }

  .hero-right { flex: 1; }
  .hero-tag { font-size: 11px; letter-spacing: 2px; margin-bottom: 10px; }
  .hero-h1 { font-size: 30px; line-height: 1.25; margin-bottom: 14px; }
  .hero-body { font-size: 14px; line-height: 1.7; margin-bottom: 22px; max-width: 440px; }
  .cta { justify-content: flex-start; gap: 10px; }
  .btn-primary, .btn-secondary { font-size: 12.5px; padding: 13px 24px; }

  .tape { height: 5px; margin: 0 32px; }

  .about-section { padding: 36px 32px; max-width: 640px; }
  .sec-eyebrow { font-size: 18px; }
  .sec-title { font-size: 24px; margin-bottom: 16px; }
  .about-body { font-size: 14px; }

  .services { padding: 36px 32px; }
  .svc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 28px;
  }
  .svc-row { padding: 14px 0; }
  .svc-num { font-size: 13px; width: 22px; }
  .svc-title { font-size: 14px; }
  .svc-sub { font-size: 11px; }

  .contact-section { padding: 40px 32px; }
  .contact-header { max-width: 480px; margin: 0 auto 32px; text-align: center; }
  .sec-body { font-size: 13.5px; }
  .contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    max-width: 640px;
    margin: 0 auto;
  }
  .alt-contact { border-bottom: none; padding-bottom: 0; padding-top: 4px; }
  .contact-form { gap: 18px; }
  .form-group input, .form-group textarea { font-size: 14px; padding: 13px 16px; }
  .btn-submit { width: auto; align-self: flex-start; padding: 14px 28px; font-size: 12.5px; }

  .footer { padding: 22px 32px; }
  .footer-name { font-size: 14px; }
  .footer-sub { font-size: 11px; }
}

/* ── RESPONSIVE: DESKTOP (≥1024px) ── */
@media (min-width: 1024px) {
  .nav { padding: 22px 48px; }
  .nav-name { font-size: 18px; }
  .nav-links { gap: 32px; }
  .nav-link { font-size: 12px; }

  .hero {
    padding: 64px 48px 60px;
    gap: 48px;
    max-width: 1280px;
    margin: 0 auto;
  }
  .splat-wrap { width: 340px; height: 340px; }
  .splat-text .l1, .splat-text .l3 { font-size: 32px; }
  .splat-text .l2 { font-size: 18px; }
  .splat-drip1 { top: 192px; left: 62px; }
  .splat-drip2 { top: 198px; left: 148px; }
  .splat-drip3 { top: 2px; left: 108px; }

  .hero-right { max-width: 600px; }
  .hero-tag { font-size: 12px; letter-spacing: 3px; margin-bottom: 14px; }
  .hero-h1 { font-size: 40px; line-height: 1.2; margin-bottom: 18px; }
  .hero-body { font-size: 15px; line-height: 1.8; margin-bottom: 26px; max-width: 470px; }
  .btn-primary, .btn-secondary { font-size: 13px; padding: 14px 28px; }

  .tape { height: 6px; margin: 0 48px; }

  .about-section { padding: 56px 48px; max-width: 1280px; margin: 0 auto; }
  .sec-eyebrow { font-size: 19px; }
  .sec-title { font-size: 27px; margin-bottom: 18px; }
  .about-body { font-size: 15px; max-width: 700px; }

  .services { padding: 56px 48px; max-width: 1280px; margin: 0 auto; }
  .sec-title { margin-bottom: 22px; }
  .svc-grid { grid-template-columns: 1fr 1fr 1fr; column-gap: 36px; }
  .svc-row { padding: 16px 0; }
  .svc-num { font-size: 14px; width: 24px; }
  .svc-title { font-size: 15px; }
  .svc-sub { font-size: 11.5px; }

  .contact-section { padding: 64px 48px; max-width: 1280px; margin: 0 auto; }
  .contact-header { margin-bottom: 40px; }
  .sec-body { font-size: 15px; }
  .contact-grid { gap: 64px; max-width: 880px; }
  .alt-item { margin-bottom: 4px; }
  .alt-label { font-size: 11px; }
  .alt-value { font-size: 15px; }
  .form-group input, .form-group textarea { font-size: 14.5px; padding: 14px 18px; }
  .btn-submit { font-size: 13px; padding: 15px 32px; }

  .footer { padding: 28px 48px; max-width: 1280px; margin: 0 auto; }
  .footer-name { font-size: 15px; }
  .footer-sub { font-size: 12px; }
}

/* ── SMALL MOBILE TWEAK ── */
@media (max-width: 380px) {
  .splat-wrap { width: 210px; height: 210px; }
  .splat-text .l1, .splat-text .l3 { font-size: 24px; }
  .hero-h1 { font-size: 19px; }
}
