/* ==========================================================
   SAMPLE Photography — Style
   Theme: Freelance Photographer Portfolio / Light Cream Editorial
   Color: Warm Off-white + Charcoal + Sand Beige
   Font:  Plus Jakarta Sans × Lora × Noto Sans JP
   ========================================================== */

:root {
  --bg:        #faf7f0;          /* warm off-white */
  --bg-2:      #f3ede0;          /* sand cream */
  --bg-card:   #ffffff;
  --bg-dark:   #1f1d1a;
  --text:      #1f1d1a;
  --text-2:    #3a3733;
  --text-mute: #80766a;
  --text-dim:  #b2a89a;
  --line:      #e6dfd1;
  --line-2:    #efeadb;
  --sand:      #c8a679;
  --sand-deep: #ad8a5b;
  --accent:    #d96f3a;          /* warm terracotta accent */

  --sans:      'Plus Jakarta Sans', system-ui, sans-serif;
  --serif:     'Lora', Georgia, serif;
  --jp:        'Noto Sans JP', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--jp);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
  padding-top: 36px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s, opacity .3s; }
a:hover { color: var(--sand-deep); }
em { font-style: italic; font-family: var(--serif); }

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 36px;
}

/* ─── DEMO BAR ─────────────────────────────────────────── */
#demo-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1200;
  background: rgba(31, 29, 26, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 166, 121, 0.16);
  padding: 8px 0;
}
.demo-bar-inner {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 0.7rem; color: rgba(250, 247, 240, 0.45);
  font-family: var(--sans);
}
.demo-badge {
  font-size: 0.55rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  background: rgba(200, 166, 121, 0.22); color: var(--sand);
  padding: 3px 11px; flex-shrink: 0; border-radius: 2px;
}
.demo-link { color: var(--sand); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.demo-copy { color: rgba(250, 247, 240, 0.22); font-size: 0.62rem; margin-left: 4px; }
@media(max-width:640px){ .demo-copy { display: none; } }

/* ─── FLOATING HEADER ─────────────────────────────────── */
.site-header {
  position: fixed;
  top: 56px;
  left: 36px;
  right: 36px;
  z-index: 1000;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 14px 28px;
  transition: top .3s, background .3s, padding .3s;
}
.site-header.scrolled {
  top: 46px;
  background: rgba(250, 247, 240, 0.98);
  box-shadow: 0 8px 30px rgba(31, 29, 26, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex; align-items: baseline; gap: 14px;
}
.brand-jp {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  font-weight: 600;
  color: var(--text-mute);
  text-transform: uppercase;
}
.brand-en {
  font-family: var(--serif);
  font-size: 1.32rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
  font-style: italic;
}
.header-nav {
  display: flex; align-items: center; gap: 32px;
}
.header-nav a {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  font-weight: 500;
  color: var(--text-2);
  text-transform: uppercase;
  position: relative;
}
.header-nav a::after {
  content: ""; position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--sand-deep);
  transition: width .3s;
}
.header-nav a:hover::after { width: 100%; }
.header-nav a:hover { color: var(--sand-deep); }
.header-nav a.cta {
  background: var(--text);
  color: var(--bg);
  padding: 10px 22px;
  border-radius: 100px;
  letter-spacing: 0.18em;
}
.header-nav a.cta:hover { background: var(--sand-deep); color: var(--bg); }
.header-nav a.cta::after { display: none; }
.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; position: relative; z-index: 1100;
}
.hamburger span {
  position: absolute; left: 4px; right: 4px; height: 1.5px;
  background: var(--text); border-radius: 2px;
  transition: transform .3s, top .3s, opacity .3s;
}
.hamburger span:nth-child(1) { top: 9px; }
.hamburger span:nth-child(2) { top: 15px; }
.hamburger span:nth-child(3) { top: 21px; }
.hamburger.active span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

/* ─── HERO (2-col split) ──────────────────────────────── */
.hero {
  padding: 160px 0 100px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 36px;
}
.hero-text {
  position: relative;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand-deep);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--sand-deep);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(46px, 6.8vw, 92px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.hero-title em {
  font-style: italic;
  color: var(--sand-deep);
}
.hero-lead {
  font-family: var(--jp);
  font-size: 1rem;
  color: var(--text-2);
  line-height: 2.05;
  margin-bottom: 44px;
  max-width: 520px;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.hero-meta {
  display: flex; gap: 36px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-meta-item .label {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 6px;
}
.hero-meta-item .value {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--text);
}
.hero-meta-item .value em { color: var(--sand-deep); font-style: italic; }

.hero-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 14px;
}
.hero-photo {
  background-size: cover;
  background-position: center;
  background-color: var(--bg-2);
  transition: transform .8s cubic-bezier(.16,.84,.44,1);
}
.hero-photo:hover { transform: scale(1.02); }
.hero-photo.large {
  grid-row: 1 / 3;
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center; gap: 12px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--text);
  padding: 18px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.btn-primary:hover { background: var(--sand-deep); transform: translateY(-2px); color: var(--bg); }

.btn-outline {
  display: inline-flex;
  align-items: center; gap: 12px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  padding: 17px 35px;
  border-radius: 100px;
  border: 1px solid var(--text);
  transition: background .3s, color .3s;
}
.btn-outline:hover { background: var(--text); color: var(--bg); }

/* ─── MARQUEE STRIP ────────────────────────────────────── */
.strip {
  background: var(--bg-dark);
  color: var(--bg);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
}
.strip-track {
  display: inline-flex;
  gap: 60px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  animation: marquee 30s linear infinite;
}
.strip-track span { color: var(--sand); }
.strip-track .dot { color: var(--text-dim); margin: 0 4px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SECTIONS BASE ───────────────────────────────────── */
.section {
  padding: 130px 0;
  position: relative;
}
.section-light { background: var(--bg-2); }
.section-dark {
  background: var(--bg-dark);
  color: var(--bg);
}
.section-dark .section-en { color: var(--sand); }
.section-dark .section-jp { color: var(--bg); }
.section-dark .section-lead { color: rgba(250, 247, 240, 0.7); }

.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: flex-end;
  margin-bottom: 70px;
}
.section-head.center {
  display: block;
  text-align: center;
}
.section-en {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sand-deep);
  margin-bottom: 14px;
}
.section-jp {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.section-jp em { color: var(--sand-deep); font-style: italic; }
.section-lead {
  font-family: var(--jp);
  font-size: 0.96rem;
  line-height: 2.05;
  color: var(--text-2);
  max-width: 580px;
  margin-bottom: 4px;
}
.section-head.center .section-lead { margin: 24px auto 0; }

/* ─── WORKS / GALLERY ─────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}
.gallery-item .img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform .8s cubic-bezier(.16,.84,.44,1);
}
.gallery-item:hover .img { transform: scale(1.04); }
.gallery-item .label {
  position: absolute;
  left: 22px; bottom: 22px;
  background: rgba(255,255,255,0.96);
  padding: 8px 16px;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.gallery-item.tall { grid-column: span 4; aspect-ratio: 3/4; }
.gallery-item.wide { grid-column: span 8; aspect-ratio: 16/10; }
.gallery-item.square { grid-column: span 4; aspect-ratio: 1/1; }
.gallery-item.full { grid-column: span 12; aspect-ratio: 21/9; }
.gallery-item.med { grid-column: span 6; aspect-ratio: 4/3; }

.gallery-cta {
  text-align: center;
  margin-top: 70px;
}

/* ─── SERVICES ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--bg-card);
  padding: 50px 40px;
  border-radius: 6px;
  position: relative;
  transition: transform .4s, box-shadow .4s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px -20px rgba(31, 29, 26, 0.14);
}
.service-num {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.18em;
  color: var(--sand-deep);
  margin-bottom: 18px;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.service-card h3 em { color: var(--sand-deep); font-style: italic; }
.service-card p {
  font-family: var(--jp);
  font-size: 0.92rem;
  color: var(--text-mute);
  line-height: 2;
  margin-bottom: 24px;
  flex-grow: 1;
}
.service-card .price {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--text);
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.service-card .price em {
  color: var(--sand-deep);
  font-style: italic;
  font-weight: 600;
}
.service-card .price small {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  color: var(--text-mute);
  margin-top: 4px;
  letter-spacing: 0.06em;
}

/* ─── ABOUT TEASER ────────────────────────────────────── */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.about-photo {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-2);
  border-radius: 6px;
}
.about-body h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 30px;
}
.about-body h3 em { color: var(--sand-deep); font-style: italic; }
.about-body p {
  font-family: var(--jp);
  color: var(--text-2);
  line-height: 2.1;
  margin-bottom: 22px;
}
.about-signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--sand-deep);
  margin: 30px 0 22px;
}
.about-link {
  display: inline-flex;
  align-items: center; gap: 12px;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--text);
  padding-bottom: 6px;
}
.about-link:hover { color: var(--sand-deep); border-color: var(--sand-deep); }

/* ─── CLIENT LOGOS / TESTIMONIALS ────────────────────── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: rgba(250, 247, 240, 0.05);
  border: 1px solid rgba(250, 247, 240, 0.1);
  padding: 40px 32px;
  border-radius: 6px;
}
.section-dark .testimonial {
  background: rgba(250, 247, 240, 0.04);
}
.testimonial .quote-mark {
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--sand);
  margin-bottom: 18px;
  font-style: italic;
}
.testimonial p {
  font-family: var(--jp);
  font-size: 0.94rem;
  line-height: 2;
  color: rgba(250, 247, 240, 0.82);
  margin-bottom: 28px;
}
.testimonial .author {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--bg);
}
.testimonial .role {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  margin-top: 4px;
  text-transform: uppercase;
}

/* ─── PROCESS STEPS ──────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.step {
  text-align: left;
  position: relative;
  padding: 0 14px 0 0;
}
.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  color: var(--sand-deep);
  margin-bottom: 18px;
}
.step h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.step p {
  font-family: var(--jp);
  font-size: 0.88rem;
  line-height: 1.95;
  color: var(--text-mute);
}

/* ─── NEWS / JOURNAL ─────────────────────────────────── */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.journal-card {
  background: var(--bg-card);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .4s;
}
.journal-card:hover { transform: translateY(-4px); }
.journal-card .thumb {
  aspect-ratio: 16 / 11;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-2);
}
.journal-card .body { padding: 28px 30px 34px; }
.journal-card .meta {
  display: flex; gap: 14px; align-items: center;
  margin-bottom: 16px;
}
.journal-card .date {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.86rem;
  color: var(--sand-deep);
}
.journal-card .tag {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-mute);
  background: var(--bg-2);
  padding: 5px 12px;
  border-radius: 100px;
}
.journal-card h4 {
  font-family: var(--jp);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text);
}

/* ─── CTA BAND ────────────────────────────────────────── */
.cta-band {
  padding: 130px 0;
  background: var(--bg-2);
  text-align: center;
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5.5vw, 70px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.cta-band h2 em { color: var(--sand-deep); font-style: italic; }
.cta-band p {
  font-family: var(--jp);
  font-size: 1rem;
  color: var(--text-2);
  margin-bottom: 44px;
}

/* ─── FOOTER ──────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  color: var(--bg);
  padding: 100px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 70px;
  align-items: flex-start;
}
.footer-brand .brand-en {
  font-size: 2rem;
  color: var(--bg);
  display: block;
  margin-bottom: 6px;
}
.footer-brand .brand-jp { color: var(--text-dim); display: block; margin-bottom: 22px; }
.footer-brand p {
  font-family: var(--jp);
  color: rgba(250, 247, 240, 0.6);
  line-height: 2;
  font-size: 0.88rem;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a, .footer-col span {
  font-family: var(--jp);
  font-size: 0.88rem;
  color: rgba(250, 247, 240, 0.6);
}
.footer-col a:hover { color: var(--sand); }
.footer-bottom {
  border-top: 1px solid rgba(250, 247, 240, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--text-dim);
}
.footer-social {
  display: flex; gap: 14px;
  margin-top: 14px;
}
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(250, 247, 240, 0.18);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--bg);
  transition: all .3s;
}
.footer-social a:hover {
  background: var(--sand);
  border-color: var(--sand);
  color: var(--bg-dark);
}

/* ─── PAGE HEAD (sub pages) ──────────────────────────── */
.page-head {
  padding: 200px 0 80px;
  border-bottom: 1px solid var(--line);
}
.page-head .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}
.page-head .page-en {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sand-deep);
  margin-bottom: 18px;
}
.page-head h1 {
  font-family: var(--serif);
  font-size: clamp(46px, 7vw, 96px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}
.page-head h1 em { color: var(--sand-deep); font-style: italic; }
.page-head .page-lead {
  font-family: var(--jp);
  font-size: 1rem;
  color: var(--text-2);
  line-height: 2.05;
  padding-bottom: 16px;
}

/* ─── ABOUT PAGE ─────────────────────────────────────── */
.profile-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}
.profile-hero .profile-photo {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-2);
  border-radius: 6px;
}
.profile-hero h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.profile-hero h2 em { color: var(--sand-deep); font-style: italic; }
.profile-hero p {
  font-family: var(--jp);
  font-size: 0.98rem;
  color: var(--text-2);
  line-height: 2.1;
  margin-bottom: 22px;
}
.profile-hero .sign {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--sand-deep);
  margin-top: 30px;
}
.profile-detail {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 50px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.profile-detail dt {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sand-deep);
}
.profile-detail dd {
  font-family: var(--jp);
  font-size: 0.96rem;
  line-height: 2;
  color: var(--text-2);
}

/* ─── WORKS PAGE — Masonry-ish ───────────────────────── */
.works-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.works-filter button {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-2);
  padding: 12px 26px;
  border-radius: 100px;
  cursor: pointer;
  transition: all .3s;
}
.works-filter button:hover,
.works-filter button.active {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

/* ─── CONTACT ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 90px;
}
.contact-info h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.contact-info h3 em { color: var(--sand-deep); font-style: italic; }
.contact-info p {
  font-family: var(--jp);
  font-size: 0.95rem;
  line-height: 2.1;
  color: var(--text-2);
  margin-bottom: 36px;
}
.contact-info dl {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.contact-info dt {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sand-deep);
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-info dd {
  font-family: var(--jp);
  margin-bottom: 22px;
}

form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}
form .form-field { margin-bottom: 22px; }
form label {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand-deep);
  margin-bottom: 10px;
}
form input, form textarea, form select {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 14px 16px;
  font-family: var(--jp);
  font-size: 0.95rem;
  color: var(--text);
  border-radius: 4px;
  transition: border-color .3s;
}
form input:focus, form textarea:focus, form select:focus {
  outline: none;
  border-color: var(--sand-deep);
}
form textarea { min-height: 160px; resize: vertical; }
.form-submit { text-align: right; margin-top: 30px; }

/* ─── PRIVACY / TEXT PAGES ───────────────────────────── */
.text-body {
  max-width: 860px;
  margin: 0 auto;
}
.text-body h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 50px 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.text-body h2:first-child { margin-top: 0; }
.text-body p {
  font-family: var(--jp);
  font-size: 0.96rem;
  line-height: 2.1;
  color: var(--text-2);
  margin-bottom: 18px;
}

/* ─── NEWS DETAIL ─────────────────────────────────────── */
.article {
  max-width: 820px;
  margin: 0 auto;
}
.article-meta {
  display: flex; gap: 18px; align-items: center;
  margin-bottom: 36px;
}
.article-meta .date {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--sand-deep);
}
.article-meta .tag {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-mute);
  background: var(--bg-2);
  padding: 5px 12px;
  border-radius: 100px;
}
.article h1 {
  font-family: var(--serif);
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.article p {
  font-family: var(--jp);
  font-size: 0.98rem;
  line-height: 2.2;
  color: var(--text-2);
  margin-bottom: 22px;
}
.article-back {
  margin-top: 60px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  text-align: center;
}

/* ─── REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s cubic-bezier(.16,.84,.44,1), transform .9s cubic-bezier(.16,.84,.44,1);
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .gallery-item.tall,
  .gallery-item.square { grid-column: span 6; }
  .gallery-item.wide,
  .gallery-item.med,
  .gallery-item.full { grid-column: span 12; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .testimonials { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; }
  .hero-grid, .about-teaser, .profile-hero, .contact-grid {
    grid-template-columns: 1fr; gap: 48px;
  }
  .page-head .container { grid-template-columns: 1fr; gap: 28px; }
  .section-head { grid-template-columns: 1fr; gap: 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .header-nav { gap: 22px; }
  .site-header { left: 22px; right: 22px; padding: 12px 22px; }
}

@media (max-width: 767px) {
  body { padding-top: 32px; font-size: 14px; }
  .container { padding: 0 22px; }
  .site-header {
    top: 50px; left: 16px; right: 16px;
    padding: 10px 18px;
    border-radius: 100px;
  }
  .site-header.scrolled { top: 42px; }
  .hero { padding: 130px 0 70px; }
  .hero-grid { padding: 0 22px; gap: 36px; }
  .hero-meta { gap: 18px; flex-wrap: wrap; }
  .hero-photos { grid-template-rows: 160px 160px; }
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 40px; }
  .page-head { padding: 140px 0 50px; }
  .gallery { grid-template-columns: 1fr; gap: 16px; }
  .gallery-item { grid-column: span 12 !important; }
  .testimonials { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hamburger { display: block; }
  .header-nav {
    position: fixed; inset: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 1000;
    opacity: 0; pointer-events: none;
    transition: opacity .35s;
  }
  .header-nav.open { opacity: 1; pointer-events: auto; }
  .header-nav a { font-size: 1.05rem; }
  .site-header.menu-active {
    background: var(--bg) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .profile-detail { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  form .form-row { grid-template-columns: 1fr; gap: 0; }
  .strip-track { font-size: 1.2rem; gap: 36px; }

  /* mobile form 1-col lock */
  .form-row, .form-grid, .form-2col, .form-pair, .input-row, .input-grid,
  [class*="form-row"], [class*="form-grid"], [class*="two-col"] {
    display: block !important;
    grid-template-columns: 1fr !important;
  }
  form input[type="text"], form input[type="email"], form input[type="tel"],
  form input[type="number"], form textarea, form select,
  .form-row > input, .form-row > textarea, .form-row > select,
  .form-row > div, .form-grid > * {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
  .form-row, .form-grid { margin-bottom: 1rem; }
}

/* ====================================================
   スマホ時 2カラム→1カラム化（2026-05-15）
   右文章が縦長になる時
==================================================== */
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr !important; gap: 24px !important; }
}

/* ====================================================
   2カラム→1カラム化 B案（2026-05-15）
   左画像・右文章になりがちなキーワード対象
==================================================== */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
}

/* ====================================================
   多カラムgrid スマホ最適化（2026-05-15 千尋）
==================================================== */
@media (max-width: 768px) {
  /* 2カラム化（情報密度を保つ） */
  .services-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 18px !important; }
  .testimonials { grid-template-columns: repeat(2, 1fr) !important; gap: 18px !important; }
  .journal-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 18px !important; }
  /* 1カラム化（流れ・5カラム以上） */
  .process-steps { grid-template-columns: 1fr !important; gap: 20px !important; }
}

/* ====================================================
   step/flow系 強制1カラム化（2026-05-15 千尋v2）
==================================================== */
@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr !important; gap: 24px !important; }
}

/* ====================================================
   process-grid（4STEPS）スマホ1カラム化（2026-05-16 一括追加）
==================================================== */
@media(max-width:640px){
  .process-grid{grid-template-columns:1fr !important;margin-top:32px}
  .process-step{padding:26px 20px;border-right:none !important;border-bottom:1px solid currentColor !important}
  .process-step:nth-child(2){border-right:none !important;border-bottom:1px solid currentColor !important}
  .process-step:last-child{border-bottom:none !important}
  .process-step .step-num{margin-bottom:14px}
  .process-step h4{font-size:22px;margin-bottom:10px}
  .process-step p{font-size:13px;line-height:1.78}
}
