/*
Theme Name: Bartlett Ink
Author: Bartlett Ink
Description: Custom tattoo artist theme for Bartlett Ink.
Version: 1.0
Text Domain: bartlett-ink
*/

/* BARTLETT INK FONTS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Road+Rage&display=swap');

:root {
  --bi-black: #050505;
  --bi-white: #fff;
  --bi-blue: #075cff;
  --bi-grey: #bbb;
  --bi-max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bi-black);
  color: var(--bi-white);
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  width: min(var(--bi-max), calc(100% - 40px));
  margin: auto;
}

.section {
  padding: 72px 0;
  border-top: 1px solid #222;
}


/* GRAFFITI / DISPLAY TYPOGRAPHY */

h1,
h2,
.kicker,
.process-num {
  font-family: 'Road Rage', Impact, sans-serif;
  font-weight: 400;
}

h1,
h2,
h3 {
  margin: 0 0 18px;
  line-height: 1.05;
}

h1 {
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 400;
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
}

h3 {
  font-size: 1.25rem;
  font-weight: 800;
}

.kicker {
  color: var(--bi-blue);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 1.25rem;
}


/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 2px solid var(--bi-blue);
  background: var(--bi-blue);
  color: white;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  transition: .2s ease;
}

.btn:hover {
  background: white;
  border-color: white;
  color: black;
}

.btn.alt {
  background: transparent;
}

.btn.alt:hover {
  background: white;
  color: black;
}


/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 3, 3, .96);
  border-bottom: 1px solid #1b1b1b;
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-logo {
  width: 145px;
}

.site-logo img {
  max-height: 72px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 27px;
  align-items: center;
  margin-left: auto;
}

.main-nav a {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: .85rem;
}

.main-nav a:hover {
  color: var(--bi-blue);
}

.header-cta {
  margin-left: 8px;
}

.mobile-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid #333;
  color: white;
  padding: 10px 12px;
}


/* HERO */

.hero {
  min-height: 700px;
  display: grid;
  align-items: end;
  position: relative;
  background: #050505 center / cover no-repeat;
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.93),
      rgba(0,0,0,.58) 50%,
      rgba(0,0,0,.15)
    );
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 110px 0 90px;
  max-width: 760px;
}

/* MAIN GRAFFITI HERO HEADING */

.hero h1 {
  font-family: 'Road Rage', Impact, sans-serif;
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 400;
  line-height: .78;
  letter-spacing: .01em;
  text-transform: uppercase;
  max-width: 760px;
  text-shadow: 3px 3px 0 rgba(0,0,0,.45);
}

.hero .lead {
  font-size: 1.18rem;
  color: #e8e8e8;
  max-width: 520px;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.blue-stroke {
  height: 7px;
  width: 160px;
  background: var(--bi-blue);
  margin: 18px 0 22px;
  box-shadow:
    0 0 18px rgba(7,92,255,.55),
    14px 3px 0 -2px var(--bi-blue);
  transform: rotate(-1deg);
}


/* FEATURE STRIP */

.features {
  background: #090909;
  padding: 24px 0;
  border-top: 1px solid #272727;
  border-bottom: 1px solid #272727;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px 24px;
  border-right: 1px solid #282828;
}

.feature:last-child {
  border-right: 0;
}

.feature-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.feature strong {
  font-weight: 900;
  text-transform: uppercase;
}

.feature small {
  display: block;
  color: #ccc;
}


/* ABOUT */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 58px;
  align-items: center;
}

.about-image {
  border: 1px solid #252525;
  position: relative;
}

.about-image:after {
  content: "";
  position: absolute;
  left: -10px;
  bottom: -10px;
  width: 80px;
  height: 80px;
  border-left: 5px solid var(--bi-blue);
  border-bottom: 5px solid var(--bi-blue);
}

.about-copy p {
  color: #d5d5d5;
  font-size: 1.04rem;
}


/* PORTFOLIO */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #111;
  border: 1px solid #222;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .35s;
  filter: grayscale(100%);
}

.portfolio-card:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.portfolio-card .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  background: linear-gradient(transparent, rgba(0,0,0,.9));
  font-weight: 800;
}


/* BOOKING PROCESS */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.process-card {
  border: 1px solid #282828;
  padding: 24px;
  background: #090909;
}

.process-num {
  font-size: 3rem;
  color: var(--bi-blue);
  margin-bottom: 12px;
}


/* BOOKINGS / CONTACT */

.booking-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
}

.booking-panel {
  padding: 32px;
  background: #0b0b0b;
  border: 1px solid #282828;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  background: #050505;
  color: #fff;
  border: 1px solid #333;
  padding: 14px 16px;
  margin-bottom: 14px;
  font-family: 'Inter', Arial, sans-serif;
}

.booking-form textarea {
  min-height: 150px;
}

.booking-form button {
  width: 100%;
}


/* FAQ */

.faq-item {
  border-top: 1px solid #2b2b2b;
}

.faq-item:last-child {
  border-bottom: 1px solid #2b2b2b;
}

.faq-q {
  width: 100%;
  background: none;
  border: 0;
  color: white;
  text-align: left;
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 1.05rem;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 800;
  cursor: pointer;
}

.faq-a {
  display: none;
  color: #ccc;
  padding: 0 0 20px;
}

.faq-item.open .faq-a {
  display: block;
}


/* FOOTER */

.site-footer {
  background: #020202;
  border-top: 1px solid #252525;
  padding: 50px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 34px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 16px;
}

.footer-muted {
  color: #aaa;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid #222;
  color: #888;
  font-size: .85rem;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}


/* TABLET */

@media (max-width: 900px) {

  .main-nav,
  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .main-nav.open {
    display: flex;
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    background: #050505;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .features-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid,
  .booking-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    font-size: clamp(4.5rem, 13vw, 7rem);
  }
}


/* MOBILE */

@media (max-width: 600px) {

  .features-grid,
  .process-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(4rem, 19vw, 6rem);
  }

  h2 {
    font-size: 3rem;
  }
}