/* ===========================
   LOVE KNOW - Editorial Style
   =========================== */

:root {
  --bg: #f1ece1;
  --bg-2: #e8e1d1;
  --ink: #1a1815;
  --ink-soft: #3a342c;
  --paper: #faf6ec;
  --accent: #c4361e;
  --accent-deep: #8b2415;
  --line: rgba(26, 24, 21, 0.18);
  --font-display: "Playfair Display", "Shippori Mincho", serif;
  --font-jp: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  --font-sans: "Inter", "Hiragino Sans", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

@media (max-width: 1024px) {
  body { cursor: auto; }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===========================
   Custom Cursor
   =========================== */
.cursor, .cursor-follower {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  transition: transform 0.12s ease;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transition: transform 0.4s ease, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}
.cursor.hover { transform: translate(-50%, -50%) scale(2); }
.cursor-follower.hover {
  width: 70px; height: 70px;
  background: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 1024px) {
  .cursor, .cursor-follower { display: none; }
}

/* ===========================
   Noise overlay
   =========================== */
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/></svg>");
}

/* ===========================
   Side Nav (left vertical brand)
   =========================== */
.side-nav {
  position: fixed;
  top: 0; left: 0;
  width: 80px;
  height: 100vh;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  border-right: 1px solid var(--line);
  mix-blend-mode: difference;
  color: #f1ece1;
}
.side-nav__logo {
  text-align: center;
  display: block;
}
.side-nav__logo-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  font-weight: 700;
  display: block;
  letter-spacing: -0.02em;
}
.side-nav__logo-text {
  display: none;
}
.side-nav__vertical {
  writing-mode: vertical-rl;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
@media (max-width: 768px) {
  .side-nav { display: none; }
}

/* ===========================
   Top bar
   =========================== */
.topbar {
  position: fixed;
  top: 0; left: 80px; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  mix-blend-mode: difference;
  color: #f1ece1;
}
.topbar__time {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
}
.topbar__nav {
  display: flex;
  gap: 36px;
}
.topbar__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  position: relative;
  transition: color 0.3s;
}
.topbar__link:hover { color: var(--accent); }
.topbar__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 11px;
  color: var(--accent);
  font-weight: 400;
}
.topbar__menu {
  display: none;
  background: none;
  border: 1px solid var(--ink);
  width: 48px; height: 48px;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.topbar__menu span {
  display: block;
  position: absolute;
  left: 50%;
  width: 18px; height: 1px;
  background: var(--ink);
  transform: translateX(-50%);
  transition: 0.3s;
}
.topbar__menu span:nth-child(1) { top: 19px; }
.topbar__menu span:nth-child(2) { top: 27px; }
.topbar__menu.active span:nth-child(1) { top: 23px; transform: translateX(-50%) rotate(45deg); }
.topbar__menu.active span:nth-child(2) { top: 23px; transform: translateX(-50%) rotate(-45deg); }

@media (max-width: 768px) {
  .topbar {
    left: 0;
    padding: 18px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--bg);
  }
  .topbar__nav { display: none; }
  .topbar__menu { display: block; }
  .topbar__time { font-size: 12px; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--paper);
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.18, 1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
}
.mobile-menu__link i {
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  font-weight: 400;
}

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 60px 60px 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.hero__marquee {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  transform: translateY(-50%);
  overflow: hidden;
  pointer-events: none;
  opacity: 0.06;
  white-space: nowrap;
}
.hero__marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: marquee 40s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(80px, 16vw, 260px);
  font-weight: 700;
  line-height: 1;
}
.hero__marquee-track span { display: inline-block; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 60px;
}

.hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero__meta-tag {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(54px, 9vw, 160px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
}
.hero__line {
  display: block;
  overflow: hidden;
}
.hero__word {
  display: inline-block;
  margin-right: 0.18em;
  opacity: 0;
  transform: translateY(110%);
  animation: revealUp 1s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.hero__word:nth-child(1) { animation-delay: 0.1s; }
.hero__word:nth-child(2) { animation-delay: 0.25s; }
.hero__word:nth-child(3) { animation-delay: 0.4s; }
.hero__line:nth-child(2) .hero__word:nth-child(1) { animation-delay: 0.55s; }
.hero__line:nth-child(2) .hero__word:nth-child(2) { animation-delay: 0.7s; }
.hero__line:nth-child(2) .hero__word:nth-child(3) { animation-delay: 0.85s; }
.hero__word--italic {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.hero__copy {
  font-family: var(--font-jp);
  font-size: 15px;
  line-height: 2;
  max-width: 460px;
  color: var(--ink-soft);
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 32px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color 0.4s;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
}
.cta:hover { color: var(--paper); border-color: var(--ink); }
.cta:hover::before { transform: translateY(0); }
.cta__label, .cta__arrow { position: relative; }
.cta__arrow { font-size: 16px; }

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 140px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 3;
}
.hero__scroll-line {
  width: 60px; height: 1px;
  background: var(--ink);
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@media (max-width: 1024px) {
  .hero { padding: 100px 30px 60px 30px; }
  .hero__scroll { left: 30px; }
}
@media (max-width: 768px) {
  .hero { padding: 100px 22px 80px; }
  .hero__bottom { flex-direction: column; align-items: flex-start; }
  .hero__scroll { left: 22px; bottom: 22px; }
}

/* ===========================
   ABOUT
   =========================== */
.about {
  position: relative;
  padding: 160px 60px 160px 140px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
}

.about__sticker {
  position: absolute;
  top: 60px;
  right: 60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.3em;
  animation: spin 20s linear infinite;
}
.about__sticker span {
  position: absolute;
  left: 50%;
  top: 8px;
  transform-origin: 0 100px;
}
.about__sticker span:nth-child(1) { transform: rotate(0deg); }
.about__sticker span:nth-child(2) { transform: rotate(36deg); }
.about__sticker span:nth-child(3) { transform: rotate(72deg); }
.about__sticker span:nth-child(4) { transform: rotate(108deg); }
.about__sticker span:nth-child(5) { transform: rotate(144deg); }
.about__sticker span:nth-child(6) { transform: rotate(180deg); }
.about__sticker span:nth-child(7) { transform: rotate(216deg); }
.about__sticker span:nth-child(8) { transform: rotate(252deg); }
.about__sticker span:nth-child(9) { transform: rotate(288deg); }
.about__sticker span:nth-child(10) { transform: rotate(324deg); }
@keyframes spin { to { transform: rotate(360deg); } }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  max-width: 1400px;
}

.label-num, .label-text {
  display: block;
}
.label-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 4px;
}
.label-text {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
}
.about__label, .works__label, .company__label, .locations__label {
  display: flex;
  flex-direction: column;
}

.about__head { grid-column: 2; }
.about__body { grid-column: 2; max-width: 720px; }

.about__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 88px);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 60px;
  letter-spacing: -0.02em;
}
.about__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.about__lead {
  font-family: var(--font-jp);
  font-size: 20px;
  line-height: 1.9;
  margin-bottom: 30px;
}
.about__lead strong {
  font-weight: 700;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}
.about__text {
  font-family: var(--font-jp);
  font-size: 15px;
  line-height: 2.1;
  color: var(--ink-soft);
  margin-bottom: 80px;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stat__num {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  font-weight: 700;
  color: var(--accent);
}
.stat__txt {
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .about { padding: 100px 30px; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__head, .about__body { grid-column: 1; }
  .about__sticker { width: 130px; height: 130px; top: 30px; right: 22px; font-size: 10px; }
  .about__sticker span { transform-origin: 0 60px; top: 6px; }
}
@media (max-width: 600px) {
  .about__stats { grid-template-columns: 1fr; }
  .about__lead { font-size: 17px; }
}

/* ===========================
   SERVICES (WORKS)
   =========================== */
.works {
  padding: 160px 60px 160px 140px;
  border-top: 1px solid var(--line);
}
.works__header {
  max-width: 900px;
  margin-bottom: 120px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: end;
}
.works__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 100px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.02em;
  grid-column: 2;
}
.works__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.works__intro {
  grid-column: 2;
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 2;
  color: var(--ink-soft);
  margin-top: 30px;
  max-width: 620px;
}

.works__list { display: flex; flex-direction: column; gap: 140px; }

.work {
  display: grid;
  grid-template-columns: 80px 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.work--reverse { grid-template-columns: 80px 1fr 1.1fr; }
.work--reverse .work__visual { order: 3; }
.work--reverse .work__body { order: 2; }

.work__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--accent);
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
  align-self: start;
}

.work__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-2);
}
.work__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
  transition: transform 0.8s ease, filter 0.6s;
}
.work__visual:hover img { transform: scale(1.06); filter: grayscale(0%); }
.work__tag {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--paper);
  color: var(--ink);
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  font-weight: 500;
}

.work__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.work__title {
  font-family: var(--font-jp);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.work__title small {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  font-weight: 400;
  color: var(--accent);
  margin-top: 6px;
  letter-spacing: 0;
}
.work__desc {
  font-family: var(--font-jp);
  font-size: 15px;
  line-height: 2.1;
  color: var(--ink-soft);
}
.work__points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.work__points li {
  font-size: 12px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .works { padding: 100px 30px; }
  .works__header { grid-template-columns: 1fr; gap: 16px; }
  .works__title, .works__intro { grid-column: 1; }
  .work, .work--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .work__num { writing-mode: horizontal-tb; }
  .work--reverse .work__visual { order: initial; }
  .work--reverse .work__body { order: initial; }
  .works__list { gap: 90px; }
}

/* ===========================
   COMPANY
   =========================== */
.company {
  padding: 160px 60px 160px 140px;
  background: var(--ink);
  color: var(--paper);
}
.company__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  max-width: 1400px;
}
.company__head {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.company__label .label-num { color: #ff8a73; }
.company__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 92px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.company__title em {
  font-style: italic;
  font-weight: 400;
  color: #ff8a73;
}

.company__list {
  display: flex;
  flex-direction: column;
}
.company__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(250, 246, 236, 0.12);
  align-items: baseline;
}
.company__row:first-child { border-top: 1px solid rgba(250, 246, 236, 0.12); }
.company__row dt {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #d3c8ad;
  font-weight: 500;
}
.company__row dd {
  font-family: var(--font-jp);
  font-size: 17px;
  font-weight: 500;
}
.company__row dd a {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.3s;
  border-bottom: 1px solid transparent;
}
.company__row dd a:hover { color: #ff8a73; border-bottom-color: #ff8a73; }

@media (max-width: 1024px) {
  .company { padding: 100px 30px; }
  .company__inner { grid-template-columns: 1fr; gap: 40px; }
  .company__row { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
}

/* ===========================
   LOCATIONS
   =========================== */
.locations {
  padding: 160px 60px 160px 140px;
  border-top: 1px solid var(--line);
}
.locations__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.locations__head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 100px;
}
.locations__label {
  display: flex;
  flex-direction: column;
}
.locations__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 88px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.locations__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.locations__note {
  grid-column: 2;
  font-family: var(--font-jp);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 2;
  margin-top: 24px;
  max-width: 540px;
}

.locations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.locations__grid--three {
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.loc {
  position: relative;
  padding: 32px 0;
  border-top: 1px solid var(--ink);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: padding-left 0.4s ease;
}
.loc:hover { padding-left: 12px; }
.loc__num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.1em;
}
.loc__city {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
}
.loc__city small {
  display: block;
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 500;
  margin-top: 6px;
  color: var(--ink-soft);
  letter-spacing: 0.15em;
}
.loc__addr {
  font-family: var(--font-jp);
  font-size: 13px;
  line-height: 1.9;
  color: var(--ink-soft);
}

@media (max-width: 1024px) {
  .locations { padding: 100px 30px; }
  .locations__head { grid-template-columns: 1fr; gap: 20px; }
  .locations__note { grid-column: 1; }
  .locations__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 540px) {
  .locations__grid { grid-template-columns: 1fr; }
}

/* ===========================
   CONTACT
   =========================== */
.contact {
  padding: 200px 60px 200px 140px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "LOVE × KNOW";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(120px, 24vw, 400px);
  font-weight: 900;
  color: var(--ink);
  opacity: 0.04;
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.03em;
}
.contact__inner {
  position: relative;
  z-index: 2;
}
.contact__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 28px;
}
.contact__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 60px;
}
.contact__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.contact__cta {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 32px 60px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  transition: background 0.4s, color 0.4s;
}
.contact__cta:hover {
  background: var(--ink);
  color: var(--paper);
}
.contact__cta-label {
  font-family: var(--font-sans);
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.contact__cta-sub {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .contact { padding: 120px 30px; }
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 60px 30px 140px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250, 246, 236, 0.15);
}
.footer__logo {
  font-family: var(--font-display);
  font-size: clamp(50px, 7vw, 100px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: #d3c8ad;
}
.footer__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer__col-title {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #ff8a73;
  font-weight: 500;
}
.footer__col p {
  font-family: var(--font-jp);
  font-size: 14px;
  line-height: 2;
}
.footer__col a { transition: color 0.3s; }
.footer__col a:hover { color: #ff8a73; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #a59a85;
}
@media (max-width: 1024px) {
  .footer { padding: 60px 30px 30px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__meta { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ===========================
   Reveal animation on scroll
   =========================== */
[data-fade] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}
[data-fade].in {
  opacity: 1;
  transform: translateY(0);
}
