/* ========================================
   YUTA | RADMAKE TATTOO - Page Styles
   WordPress Theme: pages.css
   ======================================== */

/* ---- Hero (HOME) ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--color-ink);
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,26,0.7), rgba(26,26,26,0.5), rgba(26,26,26,0.85));
}

.hero__frame {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(245, 245, 220, 0.1);
  pointer-events: none;
}

@media (min-width: 768px) {
  .hero__frame {
    inset: 32px;
  }
}

.hero__corner {
  position: absolute;
  width: 32px;
  height: 32px;
}

@media (min-width: 768px) {
  .hero__corner {
    width: 48px;
    height: 48px;
  }
}

.hero__corner--tl { top: 32px; left: 32px; border-top: 2px solid rgba(109,88,67,0.6); border-left: 2px solid rgba(109,88,67,0.6); }
.hero__corner--tr { top: 32px; right: 32px; border-top: 2px solid rgba(109,88,67,0.6); border-right: 2px solid rgba(109,88,67,0.6); }
.hero__corner--bl { bottom: 32px; left: 32px; border-bottom: 2px solid rgba(109,88,67,0.6); border-left: 2px solid rgba(109,88,67,0.6); }
.hero__corner--br { bottom: 32px; right: 32px; border-bottom: 2px solid rgba(109,88,67,0.6); border-right: 2px solid rgba(109,88,67,0.6); }

@media (min-width: 768px) {
  .hero__corner--tl { top: 64px; left: 64px; }
  .hero__corner--tr { top: 64px; right: 64px; }
  .hero__corner--bl { bottom: 64px; left: 64px; }
  .hero__corner--br { bottom: 64px; right: 64px; }
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero__location {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--color-brown);
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .hero__location {
    font-size: 12px;
    margin-bottom: 32px;
  }
}

.hero__title {
  font-size: 30px;
  color: var(--color-cream);
  line-height: 1.2;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 48px;
    margin-bottom: 32px;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 60px;
  }
}

.hero__divider {
  width: 64px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-brown), transparent);
  margin: 0 auto 24px;
}

@media (min-width: 768px) {
  .hero__divider {
    width: 96px;
    margin-bottom: 32px;
  }
}

.hero__cta {
  margin-top: 40px;
}

@media (min-width: 768px) {
  .hero__cta {
    margin-top: 56px;
  }
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: pulse 2s infinite;
}

.hero__scroll-text {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(245, 245, 220, 0.4);
}

.hero__scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(245, 245, 220, 0.4), transparent);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ---- Page Sections (inner pages) ---- */
.page-section {
  padding: 80px 0;
  position: relative;
}

@media (min-width: 768px) {
  .page-section {
    padding: 128px 0;
  }
}

.page-section--dark {
  background-color: var(--color-ink);
}

.page-section--light {
  background-color: var(--color-cream);
}

.page-section--inner {
  padding-top: 112px;
  min-height: 100vh;
}

@media (min-width: 768px) {
  .page-section--inner {
    padding-top: 144px;
  }
}

/* ---- About Page ---- */
.about-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.about-content__lead {
  font-size: 16px;
  color: rgba(245, 245, 220, 0.85);
  line-height: 1.9;
}

@media (min-width: 768px) {
  .about-content__lead {
    font-size: 18px;
    line-height: 2;
  }
}

.about-content__sub {
  font-size: 14px;
  color: rgba(245, 245, 220, 0.6);
  line-height: 1.9;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .about-content__sub {
    font-size: 16px;
    line-height: 2;
  }
}

/* ---- Process Page ---- */
.process-section {
  background-color: var(--color-cream);
}

/* ---- CTA Section ---- */
.cta-section {
  padding: 64px 0;
  background-color: var(--color-ink);
  text-align: center;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 80px 0;
  }
}

.cta-section p {
  font-size: 14px;
  color: rgba(245, 245, 220, 0.5);
  margin-bottom: 24px;
}

/* ---- Contact Page ---- */
.contact-grid {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-info__icon {
  color: var(--color-brown);
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 14px;
  color: rgba(245, 245, 220, 0.7);
}

.contact-info__detail {
  font-size: 12px;
  color: rgba(245, 245, 220, 0.45);
  margin-top: 4px;
}

.contact-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-cta p {
  font-size: 14px;
  color: rgba(245, 245, 220, 0.55);
  line-height: 1.7;
  margin-bottom: 12px;
}
