/* ==========================================================================
   alamasion-hawaii — Main CSS  (Figma: MAnYU-Flowers_260527)
   ========================================================================== */

/* ── Design Tokens ─────────────────────────────────────────────────────── */
:root {
  /* Colors — verified from Figma */
  --color-primary: #1a1a1a;
  --color-secondary: #ffffff;
  --color-accent: #b85c50;
  /* terracotta red (Japanese text accent) */
  --color-accent-gold: #c9a96e;
  /* gold, hover state */
  --color-bg: #fafaf8;
  --color-bg-dark: #1a1a1a;
  --color-text: #333333;
  --color-text-muted: #888888;
  --color-border: #e0dcd5;
  --color-footer-bg: #c8bfb0;
  /* sandy-beige footer base */

  /* Typography */
  --font-heading: 'Cormorant Garamond', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  --font-nav: 'Montserrat', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-body: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-yumincho: 'Yu Mincho', 'YuMincho', '游明朝', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', serif;
  --font-garamond: 'Cormorant Garamond', 'EB Garamond', Garamond, Georgia, serif;

  /* Layout */
  --container-max: 1024px;
  --container-pad: clamp(1.25rem, 4vw, 2rem);
  --header-h: 92px;

  /* Breakpoints */
  --bp-sp: 768px;
  --bp-tb: 1024px;

  /* Misc */
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
  --section-pad: clamp(4rem, 8vw, 7rem);
}

/* ── Reset ─────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.8;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

/* ── Utility ────────────────────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.text-center {
  text-align: center;
}

/* Scroll reveal */
.js-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.5rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-secondary);
}

.btn--primary:hover {
  background: var(--color-accent-gold);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-secondary);
}

.btn--sm {
  padding: 0.625rem 1.5rem;
  font-size: 0.8125rem;
}

/* ── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.site-header.is-scrolled {
  border-bottom-color: var(--color-border);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header.is-hero-top {
  background: rgba(255, 255, 255, 0.0);
}

.site-header.is-hero-top.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: 5rem;
  /* matches Figma logo x=80 */
  max-width: 100%;
}

/* Logo */
.site-header__logo img,
.site-header__logo svg {
  height: 56px;
  width: auto;
}

.site-header__logo-text {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.site-header__logo-text:hover {
  color: var(--color-accent);
}

/* Primary nav */
.site-nav__list {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.site-nav__list a {
  font-family: var(--font-nav);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  transition: color var(--transition);
  white-space: nowrap;
}

.site-nav__list a:hover {
  color: var(--color-accent);
}

/* Onlineshop nav CTA box */
.site-nav__list .nav-shop-btn a {
  border: 1px solid var(--color-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.site-nav__list .nav-shop-btn a:hover {
  background: var(--color-primary);
  color: var(--color-secondary);
}

/* Instagram icon in nav */
.site-nav__list .nav-icon a {
  display: flex;
  align-items: center;
}

/* Hamburger */
.site-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.site-nav__toggle-icon,
.site-nav__toggle-icon::before,
.site-nav__toggle-icon::after {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-primary);
  transition: transform var(--transition), opacity var(--transition);
}

.site-nav__toggle-icon {
  position: relative;
}

.site-nav__toggle-icon::before,
.site-nav__toggle-icon::after {
  content: '';
  position: absolute;
  left: 0;
}

.site-nav__toggle-icon::before {
  top: -7px;
}

.site-nav__toggle-icon::after {
  top: 7px;
}

[aria-expanded="true"] .site-nav__toggle-icon {
  background: transparent;
}

[aria-expanded="true"] .site-nav__toggle-icon::before {
  transform: rotate(45deg) translate(5px, 5px);
}

[aria-expanded="true"] .site-nav__toggle-icon::after {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 900px) {
  .site-header__inner {
    padding-inline: 2rem;
  }

  .site-nav__toggle {
    display: flex;
  }

  .site-nav__list {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--header-h);
    background: var(--color-secondary);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 190;
  }

  .site-nav__list.is-open {
    display: flex;
  }

  .site-nav__list a {
    font-size: 1.25rem;
  }
}

/* ── Subpage Hero (500px, image + title) ────────────────────────────────── */
.page-hero {
  position: relative;
  height: 500px;
  margin-top: var(--header-h);
  overflow: hidden;
  background: var(--color-bg-dark);
}

.page-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.page-hero__placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #2a2520 0%, #1a1a1a 100%);
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.page-hero__content {
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--container-max);
  padding-inline: var(--container-pad);
  color: var(--color-secondary);
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.06em;
}

.page-hero__ja {
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  opacity: 0.8;
  margin-top: 0.4rem;
}

@media (max-width: 768px) {
  .page-hero {
    height: 320px;
  }
}

/* ── Front Page Hero (slider) ────────────────────────────────────────────── */
.front-hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}

/* Slider */
.front-hero__slider {
  position: absolute;
  inset: 0;
  background: var(--color-bg-dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img,
.hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slide iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78%;
  height: 100%;
  min-width: 100%;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

/* Slider dots */
.front-hero__dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.hero-dot.is-active {
  background: var(--color-secondary);
  transform: scale(1.3);
}

.front-hero__overlay {
  position: absolute;
  inset: 0;
  /* 画像が明るいためoverlayは最小限 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.12) 100%);
  z-index: 1;
}

.front-hero__content {
  position: absolute;
  bottom: clamp(4rem, 8vh, 7rem);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 982px;
  padding-inline: clamp(2rem, 5vw, 5rem);
  /* Figma: rgba(76,69,66) — ウォームダークブラウン */
  color: #4c4542;
  z-index: 2;
}

/* 鶴 + サブタイトル横並び（Figma: crane x=21 / subtitle x=115 / same y） */
.front-hero__sub {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-top: 0.5rem;
}

.front-hero__crane {
  flex-shrink: 0;
  height: clamp(2.75rem, 4vw, 3.5rem);
  width: auto;
  margin-top: 0.1em;
  /* テキストベースラインに合わせる微調整 */
}

.front-hero__title {
  font-family: var(--font-heading);
  /* Figma: 68px → 4.25rem (16px base) */
  font-size: clamp(2rem, 5.6vw, 4.25rem);
  font-weight: 500;
  /* Medium */
  font-style: italic;
  line-height: 1.47;
  /* Figma: lh=100px / 68px */
  letter-spacing: 0;
  margin: 0 0 0.75rem;
}

.front-hero__subtitle {
  font-family: var(--font-heading);
  /* Figma: 22px → 1.375rem (16px base) */
  font-size: clamp(0.875rem, 1.4vw, 1.375rem);
  font-weight: 500;
  font-style: normal;
  line-height: 1.21;
  /* Figma: lh=26.64 / 22px */
  max-width: 50em;
  color: #4c4542;
}

@media (max-width: 768px) {

  /* Figma SP: title 60px → 3.75rem */
  .front-hero__title {
    font-size: clamp(2rem, 9vw, 3.75rem);
    line-height: 1.17;
  }

  /* Figma SP: subtitle 22px → 1.375rem (同値、vp幅で縮小) */
  .front-hero__subtitle {
    font-size: clamp(0.875rem, 4.5vw, 1.375rem);
    line-height: 1.3;
  }
}

/* ── Section Heading (bilingual: EN large + JA small) ────────────────────── */
.section-heading {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-heading__en {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--color-primary);
  display: block;
  margin: 0;
}

.section-heading__ja {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

.section-heading--dark .section-heading__en {
  color: var(--color-secondary);
}

.section-heading--dark .section-heading__ja {
  color: rgba(255, 255, 255, 0.5);
}

.section-heading--center {
  text-align: center;
}

/* ── Generic Section ────────────────────────────────────────────────────── */
.section {
  padding-block: var(--section-pad);
}

.section--dark {
  background: var(--color-bg-dark);
  color: var(--color-secondary);
}

.section--light-gray {
  background: #f4f1ec;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.section__title--center {
  text-align: center;
}

.section--dark .section__title {
  color: var(--color-secondary);
}

.section__subtitle {
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.section__body {
  font-size: 0.9375rem;
  line-height: 1.9;
  max-width: 38em;
}

.section__body+.btn {
  margin-top: 2rem;
}

/* ── Content Split (2-col) ──────────────────────────────────────────────── */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.content-split--reverse {
  direction: rtl;
}

.content-split--reverse>* {
  direction: ltr;
}

.content-split__body {
  padding-block: 1rem;
}

.content-split__body .section-heading {
  margin-bottom: 1.5rem;
}

.content-split__media {
  position: relative;
  overflow: hidden;
}

.content-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content-split__img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--color-border);
}

@media (max-width: 768px) {

  .content-split,
  .content-split--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* ── Bilingual 2-col Text Block ─────────────────────────────────────────── */
.bilingual-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-block: clamp(2rem, 4vw, 3.5rem);
}

.bilingual-block__en,
.bilingual-block__ja {
  font-size: 0.9rem;
  line-height: 1.95;
  color: var(--color-text);
}

.bilingual-block--dark .bilingual-block__en,
.bilingual-block--dark .bilingual-block__ja {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
  .bilingual-block {
    grid-template-columns: 1fr;
  }
}

/* ── Ikebana Schools Grid (2-col cards) ─────────────────────────────────── */
.ikebana-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem) clamp(1.5rem, 3vw, 3rem);
  margin-top: 2.5rem;
}

.ikebana-card__img {
  aspect-ratio: 512/311;
  overflow: hidden;
  background: var(--color-border);
  margin-bottom: 1.25rem;
}

.ikebana-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ikebana-card__en-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.ikebana-card__ja-title {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.ikebana-card__en-body,
.ikebana-card__ja-body {
  font-size: 0.875rem;
  line-height: 1.85;
  color: var(--color-text);
}

.ikebana-card__en-body {
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .ikebana-grid {
    grid-template-columns: 1fr;
  }
}

/* ── CTA Nav Grid (2×2 link boxes, page bottoms) ──────────────────────── */
.cta-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.cta-nav-grid__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
  text-align: center;
  padding: 2rem 1.5rem;
}

.cta-nav-grid__item:hover {
  background: var(--color-bg-dark);
}

.cta-nav-grid__item:hover .cta-nav-grid__label {
  color: var(--color-secondary);
}

.cta-nav-grid__label {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  transition: color var(--transition);
}

@media (max-width: 600px) {
  .cta-nav-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Sub Nav (TOP only) — bilingual with separators ─────────────────────── */
.sub-nav {
  background: #4f4a42;
  padding: 0;
  height: 100px;
  display: flex;
  align-items: center;
}

.sub-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 100%;
}

.sub-nav__list li {
  flex: 0 0 auto;
}

.sub-nav__list li+li {
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  margin-left: 3.125rem;
  padding-left: 3.125rem;
}

.sub-nav__list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 163px;
  font-family: var(--font-garamond);
  font-size: 1.4rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  transition: color var(--transition);
  line-height: 1.2;
}

.sub-nav__list a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.sub-nav__list .sub-nav__ja {
  display: block;
  font-family: var(--font-yumincho);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: none;
  color: #ffffff;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .sub-nav {
    height: auto;
    padding: 1rem 0;
  }

  .sub-nav__list {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .sub-nav__list li+li {
    border-left: none;
    margin-left: 0;
    padding-left: 0;
  }

  .sub-nav__list a {
    font-size: 1rem;
    width: auto;
    padding: 0 1rem;
  }
}

/* ── News List (TOP) ────────────────────────────────────────────────────── */
.news-list {}

.news-list__header {
  margin-bottom: 2rem;
}

.news-list__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--color-text);
}

.news-list__subtitle {
  font-family: var(--font-yumincho);
  font-size: 0.8125rem;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.news-list__item {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1.5rem;
  padding-block: 1.125rem;
  border-bottom: 1px solid var(--color-border);
  align-items: baseline;
}

.news-list__date {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.news-list__link {
  font-size: 0.9375rem;
  transition: color var(--transition);
}

.news-list__link:hover {
  color: var(--color-accent);
}

/* ── Category Grid (TOP) ──────────────────────────────────────────────── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.category-grid__item--wide {
  grid-column: span 3;
}

.category-grid__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.category-grid__item--wide {
  aspect-ratio: 3/1.4;
}

.category-grid__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 55%);
  transition: opacity var(--transition);
}

.category-grid__item:hover::after {
  opacity: 0.85;
}

.category-grid__image {
  position: absolute;
  inset: 0;
  background: var(--color-bg-dark);
  transition: transform var(--transition-slow);
}

.category-grid__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-grid__item:hover .category-grid__image {
  transform: scale(1.04);
}

.category-grid__label {
  position: relative;
  z-index: 1;
  padding: 1.25rem 1.5rem;
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-style: italic;
  letter-spacing: 0.06em;
}

@media (max-width: 600px) {
  .category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .category-grid__item--wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
  }
}

/* ── CTA Shop ───────────────────────────────────────────────────────────── */
.cta-shop {
  padding-block: var(--section-pad);
  text-align: center;
  background: var(--color-primary);
}

.cta-shop__link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-secondary);
  padding: 2rem 4rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic;
  letter-spacing: 0.12em;
  transition: border-color var(--transition), background var(--transition);
}

.cta-shop__link:hover {
  border-color: var(--color-accent-gold);
  background: rgba(201, 169, 110, 0.1);
}

.cta-shop__label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
}

/* ── Video Section ──────────────────────────────────────────────────────── */
.section--video {
  padding-block: 0;
}

.video-embed {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}

.video-embed__iframe,
.video-embed__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.video-embed--placeholder {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2520 100%);
  min-height: 360px;
}

/* ── Image Grid (2-up) ──────────────────────────────────────────────────── */
.img-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-block: 2.5rem;
}

.img-grid-2__item {
  overflow: hidden;
  background: var(--color-border);
}

.img-grid-2__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-grid-2__placeholder {
  width: 100%;
  aspect-ratio: 512/404;
  background: var(--color-border);
}

.img-grid-2__placeholder--tall {
  aspect-ratio: 512/985;
}

@media (max-width: 600px) {
  .img-grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ── Products Grid (tools/vessels) ─────────────────────────────────────── */
.products-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

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

.products-grid__img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 1rem;
}

.products-grid__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.products-grid__img-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
}

.products-grid__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-secondary);
}

@media (max-width: 768px) {
  .products-grid--3 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .products-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Wedding Gallery ────────────────────────────────────────────────────── */
.wedding-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 3rem;
}

.wedding-gallery__item {
  aspect-ratio: 1;
  overflow: hidden;
}

.wedding-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

@media (max-width: 768px) {
  .wedding-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Experience Grid ────────────────────────────────────────────────────── */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.experience-card__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: var(--color-border);
}

.experience-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.experience-card__desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .experience-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Contact ────────────────────────────────────────────────────────────── */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  padding-block: 5rem;
}

.contact-intro__text {
  font-size: 1rem;
  line-height: 1.9;
}

.contact-info {
  margin-top: 2rem;
  font-size: 0.9rem;
  line-height: 2;
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.form-required {
  color: #c0392b;
  margin-left: 0.25rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--color-secondary);
  border: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

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

.form-submit {
  margin-top: 2rem;
}

.form-success {
  color: #2a7a52;
  font-size: 0.9rem;
}

.form-error {
  color: #c0392b;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-block: 3rem;
  }
}

/* ── News Archive ───────────────────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.news-card {
  display: flex;
  flex-direction: column;
}

.news-card__thumbnail {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-bottom: 1rem;
  background: var(--color-border);
}

.news-card__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.news-card__date {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.news-card__title {
  font-size: 0.9375rem;
  line-height: 1.5;
}

.news-card__title a {
  transition: color var(--transition);
}

.news-card__title a:hover {
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Archive pagination */
.posts-navigation {
  margin-top: 4rem;
}

.posts-navigation .nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.nav-links a,
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  transition: background var(--transition), color var(--transition);
}

.nav-links a:hover,
.page-numbers:hover {
  background: var(--color-primary);
  color: var(--color-secondary);
}

.page-numbers.current {
  background: var(--color-primary);
  color: var(--color-secondary);
}

/* ── Single Post ────────────────────────────────────────────────────────── */
.single-post__thumbnail {
  max-height: 560px;
  overflow: hidden;
  margin-bottom: 0;
}

.single-post__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-post__body {
  max-width: 720px;
  margin-inline: auto;
  padding-block: 4rem;
}

.entry-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.entry-date {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.entry-category {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  background: var(--color-primary);
  color: var(--color-secondary);
}

.entry-content {
  font-size: 1rem;
  line-height: 1.9;
}

.entry-content h2,
.entry-content h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.entry-content img {
  margin-block: 2rem;
}

.post-navigation {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  letter-spacing: 0.06em;
}

.post-navigation__next {
  text-align: right;
}

.post-navigation a {
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.post-navigation a:hover {
  color: var(--color-accent);
}

/* ── Page Banner (fallback header for generic pages) ─────────────────────  */
.page-banner {
  padding: calc(var(--header-h) + 3.5rem) var(--container-pad) 3rem;
  background: var(--color-bg-dark);
  color: var(--color-secondary);
  text-align: center;
}

.page-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.06em;
}

/* ── Page Body (generic page, About, Policy) ─────────────────────────────  */
.page-body {
  max-width: 840px;
  margin-inline: auto;
  padding-block: 5rem;
}

.page-content__thumbnail {
  aspect-ratio: 16/6;
  overflow: hidden;
  margin-bottom: 3rem;
}

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

/* ── Staff Grid (About) ──────────────────────────────────────────────────── */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.staff-card__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 1rem;
  background: var(--color-border);
}

.staff-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-card__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.06em;
}

.staff-card__role {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .staff-grid {
    grid-template-columns: 1fr;
  }
}

/* ── CTA Contact strip ───────────────────────────────────────────────────── */
.section--cta-contact {
  background: var(--color-bg-dark);
  color: var(--color-secondary);
  text-align: center;
}

.section--cta-contact .section__title {
  color: var(--color-secondary);
}

.section--cta-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.site-footer__bg-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.site-footer__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-footer__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(79, 74, 66, 0.82);
}

.site-footer__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem 6rem;
  align-items: start;
  padding: 4rem 5rem 3rem;
  max-width: 1400px;
  margin-inline: auto;
}

.site-footer__logo-img {
  height: 100px;
  width: auto;
  margin-bottom: 1.25rem;
}

.site-footer__brand-name {
  font-family: var(--font-nav);
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 1.25rem;
}

.site-footer__address {
  font-family: var(--font-nav);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
  font-style: normal;
}

.site-footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-items: flex-end;
}

.site-footer__list a {
  font-family: var(--font-nav);
  font-size: 0.9375rem;
  font-weight: 400;
  color: #fff;
  transition: color var(--transition);
}

.site-footer__list a:hover {
  color: var(--color-accent-gold);
}

.site-footer__list-icon a {
  display: flex;
  align-items: center;
  color: #fff;
}

.site-footer__list-shop a {
  border: 1px solid #fff;
  padding: 0.2rem 0.875rem;
  border-radius: 20px;
  font-size: 0.9375rem;
  color: #fff;
}

.site-footer__copyright {
  position: relative;
  z-index: 1;
  background: #4f4a42;
  text-align: center;
  padding: 1.125rem var(--container-pad);
  font-family: var(--font-garamond);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 900px) {
  .site-footer__body {
    grid-template-columns: 1fr;
    padding: 3.5rem 2rem 2rem;
    gap: 2.5rem;
  }

  .site-footer__list {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
  }
}

/* ── Divider line ──────────────────────────────────────────────────────── */
.section-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0;
}

/* ── Main padding for non-hero pages ────────────────────────────────────── */
.site-main--news,
.site-main--contact,
.site-main--experience,
.site-main--policy {
  padding-top: var(--header-h);
}

/* ══════════════════════════════════════════════════════════════════
   TOP PAGE — Section-specific styles
   ══════════════════════════════════════════════════════════════════ */

/* ── About Section (PC: visual left + text right / SP: text top + images bottom) */
.about-section {
  overflow: hidden;
  position: relative;
  padding-block: 4rem;
}

.about-bg-flower {
  position: absolute;
  left: 8%;
  top: 14%;
  width: 34%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.about-bg-flower img {
  width: 100%;
  height: auto;
  display: block;
}

.about-layout {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 780px;
  position: relative;
  z-index: 1;
}

/* Visual column: portrait top-left / bouquet bottom-right (staggered, no overlap) */
.about-visual {
  position: relative;
  overflow: hidden;
}

/* Portrait: left column, top-aligned, ends ~75% down */
.about-visual__portrait {
  position: absolute;
  left: 0;
  top: 0;
  width: 47%;
  height: 74%;
  overflow: hidden;
}

.about-visual__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Heading: top of right column, no background */
.about-visual__heading {
  position: absolute;
  left: 70%;
  top: 0;
  right: 0;
  height: 30%;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-heading-en {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-style: normal;
  font-weight: 400;
  color: var(--color-primary);
  margin: 0 0 0.25rem;
}

.about-heading-ja {
  font-family: var(--font-yumincho);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #C78665;
}

/* Bouquet: right column, bottom-aligned, starts ~30% down — no overlap with portrait */
.about-visual__bouquet {
  position: absolute;
  left: 47%;
  top: 30%;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.about-visual__bouquet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text column */
.about-text {
  padding: clamp(3rem, 5vw, 5rem) clamp(2.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
}

.about-text__heading {
  display: none;
}

/* PC: hidden; SP: shown */

.about-block {}

.about-block__lead {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 1.6vw, 1.5rem);
  font-weight: normal;
  line-height: 1.55;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

.about-block__lead--ja {
  font-family: var(--font-yumincho);
  font-size: clamp(1.125rem, 1.4vw, 1.375rem);
  line-height: 1.6;
}

.about-block__body {
  font-family: var(--font-yumincho);
  font-size: 0.875rem;
  line-height: 1.85;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.about-block__body--ja {
  font-family: var(--font-yumincho);
  font-size: 0.875rem;
}

.view-more {
  display: block;
  text-align: right;
  font-family: var(--font-garamond);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.view-more:hover {
  color: var(--color-accent);
}

/* SP: text top / images bottom */
@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .about-visual {
    order: 2;
    height: 280px;
  }

  .about-visual__portrait {
    width: 50%;
    height: 75%;
  }

  .about-visual__heading {
    display: none;
  }

  .about-visual__bouquet {
    left: 50%;
    top: 25%;
  }

  .about-text {
    order: 1;
    padding: 2.5rem 1.5rem;
    gap: 2rem;
  }

  .about-text__heading {
    display: block;
    margin-bottom: 0.5rem;
  }

  /* SP: shown */
}

/* ── Japanese Tea Feature (dark, full-bleed) ────────────────────────────── */
.tea-feature {
  position: relative;
  background: #0d0d0b;
  overflow: hidden;
}

.tea-feature__bg {
  position: absolute;
  inset: 0;
  opacity: 0.65;
}

.tea-feature__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tea-feature__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 520px;
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 6vw, 6rem);
  gap: clamp(2rem, 4vw, 5rem);
}

/* ── EN block (left column) ── */
.tea-feature__en {
  align-self: end;
  padding-bottom: 2rem;
}

.tea-feature__en-body {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0;
}

.tea-feature__heading {
  font-family: var(--font-garamond);
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #ffffff;
  margin: 1rem 0 0.75rem;
  line-height: 1;
}

/* Tea types grid (shared) */
.tea-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 0.2rem 1.5rem;
  justify-content: start;
}

.tea-list--en li {
  font-family: var(--font-garamond);
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.tea-list--ja li {
  font-family: var(--font-yumincho);
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

/* ── JA block: column layout (upper: kana+types / lower: body) ── */
.tea-feature__ja {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tea-feature__ja-upper {
  display: flex;
  gap: 1.5rem;
  align-items: flex-end;
}

.tea-feature__ja-kana {
  font-family: var(--font-yumincho);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.05;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.tea-feature__ja-lower {}

.tea-feature__body {
  font-family: var(--font-yumincho);
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
  margin-top: 0.5rem;
}

.tea-view-more {
  display: block;
  text-align: right;
  margin-top: 1.5rem;
  font-family: var(--font-garamond);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}

.tea-view-more:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .tea-feature__inner {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    gap: 2.5rem;
    min-height: auto;
  }

  .tea-feature__en {
    margin-bottom: 0;
  }

  .tea-list {
    grid-template-columns: repeat(2, auto);
    gap: 0.3rem 2rem;
  }

  .tea-feature__ja {
    gap: 0.75rem;
  }

  .tea-feature__ja-upper {
    align-items: flex-end;
    gap: 1rem;
  }

  .tea-feature__ja-kana {
    font-size: clamp(4.5rem, 14vw, 6rem);
  }
}

/* ── News Cards (2-col horizontal, TOP page) ────────────────────────────── */
.news-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 4rem;
  margin-top: 2rem;
}

.news-card-item {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  align-items: flex-start;
}

.news-card-item__thumb {
  flex-shrink: 0;
  width: 130px;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-border);
  display: block;
}

.news-card-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.news-card-item__body {
  flex: 1;
  min-width: 0;
}

.news-card-item__date {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
  display: block;
}

.news-card-item__title {
  font-family: var(--font-yumincho);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 0.5rem;
}

.news-card-item__title a {
  transition: color var(--transition);
}

.news-card-item__title a:hover {
  color: var(--color-accent);
}

.news-card-item__excerpt {
  font-family: var(--font-yumincho);
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.news-more {
  margin-top: 2.5rem;
  text-align: center;
}

.news-more a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.news-more a:hover {
  color: var(--color-accent);
}

.news-bg-man {
  position: absolute;
  right: 0;
  bottom: -10%;
  width: 38%;
  pointer-events: none;
  z-index: 0;
}

.news-bg-man img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .news-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .news-card-item__thumb {
    width: 100px;
  }

  .news-bg-man {
    width: 60%;
  }
}

/* ── Category Feature Cards (3-col: TEA / TEA WARE / EVENT) ─────────────── */
.cat-feature {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.cat-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cat-feature-card__bg {
  position: absolute;
  inset: 0;
}

.cat-feature-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.cat-feature-card:hover .cat-feature-card__bg img {
  transform: scale(1.04);
}

.cat-feature-card__header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 185px;
  z-index: 1;
  pointer-events: none;
}

.cat-feature-card__footer-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 240px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.55) 60%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.cat-feature-card__header {
  position: relative;
  z-index: 2;
  padding: 2rem 2rem 0;
  color: var(--color-secondary);
}

.cat-feature-card__en {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: white;
  display: block;
  line-height: 1.1;
}

.cat-feature-card__ja {
  font-family: var(--font-yumincho);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  display: block;
  margin-top: 0.5rem;
  line-height: 2;
}

.cat-feature-card__footer {
  position: relative;
  z-index: 2;
  padding: 0 2rem 2rem;
  color: var(--color-secondary);
}

.cat-feature-card__text {
  font-family: var(--font-garamond);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.cat-feature-card__text--ja {
  font-family: var(--font-yumincho);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.5rem;
  line-height: 1.54;
}

@media (max-width: 768px) {
  .cat-feature {
    grid-template-columns: 1fr;
  }

  .cat-feature-card {
    min-height: 420px;
  }

  .cat-feature-card__header-overlay {
    height: 140px;
  }
}

/* -- Flowers Feature Section -- */
.flowers-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.flowers-feature__card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.flowers-feature__card-bg {
  position: absolute;
  inset: 0;
}

.flowers-feature__card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flowers-feature__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.1) 50%);
}

.flowers-feature__card-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem;
  color: #fff;
}

.flowers-feature__card-title {
  font-family: var(--font-garamond);
  font-size: 8.125rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  width: 100%;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1;
}

.flowers-feature__text {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: var(--color-secondary);
}

.flowers-feature__deco-f {
  position: absolute;
  top: 0em;
  left: 0.15em;
  font-family: var(--font-heading);
  font-size: clamp(8rem, 13vw, 14rem);
  font-weight: 700;
  color: rgba(218, 213, 203, 0.18);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.flowers-feature__text-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  max-width: 74%;
  flex: 1;
  width: 74%;
}

.flowers-feature__en-heading {
  font-family: var(--font-garamond);
  font-size: 1.5rem;
  font-weight: 700;
  font-style: normal;
  line-height: 2rem;
  letter-spacing: 0;
  margin-bottom: 0.75rem;
  color: #4f4a42;
}

.flowers-feature__en-body {
  font-family: var(--font-garamond);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: calc(30 / 17);
  color: var(--color-text);
  margin-bottom: 0;
}

.flowers-feature__ja-heading {
  font-family: var(--font-yumincho);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 2rem;
  letter-spacing: 0;
  color: #4f4a42;
  margin-top: auto;
  padding-top: 2.5rem;
  margin-bottom: 0.5rem;
}

.flowers-feature__ja-body {
  font-family: var(--font-yumincho);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: calc(30 / 15);
  color: #4c4542;
}

@media (max-width: 900px) {
  .flowers-feature {
    grid-template-columns: 1fr;
  }

  .flowers-feature__card {
    min-height: 420px;
  }

  .flowers-feature__deco-f {
    font-size: 8rem;
  }
}

/* ── Bouquet Strip (full-width text section) ────────────────────────────── */
/* ── Weddings Feature (text left / image right) ─────────────────────────── */
.weddings-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.weddings-feature__text {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: var(--color-secondary);
}

.weddings-feature__deco-w {
  position: absolute;
  top: 0em;
  left: 0.05em;
  font-family: var(--font-heading);
  font-size: clamp(8rem, 13vw, 14rem);
  font-weight: 700;
  color: rgba(218, 213, 203, 0.18);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.weddings-feature__text-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  max-width: 74%;
  flex: 1;
}

.weddings-feature__en-heading {
  font-family: var(--font-garamond);
  font-size: 1.5rem;
  font-weight: 700;
  font-style: normal;
  line-height: 2rem;
  letter-spacing: 0;
  margin-bottom: 0.75rem;
  color: #4f4a42;
}

.weddings-feature__en-body {
  font-family: var(--font-garamond);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: calc(30 / 17);
  color: var(--color-text);
  margin-bottom: 0;
}

.weddings-feature__ja-heading {
  font-family: var(--font-yumincho);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 2rem;
  color: #4f4a42;
  margin-top: auto;
  padding-top: 2.5rem;
  margin-bottom: 0.5rem;
}

.weddings-feature__ja-body {
  font-family: var(--font-yumincho);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: calc(30 / 15);
  color: #4c4542;
}

.weddings-feature__card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.weddings-feature__card-bg {
  position: absolute;
  inset: 0;
}

.weddings-feature__card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.weddings-feature__card:hover .weddings-feature__card-bg img {
  transform: scale(1.04);
}

.weddings-feature__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.05) 45%);
}

.weddings-feature__card-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem;
  width: 100%;
}

.weddings-feature__card-title {
  font-family: var(--font-garamond);
  font-size: 8.125rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  width: 100%;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1;
}

@media (max-width: 900px) {
  .weddings-feature {
    grid-template-columns: 1fr;
  }

  .weddings-feature__card {
    min-height: 420px;
  }

  .weddings-feature__deco-w {
    font-size: 8rem;
  }

  .weddings-feature__card-title {
    font-size: 5rem;
  }
}

/* ── Weddings + Vase/Japan Grid ─────────────────────────────────────────── */
.bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.bottom-grid__card {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.bottom-grid__card-bg {
  position: absolute;
  inset: 0;
}

.bottom-grid__card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.bottom-grid__card:hover .bottom-grid__card-bg img {
  transform: scale(1.04);
}

.bottom-grid__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.0) 50%);
}

.bottom-grid__card-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1.5rem;
  width: 100%;
  text-align: center;
}

.bottom-grid__card-title {
  font-family: var(--font-garamond);
  font-size: 7.5rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1;
  text-align: center;
}

@media (max-width: 768px) {
  .bottom-grid {
    grid-template-columns: 1fr;
  }

  .bottom-grid__card {
    min-height: 320px;
  }
}


/* ==========================================================================
   About Page
   ========================================================================== */

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.about-hero {
  position: relative;
  height: 500px;
  margin-top: var(--header-h);
  overflow: hidden;
  background: #2a2520;
}

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

.about-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.about-hero__flowers {
  position: absolute;
  right: -5%;
  top: -5%;
  width: 55%;
  height: 140%;
  pointer-events: none;
  z-index: 1;
}

.about-hero__flowers img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right top;
}

.about-hero__content {
  position: absolute;
  bottom: 3.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--container-max);
  padding-inline: var(--container-pad);
  z-index: 2;
}

.about-hero__title {
  font-family: var(--font-garamond);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.15em;
  color: #ffffff;
  line-height: 1;
}

@media (max-width: 768px) {
  .about-hero {
    height: 300px;
  }
}

/* ── Section splits (MAnYU / à la maison) ────────────────────────────────── */
.about-split {
  padding-block: clamp(4rem, 7vw, 6rem);
  overflow: hidden;
}

.about-split__wrap {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ── About decorative fixed flowers (viewport追従) ───────────────────────── */
.about-deco-wrap {
  position: relative;
}

.about-deco {
  position: fixed;
  pointer-events: none;
  z-index: 50;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.about-deco.is-visible {
  opacity: 1;
}

/* 右上：viewport 右端に固定 */
.about-deco--right {
  top: 18vh;
  right: -60px;
  width: clamp(280px, 28vw, 460px);
}

/* 左下：viewport 左端に固定・反転 */
.about-deco--left {
  bottom: 14vh;
  left: -60px;
  width: clamp(240px, 24vw, 400px);
  transform: rotate(180deg) scaleX(-1);
}

.about-deco img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.85;
}

@media (max-width: 900px) {
  .about-deco {
    display: none;
  }
}

/* Title row: always centered */
.about-split__title-row {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.about-split__title {
  font-family: var(--font-garamond);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.15em;
  color: #4f4a42;
  line-height: 1;
  margin-bottom: 1.25rem;
}

/* Ornament: short diagonal stroke, matches Figma rotate(105deg) */
.about-split__ornament {
  display: inline-block;
  width: 50px;
  height: 4px;
  background: #dad5cb;
  transform: rotate(105deg);
  transform-origin: center;
}

/* Two-column grid */
.about-split__grid {
  display: grid;
  grid-template-columns: 52% 48%;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.about-split__grid--flip {
  grid-template-columns: 40% 52%;
}

/* ── Staggered portrait images ───────────────────────────────────────────── */
.about-imgs {
  position: relative;
  height: 620px;
}

.about-imgs__a,
.about-imgs__b {
  position: absolute;
  overflow: hidden;
  border: 1px solid #ffffff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* Image A: top-left, larger */
.about-imgs__a {
  top: 0;
  left: 0;
  width: 65%;
  aspect-ratio: 386 / 532;
  z-index: 1;
}

/* Image B: bottom-right, slightly smaller, on top */
.about-imgs__b {
  bottom: 0;
  right: 0;
  width: 58%;
  aspect-ratio: 386 / 490;
  z-index: 2;
}

/* Right-side images: same diagonal layout (A top-left, B bottom-right) */
.about-imgs--right .about-imgs__a {
  top: 0;
  left: 0;
  right: auto;
}

.about-imgs--right .about-imgs__b {
  bottom: 0;
  right: 0;
  left: auto;
}

.about-imgs__a img,
.about-imgs__b img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Bilingual text content ──────────────────────────────────────────────── */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-block__en-title {
  font-family: var(--font-garamond);
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.45;
  color: #4f4a42;
  margin-bottom: 1rem;
}

.about-block__ja-title {
  font-family: var(--font-yumincho);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 600;
  line-height: 1.6;
  color: #4f4a42;
  margin-bottom: 1rem;
}

/* Body text: always visible */
.about-block__en-body p {
  font-family: var(--font-garamond);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #4c4542;
  margin-bottom: 0.75rem;
}

/* Extra text revealed by read more */
.about-block__en-extra,
.about-block__ja-extra {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.about-block__en-extra.is-expanded,
.about-block__ja-extra.is-expanded {
  max-height: 600px;
}

.about-block__ja-body p,
.about-block__ja-extra p {
  font-family: var(--font-yumincho);
  font-size: 0.9375rem;
  line-height: 2;
  color: #4c4542;
  margin-bottom: 0.5rem;
}

/* 3行クランプ（展開前） */
.about-block__ja-body p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 展開後はクランプ解除 */
.about-block.is-expanded .about-block__ja-body p {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.about-block__en-extra p {
  font-family: var(--font-garamond);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #4c4542;
  margin-bottom: 0.75rem;
}

/* ── Read more button ─────────────────────────────────────────────────────── */
.about-readmore {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
  width: 100%;
  font-family: var(--font-garamond);
  font-size: 1rem;
  color: #4c4542;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.about-readmore:hover {
  color: #c78665;
}

.about-readmore__icon {
  display: inline-block;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.3s ease;
  font-style: normal;
}

.about-readmore[aria-expanded="true"] .about-readmore__icon {
  content: "−";
}

/* SP: stacked layout */
@media (max-width: 900px) {

  .about-split__grid,
  .about-split__grid--flip {
    grid-template-columns: 1fr;
  }

  /* MAnYU: images below text */
  .about-split__grid .about-imgs {
    order: 2;
    height: 380px;
  }

  .about-split__grid .about-content {
    order: 1;
  }

  /* à la maison: images below text */
  .about-split__grid--flip .about-content {
    order: 1;
  }

  .about-split__grid--flip .about-imgs {
    order: 2;
    height: 380px;
  }

  .about-imgs__a,
  .about-imgs__b {
    width: 60%;
  }
}

/* ── Staff section ────────────────────────────────────────────────────────── */
/* Staff section: white top, #dad5cb band in lower 55% (matches Figma) */
.ab-staff {
  position: relative;
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: 0;
  background: #ffffff;
  overflow: hidden;
}

.ab-staff::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background-color: #dad5cb;
  background-image: url('../images/staff-bg-texture.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
}

.ab-staff .container {
  position: relative;
  z-index: 1;
}

.ab-staff__heading {
  margin-bottom: 3rem;
}

.ab-staff__title-en {
  font-family: var(--font-garamond);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.15em;
  color: #4f4a42;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.ab-staff__title-ja {
  font-family: var(--font-yumincho);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  color: #c78665;
  margin: 0;
}

/* PC: 3-column vertical cards */
.ab-staff__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.ab-staff-card {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 0;
  text-align: left;
  cursor: pointer;
}

/* Photo: fixed width (186px Figma) */
.ab-staff-card__photo {
  width: 186px;
  flex-shrink: 0;
  max-width: 100%;
  aspect-ratio: 186 / 249;
  overflow: hidden;
  margin: 0;
}

.ab-staff-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.ab-staff-card__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding-bottom: 0.5rem;
}

.ab-staff-card__name {
  font-family: var(--font-garamond);
  font-size: 1.05rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.04em;
  color: #4c4542;
  margin: 0;
}

.ab-staff-card__role {
  font-family: var(--font-garamond);
  font-size: 0.8125rem;
  color: #4c4542;
  margin: 0;
}

/* Profile button: white pill, 50% opacity — matches Figma */
.ab-staff-card__btn {
  display: inline-block;
  margin-top: 0;
  padding: 0.25rem 1rem;
  min-width: 58px;
  border: none;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  font-family: var(--font-garamond);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #4c4542;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  letter-spacing: 0.04em;
}

.ab-staff-card:hover .ab-staff-card__btn,
.ab-staff-card.is-active .ab-staff-card__btn {
  background: rgba(79, 74, 66, 0.85);
  color: #ffffff;
}

/* ── SP: Figma 交互レイアウト（写真が左右に張り出す） ─────────────────── */
@media (max-width: 768px) {

  /* ベージュ帯：見出し直下から底まで */
  .ab-staff::after {
    top: 115px;
    bottom: 0;
    height: auto;
  }

  .ab-staff__heading {
    margin-bottom: 1.5rem;
  }

  /* グリッド → 縦並び・gap なし */
  .ab-staff__grid {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* カード：position relative で高さ確保 */
  .ab-staff-card {
    position: relative;
    display: block;
    height: 280px;
    gap: 0;
    text-align: left;
    flex-direction: unset;
    align-items: unset;
  }

  /* 写真：デフォルトは左に張り出し */
  .ab-staff-card__photo {
    position: absolute;
    top: 0;
    left: -4px;
    right: auto;
    width: 53%;
    aspect-ratio: 186 / 249;
    height: auto;
    max-width: none;
    margin: 0;
    flex-shrink: unset;
  }

  /* テキスト：デフォルトは右半分の下寄せ */
  .ab-staff-card__info {
    position: absolute;
    bottom: 2.5rem;
    left: 55%;
    right: 0.5rem;
    padding-bottom: 0;
    align-items: flex-start;
    flex-direction: column;
    display: flex;
    gap: 0.2rem;
  }

  /* 偶数カード：写真を右・テキストを左 */
  .ab-staff-card:nth-child(even) .ab-staff-card__photo {
    left: auto;
    right: -4px;
  }

  .ab-staff-card:nth-child(even) .ab-staff-card__info {
    left: 0.75rem;
    right: auto;
    width: 48%;
  }

  /* フォントサイズ SP 調整 */
  .ab-staff-card__name {
    font-size: 1.1rem;
  }

  .ab-staff-card__role {
    font-size: 0.75rem;
  }

  .ab-staff-card__btn {
    margin-top: 0.5rem;
  }
}

/* ── CTA grid (Event / Onlineshop) ───────────────────────────────────────── */
.ab-cta-section {
  background: linear-gradient(to bottom, #ffffff 30%, #dad5cb 30%);
  padding: 1rem clamp(1rem, 4vw, 3rem) 2.5rem;
  margin-top: 100px;
}

.ab-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1024px;
  margin-inline: auto;
  gap: 1.25rem;
}

.ab-cta-grid__item {
  position: relative;
  height: 248px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-decoration: none;
  background: #e8e3dc;
}

/* Image covers entire card — Figma: h-[400.86%] top-[-134.14%] shows center */
.ab-cta-grid__img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 10px;
}

.ab-cta-grid__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ab-cta-grid__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

/* Text: white, 66% opacity, Figma font-size 50px */
.ab-cta-grid__label {
  position: relative;
  z-index: 1;
  font-family: var(--font-garamond);
  font-size: clamp(1.75rem, 3.5vw, 3.125rem);
  font-weight: 700;
  font-style: normal;
  color: rgba(255, 255, 255, 0.66);
  text-align: center;
  padding-bottom: 1.5rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.ab-cta-grid__item:hover .ab-cta-grid__label {
  color: #ffffff;
}

@media (max-width: 600px) {
  .ab-cta-grid {
    grid-template-columns: 1fr;
  }

  .ab-cta-grid__item {
    height: 200px;
  }
}

/* ── Profile Modal ───────────────────────────────────────────────────────── */
.profile-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  overflow: hidden;
}

.profile-modal[hidden] {
  display: none;
}

.profile-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(79, 74, 66, 0.6);
  cursor: pointer;
}

.profile-modal__dialog {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  background: rgba(218, 213, 203, 0.97);
  border-radius: 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.profile-modal__close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #4c4542;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background var(--transition), color var(--transition);
  padding: 0;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.profile-modal__close:hover {
  background: rgba(79, 74, 66, 0.85);
  color: #ffffff;
}

.profile-modal__nav-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.profile-modal__nav {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: #4c4542;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition);
  padding: 0;
}

.profile-modal__nav:hover {
  color: #c78665;
}

.profile-modal__card {
  background: #ffffff;
  border-radius: 10px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1024px;
  margin-inline: auto;
}

.profile-modal__card-head {
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e8e3dc;
}

.profile-modal__label {
  font-family: var(--font-garamond);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #4c4542;
  margin: 0 0 0.25rem;
}

.profile-modal__name {
  font-family: var(--font-garamond);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  font-style: normal;
  color: #4c4542;
  letter-spacing: 0.04em;
  margin: 0 0 0.2rem;
}

.profile-modal__role {
  font-family: var(--font-garamond);
  font-size: 0.8125rem;
  color: #4c4542;
  margin: 0;
}

.profile-modal__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.profile-modal__body-en p {
  font-family: var(--font-garamond);
  font-size: 0.9375rem;
  line-height: 1.85;
  color: #4c4542;
  margin-bottom: 0.75rem;
}

.profile-modal__body-ja p {
  font-family: var(--font-yumincho);
  font-size: 0.875rem;
  line-height: 2;
  color: #4c4542;
  margin-bottom: 0.5rem;
}

@media (max-width: 640px) {
  .profile-modal__body {
    grid-template-columns: 1fr;
  }

  .profile-modal__dialog {
    padding: 1rem 1rem 3rem;
  }

  .profile-modal__close {
    top: 0.75rem;
    right: 0.75rem;
  }
}

/* ==========================================================================
   Experience / Event Page  (page-experience.php)
   ========================================================================== */

/* ── Page Hero: contact CTA circle ────────────────────────────────────────── */
.page-hero--experience {
  height: 500px;
  margin-top: 0;
  overflow: visible;
  background: #fff;
}

.page-hero--experience .page-hero__img {
  opacity: 1;
  object-position: center center;
}

.page-hero--experience .page-hero__overlay {
  background: rgba(0, 0, 0, 0.08);
}

.page-hero--experience .page-hero__content {
  left: calc(50% - 512px);
  bottom: 78px;
  transform: none;
}

.page-hero--experience .page-hero__title {
  text-transform: none;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 56px;
  color: #fff;
}

.site-main--experience .page-hero__contact-cta {
  right: calc(50% - 640px);
  bottom: -94px;
}

.page-hero__contact-cta {
  position: absolute;
  right: clamp(1.5rem, 8vw, 10rem);
  bottom: clamp(1.5rem, 4vw, 3rem);
  width: clamp(90px, 10vw, 189px);
  height: clamp(90px, 10vw, 189px);
  border-radius: 50%;
  border: 1px solid #4c4542;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  transition: background var(--transition);
  z-index: 2;
}

.page-hero__contact-cta:hover {
  background: rgba(255, 255, 255, 0.95);
}

.page-hero__contact-cta__script {
  font-family: 'Great Vibes', var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  color: #4c4542;
  line-height: 1;
}

.page-hero__contact-cta__ja {
  font-family: var(--font-yumincho);
  font-size: clamp(0.5rem, 0.8vw, 0.8125rem);
  color: #4c4542;
  letter-spacing: 0.05em;
}

/* ── Page intro heading ────────────────────────────────────────────────────── */
.ev-intro {
  padding: 150px var(--container-pad) 58px;
  text-align: center;
}

.ev-intro__title {
  font-family: var(--font-garamond);
  font-size: 44px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.15em;
  color: #4c4542;
  margin: 0 0 0.75rem;
}

.ev-intro__ornament {
  font-family: var(--font-yumincho);
  font-size: 0.875rem;
  color: #c78665;
  letter-spacing: 0.15em;
  margin: 0;
}

.site-main--experience .ev-gallery {
  padding-top: 0;
}

.site-main--experience .ev-section {
  padding-block: 70px;
}

.site-main--experience .ev-section__hd {
  position: relative;
  max-width: 1024px;
  margin-inline: auto;
  margin-bottom: 58px;
  text-align: center;
}

.site-main--experience .ev-section__hd::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 19px;
  left: 0;
  right: 0;
  height: 1px;
  background: #dad5cb;
}

.site-main--experience .ev-section__title {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-inline: 24px;
  background: #fff;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0;
  margin: 0;
}

.site-main--experience .ev-section__title::before,
.site-main--experience .ev-section__title::after {
  content: none;
}

.site-main--experience .ev-section__title-ja {
  position: relative;
  z-index: 1;
  display: block;
  width: max-content;
  max-width: calc(100% - 32px);
  margin: 6px auto 0;
  padding-inline: 18px;
  background: #fff;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.site-main--experience .ev-section__divider {
  display: none;
}

.site-main--experience .ev-section__body {
  grid-template-columns: 512px 452px;
  gap: 58px;
}

.site-main--experience .ev-section__img {
  aspect-ratio: auto;
  height: 404px;
}

.site-main--experience .ev-text-pair__en {
  margin-bottom: 44px;
}

.site-main--experience .ev-text-pair__en p,
.site-main--experience .ev-text-pair__ja p {
  margin-bottom: 0.75rem;
}

.site-main--experience .ev-readmore {
  display: flex;
  width: max-content;
  margin: 12px auto 0;
  justify-content: center;
}

.site-main--experience .ev-readmore__icon {
  min-width: 13px;
  text-align: center;
}

@media (max-width: 768px) {
  .page-hero--experience {
    height: 250px;
    overflow: visible;
  }

  .page-hero--experience .page-hero__img {
    object-position: center 45%;
  }

  .page-hero--experience .page-hero__content {
    left: 42px;
    bottom: 34px;
    padding: 0;
  }

  .page-hero--experience .page-hero__title {
    font-size: 48px;
    letter-spacing: 0.15em;
  }

  .site-main--experience .page-hero__contact-cta {
    right: 25px;
    bottom: -56px;
    width: 113px;
    height: 113px;
  }

  .ev-intro {
    padding: 70px 20px 42px;
  }

  .ev-intro__title {
    font-size: 32px;
    line-height: 32px;
    letter-spacing: 0.15em;
  }

  .site-main--experience .ev-gallery__item {
    flex-basis: 162.5px;
    height: 202px;
  }

  .site-main--experience .ev-section {
    padding-block: 58px;
  }

  .site-main--experience .ev-section__hd {
    max-width: calc(100% - 40px);
    margin-bottom: 28px;
  }

  .site-main--experience .ev-section__hd::before {
    top: 14px;
  }

  .site-main--experience .ev-section__title {
    font-size: 22px;
    line-height: 28px;
    padding-inline: 14px;
  }

  .site-main--experience .ev-section__title-ja {
    margin-top: 4px;
    padding-inline: 12px;
    font-size: 14px;
    line-height: 16px;
  }

  .site-main--experience .ev-section__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-inline: 0;
  }

  .site-main--experience .ev-section__img {
    width: 100%;
    height: 338px;
    border-inline: 0;
  }

  .site-main--experience .ev-section__text {
    padding-inline: 20px;
  }

  .site-main--experience .ev-section--img-right .ev-section__text {
    order: 2;
  }

  .site-main--experience .ev-section--img-right .ev-section__img {
    order: 1;
  }

  .site-main--experience .ev-text-pair__en {
    margin-bottom: 34px;
  }
}

/* ── Gallery Slider ────────────────────────────────────────────────────────── */
.ev-gallery {
  padding: clamp(1rem, 2vw, 2rem) 0 clamp(3rem, 5vw, 4.5rem);
}

.ev-gallery__heading {
  font-family: var(--font-garamond);
  font-size: clamp(1.25rem, 2vw, 1.875rem);
  font-weight: 700;
  font-style: normal;
  color: #4f4a42;
  text-align: center;
  margin: 0 0 1.5rem;
}

.ev-gallery__wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-inline: clamp(2rem, 5vw, 4.5rem);
}

.ev-gallery__track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  flex: 1;
}

.ev-gallery__track::-webkit-scrollbar {
  display: none;
}

.ev-gallery__track.is-grabbing {
  cursor: grabbing;
}

.ev-gallery__item {
  flex: 0 0 325px;
  height: 404px;
  scroll-snap-align: start;
  overflow: hidden;
  background: var(--color-border);
}

.ev-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

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

.ev-gallery__placeholder {
  width: 100%;
  height: 100%;
  background: #e8e4de;
}

.ev-gallery__arrow {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #4c4542;
  padding: 0;
  width: 40px;
  height: 40px;
  transition: opacity var(--transition), color var(--transition);
}

.ev-gallery__arrow:hover {
  color: #c78665;
}

@media (max-width: 768px) {
  .ev-gallery__item {
    flex: 0 0 calc(100vw - 6rem);
    height: 260px;
  }

  .ev-gallery__wrap {
    padding-inline: 1.5rem;
  }
}

/* ── Content Sections (image + text split) ─────────────────────────────────── */
.ev-section {
  padding-block: clamp(4rem, 8vw, 6rem);
}

.ev-section__hd {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.ev-section__title {
  font-family: var(--font-garamond);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  font-style: normal;
  color: #4f4a42;
  margin: 0 0 0.25rem;
}

.ev-section__title-ja {
  font-family: var(--font-yumincho);
  font-size: 0.875rem;
  color: #4f4a42;
  margin: 0 0 1.5rem;
  letter-spacing: 0.1em;
}

.ev-section__divider {
  width: clamp(4rem, 8vw, 8rem);
  height: 1px;
  background: #dad5cb;
  margin: 0 auto;
}

.ev-section__body {
  max-width: 1024px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.ev-section--img-right .ev-section__body>.ev-section__img {
  order: 2;
}

.ev-section--img-right .ev-section__body>.ev-section__text {
  order: 1;
}

.ev-section__img {
  width: 100%;
  aspect-ratio: 512 / 404;
  overflow: hidden;
  background: var(--color-border);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.ev-section__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ev-section__img-placeholder {
  width: 100%;
  height: 100%;
  background: #e8e4de;
}

@media (max-width: 768px) {
  .ev-section__body {
    grid-template-columns: 1fr;
  }

  .ev-section--img-right .ev-section__body>.ev-section__img {
    order: 0;
  }

  .ev-section--img-right .ev-section__body>.ev-section__text {
    order: 0;
  }
}

/* ── Text Pair (EN + JA with read more) ──────────────────────────────────── */
.ev-text-pair__en {
  margin-bottom: 1.5rem;
}

.ev-text-pair__en p {
  font-family: var(--font-garamond);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #4c4542;
  margin-bottom: 0.5rem;
}

.ev-text-pair__ja p {
  font-family: var(--font-yumincho);
  font-size: 0.9375rem;
  line-height: 2;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.ev-text-pair__extra[hidden] {
  display: none;
}

/* ── Read More button ──────────────────────────────────────────────────────── */
.ev-readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
  font-family: var(--font-garamond);
  font-size: 1rem;
  color: #4c4542;
  letter-spacing: 0.04em;
  transition: color var(--transition);
  margin-top: 0.5rem;
}

.ev-readmore:hover {
  color: #c78665;
}

.ev-readmore[aria-expanded="true"] .ev-readmore__icon {
  display: inline-block;
}

/* ── CTA Image Grid 2×2 ────────────────────────────────────────────────────── */
/* Full-width background wrapper */
.ev-cta-section {
  background: linear-gradient(to bottom, #ffffff 30%, #dad5cb 30%);
  padding: 1rem clamp(1rem, 4vw, 3rem) 2.5rem;
  margin-top: 100px;
}

/* Grid: 1024px centered, no background */
.ev-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1024px;
  margin-inline: auto;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  background: transparent;
  padding: 0;
}

.ev-cta-grid__item {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: clamp(140px, 15vw, 248px);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
  background: #c8bfb0;
}

.ev-cta-grid__img-wrap {
  position: absolute;
  inset: 0;
}

.ev-cta-grid__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.ev-cta-grid__item:hover .ev-cta-grid__img-wrap img {
  transform: scale(1.05);
}

.ev-cta-grid__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: background var(--transition);
}

.ev-cta-grid__item:hover .ev-cta-grid__overlay {
  background: rgba(0, 0, 0, 0.3);
}

.ev-cta-grid__label {
  position: relative;
  z-index: 1;
  font-family: var(--font-garamond);
  font-size: clamp(1.5rem, 2.5vw, 3.125rem);
  font-weight: 700;
  font-style: normal;
  color: rgba(255, 255, 255, 0.66);
  text-align: center;
  letter-spacing: 0.04em;
}

@media (max-width: 600px) {
  .ev-cta-section {
    padding: 1.5rem;
  }

  .ev-cta-grid {
    grid-template-columns: 1fr;
  }

  .ev-cta-grid__item {
    height: 160px;
  }
}

/* ==========================================================================
   Weddings Page  (page-weddings.php)
   ========================================================================== */

/* ── Hero: page title style ────────────────────────────────────────────────── */
.page-hero--weddings {
  height: 500px;
  overflow: visible;
  background: #fff;
}

.page-hero--weddings .page-hero__img {
  opacity: 1;
  object-position: center center;
}

.page-hero--weddings .page-hero__overlay {
  background: rgba(0, 0, 0, 0.12);
}

.page-hero--weddings .page-hero__content {
  left: calc(50% - 512px);
  bottom: 78px;
  transform: none;
}

.page-hero--weddings .page-hero__title {
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 56px;
  color: #fff;
}

.site-main--weddings .page-hero__contact-cta {
  right: calc(50% - 640px);
  bottom: -94px;
}

/* ── Hero deco (right side branch illustration) ──────────────────────────── */
.wd-hero-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.wd-hero-deco--right {
  right: calc(50% - 630px);
  top: 594px;
  height: 494px;
  width: 458px;
  overflow: hidden;
}

.wd-hero-deco--right img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: right top;
}

/* ── Intro: Weddings — Your Day. Your Way. ───────────────────────────────── */
.wd-intro {
  padding: 150px var(--container-pad) 64px;
  text-align: center;
}

.wd-intro__title {
  font-family: var(--font-garamond);
  color: #4c4542;
  margin: 0 0 1.5rem;
}

.wd-intro__title-main {
  display: block;
  font-size: 44px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.15em;
}

.wd-intro__title-sub {
  display: block;
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.08em;
}

.wd-intro__divider {
  width: 50px;
  height: 5px;
  background: #dad5cb;
  margin: 0 auto;
  transform: rotate(105deg);
}

/* ── Wedding Intro: 2-col (A Wedding Made for You) ───────────────────────── */
.wd-wedding-intro {
  position: relative;
  overflow: hidden;
  padding-block: 0 88px;
}

.wd-wedding-intro__body {
  max-width: 1024px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: grid;
  grid-template-columns: repeat(2, 480px);
  gap: 56px;
}

.wd-wedding-intro__heading-en {
  font-family: var(--font-garamond);
  font-size: 24px;
  font-weight: 700;
  font-style: normal;
  color: #4f4a42;
  line-height: 32px;
  margin: 0 0 30px;
}

.wd-wedding-intro__heading-ja {
  font-family: var(--font-yumincho);
  font-size: 20px;
  font-weight: 600;
  color: #4f4a42;
  line-height: 32px;
  margin: 0 0 30px;
  letter-spacing: 0.06em;
}

.wd-wedding-intro__text-en p {
  font-family: var(--font-garamond);
  font-size: 1.0625rem;
  line-height: 30px;
  color: #4c4542;
  margin-bottom: 0.75rem;
}

.wd-wedding-intro__text-ja p {
  font-family: var(--font-yumincho);
  font-size: 0.9375rem;
  line-height: 30px;
  color: #4c4542;
  margin-bottom: 0.75rem;
}

.wd-wedding-intro__extra-en[hidden],
.wd-wedding-intro__extra-ja[hidden] {
  display: none;
}

.wd-wedding-intro__extra-en p {
  font-family: var(--font-garamond);
  font-size: 17px;
  line-height: 30px;
  color: #4c4542;
  margin-bottom: 0.75rem;
}

.wd-wedding-intro__extra-ja p {
  font-family: var(--font-yumincho);
  font-size: 15px;
  line-height: 30px;
  color: #4c4542;
  margin-bottom: 0.75rem;
}

/* Left deco illustration */
.wd-intro-deco {
  position: absolute;
  pointer-events: none;
}

.wd-intro-deco--left {
  left: -111px;
  bottom: -360px;
  width: 460px;
  opacity: 1;
}

.wd-intro-deco--left img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .page-hero--weddings {
    height: 250px;
    overflow: visible;
  }

  .page-hero--weddings .page-hero__img {
    object-position: center 45%;
  }

  .page-hero--weddings .page-hero__content {
    left: 42px;
    bottom: 34px;
    padding: 0;
  }

  .page-hero--weddings .page-hero__title {
    font-size: 48px;
    letter-spacing: 0.15em;
  }

  .site-main--weddings .page-hero__contact-cta {
    right: 25px;
    bottom: -56px;
    width: 113px;
    height: 113px;
  }

  .wd-intro {
    padding: 70px 20px 46px;
  }

  .wd-intro__title-main {
    font-size: 32px;
    line-height: 32px;
    letter-spacing: 0.15em;
  }

  .wd-intro__title-sub {
    font-size: 16px;
    line-height: 1.5;
  }

  .wd-intro__divider {
    width: 40px;
    height: 4px;
  }

  .wd-wedding-intro {
    padding-block: 0 58px;
  }

  .wd-wedding-intro__body {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-inline: 20px;
  }

  .wd-intro-deco {
    display: none;
  }

  .wd-hero-deco {
    display: none;
  }
}

.site-main--weddings .ev-gallery {
  padding-top: 28px;
}

.site-main--weddings .ev-section {
  padding-block: 70px;
}

.site-main--weddings .ev-section__hd {
  margin-bottom: 58px;
}

.site-main--weddings .ev-section__title {
  font-size: 24px;
  line-height: 32px;
}

.site-main--weddings .ev-section__title::before,
.site-main--weddings .ev-section__title::after {
  content: "—";
  margin-inline: 0.35em;
}

.site-main--weddings .ev-section__body {
  grid-template-columns: 512px 452px;
  gap: 58px;
}

.site-main--weddings .ev-section__img {
  aspect-ratio: auto;
  height: 404px;
}

.site-main--weddings .ev-text-pair__en {
  margin-bottom: 44px;
}

.site-main--weddings .ev-text-pair__en p,
.site-main--weddings .ev-text-pair__ja p {
  margin-bottom: 0.75rem;
}

.site-main--weddings .ev-readmore {
  display: flex;
  width: max-content;
  margin: 12px auto 0;
  justify-content: center;
}

.site-main--weddings .ev-readmore__icon {
  min-width: 13px;
  text-align: center;
}

.site-main--weddings .wd-instagram {
  margin-top: 64px;
}

@media (max-width: 768px) {
  .site-main--weddings .ev-gallery {
    padding-top: 28px;
  }

  .site-main--weddings .ev-gallery__item {
    flex-basis: 162.5px;
    height: 202px;
  }

  .site-main--weddings .ev-section {
    padding-block: 58px;
  }

  .site-main--weddings .ev-section__hd {
    margin-bottom: 28px;
  }

  .site-main--weddings .ev-section__title {
    font-size: 22px;
    line-height: 28px;
  }

  .site-main--weddings .ev-section__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-inline: 0;
  }

  .site-main--weddings .ev-section__img {
    width: 100%;
    height: 338px;
    border-inline: 0;
  }

  .site-main--weddings .ev-section__text {
    padding-inline: 20px;
  }

  .site-main--weddings .ev-section--img-right .ev-section__body>.ev-section__img,
  .site-main--weddings .ev-section--img-right .ev-section__body>.ev-section__text {
    order: initial;
  }

  .site-main--weddings .ev-section--img-right .ev-section__text {
    order: 2;
  }

  .site-main--weddings .ev-section--img-right .ev-section__img {
    order: 1;
  }

  .site-main--weddings .ev-text-pair__en {
    margin-bottom: 34px;
  }
}

/* ── Instagram banner ─────────────────────────────────────────────────────── */
.wd-instagram {
  position: relative;
  height: clamp(220px, 25vw, 381px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wd-instagram__img-wrap {
  position: absolute;
  inset: 0;
}

.wd-instagram__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wd-instagram__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.wd-instagram__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
}

.wd-instagram__icon {
  width: clamp(40px, 5vw, 65px);
  height: clamp(40px, 5vw, 65px);
}

.wd-instagram__label {
  font-family: var(--font-garamond);
  font-size: clamp(1.25rem, 2vw, 1.875rem);
  font-weight: 700;
  margin: 0;
  color: #fff;
}

/* ==========================================================================
   Flowers Page  (page-flowers.php)
   ========================================================================== */

/* ── Hero: dark text (lighter botanical background) ────────────────────────── */
.site-main--flowers {
  overflow-x: clip;
}

.page-hero--flowers .page-hero__overlay {
  background: rgba(0, 0, 0, 0.1);
}

.page-hero--flowers {
  height: 500px;
  overflow: visible;
}

.page-hero--flowers .page-hero__img {
  opacity: 1;
  object-position: center 60%;
}

.page-hero--flowers .page-hero__content {
  bottom: 34px;
}

.page-hero--flowers .page-hero__content--dark .page-hero__title {
  color: #4c4542;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 56px;
}

.site-main--flowers .page-hero__contact-cta {
  bottom: -70px;
}

/* ── Hero botanical deco ──────────────────────────────────────────────────── */
.fl-hero-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
}

.fl-hero-deco--tr {
  right: 0;
  top: 515px;
  height: clamp(260px, 24vw, 420px);
  width: clamp(250px, 29vw, 500px);
  overflow: hidden;
}

.fl-hero-deco--tr img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: right top;
}

/* ── Body botanical deco ──────────────────────────────────────────────────── */
.fl-body-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.fl-body-deco--bl {
  left: calc(50% - 1375px);
  bottom: -496px;
  width: 813px;
  opacity: 1;
}

.fl-body-deco--bl img {
  width: 100%;
  height: auto;
}

/* ── Generic section ──────────────────────────────────────────────────────── */
.fl-section {
  position: relative;
  padding-block: clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}

.fl-section--intro {
  padding-block: 150px 96px;
}

.fl-section--cream {
  background: #f7f4f0;
  padding-block: 145px 120px;
}

/* ── Section headings ─────────────────────────────────────────────────────── */
.fl-section__hd {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 3rem);
  max-width: 1024px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
  position: relative;
}

.fl-section__title-lg {
  font-family: var(--font-garamond);
  font-size: 44px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.15em;
  color: #4f4a42;
  line-height: normal;
  margin-bottom: 1.25rem;
  white-space: nowrap;
}

.fl-section__ornament {
  font-family: var(--font-yumincho);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.15em;
  margin: 0 0 1.25rem;
  color: #c78665;
}

.fl-section__divider-bar {
  display: inline-block;
  width: 50px;
  height: 4px;
  background: #dad5cb;
  transform: rotate(105deg);
  transform-origin: center;
}

.site-main--flowers .fl-section__hd .fl-section__divider-bar {
  display: block;
  margin-inline: auto;
}

.site-main--flowers .ev-readmore {
  display: flex;
  width: max-content;
  margin: 0.5rem auto 0;
  justify-content: center;
}

.site-main--flowers .fl-bilingual-body>.js-readmore-fl,
.site-main--flowers .fl-bilingual-body>.js-readmore-fl-ja {
  justify-self: center;
}

.site-main--flowers .fl-content-split__text .ev-readmore,
.site-main--flowers .fl-ikebana-card .ev-readmore {
  margin-inline: auto;
}

/* ── Sub-heading with ornament lines ─────────────────────────────────────── */
.fl-sub-hd {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  max-width: 900px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.fl-sub-hd--grid {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.fl-sub-hd__line {
  flex: 1;
  height: 1px;
  background: #dad5cb;
}

.fl-sub-hd__text {
  text-align: center;
  flex-shrink: 0;
}

.fl-sub-hd__en {
  font-family: var(--font-garamond);
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  font-weight: 700;
  color: #4f4a42;
  margin: 0;
}

.fl-sub-hd__ja {
  font-family: var(--font-yumincho);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin: 0.25rem 0 0;
}

/* ── Bilingual intro body text ────────────────────────────────────────────── */
.fl-bilingual-body {
  max-width: 1024px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 480px));
  column-gap: 64px;
  align-items: start;
}

.fl-bilingual-body>.fl-bilingual-body__en:not(.fl-bilingual-body__extra) {
  grid-column: 1;
  grid-row: 1;
}

.fl-bilingual-body>.fl-bilingual-body__extra {
  grid-column: 1;
}

.fl-bilingual-body>.js-readmore-fl {
  grid-column: 1;
  justify-self: center;
}

.fl-bilingual-body>.fl-bilingual-body__ja:not(.fl-bilingual-body__extra-ja) {
  grid-column: 2;
  grid-row: 1;
}

.fl-bilingual-body>.fl-bilingual-body__extra-ja {
  grid-column: 2;
}

.fl-bilingual-body>.js-readmore-fl-ja {
  grid-column: 2;
  justify-self: center;
}

.fl-bilingual-body__en p,
.fl-bilingual-body__ja p {
  margin-bottom: 0.75rem;
}

.fl-bilingual-body__en p {
  font-family: var(--font-garamond);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #4c4542;
}

.fl-bilingual-body__ja p {
  font-family: var(--font-yumincho);
  font-size: 0.9375rem;
  line-height: 2;
  color: #1a1a1a;
}

.fl-bilingual-body__extra[hidden],
.fl-bilingual-body__extra-ja[hidden] {
  display: none;
}

/* ── Full-width landscape strip ──────────────────────────────────────────── */
.fl-strip {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: var(--color-border);
}

.fl-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fl-strip__placeholder {
  width: 100%;
  height: 100%;
  background: #e8e4de;
}

/* ── Ikebana grid 2-col ────────────────────────────────────────────────────── */
.fl-ikebana-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px 24px;
  max-width: 1024px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.fl-ikebana-card__img {
  aspect-ratio: 500 / 311;
  overflow: hidden;
  background: var(--color-border);
  margin-bottom: 20px;
  border: 1px solid #fff;
}

.fl-ikebana-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.fl-ikebana-card__img:hover img {
  transform: scale(1.04);
}

.fl-ikebana-card__placeholder {
  width: 100%;
  height: 100%;
  background: #e8e4de;
}

.fl-ikebana-card__en-title {
  font-family: var(--font-garamond);
  font-size: 24px;
  font-weight: 700;
  font-style: normal;
  color: #4f4a42;
  line-height: 32px;
  margin: 0 24px;
}

.fl-ikebana-card__en-body p,
.fl-ikebana-card__en-extra p {
  font-family: var(--font-garamond);
  font-size: 17px;
  line-height: 30px;
  color: #4c4542;
  margin: 0 24px 0.5rem;
}

.fl-ikebana-card__en-body p,
.fl-ikebana-card__ja-body p,
.fl-content-split__en,
.fl-content-split__ja {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.fl-ikebana-card__en-body.is-expanded p,
.fl-ikebana-card__ja-body.is-expanded p,
.fl-content-split__en.is-expanded,
.fl-content-split__ja.is-expanded {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.fl-ikebana-card__ja-title {
  font-family: var(--font-yumincho);
  font-size: 20px;
  font-weight: 600;
  color: #4f4a42;
  line-height: 32px;
  margin: 24px 24px 0;
}

.fl-ikebana-card__ja-body p,
.fl-ikebana-card__ja-extra p {
  font-family: var(--font-yumincho);
  font-size: 15px;
  line-height: 30px;
  color: #1a1a1a;
  margin: 0 24px 0.5rem;
}

.fl-ikebana-card__en-extra[hidden],
.fl-ikebana-card__ja-extra[hidden] {
  display: none;
}

@media (max-width: 768px) {
  .page-hero--flowers {
    height: 250px;
    overflow: visible;
  }

  .page-hero--flowers .page-hero__content {
    bottom: 18px;
    left: 0;
    transform: none;
    padding-inline: 42px 20px;
  }

  .page-hero--flowers .page-hero__content--dark .page-hero__title {
    font-size: 48px;
    letter-spacing: 0.15em;
  }

  .page-hero--flowers .page-hero__img {
    object-position: center 42%;
  }

  .site-main--flowers .page-hero__contact-cta {
    right: 25px;
    bottom: -70px;
    width: 113px;
    height: 113px;
  }

  .site-main--flowers .page-hero__contact-cta__script {
    font-size: 24px;
  }

  .site-main--flowers .page-hero__contact-cta__ja {
    font-size: 8px;
  }

  .fl-section {
    padding-block: 70px;
  }

  .fl-section--intro {
    padding-block: 70px 64px;
  }

  .fl-section--cream {
    padding-block: 70px 72px;
  }

  .fl-section__hd {
    margin-bottom: 42px;
    padding-inline: 20px;
  }

  .fl-section__title-lg {
    font-size: 32px;
    line-height: 32px;
    letter-spacing: 0.15em;
    margin-bottom: 18px;
    white-space: normal;
  }

  .fl-section__ornament {
    font-size: 14px;
    line-height: 16px;
  }

  .fl-section__divider-bar {
    width: 40px;
    height: 4px;
  }

  .fl-bilingual-body {
    display: block;
    padding-inline: 20px;
  }

  .fl-bilingual-body__en:not(.fl-bilingual-body__extra),
  .fl-bilingual-body__ja:not(.fl-bilingual-body__extra-ja) {
    max-height: 120px;
    overflow: hidden;
  }

  .fl-bilingual-body__en.is-expanded,
  .fl-bilingual-body__ja.is-expanded {
    max-height: none;
    overflow: visible;
  }

  .fl-bilingual-body>.js-readmore-fl,
  .fl-bilingual-body>.js-readmore-fl-ja {
    margin-inline: auto;
  }

  .fl-bilingual-body__en p {
    font-size: 17px;
    line-height: 30px;
  }

  .fl-bilingual-body__ja p {
    font-size: 15px;
    line-height: 30px;
  }

  .fl-strip {
    height: 120px;
  }

  .fl-ikebana-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-inline: 0;
  }

  .fl-hero-deco,
  .fl-body-deco {
    display: none;
  }

  .fl-ikebana-card__img {
    width: 100%;
    aspect-ratio: 428 / 266;
    margin-bottom: 10px;
  }

  .fl-ikebana-card__en-title,
  .fl-ikebana-card__en-body p,
  .fl-ikebana-card__en-extra p,
  .fl-ikebana-card__ja-title,
  .fl-ikebana-card__ja-body p,
  .fl-ikebana-card__ja-extra p {
    margin-left: 20px;
    margin-right: 20px;
  }

  .fl-ikebana-card__en-title {
    font-size: 24px;
    line-height: 32px;
  }

  .fl-ikebana-card__ja-title {
    font-size: 20px;
    line-height: 32px;
  }
}

/* ── Content split (image + text) ────────────────────────────────────────── */
.fl-content-split {
  max-width: 1024px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.fl-content-split--reverse .fl-content-split__img {
  order: 2;
}

.fl-content-split__img {
  aspect-ratio: 512 / 404;
  overflow: hidden;
  background: var(--color-border);
  border: 1px solid #fff;
}

.fl-content-split__img--tall {
  aspect-ratio: 454 / 747;
  /* Figma: 454×747px portrait */
}

.site-main--flowers #workshop .fl-content-split__img--tall {
  aspect-ratio: 512 / 414;
}

.fl-content-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fl-content-split__placeholder {
  width: 100%;
  height: 100%;
  background: #e8e4de;
}

.fl-content-split__subhead {
  font-family: var(--font-garamond);
  font-size: 24px;
  font-weight: 700;
  font-style: normal;
  color: #4f4a42;
  line-height: 32px;
  margin: 0;
}

.fl-content-split__subhead-ja {
  font-family: var(--font-yumincho);
  font-size: 20px;
  font-weight: 600;
  color: #4f4a42;
  line-height: 32px;
  margin: 48px 0 0;
}

.fl-content-split__en {
  font-family: var(--font-garamond);
  font-size: 17px;
  line-height: 30px;
  color: #4c4542;
  margin-bottom: 0.5rem;
}

.fl-content-split__ja {
  font-family: var(--font-yumincho);
  font-size: 15px;
  line-height: 30px;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.site-main--flowers .fl-content-split--reverse .fl-content-split__img {
  order: 2;
}

.site-main--flowers .fl-content-split--reverse .fl-content-split__text {
  order: 1;
}

@media (max-width: 768px) {

  .fl-content-split,
  .fl-content-split--reverse {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-inline: 0;
  }

  .site-main--flowers .fl-content-split--reverse .fl-content-split__img,
  .fl-content-split--reverse .fl-content-split__img {
    order: 0;
  }

  .site-main--flowers .fl-content-split--reverse .fl-content-split__text {
    order: 0;
  }

  .fl-content-split__img {
    width: 100%;
    aspect-ratio: 428 / 338;
  }

  .fl-content-split__img--tall {
    aspect-ratio: 428 / 346;
  }

  .fl-content-split__text {
    padding-inline: 20px;
  }

  .fl-content-split__subhead {
    font-size: 22px;
    line-height: 28px;
  }

  .fl-content-split__subhead-ja {
    font-size: 18px;
    line-height: 28px;
  }
}

/* ==========================================================================
   Japanese Tea Page  (page-tea.php)
   ========================================================================== */

/* ── Hero: light overlay (botanical hero bg) ───────────────────────────── */
.page-hero--tea .page-hero__overlay--light {
  background: rgba(0, 0, 0, 0.15);
}

.page-hero--tea .page-hero__title--dark {
  color: #fff;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.15em;
}

/* Contact CTA dark variant (text white for tea dark-bg hero) */
.page-hero__contact-cta--dark {
  background: rgba(79, 74, 66, 0.85);
  border-color: rgba(255, 255, 255, 0.5);
}

.page-hero__contact-cta--dark .page-hero__contact-cta__script,
.page-hero__contact-cta--dark .page-hero__contact-cta__ja {
  color: #fff;
}

/* ── Tea hero deco (right branch illustration) ─────────────────────────── */
.tea-hero-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.tea-hero-deco--right {
  right: 0;
  top: 0;
  height: 100%;
  width: clamp(220px, 47vw, 910px);
  overflow: hidden;
}

.tea-hero-deco--right img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: right top;
}

/* ── Tea body deco (lower left) ─────────────────────────────────────────── */
.tea-body-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.tea-body-deco--bl {
  left: clamp(-8rem, -7vw, -2rem);
  bottom: -6rem;
  width: clamp(280px, 34vw, 660px);
  opacity: 0.75;
}

.tea-body-deco--bl img {
  width: 100%;
  height: auto;
}

/* ── Generic tea section ────────────────────────────────────────────────── */
.tea-section {
  position: relative;
  padding-block: clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}

/* ── History split layout ───────────────────────────────────────────────── */
.tea-history {
  max-width: 1024px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: grid;
  grid-template-columns: 454px 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.tea-history__img {
  width: 100%;
  height: clamp(500px, 55vw, 747px);
  overflow: hidden;
  background: var(--color-border);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.tea-history__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tea-history__placeholder {
  width: 100%;
  height: 100%;
  background: #e8e4de;
}

@media (max-width: 768px) {
  .tea-history {
    grid-template-columns: 1fr;
  }

  .tea-history__img {
    height: 300px;
  }

  .tea-hero-deco,
  .tea-body-deco {
    display: none;
  }
}

/* ── Tea text styles ────────────────────────────────────────────────────── */
.tea-text-head {
  font-family: var(--font-garamond);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  font-style: normal;
  color: #4f4a42;
  margin: 0 0 0.75rem;
}

.tea-text-head-ja {
  font-family: var(--font-yumincho);
  font-size: 1.125rem;
  font-weight: 600;
  color: #4f4a42;
  margin: 0 0 0.5rem;
  letter-spacing: 0.05em;
}

.tea-text-en p,
.tea-text-en-extra p {
  font-family: var(--font-garamond);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #4c4542;
  margin-bottom: 0.75rem;
}

.tea-text-ja p,
.tea-text-ja-extra p {
  font-family: var(--font-yumincho);
  font-size: 0.9375rem;
  line-height: 2;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.tea-text-en-extra[hidden],
.tea-text-ja-extra[hidden],
.tea-text-en-extra2[hidden],
.tea-text-ja-extra2[hidden] {
  display: none;
}

/* ── Product row (3-col images) ─────────────────────────────────────────── */
.tea-product-row {
  max-width: 1024px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.5rem, 1.5vw, 1.5rem);
}

.tea-product-row__item {
  aspect-ratio: 454 / 315;
  overflow: hidden;
  background: var(--color-border);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.tea-product-row__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.tea-product-row__item:hover img {
  transform: scale(1.04);
}

.tea-product-row__placeholder {
  width: 100%;
  height: 100%;
  background: #e8e4de;
}

@media (max-width: 600px) {
  .tea-product-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Contact Page  (page-contact.php)
   ========================================================================== */

/* ── Contact section (cream bg + white card) ──────────────────────────── */
.site-main--contact .page-hero {
  margin-top: 0;
}

.ct-section {
  background: #f7f4f0;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.ct-heading {
  font-family: var(--font-garamond);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.15em;
  color: #4c4542;
  text-align: center;
  margin: 0 0 clamp(2rem, 4vw, 3rem);
}

/* White card */
.ct-card {
  max-width: 1024px;
  margin-inline: auto;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #fff;
  border-radius: 20px;
}

/* ── Topic radio row ───────────────────────────────────────────────────── */
.ct-topic-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.75rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.ct-radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-family: var(--font-garamond);
  font-size: 0.9375rem;
  color: #4c4542;
}

.ct-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.ct-radio-dot {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  background: #f5f5f5;
  flex-shrink: 0;
  transition: border-color var(--transition), background var(--transition);
}

.ct-radio:checked+.ct-radio-dot {
  border-color: #4c4542;
  background: #4c4542;
}

/* ── Form fields ────────────────────────────────────────────────────────── */
.ct-form {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ct-label {
  font-family: var(--font-garamond);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #4c4542;
}

.ct-input {
  width: 100%;
  height: 69px;
  background: #f5f5f5;
  border: 1px solid #ccc;
  padding: 0 1rem;
  font-family: var(--font-garamond);
  font-size: 1rem;
  color: #4c4542;
  transition: border-color var(--transition);
}

.ct-input:focus {
  outline: none;
  border-color: #4c4542;
}

.ct-textarea {
  width: 100%;
  height: 250px;
  background: #f5f5f5;
  border: 1px solid #ccc;
  padding: 1rem;
  font-family: var(--font-garamond);
  font-size: 1rem;
  color: #4c4542;
  resize: vertical;
  transition: border-color var(--transition);
}

.ct-textarea:focus {
  outline: none;
  border-color: #4c4542;
}

/* ── Newsletter checkbox ───────────────────────────────────────────────── */
.ct-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-garamond);
  font-size: 1.0625rem;
  color: #4c4542;
  cursor: pointer;
  margin-top: 0.5rem;
}

.ct-checkbox {
  width: 22px;
  height: 22px;
  background: #f5f5f5;
  border: 1px solid #fff;
  accent-color: #4c4542;
  flex-shrink: 0;
}

/* ── Submit button ─────────────────────────────────────────────────────── */
.ct-submit-row {
  display: flex;
  justify-content: center;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.ct-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 265px;
  height: 58px;
  background: #4c4542;
  color: #fff;
  font-family: var(--font-garamond);
  font-size: 1.0625rem;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background var(--transition);
}

.ct-submit-btn:hover {
  background: #333;
}

/* CF7 wrapper */
.ct-cf7 {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Messages */
.ct-message {
  padding: 1rem;
  border-radius: 6px;
  font-family: var(--font-garamond);
  font-size: 1rem;
}

.ct-message--success {
  background: #f0f7f0;
  color: #2a5e2a;
  border: 1px solid #b8d8b8;
}

.ct-message--error {
  background: #fdf0f0;
  color: #7a1e1e;
  border: 1px solid #dbb8b8;
}

/* ── Map section ───────────────────────────────────────────────────────── */
.ct-map {
  position: relative;
  width: 100%;
  height: clamp(280px, 28vw, 541px);
  background: rgba(79, 74, 66, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ct-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0.85;
}

.ct-map__overlay {
  position: absolute;
  inset: 0;
  background: rgba(79, 74, 66, 0.5);
  pointer-events: none;
}

.ct-map__placeholder {
  font-family: var(--font-garamond);
  font-size: 2.125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   News Archive  (archive.php)
   ========================================================================== */

/* ── Section ────────────────────────────────────────────────────────────── */
.na-section {
  max-width: 1024px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.na-heading {
  font-family: var(--font-garamond);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.15em;
  color: #4c4542;
  text-align: center;
  margin: 0 0 clamp(2rem, 4vw, 3rem);
}

/* ── List ───────────────────────────────────────────────────────────────── */
.na-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--color-border);
}

.na-item {
  border-bottom: 1px solid var(--color-border);
}

.na-item__inner {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  padding-block: clamp(1rem, 2vw, 1.5rem);
  padding-inline: 1rem;
}

.na-item__date {
  font-family: var(--font-nav);
  font-size: 0.75rem;
  color: #4c4542;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 4.5rem;
}

.na-item__body {
  flex: 1;
}

.na-item__title {
  font-family: var(--font-garamond);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6;
  color: #4f4a42;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.na-item__title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

.na-item__title a:hover {
  color: #c78665;
}

.na-item__more {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
  font-family: var(--font-garamond);
  font-size: 1rem;
  color: #4c4542;
  text-decoration: none;
  transition: color var(--transition);
  white-space: nowrap;
}

.na-item__more:hover {
  color: #c78665;
}

.na-item__more-arrow {
  font-size: 0.875rem;
}

/* ── Pagination ─────────────────────────────────────────────────────────── */
.na-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.na-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.5rem;
  font-family: var(--font-garamond);
  font-size: 0.9375rem;
  color: #4c4542;
  border: 1px solid var(--color-border);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.na-pagination .page-numbers.current,
.na-pagination .page-numbers:hover {
  background: #4c4542;
  color: #fff;
  border-color: #4c4542;
}

.na-empty {
  text-align: center;
  font-family: var(--font-garamond);
  font-size: 1rem;
  color: var(--color-text-muted);
  padding: 3rem 0;
}

/* ==========================================================================
   News Single  (single.php)
   ========================================================================== */

/* ── Article layout ─────────────────────────────────────────────────────── */
.ns-article {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.ns-inner {
  max-width: 1024px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: grid;
  grid-template-columns: 387px 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

/* ── Left: images ───────────────────────────────────────────────────────── */
.ns-media {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ns-media__main {
  aspect-ratio: 387 / 533;
  overflow: hidden;
  background: var(--color-border);
}

.ns-media__img,
.ns-media__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ns-media__placeholder {
  aspect-ratio: 387 / 533;
  background: #e8e4de;
}

.ns-media__secondary {
  aspect-ratio: 387 / 279;
  overflow: hidden;
  background: var(--color-border);
}

.ns-media__secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Right: text ────────────────────────────────────────────────────────── */
.ns-text__title {
  font-family: var(--font-garamond);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  font-style: normal;
  color: #4f4a42;
  line-height: 1.5;
  margin: 0 0 1.5rem;
}

.ns-text__body {
  font-family: var(--font-garamond);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #4c4542;
  margin-bottom: 2rem;
}

.ns-text__body p {
  margin-bottom: 1em;
}

.ns-text__ja-title {
  font-family: var(--font-yumincho);
  font-size: 1.25rem;
  font-weight: 600;
  color: #4f4a42;
  margin: 0 0 0.75rem;
}

.ns-text__ja-body {
  font-family: var(--font-yumincho);
  font-size: 0.9375rem;
  line-height: 2;
  color: #4c4542;
  margin-bottom: 2rem;
}

.ns-text__ja-body p {
  margin-bottom: 1em;
}

/* ── Post navigation ────────────────────────────────────────────────────── */
.ns-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.ns-nav__link {
  font-family: var(--font-garamond);
  font-size: 0.9375rem;
  color: #4c4542;
  text-decoration: none;
  transition: color var(--transition);
}

.ns-nav__link:hover {
  color: #c78665;
}

.ns-nav__link--archive {
  margin-left: auto;
}

@media (max-width: 768px) {
  .ns-inner {
    grid-template-columns: 1fr;
  }

  .ns-nav__link--archive {
    margin-left: 0;
  }
}

/* ==========================================================================
   Tea page FB fixes  (fix/20260531-001-tea-page-fb)
   ========================================================================== */

/* [3] Centered heading: The Soul of Japanese Tea */
.tea-main-heading {
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) var(--container-pad) clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1024px;
  margin-inline: auto;
}

.tea-main-heading__title {
  font-family: var(--font-garamond);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.15em;
  color: #4f4a42;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.tea-main-heading__ja {
  font-family: var(--font-yumincho);
  font-size: 0.875rem;
  color: #c78665;
  letter-spacing: 0.15em;
  margin: 0 0 1.25rem;
}

.tea-main-heading__divider {
  display: inline-block;
  width: 50px;
  height: 4px;
  background: #dad5cb;
  transform: rotate(105deg);
  transform-origin: center;
}

/* [4][5] 3-line clamp for EN/JA body text in tea cards */
.tea-body-clamp p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* [4][5] Read more centered */
.tea-readmore-center {
  display: flex !important;
  justify-content: center;
  width: 100%;
  margin-top: 0.5rem;
}

/* fl-section--cream headings: centered (Figma: calc(50%-208px)) */
.fl-section--cream .fl-section__hd {
  text-align: center;
}

.fl-section--cream .fl-section__hd .fl-section__divider-bar {
  display: inline-block;
  width: 50px;
  height: 4px;
  background: #dad5cb;
  transform: rotate(105deg);
  transform-origin: center;
}

/* [8] Product description: 1-col centered */
.tea-product-desc {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.tea-product-desc__en p {
  font-family: var(--font-garamond);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #4c4542;
  margin-bottom: 0.75rem;
}

.tea-product-desc__ja {
  margin-top: 1.5rem;
}

.tea-product-desc__ja p {
  font-family: var(--font-yumincho);
  font-size: 0.9375rem;
  line-height: 2;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

/* [9] Tea page fl-content-split: ALWAYS left=image, right=text — no reverse */
.site-main--tea .fl-content-split--reverse .fl-content-split__img {
  order: 0 !important;
}

.site-main--tea .fl-content-split--reverse .fl-content-split__text {
  order: 0 !important;
}

/* ==========================================================================
   Tea page FB-2: parallax deco, 3-line clamp, fonts, + icon
   ========================================================================== */

/* ── tea-top-wrap: contains hero + history, decos scroll within ─────────── */
.tea-top-wrap {
  position: relative;
  overflow: hidden;
  /* clips decos at wrap boundary, not hero boundary */
}

/* ── Right deco (matcha/chashaku) ─────────────────────────────────────────── */
.tea-deco-right {
  position: absolute;
  right: -22%;
  top: clamp(150px, 36vw, 580px);
  width: clamp(260px, 47vw, 910px);
  z-index: 3;
  pointer-events: none;
  will-change: transform;
}

.tea-deco-right img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Left deco (two chasen) ──────────────────────────────────────────────── */
.tea-deco-left {
  position: absolute;
  left: -15%;
  top: clamp(550px, 100vw, 1600px);
  width: clamp(180px, 34vw, 660px);
  z-index: 3;
  pointer-events: none;
  opacity: 1;
  will-change: transform;
}

.tea-deco-left img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {

  .tea-deco-right,
  .tea-deco-left {
    display: none;
  }
}

/* ── 3-line clamp for history body text ──────────────────────────────────── */
.tea-text-body--en,
.tea-text-body--ja {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* When expanded: remove clamp */
.tea-text-body--en.is-expanded,
.tea-text-body--ja.is-expanded {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

/* ── Font: EN body = Garamond, JA body = YuMincho ───────────────────────── */
.tea-text-body--en p,
.tea-text-extra--en p {
  font-family: var(--font-garamond);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #4c4542;
  margin-bottom: 0.75rem;
}

.tea-text-body--ja p,
.tea-text-extra--ja p {
  font-family: var(--font-yumincho);
  font-size: 0.9375rem;
  line-height: 2;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

/* ── read-more icon + / − ────────────────────────────────────────────────── */
.ev-readmore .ev-readmore__icon {
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  transition: transform var(--transition);
}

/* tea-product-desc list style */
.tea-product-desc__en ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0.5rem 0 1rem;
}

.tea-product-desc__en ul li {
  font-family: var(--font-garamond);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #4c4542;
  margin-bottom: 0.25rem;
}

/* ── fl-section--cream heading: same as .about-split__title-row ───────────
   text-align:center, margin-bottom identical to about page title rows */
.fl-section--cream .fl-section__hd {
  text-align: center;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.fl-section--cream .fl-section__hd .fl-section__ornament {
  display: block;
  text-align: center;
}

.fl-section--cream .fl-section__hd .fl-section__divider-bar {
  margin-inline: auto;
}

/* ── Tea page h2: same CSS as .about-split__title ──────────────────────────
   about-split__title: Garamond 500 clamp(2-2.75rem) letter-spacing:0.15em
   color:#4f4a42 line-height:1 margin-bottom:1.25rem */
.tea-main-heading__title,
.site-main--tea .fl-section--cream .fl-section__title-lg {
  font-family: var(--font-garamond);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.15em;
  color: #4f4a42;
  line-height: 1;
  margin-bottom: 1.25rem;
}

/* ── Utensils sub-heading (Figma 30059:712 — left-aligned, no ornament lines) */
.tea-utensil-subhd {
  max-width: 1024px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.tea-utensil-subhd__en {
  font-family: var(--font-garamond);
  font-size: 1.5rem;
  font-weight: 700;
  font-style: normal;
  color: #4f4a42;
  line-height: 1.3;
  margin: 0;
}

.tea-utensil-subhd__ja {
  font-family: var(--font-yumincho);
  font-size: 1.5rem;
  font-weight: 600;
  color: #4f4a42;
  line-height: 1.3;
  margin: 0;
}

/* utensil read-more: centered */
.js-readmore-utensil {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 0.5rem;
}
