/*
Theme Name: SmileInk
Theme URI: https://smileink.jp/
Author: Anne Garvey
Author URI: https://smileink.jp/
Description: Custom WordPress theme for Smile Ink Studio.
Version: 2.0
Text Domain: smileink
*/

/* ============================================================
   DESIGN COLORS
   ============================================================ */
:root {
  --ink:        #0a0a0a;
  --ink2:       #111111;
  --ash:        #1a1a1a;
  --smoke:      #2a2a2a;
  --bone:       #e8e0d4;
  --ivory:      #f5f0e8;
  --vermillion: #c0392b;
  --gold:       #b8973a;
  --muted:      #888888;
  --dim:        #555555;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Cormorant Garamond', serif;
  --font-jp:      'Noto Serif JP', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body.page #primary {
  padding-top: 95px;
}

a {
  text-decoration: none;
}

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

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.section-label {
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--vermillion);
  margin-bottom: 16px;
  font-family: var(--font-body);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 1;
  color: var(--ivory);
  letter-spacing: 0.03em;
  margin-bottom: 32px;
}

.section-header.centered {
  text-align: center;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--vermillion);
  padding: 16px 36px;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
  background: #a93226;
  transform: translateY(-2px);
}

.btn-primary.btn-large {
  padding: 20px 56px;
  font-size: 0.85rem;
}

.btn-ghost {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--dim);
  padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s;
}

.btn-ghost:hover {
  color: var(--ivory);
  border-color: var(--ivory);
}

/* ============================================================
   ADMIN BAR OFFSET
   ============================================================ */
.admin-bar header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar header { top: 46px; }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background: rgba(10, 10, 10, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: padding 0.4s ease;
}

header.scrolled {
  background: rgba(10, 10, 10, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  padding: 28px 60px;
  transition: padding 0.4s ease;
}

header.scrolled .header-inner {
  padding: 18px 60px;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--ivory);
}

.site-logo span {
  color: var(--vermillion);
}

#site-nav {
  display: flex;
  gap: 48px;
}

#site-nav a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}

#site-nav a:hover {
  color: var(--ivory);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--vermillion);
  padding: 10px 24px;
  transition: background 0.3s;
}

.nav-cta:hover {
  background: #a93226;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ivory);
  transition: all 0.3s;
}
.mobile-only {
  display: none;
}

@media (max-width: 875px) {
  .header-inner { padding: 20px 24px; }

  #site-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 0;
    z-index: 999;
  }

  #site-nav a {
    display: block;
    font-size: 1.5rem;
    padding: 16px 0;
    border: none;
    color: var(--ivory);
  }

  header.nav-open #site-nav {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }
  .mobile-only {
    display: block;
    margin-top: 20px;
  }

  /* optional: hide the top-right button on mobile */
  .header-right .nav-cta {
    display: none;
  }
}

/* ============================================================
   HERO BANNER
   ============================================================ */
.banner {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  background: #000;
}

.banner-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  width: 100%;
  max-width: 100%;
  align-items: stretch;
  background: #000;
}

.banner-text {
  padding: 160px 60px 80px 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.banner-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--vermillion);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.banner h1 {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 8vw, 9rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--ivory);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.banner h1 span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--vermillion);
}

.banner-sub {
  font-size: 1.05rem;
  font-weight: 300;
  font-style: normal;
  color: var(--bone);
  line-height: 1.8;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.banner-cta-group {
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.banner-img {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 1.2s ease 0.4s forwards;
}

.banner-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #000 0%, transparent 25%);
  z-index: 1;
  pointer-events: none;
}

.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: inherit;
  object-position: center top;
  position: absolute;
  inset: 0;
  filter: contrast(1.05);
  padding: 40px 0 0 0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.2s forwards;
}

.scroll-line {
  width: 60px;
  height: 1px;
  background: var(--smoke);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--vermillion);
  animation: scrollAnim 2s ease 1.5s infinite;
}

.hero-scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--dim);
}

@keyframes scrollAnim {
  0%   { left: -100%; }
  100% { left: 100%; }
}

@media (max-width: 768px) {
  .banner-inner {
    grid-template-columns: 1fr;
    position: relative;
    min-height: 100vh;
  }
  .banner-img {
    position: absolute;
    inset: 0;
    min-height: 100vh;
    z-index: 0;
  }
  .banner-img::before {
    background: linear-gradient(to top, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.3) 100%);
  }
  .banner-img img {
    padding: 0;
    object-fit: revert;
    object-position: center top;
  }
  .banner-text {
    position: relative;
    z-index: 1;
    padding: 140px 24px 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .hero-scroll-indicator { display: none; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrapper {
  background: var(--vermillion);
  overflow: hidden;
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.95);
  padding: 0 40px;
}

.marquee-dot {
  color: rgba(255, 255, 255, 0.4);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES / ABOUT
   ============================================================ */
.services {
  background: var(--ink2);
}

.services-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
}

.service-img {
  position: relative;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.1);
  transition: transform 0.8s ease;
}

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

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--ink2));
}

.service-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 64px;
}

.service-content .btn-primary {
  align-self: center;
}

.service-body-jp {
  font-family: var(--font-jp);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 2.2;
  color: var(--ivory);
  margin-bottom: 48px;
}

.service-stats {
  display: flex;
  gap: 48px;
  padding: 40px 0;
  border-top: 1px solid var(--smoke);
  border-bottom: 1px solid var(--smoke);
  margin-bottom: 48px;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--ivory);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

@media (max-width: 768px) {
  .services-inner {
    grid-template-columns: 1fr;
    position: relative;
    min-height: 90vh;
  }
  .service-img {
    position: absolute;
    inset: 0;
    min-height: 90vh;
  }
  .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.95) 40%, rgba(10,10,10,0.4) 100%);
  }
  .service-content {
    position: relative;
    z-index: 1;
    padding: 60px 24px 60px;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 90vh;
    background: transparent;
  }
  .service-stats { gap: 24px; }
}

/* ============================================================
   ARTISTS
   ============================================================ */
.artist {
  background: var(--ash);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.artist::before {
  content: 'ARTISTS';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 18vw;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
  white-space: nowrap;
}
.artist .section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto 48px;
}

/* ── GRID ───────────────────────────────────────── */
#artists-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

#artists-grid-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

/* ── CARD ───────────────────────────────────────── */
.artist-card {
  background: var(--smoke);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px 36px;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.artist-card:hover {
  transform: translateY(-4px);
  border-color: var(--vermillion);
}

/* ── CIRCULAR IMAGE ──── */
.artist-img-wrap {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--vermillion);
  margin-bottom: 28px;
  flex-shrink: 0;
}
.artist-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(20%);
  transition: transform 0.6s ease, filter 0.6s ease;
}
.artist-card:hover .artist-img-wrap img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

/* ── INFO ── */
.artist-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.artist-name {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--ivory);
}
.artist-style {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

/* ── INSTAGRAM LINK ─ */
.artist-ig {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vermillion);
  text-decoration: none;
  transition: color 0.3s ease, gap 0.3s ease;
}
.artist-ig:hover {
  color: var(--ivory);
  gap: 10px;
}
.artist-ig img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.artist-ig:hover img {
  transform: scale(1.2);
}

/* ── MOBILE ─────────────────────────────────────── */
@media (max-width: 633px) {
  .artist {
    padding: 80px 24px;
  }
  #artists-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
    #artists-grid-page {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
  .artist-img-wrap {
    width: 180px;
    height: 180px;
  }
}

/* ============================================================
   WORKS
   ============================================================ */
.works {
  background: var(--ink);
}

.works-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 100px 60px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.artist .section-header .btn-ghost,
.works-header .btn-ghost {
  display: inline-block;
  margin-top: 20px;
}

.works-gallery {
  padding: 0 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.works-cta {
  padding: 60px;
  text-align: center;
}

/* foogallery overrides */
.works .foogallery-container { background: transparent !important; }
.works .fg-item .fg-thumb { border-radius: 0 !important; }
.works .fg-item .fg-thumb img { filter: grayscale(20%); transition: filter 0.4s, transform 0.5s; }
.works .fg-item:hover .fg-thumb img { filter: grayscale(0%); transform: scale(1.04); }

@media (max-width: 768px) {
  .works-header { flex-direction: column; align-items: flex-start; gap: 16px; padding: 60px 24px 32px; }
  .works-gallery { padding: 0 24px; }
  .works-cta { padding: 40px 24px; }
}

/* ============================================================
   PRICES
   ============================================================ */
.prices-page {
  padding: 24px, 120px;
  max-width: 1000px;
  margin: 0 auto;
}

/* intro */
.price-intro {
  font-family: var(--font-jp);
  color: var(--muted);
  line-height: 1.9;
  max-width: 600px;
  margin: 0 auto;
}
.payment-methods {
  margin-top: 30px;
  text-align: center;
}

.payment-methods span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
}

.cards img {
  height: 24px;
  filter: grayscale(100%) brightness(0.9);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.cards img:hover {
  filter: none;
  opacity: 1;
}

/* table */
.price-table-wrap {
  margin-top: 60px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.price-table th {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--muted);
  padding: 16px;
  border-bottom: 1px solid var(--smoke);
}

.price-table td {
  padding: 20px;
  border-bottom: 1px solid var(--smoke);
}

.price-table tr:hover {
  background: rgba(255,255,255,0.02);
}

.price-table .highlight {
  color: var(--vermillion);
  font-family: var(--font-display);
}

/* notes */
.price-notes {
  margin-top: 60px;
  font-family: var(--font-jp);
  color: var(--muted);
  line-height: 2;
  font-size: 0.85rem;
}

.price-notes .warning {
  margin-top: 20px;
  color: var(--vermillion);
}

/* CTA */
.price-cta {
  margin-top: 60px;
  text-align: center;
}

.prices {
  background: var(--ash);
  padding: 80px 60px;
}

.prices-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.price-note {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--muted);
  margin-top: 8px;
  font-family: var(--font-jp);
}

.prices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--smoke);
  border: 1px solid var(--smoke);
  margin-top: 64px;
}

.price-card {
  background: var(--ink2);
  padding: 48px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--vermillion);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.price-card:hover { background: var(--ash); }
.price-card:hover::before { transform: scaleX(1); }

.price-icon {
  font-size: 2rem;
  color: var(--bone);
  opacity: 0.5;
  margin-bottom: 12px;
}

.price-amount {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--ivory);
  letter-spacing: 0.03em;
}

.price-type {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.price-type-jp {
  display: block;
  font-family: var(--font-jp);
  font-size: 0.7rem;
  color: var(--muted);
}

@media (max-width: 768px) {
  .prices { padding: 80px 24px; }
  .prices-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--ink);
  padding: 80px 60px;
  text-align: center;
  border-top: 1px solid var(--smoke);
}

.contact-inner {
  max-width: 600px;
  margin: 0 auto;
}

.contact-sub {
  font-size: 1rem;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 48px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .contact { padding: 80px 24px; }
}

/* ============================================================
   ACCESS / MAP
   ============================================================ */
.access {
  background: var(--ash);
  border-top: 1px solid var(--smoke);
}

.access-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.access-content {
  padding: 80px 60px;
}

.access-address-title {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--vermillion);
  margin: 32px 0 8px;
}

.access-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
  font-family: var(--font-jp);
  line-height: 1.9;
}

.access-address a {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--bone);
  transition: color 0.3s;
  border-bottom: 1px solid var(--smoke);
  padding-bottom: 4px;
}

.access-address a:hover { color: var(--vermillion); }

.access-divider {
  height: 1px;
  background: var(--smoke);
  margin: 32px 0;
}

.access-rules-title {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--vermillion);
  margin-bottom: 16px;
}

.access-rules {
  list-style: none;
  padding: 0;
}

.access-rules li {
  font-family: var(--font-jp);
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 2;
  padding-left: 16px;
  position: relative;
}

.access-rules li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--smoke);
}

.access-hours {
  margin-top: 24px;
  font-family: var(--font-jp);
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 2;
}

.access-map {
  min-height: 500px;
}

.access-map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
  filter: grayscale(80%) invert(90%) contrast(0.85);
}

@media (max-width: 768px) {
  .access-inner { grid-template-columns: 1fr; }
  .access-content { padding: 60px 24px; }
  .access-map { min-height: 300px; }
  .access-map iframe { min-height: 300px; }
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-header {
  text-align: center;
}

.contact-intro {
  font-size: 12px;
  color: var(--muted);
  margin: 0 auto;
  padding: 0 40px;
  font-family: var(--font-jp);
} 
.contact_block {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px;
}

/* layout */
.form-group {
  margin-bottom: 28px;
}

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

/* labels */
.contact_block label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

/* required badge */
.need {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--vermillion);
  margin-left: 6px;
}

/* inputs */
.contact_input,
.contact_textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--smoke);
  border-radius: 6px;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.25s ease;
}

/* textarea */
.contact_textarea {
  min-height: 120px;
  resize: vertical;
}

/* focus state */
.contact_input:focus,
.contact_textarea:focus {
  outline: none;
  border-bottom: 1px solid var(--vermillion);
}

/* placeholder */
::placeholder {
  color: var(--dim);
}

/* file input (slightly nicer) */
input[type="file"] {
  border-bottom: none;
  padding: 10px 0;
}

/* submit */
.sent {
  margin-top: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
}
.sent p{
	margin: 0;
}
/* CF7 response message */
.wpcf7-response-output {
  margin-top: 20px;
  padding: 16px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  border-radius: 6px;
  text-align: center;
}

/* success */
.wpcf7-mail-sent-ok {
  background: rgba(200, 80, 60, 0.1);
  border: 1px solid var(--vermillion);
  color: var(--ivory);
}

/* mobile */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  select.contact_input {
   appearance: auto;
   -webkit-appearance: auto;
   -moz-appearance: auto;
   background-image: none;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--ink);
  border-top: 1px solid var(--smoke);
  padding: 80px 60px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
}

.footer-brand .site-logo {
  font-size: 2rem;
  display: block;
  margin-bottom: 24px;
}

.footer-tagline {
  font-size: 1rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-tagline-jp {
  font-family: var(--font-jp);
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 2.2;
}

.footer-col-title {
  font-size: 0.58rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--vermillion);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.3s;
  letter-spacing: 0.05em;
}

.footer-links a:hover { color: var(--ivory); }

.footer-address {
  font-family: var(--font-jp);
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 2.2;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--smoke);
}

.footer-copy {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.footer-social {
  display: flex;
  gap: 32px;
}

.footer-social a {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}

.footer-social a:hover { color: var(--vermillion); }

@media (max-width: 768px) {
  #site-footer { padding: 60px 24px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}