:root {
  --bg: #efe8dc;
  --bg-soft: #f7f2e8;
  --paper: rgba(255, 251, 244, 0.72);
  --ink: #2e251d;
  --muted: #786655;
  --line: rgba(72, 52, 34, 0.14);
  --accent: #56755f;
  --accent-soft: rgba(86, 117, 95, 0.12);
  --brown-deep: #6f513f;
  --shadow: 0 22px 60px rgba(62, 42, 22, 0.12);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1160px, calc(100vw - 2rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Shippori Mincho", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(201, 211, 183, 0.28), transparent 30%),
    linear-gradient(180deg, #f6efe4 0%, #eee4d6 45%, #e4d6c5 100%);
  line-height: 1.8;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(0, 0, 0, 0.5) 0 0.6px, transparent 0.7px),
    radial-gradient(circle at 80% 30%, rgba(0, 0, 0, 0.5) 0 0.5px, transparent 0.7px),
    radial-gradient(circle at 40% 80%, rgba(0, 0, 0, 0.5) 0 0.5px, transparent 0.7px);
  background-size: 180px 180px;
  z-index: 5;
}

.scroll-line {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(73, 56, 39, 0.08);
  z-index: 30;
}

.scroll-line__bar {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #a5916f);
}

.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: var(--container);
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  background: rgba(250, 246, 239, 0.72);
  border: 1px solid rgba(81, 62, 42, 0.08);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(56, 40, 23, 0.08);
  z-index: 20;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand__jp {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand__en {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.site-nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  font-size: 0.84rem;
  color: var(--muted);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

main {
  padding-top: 7.5rem;
}

section {
  width: var(--container);
  margin: 0 auto;
}

.section-observe {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.section-observe.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 0.8rem;
  font-family: "Yomogi", cursive;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2.6rem;
}

.section-heading h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.2;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
}

.hero {
  min-height: calc(100svh - 8rem);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.5fr);
  gap: 2rem;
  align-items: end;
  position: relative;
  padding: 3rem 0 1.5rem;
}

.hero__media {
  position: absolute;
  inset: 0;
  border-radius: 44px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 22, 16, 0.64) 0%, rgba(31, 22, 16, 0.34) 42%, rgba(31, 22, 16, 0.15) 100%),
    linear-gradient(180deg, rgba(11, 8, 6, 0.08), rgba(11, 8, 6, 0.28));
}

.hero__reel,
.day-panel__visual,
.hero__aside,
.craft-card,
.menu-column,
.access-card,
.access-note {
  background-size: cover;
  background-position: center;
}

.hero__reel {
  position: absolute;
  inset: 0;
  transform: scale(1.06);
  animation: drift 16s ease-in-out infinite alternate;
  opacity: 0;
}

.cms-hero-media__item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1.2s ease,
    transform 8s ease;
}

div.cms-hero-media__item {
  background-size: cover;
  background-position: center;
}

video.cms-hero-media__item {
  object-fit: cover;
}

.cms-hero-media__item.is-active {
  opacity: 1;
  transform: scale(1.1);
}

.hero__reel--one {
  background-image: url("https://life-designs.jp/wp/wp-content/uploads/2022/06/image26-1.jpg");
  animation:
    heroFade 18s ease-in-out infinite,
    drift 16s ease-in-out infinite alternate;
}

.hero__reel--two {
  background-image: url("https://life-designs.jp/wp/wp-content/uploads/2022/06/image14-1.jpg");
  animation:
    heroFade 18s ease-in-out 6s infinite,
    drift 14s ease-in-out 2s infinite alternate;
}

.hero__reel--three {
  background-image: url("https://life-designs.jp/wp/wp-content/uploads/2022/06/image4-1.jpg");
  animation:
    heroFade 18s ease-in-out 12s infinite,
    drift 18s ease-in-out 1s infinite alternate;
}

.hero__steam,
.hero__glow {
  position: absolute;
  inset: 0;
}

.hero__steam {
  background:
    radial-gradient(circle at 70% 25%, rgba(255, 255, 255, 0.22), transparent 12%),
    radial-gradient(circle at 62% 35%, rgba(255, 255, 255, 0.16), transparent 10%),
    radial-gradient(circle at 78% 52%, rgba(255, 255, 255, 0.1), transparent 14%);
  filter: blur(12px);
  animation: steamShift 12s ease-in-out infinite alternate;
}

.hero__glow {
  background:
    radial-gradient(circle at 82% 18%, rgba(254, 244, 214, 0.42), transparent 24%),
    radial-gradient(circle at 22% 76%, rgba(154, 167, 140, 0.16), transparent 18%);
}

.hero__content,
.hero__aside {
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 46rem;
  padding: clamp(2rem, 4vw, 4rem);
}

.hero h1 {
  margin: 0 0 1.4rem;
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #fff8ef;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.hero__lead,
.hero__meta,
.hero__aside-text,
.hero__aside-label {
  color: rgba(255, 248, 239, 0.88);
}

.hero__lead {
  max-width: 31rem;
  margin: 0 0 1.5rem;
  font-size: 1.02rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1.7rem;
  font-size: 0.88rem;
}

.hero__meta p {
  margin: 0;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.12);
  border: 1px solid rgba(255, 251, 244, 0.14);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--solid {
  color: #fff;
  background: rgba(69, 91, 75, 0.92);
}

.button--solid:hover,
.button--solid:focus-visible {
  background: #3f5546;
}

.button--ghost {
  color: #fff8ef;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.hero__aside {
  align-self: end;
  margin: 0 1.6rem 1.6rem auto;
  max-width: 20rem;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 248, 239, 0.08);
  border: 1px solid rgba(255, 248, 239, 0.14);
  backdrop-filter: blur(14px);
}

.hero__aside-label {
  margin: 0 0 0.7rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__aside-text {
  margin: 0;
  font-size: 0.92rem;
}

.time-story,
.craft,
.menu,
.space,
.access {
  padding: 7rem 0 0;
}

.owner {
  padding: 7rem 0 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.day-switch {
  display: inline-flex;
  gap: 0.5rem;
  padding: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.66);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(56, 40, 23, 0.06);
  margin-bottom: 1.4rem;
}

.day-switch__button {
  min-width: 4rem;
  padding: 0.6rem 0.9rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.day-switch__button.is-active {
  color: #fff;
  background: var(--brown-deep);
}

.day-panels {
  position: relative;
}

.day-panel {
  display: none;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: stretch;
}

.day-panel.is-active {
  display: grid;
}

.day-panel__visual {
  min-height: 460px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.day-panel__visual--morning {
  background-image:
    linear-gradient(180deg, rgba(47, 30, 18, 0.04), rgba(47, 30, 18, 0.24)),
    url("https://life-designs.jp/wp/wp-content/uploads/2022/06/image12-1.jpg");
}

.day-panel__visual--noon {
  background-image:
    linear-gradient(180deg, rgba(47, 30, 18, 0.06), rgba(47, 30, 18, 0.22)),
    url("https://life-designs.jp/wp/wp-content/uploads/2022/06/image11-1.jpg");
}

.day-panel__visual--evening {
  background-image:
    linear-gradient(180deg, rgba(47, 30, 18, 0.12), rgba(47, 30, 18, 0.32)),
    url("https://life-designs.jp/wp/wp-content/uploads/2022/06/image22-1.jpg");
}

.day-panel__body,
.owner__content,
.access-card,
.access-note {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-radius: 30px;
  background: rgba(255, 251, 244, 0.7);
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(56, 40, 23, 0.08);
  backdrop-filter: blur(8px);
}

.day-panel__body h3,
.owner__content h2,
.flavor-notes__copy h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  line-height: 1.3;
}

.day-panel__body p,
.owner__content p,
.flavor-notes__copy p,
.craft-card p,
.menu-list dd,
.access-note p,
.access-list dd {
  color: var(--muted);
}

.day-panel__body ul {
  margin: 1.1rem 0 0;
  padding-left: 1.2rem;
  color: var(--ink);
}

.craft__grid,
.menu-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.craft-card,
.menu-column {
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 244, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(56, 40, 23, 0.05);
}

.craft-card__index {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.12em;
}

.craft-card h3,
.menu-column h3 {
  margin: 0 0 0.8rem;
  font-size: 1.38rem;
}

.flavor-notes {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 1rem;
}

.flavor-notes__copy,
.flavor-notes__list {
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  background: rgba(247, 242, 232, 0.72);
  border: 1px solid var(--line);
}

.flavor-notes__list {
  display: grid;
  gap: 1rem;
}

.flavor-notes__list div {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.flavor-notes__list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.flavor-notes__list dt {
  margin-bottom: 0.3rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
}

.flavor-notes__list dd {
  margin: 0;
}

.owner__image img {
  min-height: 520px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.owner__lead {
  font-size: 1.05rem;
}

.menu-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-list {
  display: grid;
  gap: 1.2rem;
  margin: 0;
}

.menu-list dt {
  margin-bottom: 0.35rem;
  font-size: 1.08rem;
}

.menu-list dd {
  margin: 0;
}

.space-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  gap: 1rem;
}

.space-gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 251, 244, 0.8);
  border: 1px solid var(--line);
  box-shadow: 0 12px 38px rgba(56, 40, 23, 0.07);
}

.space-gallery__item img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.space-gallery__item--large {
  grid-row: span 2;
}

.space-gallery__item--large img {
  aspect-ratio: 4 / 6;
}

.space-gallery__item figcaption {
  padding: 1rem 1.1rem 1.2rem;
  color: var(--muted);
}

.space-gallery__item:hover img,
.space-gallery__item:focus-within img {
  transform: scale(1.04);
}

.access__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.4fr);
  gap: 1rem;
  align-items: start;
}

.access-list {
  display: grid;
  gap: 1.1rem;
  margin: 0 0 1.6rem;
}

.access-list div {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.access-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.access-list dt,
.access-note__title {
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-weight: 600;
}

.access-list dd {
  margin: 0;
}

.access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.access-actions .button--ghost {
  color: var(--brown-deep);
  background: transparent;
  border-color: rgba(111, 81, 63, 0.25);
}

.access-embeds {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1rem;
}

.embed-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 28px;
  background: rgba(255, 251, 244, 0.74);
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(56, 40, 23, 0.08);
}

.embed-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 251, 244, 0.42), transparent 32%),
    linear-gradient(315deg, rgba(86, 117, 95, 0.16), transparent 38%);
  mix-blend-mode: screen;
}

.embed-panel::after {
  content: "";
  position: absolute;
  top: 0;
  left: -45%;
  z-index: 2;
  width: 35%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-16deg);
  transition: left 0.9s ease;
}

.embed-panel:hover::after,
.embed-panel:focus-within::after {
  left: 110%;
}

.embed-panel__header {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.65rem 0.8rem;
  border-radius: var(--radius-md);
  background: rgba(255, 251, 244, 0.82);
  border: 1px solid rgba(72, 52, 34, 0.12);
  backdrop-filter: blur(14px);
}

.embed-panel__label,
.embed-panel__link {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.embed-panel__label {
  color: var(--accent);
  text-transform: uppercase;
}

.embed-panel__link {
  color: var(--brown-deep);
  border-bottom: 1px solid currentColor;
}

.map-embed,
.instagram-embed {
  position: absolute;
  inset: 0;
}

.map-embed iframe,
.instagram-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.instagram-embed {
  background:
    linear-gradient(160deg, rgba(46, 37, 29, 0.92), rgba(86, 117, 95, 0.72)),
    url("https://life-designs.jp/wp/wp-content/uploads/2022/06/image4-1.jpg") center / cover;
}

.instagram-embed iframe {
  position: relative;
  z-index: 1;
  background: rgba(255, 251, 244, 0.78);
}

.instagram-embed__fallback {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 3;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 251, 244, 0.84);
  border: 1px solid rgba(255, 251, 244, 0.28);
  backdrop-filter: blur(16px);
}

.instagram-embed__fallback p {
  margin: 0 0 0.8rem;
  color: var(--muted);
}

.instagram-embed__name {
  color: var(--ink) !important;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.content-feed {
  padding: 7rem 0 0;
}

.feed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feed-grid--news {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feed-card {
  min-height: 100%;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 244, 0.72);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(56, 40, 23, 0.05);
}

.feed-card__image {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 1.1rem;
}

.feed-card__meta {
  margin: 0 0 0.7rem;
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.feed-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.35rem;
  line-height: 1.4;
}

.feed-card p {
  color: var(--muted);
}

.feed-card__link {
  display: inline-flex;
  margin-top: 0.6rem;
  color: var(--brown-deep);
  border-bottom: 1px solid currentColor;
}

.blog-detail {
  width: min(820px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 3rem 0 0;
}

.blog-detail__image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.blog-detail h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.25;
}

.blog-detail__lead {
  font-size: 1.08rem;
  color: var(--muted);
}

.blog-detail__body {
  margin-top: 2rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-radius: 30px;
  background: rgba(255, 251, 244, 0.72);
  border: 1px solid var(--line);
}

.site-footer {
  width: var(--container);
  margin: 7rem auto 2rem;
  padding: 2rem 0 0;
  border-top: 1px solid rgba(70, 51, 33, 0.14);
  text-align: center;
  color: var(--muted);
}

.site-footer__title {
  margin: 0 0 0.4rem;
  color: var(--ink);
}

@keyframes heroFade {
  0%,
  22% {
    opacity: 0;
  }
  28%,
  55% {
    opacity: 1;
  }
  62%,
  100% {
    opacity: 0;
  }
}

@keyframes drift {
  from {
    transform: scale(1.06) translate3d(-1.2%, -0.8%, 0);
  }
  to {
    transform: scale(1.12) translate3d(1.2%, 1%, 0);
  }
}

@keyframes steamShift {
  from {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  to {
    transform: translateY(-2%) scale(1.06);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    border-radius: 26px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    padding-top: 0.8rem;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .hero,
  .owner,
  .day-panel,
  .flavor-notes,
  .access__layout,
  .access-embeds {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 1rem;
  }

  .hero__aside {
    margin: 0 1rem 1rem;
  }

  .craft__grid,
  .menu-layout,
  .space-gallery,
  .feed-grid,
  .feed-grid--news {
    grid-template-columns: 1fr;
  }

  .space-gallery__item--large {
    grid-row: auto;
  }

  .space-gallery__item img,
  .space-gallery__item--large img,
  .owner__image img {
    aspect-ratio: 4 / 3;
    min-height: auto;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 1.2rem, 100%);
  }

  .site-header {
    top: 0.6rem;
    padding: 0.85rem 1rem;
  }

  main {
    padding-top: 6.4rem;
  }

  .hero__media {
    border-radius: 30px;
  }

  .hero__content {
    padding: 1.4rem 1.2rem 1.2rem;
  }

  .hero__lead {
    font-size: 0.95rem;
  }

  .hero__meta {
    font-size: 0.78rem;
  }

  .hero__actions,
  .access-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .time-story,
  .craft,
  .owner,
  .menu,
  .space,
  .access,
  .content-feed {
    padding-top: 5rem;
  }

  .day-panel__visual {
    min-height: 280px;
  }

  .day-panel__body,
  .owner__content,
  .access-card,
  .access-note,
  .craft-card,
  .menu-column,
  .flavor-notes__copy,
  .flavor-notes__list,
  .feed-card,
  .blog-detail__body {
    padding: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Modern polish layer - 2026-06 */
:root {
  --bg: #f4f1ea;
  --bg-soft: #fffdf8;
  --paper: rgba(255, 253, 248, 0.78);
  --ink: #1e2422;
  --muted: #66706b;
  --line: rgba(24, 35, 31, 0.12);
  --accent: #315f58;
  --accent-soft: rgba(49, 95, 88, 0.12);
  --brown-deep: #8b6242;
  --shadow: 0 18px 50px rgba(25, 37, 33, 0.11);
  --radius-xl: 12px;
  --radius-lg: 8px;
  --radius-md: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96) 0%, rgba(240, 244, 238, 0.96) 44%, rgba(232, 226, 214, 0.96) 100%);
}

.page-noise {
  opacity: 0.035;
  mix-blend-mode: multiply;
}

.scroll-line {
  height: 2px;
  background: rgba(30, 36, 34, 0.08);
}

.scroll-line__bar {
  background: linear-gradient(90deg, #315f58, #c69b5c, #1e2422);
}

.site-header {
  top: 1rem;
  padding: 0.72rem 0.9rem;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
  border-color: rgba(30, 36, 34, 0.1);
  box-shadow: 0 16px 44px rgba(20, 28, 25, 0.08);
}

.brand__jp {
  font-weight: 700;
}

.brand__en,
.site-nav {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-nav a {
  padding: 0.45rem 0.25rem;
  color: rgba(30, 36, 34, 0.72);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav a::after {
  height: 2px;
  background: var(--accent);
}

.hero {
  min-height: min(760px, calc(100vh - 2rem));
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(20, 28, 25, 0.16);
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(12, 18, 17, 0.72) 0%, rgba(12, 18, 17, 0.42) 48%, rgba(12, 18, 17, 0.12) 100%),
    linear-gradient(180deg, rgba(12, 18, 17, 0.12), rgba(12, 18, 17, 0.5));
}

.hero__content {
  padding-top: clamp(7.5rem, 12vw, 10rem);
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(2.7rem, 6vw, 6.6rem);
  line-height: 0.98;
  font-weight: 700;
}

.hero__lead {
  max-width: 670px;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.hero__meta {
  gap: 0.55rem;
}

.hero__meta p,
.hero__aside,
.day-switch,
.day-panel__body,
.owner__content,
.access-card,
.access-note,
.menu-column,
.embed-panel,
.feed-card,
.blog-detail__body {
  border-radius: 8px;
  border-color: rgba(30, 36, 34, 0.11);
  box-shadow: 0 14px 42px rgba(25, 37, 33, 0.08);
}

.hero__meta p,
.hero__aside {
  background: rgba(255, 253, 248, 0.12);
  border-color: rgba(255, 253, 248, 0.18);
}

.button {
  border-radius: 8px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  box-shadow: none;
}

.button--solid {
  background: #315f58;
}

.button--solid:hover,
.button--solid:focus-visible {
  background: #244842;
  transform: translateY(-2px);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  transform: translateY(-2px);
}

.section-heading {
  max-width: 820px;
}

.section-heading h2,
.owner__content h2,
.blog-detail h1 {
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 1.05;
}

.eyebrow,
.feed-card__meta,
.craft-card__index,
.embed-panel__label {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.day-switch {
  padding: 0.35rem;
  background: rgba(255, 253, 248, 0.72);
}

.day-switch__button {
  border-radius: 6px;
}

.day-switch__button.is-active {
  background: #1e2422;
}

.craft-card,
.menu-column,
.feed-card {
  position: relative;
  overflow: hidden;
}

.craft-card::before,
.menu-column::before,
.feed-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #c69b5c);
}

.craft-card,
.menu-column,
.feed-card,
.day-panel__body,
.owner__content,
.access-card,
.access-note,
.embed-panel,
.blog-detail__body {
  background: rgba(255, 253, 248, 0.76);
  backdrop-filter: blur(12px);
}

.craft-card:hover,
.feed-card:hover,
.menu-column:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 54px rgba(25, 37, 33, 0.12);
}

.space-gallery__item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(25, 37, 33, 0.1);
}

.space-gallery__item img,
.owner__image img,
.day-panel__visual {
  filter: saturate(0.92) contrast(1.04);
}

.access-note {
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.82), rgba(49, 95, 88, 0.12));
}

.site-footer {
  background:
    linear-gradient(160deg, rgba(20, 28, 25, 0.94), rgba(49, 95, 88, 0.78)),
    url("https://life-designs.jp/wp/wp-content/uploads/2022/06/image4-1.jpg") center / cover;
}

@media (max-width: 760px) {
  .site-header {
    top: 0.6rem;
    width: min(100vw - 1rem, 100%);
  }

  .hero {
    min-height: 760px;
  }

  .hero__content {
    padding-top: 6.5rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 13vw, 4rem);
  }
}

/* WordPress theme additions */
.admin-bar .site-header {
  top: 32px;
}

.site-nav .menu-item {
  list-style: none;
}

.site-nav .menu-item a {
  color: inherit;
}

.blog-detail__image,
.feed-card img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

.nav-links {
  width: var(--container);
  margin: 2rem auto 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.nav-links a,
.nav-links span {
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.76);
}

body.design-light {
  --bg: #f7f8f3;
  --bg-soft: #ffffff;
  --paper: rgba(255, 255, 255, 0.82);
  --ink: #23302d;
  --muted: #65736f;
  --line: rgba(58, 82, 74, 0.14);
  --accent: #608b7e;
  --accent-soft: rgba(96, 139, 126, 0.14);
  --brown-deep: #7a6a4d;
  --shadow: 0 18px 48px rgba(39, 74, 66, 0.1);
  background: linear-gradient(180deg, #fbfcf7 0%, #eef5f0 55%, #f5f1e8 100%);
}

body.design-modern {
  --bg: #24211e;
  --bg-soft: #312b26;
  --paper: rgba(255, 248, 237, 0.12);
  --ink: #fff8ef;
  --muted: rgba(255, 248, 239, 0.76);
  --line: rgba(255, 248, 239, 0.18);
  --accent: #d0b06d;
  --accent-soft: rgba(208, 176, 109, 0.16);
  --brown-deep: #b88a55;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  background: linear-gradient(180deg, #211d1a 0%, #342a24 48%, #1f2926 100%);
}

body.design-modern .site-header,
body.design-modern .day-panel__body,
body.design-modern .owner__content,
body.design-modern .access-card,
body.design-modern .access-note,
body.design-modern .menu-column,
body.design-modern .embed-panel,
body.design-modern .feed-card,
body.design-modern .blog-detail__body {
  background: rgba(255, 248, 239, 0.1);
}

body.design-modern .button--ghost,
body.design-modern .access-actions .button--ghost {
  color: #fff8ef;
  border-color: rgba(255, 248, 239, 0.32);
}

body.design-green {
  --bg: #eef3e7;
  --bg-soft: #faf7ed;
  --paper: rgba(255, 252, 244, 0.74);
  --ink: #26352d;
  --muted: #657568;
  --line: rgba(55, 87, 64, 0.16);
  --accent: #47735c;
  --accent-soft: rgba(71, 115, 92, 0.15);
  --brown-deep: #75634a;
  --shadow: 0 20px 54px rgba(40, 78, 57, 0.12);
  background: linear-gradient(180deg, #f7f6ec 0%, #e7f0e4 48%, #f4efe1 100%);
}


/* Hero media controls */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero__reel--static {
  opacity: 1;
  animation: drift 18s ease-in-out infinite alternate;
}

.hero__media--off .hero__reel,
.hero__media--video .hero__reel {
  opacity: 1;
}

.hero__media--off .hero__reel--one,
.hero__media--off .hero__reel--two,
.hero__media--off .hero__reel--three {
  animation: none;
}

.hero__media--video .hero__steam,
.hero__media--video .hero__glow {
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero__reel,
  .hero__reel--static,
  .hero__video {
    animation: none !important;
    transform: none;
  }
}


/* Layout presets */
body.layout-editorial {
  --container: min(1080px, calc(100vw - 3rem));
}

body.layout-editorial .hero__content {
  width: min(920px, calc(100vw - 3rem));
}

body.layout-editorial .section-heading {
  margin-bottom: clamp(2.4rem, 5vw, 4.2rem);
}

body.layout-editorial .craft__grid,
body.layout-editorial .feed-grid {
  grid-template-columns: 1fr;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

body.layout-editorial .craft-card,
body.layout-editorial .feed-card {
  padding: clamp(1.8rem, 3vw, 2.6rem);
}

body.layout-editorial .owner,
body.layout-editorial .access__layout {
  gap: clamp(2rem, 5vw, 5rem);
}

body.layout-compact {
  --container: min(1240px, calc(100vw - 1.4rem));
  --radius-lg: 6px;
  --radius-md: 6px;
}

body.layout-compact .site-header {
  padding: 0.55rem 0.8rem;
}

body.layout-compact .hero {
  min-height: min(660px, calc(100vh - 1rem));
}

body.layout-compact section:not(.hero) {
  padding-block: clamp(3rem, 6vw, 5rem);
}

body.layout-compact .section-heading {
  margin-bottom: 1.8rem;
}

body.layout-compact .craft__grid,
body.layout-compact .feed-grid {
  gap: 1rem;
}

body.layout-compact .craft-card,
body.layout-compact .menu-column,
body.layout-compact .feed-card,
body.layout-compact .day-panel__body,
body.layout-compact .owner__content,
body.layout-compact .access-card,
body.layout-compact .access-note {
  padding: clamp(1rem, 2vw, 1.45rem);
}

body.layout-compact .space-gallery {
  gap: 0.85rem;
}

body.layout-showcase .hero {
  min-height: min(840px, 100vh);
}

body.layout-showcase .hero__content {
  padding-top: clamp(8.5rem, 14vw, 12rem);
}

body.layout-showcase .hero h1 {
  max-width: 900px;
  font-size: clamp(3.1rem, 7.2vw, 7.4rem);
}

body.layout-showcase .hero__aside {
  display: none;
}

body.layout-showcase .space-gallery {
  grid-template-columns: 1.35fr 1fr 1fr;
}

body.layout-showcase .space-gallery__item--large {
  grid-column: span 2;
  grid-row: span 2;
}

body.layout-showcase .owner {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

body.layout-showcase .owner__image img {
  aspect-ratio: 4 / 5;
}

@media (max-width: 760px) {
  body.layout-editorial,
  body.layout-compact,
  body.layout-showcase {
    --container: min(100vw - 1.2rem, 100%);
  }

  body.layout-showcase .hero {
    min-height: 760px;
  }

  body.layout-showcase .space-gallery,
  body.layout-showcase .owner {
    grid-template-columns: 1fr;
  }

  body.layout-showcase .space-gallery__item--large {
    grid-column: auto;
    grid-row: auto;
  }
}

/* Final preset polish */
body.design-classic {
  --paper: rgba(255, 253, 248, 0.86);
  --line: rgba(73, 62, 46, 0.14);
  --shadow: 0 22px 58px rgba(50, 42, 30, 0.12);
}

body.design-light .site-header,
body.design-light .day-panel__body,
body.design-light .owner__content,
body.design-light .access-card,
body.design-light .access-note,
body.design-light .menu-column,
body.design-light .embed-panel,
body.design-light .feed-card,
body.design-light .blog-detail__body {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(65, 94, 85, 0.13);
}

body.design-modern {
  --paper: rgba(39, 34, 30, 0.86);
  --bg-soft: #2b2824;
  --line: rgba(255, 248, 239, 0.22);
  --muted: rgba(255, 248, 239, 0.8);
  color: var(--ink);
}

body.design-modern .site-header {
  background: rgba(31, 27, 24, 0.86);
  border-color: rgba(255, 248, 239, 0.18);
}

body.design-modern .hero__aside,
body.design-modern .hero__meta p,
body.design-modern .day-panel__body,
body.design-modern .owner__content,
body.design-modern .access-card,
body.design-modern .access-note,
body.design-modern .menu-column,
body.design-modern .embed-panel,
body.design-modern .feed-card,
body.design-modern .blog-detail__body {
  background: linear-gradient(145deg, rgba(255, 248, 239, 0.14), rgba(255, 248, 239, 0.07));
  border-color: rgba(255, 248, 239, 0.2);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.24);
}

body.design-modern .craft-card {
  background: linear-gradient(145deg, rgba(255, 248, 239, 0.12), rgba(255, 248, 239, 0.055));
  border-color: rgba(255, 248, 239, 0.18);
}

body.design-modern .feed-card h3,
body.design-modern .menu-column h3,
body.design-modern .craft-card h3,
body.design-modern .day-panel__body h3,
body.design-modern .section-heading h2 {
  color: #fffaf2;
}

body.design-modern .space-gallery__item figcaption,
body.design-modern .feed-card__meta,
body.design-modern .craft-card__index,
body.design-modern .embed-panel__label,
body.design-modern .embed-panel__link,
body.design-modern .feed-card__link,
body.design-modern .site-nav a:hover,
body.design-modern .site-nav a:focus-visible {
  color: #e1c583;
}

body.design-green .site-header,
body.design-green .day-panel__body,
body.design-green .owner__content,
body.design-green .access-card,
body.design-green .access-note,
body.design-green .menu-column,
body.design-green .embed-panel,
body.design-green .feed-card,
body.design-green .blog-detail__body {
  background: rgba(255, 252, 244, 0.8);
  border-color: rgba(58, 99, 72, 0.15);
}

body.layout-editorial .section-heading h2 {
  max-width: 820px;
}

body.layout-editorial .section-heading p {
  max-width: 760px;
}

body.layout-compact .hero__content {
  gap: 1.5rem;
}

body.layout-compact .hero h1 {
  font-size: clamp(2.7rem, 6.4vw, 6.1rem);
}

body.layout-compact .feed-card h3,
body.layout-compact .menu-column h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

body.layout-showcase .section-heading {
  max-width: 1040px;
}

body.layout-showcase .section-heading h2 {
  max-width: 960px;
}

body.layout-showcase .space-gallery__item img {
  min-height: 260px;
}

@media (max-width: 760px) {
  body.layout-compact .hero h1,
  body.layout-showcase .hero h1 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

  body.layout-showcase .space-gallery__item img {
    min-height: 210px;
  }
}

/* Mobile map fallback and expanded editable galleries */
.cms-hero-media {
  position: absolute;
  inset: 0;
}

.map-fallback {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: clamp(1.4rem, 5vw, 2.4rem);
  background:
    linear-gradient(135deg, rgba(255, 251, 244, 0.94), rgba(238, 243, 231, 0.88)),
    repeating-linear-gradient(45deg, rgba(47, 111, 98, 0.08) 0 1px, transparent 1px 18px);
}

.map-fallback__title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 700;
}

.map-fallback p:not(.map-fallback__title) {
  max-width: 36rem;
  margin: 0;
  color: var(--muted);
}

.embed-panel--fallback {
  min-height: 360px;
}

.space-gallery__item figcaption:empty {
  display: none;
}

@media (max-width: 720px) {
  .access-embeds {
    gap: 0.9rem;
  }

  .embed-panel {
    min-height: 360px;
    border-radius: 20px;
  }

  .embed-panel--map,
  .embed-panel--fallback {
    min-height: 320px;
  }

  .embed-panel__header {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin: 0.8rem;
    z-index: 5;
    align-items: flex-start;
  }

  .map-embed,
  .instagram-embed {
    top: 0;
    padding-top: 0;
  }

  .map-fallback {
    position: relative;
    min-height: 250px;
    padding: 1.2rem;
  }

  .map-fallback .button {
    width: 100%;
  }
}

/* Map auto-embed display fix */
.embed-panel--map {
  background: rgba(255, 251, 244, 0.86);
}

.embed-panel--map .map-embed {
  background: #eef3e7;
}

.embed-panel--map .map-fallback {
  justify-content: flex-start;
  padding-top: 5.6rem;
}

@media (max-width: 720px) {
  .embed-panel--map .map-fallback {
    padding-top: 1.1rem;
  }
}

