@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@400;500;600;700;800&family=Noto+Sans+JP:wght@300;400;500;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&display=swap');

:root {
  --cream: #f4efe6;
  --cream-dark: #ece4d6;
  --text: #2a2520;
  --text-light: #6b6059;
  --stone: #8b7d6b;
  --stone-light: #c4b8a4;
  --stone-pale: #e2d9cc;
  --green: #5a7055;
  --green-light: #8a9e85;
  --green-pale: #d4ddd2;
  --warm: #9e7c5a;
  --warm-light: #c9a882;
  --white: #fdfaf6;
  --border: rgba(139, 125, 107, 0.2);
  --shadow: rgba(42, 37, 32, 0.08);
}

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

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

body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.8;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

/* ===== STONE TEXTURE PATTERN ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(196,184,164,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(90,112,85,0.05) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238b7d6b' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

body > * { position: relative; z-index: 1; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Shippori Mincho B1', serif;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--text);
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: 0.12em;
}

/* ===== NAVIGATION ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(244, 239, 230, 0.98);
  box-shadow: 0 2px 20px var(--shadow);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* ===== LOGO ===== */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
}

.logo-svg { width: 44px; height: 44px; flex-shrink: 0; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text);
}

.logo-text .sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--stone);
  text-transform: uppercase;
}

/* ===== MAIN NAV ===== */
.main-nav { display: flex; align-items: center; gap: 0.1rem; }

.main-nav a {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-light);
  text-decoration: none;
  padding: 0.4rem 0.7rem;
  border-radius: 2px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.main-nav a:hover, .main-nav a.active {
  color: var(--green);
  background: rgba(90, 112, 85, 0.06);
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(244, 239, 230, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text);
  text-decoration: none;
  padding: 0.6rem 2rem;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--green); }

/* ===== PAGE WRAPPER ===== */
.page-wrap {
  padding-top: 72px;
  min-height: 100vh;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(42, 37, 32, 0.75) 0%,
    rgba(42, 37, 32, 0.3) 40%,
    rgba(42, 37, 32, 0.05) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem 5rem;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

.hero-kana {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
  display: block;
}

.hero-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-stone {
  background: var(--stone);
  color: var(--white);
}
.btn-stone:hover { background: var(--warm); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); }

.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover { background: #4a5f46; transform: translateY(-1px); }

.btn-dark {
  background: var(--text);
  color: var(--white);
}
.btn-dark:hover { background: #3d3630; transform: translateY(-1px); }

/* ===== SECTIONS ===== */
.section { padding: 5rem 2rem; }
.section-sm { padding: 3.5rem 2rem; }
.section-lg { padding: 7rem 2rem; }

.container {
  max-width: 1320px;
  margin: 0 auto;
}

.container-sm {
  max-width: 860px;
  margin: 0 auto;
}

/* ===== SECTION HEADER ===== */
.section-header {
  margin-bottom: 3.5rem;
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-label::before, .section-label::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--green-light);
}

.section-label.no-lines::before, .section-label.no-lines::after { display: none; }

.section-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.9;
  letter-spacing: 0.04em;
  max-width: 580px;
}

.section-header.centered .section-desc {
  margin: 0 auto;
}

/* ===== DIVIDER ===== */
.divider {
  width: 48px;
  height: 1px;
  background: var(--stone-light);
  margin: 1.5rem 0;
}
.divider.centered { margin: 1.5rem auto; }

/* ===== CARD GRIDS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ===== STORY CARD ===== */
.story-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow);
}

.story-card .card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.story-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.story-card:hover .card-image img { transform: scale(1.04); }

.story-card .card-body {
  padding: 1.75rem;
}

.card-category {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: block;
}

.card-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.card-text {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.85;
  letter-spacing: 0.03em;
}

.card-date {
  font-size: 0.72rem;
  color: var(--stone);
  letter-spacing: 0.1em;
  margin-top: 1rem;
  display: block;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--green);
  text-decoration: none;
  letter-spacing: 0.08em;
  margin-top: 1rem;
  transition: gap 0.2s;
}
.card-link:hover { gap: 0.7rem; }
.card-link::after { content: '→'; }

/* ===== FEATURE BLOCK ===== */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
  overflow: hidden;
}

.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }

.feature-image {
  position: relative;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.feature-block:hover .feature-image img { transform: scale(1.03); }

.feature-content {
  background: var(--white);
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ===== QUOTE BLOCK ===== */
.quote-block {
  background: var(--text);
  color: var(--white);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-block::before {
  content: '〃';
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  color: rgba(255,255,255,0.04);
  font-family: serif;
  line-height: 1;
}

.quote-text {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.quote-source {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.15em;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 4px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42,37,32,0);
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item-overlay {
  background: rgba(42,37,32,0.3);
}

/* ===== SEASONAL CARDS ===== */
.season-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.season-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.season-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,37,32,0.8) 0%, transparent 50%);
}

.season-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  color: #fff;
}

.season-kanji {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 3rem;
  font-weight: 700;
  opacity: 0.15;
  display: block;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  line-height: 1;
}

.season-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.5rem;
  display: block;
}

.season-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.season-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* ===== ARTISAN ITEM ===== */
.artisan-item {
  text-align: center;
  padding: 2rem 1rem;
}

.artisan-image {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
}

.artisan-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.artisan-name {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.artisan-role {
  font-size: 0.75rem;
  color: var(--stone);
  letter-spacing: 0.1em;
}

/* ===== LIFESTYLE GRID ===== */
.lifestyle-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, 260px);
  gap: 6px;
}

.lm-item { overflow: hidden; position: relative; }
.lm-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.lm-item:hover img { transform: scale(1.04); }

.lm-1 { grid-column: 1 / 6; grid-row: 1 / 3; }
.lm-2 { grid-column: 6 / 9; grid-row: 1 / 2; }
.lm-3 { grid-column: 9 / 13; grid-row: 1 / 2; }
.lm-4 { grid-column: 6 / 10; grid-row: 2 / 4; }
.lm-5 { grid-column: 10 / 13; grid-row: 2 / 3; }
.lm-6 { grid-column: 1 / 5; grid-row: 3 / 4; }
.lm-7 { grid-column: 5 / 7; grid-row: 3 / 4; }
.lm-8 { grid-column: 10 / 13; grid-row: 3 / 4; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.contact-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.contact-info a {
  color: var(--green);
  text-decoration: none;
}

/* ===== FORM ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-light);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 2px;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green-light);
  background: #fff;
}

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

/* ===== MAP PLACEHOLDER ===== */
.map-placeholder {
  width: 100%;
  height: 300px;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--stone);
}

.map-placeholder svg { opacity: 0.4; }
.map-placeholder p { font-size: 0.8rem; letter-spacing: 0.1em; }

/* ===== JOURNAL ===== */
.journal-item {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.journal-item:last-child { border-bottom: none; }

.journal-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.journal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

/* ===== PAGE HERO (Inner pages) ===== */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-image {
  position: absolute;
  inset: 0;
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,37,32,0.7) 0%, rgba(42,37,32,0.2) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem 3.5rem;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

.page-hero-kana {
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.55);
  font-family: 'Noto Sans JP', sans-serif;
  display: block;
  margin-bottom: 0.75rem;
}

.page-hero-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 1.2rem 2rem;
  border-bottom: 1px solid var(--border);
  max-width: 1320px;
  margin: 0 auto;
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: var(--stone);
  letter-spacing: 0.08em;
}

.breadcrumb-inner a {
  color: var(--stone);
  text-decoration: none;
}
.breadcrumb-inner a:hover { color: var(--green); }
.breadcrumb-inner span { color: var(--stone-light); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.65);
  padding: 5rem 2rem 2.5rem;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-wrap { color: rgba(255,255,255,0.85); margin-bottom: 1.2rem; }
.footer-brand .logo-text .main { color: rgba(255,255,255,0.85); }
.footer-brand .logo-text .sub { color: rgba(255,255,255,0.4); }

.footer-brand p {
  font-size: 0.8rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  max-width: 260px;
}

.footer-col h4 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.2rem;
  letter-spacing: 0.08em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.42);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: rgba(255,255,255,0.75); }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

.footer-bottom .brand-name {
  font-family: 'Cormorant Garamond', serif;
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
}

/* ===== TOAST NOTIFICATION ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--text);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 2px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  z-index: 9999;
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 340px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast-icon { font-size: 1.1rem; }

.toast-green { border-left: 3px solid var(--green); }
.toast-stone { border-left: 3px solid var(--stone); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== STONE DECORATION ===== */
.stone-accent {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--stone-light);
  border-radius: 50%;
}

.thistle-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0;
  color: var(--stone-light);
}

.thistle-divider::before, .thistle-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.thistle-divider svg { flex-shrink: 0; opacity: 0.5; }

/* ===== ABOUT ===== */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-item {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green-light);
}

.value-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.2rem;
  color: var(--green);
}

.value-title {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.value-text {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.85;
}

/* ===== CRAFT PAGE ===== */
.craft-process {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.craft-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.craft-step:last-child { border-bottom: none; }

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--stone-light);
  line-height: 1;
  padding-top: 0.2rem;
}

.step-content h3 {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.85;
}

/* ===== HIGHLIGHTED PULL QUOTE ===== */
.pull-quote {
  border-left: 3px solid var(--green-light);
  padding: 1.5rem 2rem;
  background: rgba(90,112,85,0.04);
  margin: 2.5rem 0;
}

.pull-quote p {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text);
  letter-spacing: 0.03em;
}

/* ===== 404 PAGE ===== */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.error-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 300;
  color: var(--stone-pale);
  line-height: 1;
  display: block;
}

.error-kanji {
  font-family: 'Shippori Mincho B1', serif;
  font-size: 2rem;
  color: var(--text);
  margin: 0.5rem 0 1rem;
  display: block;
}

.error-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 400px;
  margin: 0 auto 2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .footer-top { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-top .footer-brand { grid-column: 1 / -1; }
  .lifestyle-mosaic { grid-template-rows: repeat(3, 220px); }
}

@media (max-width: 992px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .feature-block { grid-template-columns: 1fr; min-height: auto; }
  .feature-block.reverse { direction: ltr; }
  .feature-image { aspect-ratio: 16/9; }
  .feature-content { padding: 3rem 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-values { grid-template-columns: repeat(2, 1fr); }
  .lifestyle-mosaic {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 200px);
  }
  .lm-1 { grid-column: 1 / 4; grid-row: 1 / 3; }
  .lm-2 { grid-column: 4 / 7; grid-row: 1 / 2; }
  .lm-3 { grid-column: 4 / 7; grid-row: 2 / 3; }
  .lm-4 { grid-column: 1 / 4; grid-row: 3 / 5; }
  .lm-5 { grid-column: 4 / 7; grid-row: 3 / 4; }
  .lm-6 { grid-column: 4 / 7; grid-row: 4 / 5; }
  .lm-7 { display: none; }
  .lm-8 { display: none; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-inner { padding: 0 1.25rem; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 1; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top .footer-brand { grid-column: 1 / -1; }

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

  .journal-item { grid-template-columns: 1fr; }
  .journal-image { aspect-ratio: 16/9; }

  .about-values { grid-template-columns: 1fr; }

  .craft-step { grid-template-columns: 50px 1fr; gap: 1rem; }
  .step-number { font-size: 2.2rem; }

  .lifestyle-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 180px);
  }
  .lm-1, .lm-2, .lm-3, .lm-4, .lm-5, .lm-6 {
    grid-column: auto; grid-row: auto;
  }
  .lm-7, .lm-8 { display: none; }

  .section { padding: 4rem 1.25rem; }
  .section-lg { padding: 5rem 1.25rem; }
  .hero-content { padding: 3rem 1.25rem 4rem; }
  .page-hero-content { padding: 2rem 1.25rem 2.5rem; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .footer-top { grid-template-columns: 1fr; }
  .hero { min-height: 85vh; }
}

/* ===== SMOOTH LOADING ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeInUp 0.7s ease forwards; }

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,18,16,0.95);
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-overlay.active { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}
.lightbox-close:hover { color: #fff; }
