/* ============================================
   Hill City Tattoo — Stylesheet
   Palette: Teal (#0D4F4F / #1A7A7A / #5EEAD4) + Slate (#0F172A / #1E293B / #334155 / #64748B / #94A3B8 / #CBD5E1 / #F1F5F9)
   Fonts: Inter (body) + Playfair Display (headings)
   ============================================ */

/* RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: #1E293B;
  background-color: #F8FAFC;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* UTILITIES */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(94, 234, 212, 0.1);
  transition: background 0.3s ease;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #F1F5F9;
  text-transform: uppercase;
}

.nav-logo svg {
  color: #5EEAD4;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94A3B8;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: #5EEAD4;
}

.nav-cta {
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
  color: #0F172A !important;
  background: #5EEAD4;
  padding: 10px 22px;
  border-radius: 100px;
  transition: background 0.2s ease, transform 0.2s ease !important;
}

.nav-cta:hover {
  background: #2DD4BF !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #CBD5E1;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0F172A;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13, 79, 79, 0.88) 0%,
    rgba(15, 23, 42, 0.82) 50%,
    rgba(15, 23, 42, 0.90) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 120px 24px 80px;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #5EEAD4;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  color: #F1F5F9;
  margin-bottom: 28px;
}

.hero-accent {
  color: #5EEAD4;
  font-style: italic;
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: #94A3B8;
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-dot {
  color: #334155;
  font-size: 1.4rem;
  line-height: 1;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 100px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #5EEAD4;
  color: #0F172A;
}

.btn-primary:hover {
  background: #2DD4BF;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(94, 234, 212, 0.25);
}

.btn-ghost {
  background: transparent;
  color: #CBD5E1;
  border: 1px solid rgba(203, 213, 225, 0.3);
}

.btn-ghost:hover {
  border-color: #5EEAD4;
  color: #5EEAD4;
}

.btn-full {
  width: 100%;
}

/* SECTION COMMON */
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0D4F4F;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: #0F172A;
  margin-bottom: 20px;
}

/* SERVICES */
.services {
  padding: 120px 0;
  background: #F8FAFC;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.service-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: #5EEAD4;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13, 79, 79, 0.08);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(13, 79, 79, 0.06);
  color: #0D4F4F;
  margin-bottom: 24px;
}

.service-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #0F172A;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.92rem;
  color: #64748B;
  line-height: 1.75;
}

/* ABOUT */
.about {
  padding: 120px 0;
  background: #0F172A;
}

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

.about-images {
  position: relative;
  min-height: 580px;
}

.about-img-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  border: 4px solid #0F172A;
}

.about-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content .section-label {
  color: #5EEAD4;
}

.about-content .section-title {
  color: #F1F5F9;
}

.about-text {
  font-size: 1rem;
  color: #94A3B8;
  margin-bottom: 20px;
  line-height: 1.85;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin: 40px 0 48px;
  padding: 32px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  color: #5EEAD4;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748B;
}

.about-content .btn-primary {
  margin-top: 8px;
}

/* GALLERY */
.gallery {
  padding: 120px 0;
  background: #F8FAFC;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 64px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.88rem;
  color: #64748B;
  font-style: italic;
}

/* FAQ */
.faq {
  padding: 120px 0;
  background: #FFFFFF;
}

.faq-list {
  max-width: 780px;
  margin: 64px auto 0;
}

.faq-item {
  border-bottom: 1px solid #E2E8F0;
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 400;
  color: #0F172A;
  transition: color 0.2s ease;
}

.faq-btn:hover {
  color: #0D4F4F;
}

.faq-icon {
  flex-shrink: 0;
  color: #94A3B8;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-btn[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: #5EEAD4;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
  padding-bottom: 28px;
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.85;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* CONTACT */
.contact {
  padding: 120px 0;
  background: #F8FAFC;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-intro {
  font-size: 1rem;
  color: #64748B;
  line-height: 1.85;
  margin-bottom: 48px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-item svg {
  color: #0D4F4F;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0F172A;
  margin-bottom: 6px;
}

.contact-item p,
.contact-item a {
  font-size: 0.95rem;
  color: #64748B;
  line-height: 1.7;
}

.contact-item a:hover {
  color: #0D4F4F;
  text-decoration: underline;
}

.contact-hours {
  padding: 28px 32px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
}

.contact-hours strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0F172A;
  margin-bottom: 10px;
}

.contact-hours p {
  font-size: 0.92rem;
  color: #64748B;
  line-height: 1.8;
}

/* FORM */
.contact-form-wrap {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 48px;
}

.contact-form h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #0F172A;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #334155;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: #0F172A;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94A3B8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #5EEAD4;
  box-shadow: 0 0 0 3px rgba(94, 234, 212, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 20px;
  text-align: center;
  color: #0D4F4F;
}

.form-success svg {
  color: #5EEAD4;
}

.form-success p {
  font-size: 1rem;
  color: #334155;
  line-height: 1.7;
}

/* MAP */
.map-section {
  background: #0F172A;
}

.map-section iframe {
  filter: grayscale(0.6) contrast(1.05);
  opacity: 0.85;
}

/* FOOTER */
.footer {
  background: #0F172A;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #F1F5F9;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-logo svg {
  color: #5EEAD4;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.8;
}

.footer-links strong,
.footer-contact strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5EEAD4;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: #94A3B8;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #5EEAD4;
}

.footer-contact p {
  font-size: 0.9rem;
  color: #94A3B8;
  line-height: 1.8;
  margin-bottom: 4px;
}

.footer-contact a {
  color: #94A3B8;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #5EEAD4;
}

.footer-bottom {
  padding: 28px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: #475569;
}

/* SCROLL REVEAL (progressive enhancement) */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE MENU */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 32px 24px;
    gap: 24px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    border-bottom: 1px solid rgba(94, 234, 212, 0.1);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-menu a,
  .nav-menu .nav-cta {
    text-align: left;
    font-size: 0.95rem;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-images {
    min-height: 400px;
    order: -1;
  }

  .about-img-float {
    right: -16px;
    bottom: -24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form-wrap {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .about-stats {
    flex-direction: column;
    gap: 24px;
  }
}
