/* ============================================
   Jazz & Booze さりげなく — Stylesheet
   Colors: Black, Deep Green, Midnight Blue
   ============================================ */

:root {
  --black: #0a0a0a;
  --black-light: #141414;
  --black-soft: #1a1a1a;
  --green: #2d6a4f;
  --green-light: #40916c;
  --green-pale: #52b788;
  --blue: #1b3a4b;
  --blue-light: #274c63;
  --blue-accent: #4a90a4;
  --gold: #c9a84c;
  --gold-soft: #d4b863;
  --cream: #e8e0d0;
  --text: #d4cfc7;
  --text-muted: #8a8578;
  --text-dim: #5a564e;
  --font-serif: 'Playfair Display', 'Noto Serif JP', serif;
  --font-body: 'Cormorant Garamond', 'Noto Serif JP', serif;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 2;
  -webkit-font-smoothing: antialiased;
}

/* 句読点での折り返し制御 */
.phrase {
  display: inline;
}

@media (max-width: 768px) {
  .phrase {
    display: inline-block;
  }
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover { color: var(--gold-soft); }

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: background 0.4s;
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold) !important;
  letter-spacing: 0.15em;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}

/* ヒーローオーバーレイ */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(45, 106, 79, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(27, 58, 75, 0.2) 0%, transparent 50%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="48" fill="none" stroke="rgba(201,168,76,0.03)" stroke-width="0.5"/><circle cx="50" cy="50" r="35" fill="none" stroke="rgba(201,168,76,0.02)" stroke-width="0.5"/><circle cx="50" cy="50" r="22" fill="none" stroke="rgba(201,168,76,0.02)" stroke-width="0.5"/></svg>') center/500px repeat;
  opacity: 0;
  animation: seepInSoft 3s ease-out forwards;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* にじみ出るアニメーション */
@keyframes seepIn {
  0% { opacity: 0; filter: blur(8px); transform: translateY(10px); }
  100% { opacity: 1; filter: blur(0); transform: translateY(0); }
}

@keyframes seepInSoft {
  0% { opacity: 0; filter: blur(4px); }
  100% { opacity: 0.6; filter: blur(0); }
}

@keyframes dividerGrow {
  0% { width: 0; opacity: 0; }
  100% { width: 60px; opacity: 0.6; }
}

@keyframes scrollAppear {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1rem;
  opacity: 0;
  animation: seepIn 2.5s ease-out 0.5s forwards;
}

/* H1 は SEO のため上下二行構造を維持しつつ、視覚的には静かに */
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.3em;
  line-height: 1.9;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: seepIn 3s ease-out 1.2s forwards;
}

/* 「さりげなく」は元のサイズ・スタイルを維持 */
.hero-title .hero-name {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.2;
  margin-top: 1.2rem;
  color: var(--cream);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.35em;
  color: var(--text-muted);
  font-style: italic;
  opacity: 0;
  animation: seepIn 2.5s ease-out 2.2s forwards;
}

.hero-divider {
  width: 0;
  height: 1px;
  background: var(--gold);
  margin: 2rem auto;
  opacity: 0;
  animation: dividerGrow 2s ease-out 3s forwards;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 2.4;
  letter-spacing: 0.05em;
  text-align: left;
  display: inline-block;
  opacity: 0;
  animation: seepIn 2.5s ease-out 3.5s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: scrollAppear 2s ease-out 5s forwards;
}

.hero-scroll span {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================
   SECTIONS (common)
   ============================================ */
.section {
  padding: 7rem 0;
}

.section-label {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  position: relative;
  background: var(--black);
}

/* ボトル写真（Aboutセクション背景） */
.about-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/sarigenaku-counter.jpg');
  background-image: image-set(
    url('../images/sarigenaku-counter.webp') type('image/webp'),
    url('../images/sarigenaku-counter.jpg') type('image/jpeg')
  );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.25;
}

.about-bg + .container {
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.info-card {
  border-left: 2px solid var(--green);
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.5rem;
  background: rgba(45, 106, 79, 0.04);
}

.info-card h3 {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-pale);
  margin-bottom: 0.5rem;
}

.info-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.info-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 2;
}

/* ============================================
   ATMOSPHERE
   ============================================ */
.atmosphere {
  background:
    radial-gradient(ellipse at 100% 50%, rgba(45, 106, 79, 0.06) 0%, transparent 60%),
    var(--black-light);
}

.atmo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.atmo-placeholder {
  aspect-ratio: 4/3;
  background:
    linear-gradient(135deg, var(--blue) 0%, var(--black-soft) 50%, var(--green) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.1);
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.atmo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><path d="M100 30 Q130 50 120 80 Q140 100 120 130 Q100 160 80 130 Q60 100 80 80 Q70 50 100 30Z" fill="none" stroke="rgba(201,168,76,0.06)" stroke-width="1"/></svg>') center/cover;
}

.atmo-placeholder span {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  z-index: 1;
}

.atmo-item p {
  font-size: 1.05rem;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================
   BLOG
   ============================================ */
.blog {
  position: relative;
  background: var(--black);
}

.blog-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/sarigenaku-records.jpg');
  background-image: image-set(
    url('../images/sarigenaku-records.webp') type('image/webp'),
    url('../images/sarigenaku-records.jpg') type('image/jpeg')
  );
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.15;
}

.blog > .container {
  position: relative;
  z-index: 1;
}

.blog-intro {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  font-style: italic;
}

.blog-list {
  max-width: 780px;
  background: rgba(10, 10, 10, 0.55);
  padding: 2rem;
  border-radius: 4px;
}

.blog-entry {
  border-left: 2px solid var(--blue-light);
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  transition: border-color 0.4s, background 0.4s;
}

.blog-entry:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.02);
}

.blog-entry::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 1.8rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-accent);
  transition: background 0.4s;
}

.blog-entry:hover::before {
  background: var(--gold);
}

.blog-date {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  display: block;
  margin-bottom: 0.4rem;
}

.blog-entry-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}

.blog-excerpt {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 2.1;
}

.blog-tag {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green-light);
  border: 1px solid rgba(64, 145, 108, 0.3);
  padding: 0.2rem 0.8rem;
  border-radius: 2px;
}

/* ============================================
   ACCESS
   ============================================ */
.access {
  background:
    radial-gradient(ellipse at 0% 100%, rgba(45, 106, 79, 0.06) 0%, transparent 50%),
    var(--black-light);
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.access-dl {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1rem 1.5rem;
}

.access-dl dt {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-pale);
  padding-top: 0.15rem;
}

.access-dl dd {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.8;
}

.access-dl dd a {
  color: var(--gold);
}

.access-map iframe {
  border: 1px solid rgba(201, 168, 76, 0.1);
  filter: grayscale(0.5) brightness(0.7) contrast(1.1);
  transition: filter 0.4s;
}

.access-map iframe:hover {
  filter: grayscale(0.2) brightness(0.85) contrast(1.05);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  padding: 3rem 0;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.footer-address {
  font-size: 0.95rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

/* ============================================
   ANIMATIONS (scroll reveal)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    gap: 1.5rem;
    transform: translateY(-120%);
    transition: transform 0.4s ease;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .atmo-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .access-grid {
    grid-template-columns: 1fr;
  }

  .hero-desc br { display: block; }

  .section { padding: 5rem 0; }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.05rem;
    letter-spacing: 0.22em;
    line-height: 1.7;
  }
  .hero-title .hero-name {
    letter-spacing: 0.1em;
    margin-top: 0.9rem;
  }
  .access-dl { grid-template-columns: 1fr; }
  .access-dl dt { margin-bottom: -0.5rem; }
}

/* ============================================
   v2 ADDITIONS — Pages, Cards, Article
   ============================================ */

body.page {
  padding-top: 70px;
}

.intro-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  max-width: 760px;
}

.more-link {
  margin-top: 2rem;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}
.more-link a {
  color: var(--gold);
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  padding-bottom: 2px;
}
.more-link a:hover {
  color: var(--gold-soft);
  border-color: var(--gold);
}

.first-time-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  margin-bottom: 2rem;
}

.first-time-card {
  border-left: 2px solid var(--green);
  padding: 1.1rem 1.5rem;
  background: rgba(45, 106, 79, 0.04);
}

.first-time-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}

.first-time-card p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
}

.footer-nav {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.2rem 2rem;
  flex-wrap: wrap;
  margin: 1.2rem 0 1.5rem;
  padding: 0;
}
.footer-nav a {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer-nav a:hover { color: var(--gold); }

.page-hero {
  padding: 5rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.page-hero .section-label {
  margin-bottom: 0.5rem;
}

.page-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.1em;
  line-height: 1.45;
}

.page-subtitle {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  line-height: 1.9;
}

.page-body {
  padding: 4rem 0 6rem;
}

.page-body .container {
  max-width: 760px;
}

.page-body h2 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.06em;
  margin: 3rem 0 1.2rem;
  padding-left: 0.9rem;
  border-left: 2px solid var(--green);
}

.page-body h3 {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.05em;
  margin: 2rem 0 0.7rem;
}

.page-body p {
  margin-bottom: 1.3rem;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  line-height: 2.1;
}

.page-body ul {
  margin: 0 0 1.5rem 0;
  padding-left: 1.4rem;
}

.page-body li {
  margin-bottom: 0.5rem;
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.9;
}

.page-body dl.shop-info {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.9rem 1.4rem;
  margin: 1.5rem 0 2rem;
}
.page-body dl.shop-info dt {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-pale);
  padding-top: 0.15rem;
}
.page-body dl.shop-info dd {
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.8;
}

.breadcrumb {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 1.2rem;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { margin: 0 0.5em; color: var(--text-dim); }

/* ----- Article (Journal posts) ----- */
.article-meta {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-align: center;
  margin-top: 1rem;
}

.article-body {
  padding: 3.5rem 0 5rem;
}

.article-body .container {
  max-width: 720px;
}

.article-body p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 2.15;
  letter-spacing: 0.02em;
  color: var(--text);
}

.article-body h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.06em;
  margin: 2.8rem 0 1rem;
  padding-left: 0.8rem;
  border-left: 2px solid var(--blue-accent);
}

.article-nav {
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  padding-top: 2.5rem;
  margin-top: 3.5rem;
  text-align: center;
}
.article-nav a {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.related { margin-top: 2.5rem; }
.related-title {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1.2rem;
  text-align: center;
}
.related-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}
.related-list a {
  display: block;
  padding: 0.9rem 1.2rem;
  border-left: 2px solid var(--blue-light);
  background: rgba(27, 58, 75, 0.06);
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  transition: border-color 0.3s, background 0.3s;
}
.related-list a:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}

/* ----- Journal list (一覧ページ) ----- */
.journal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.journal-list-entry {
  border-left: 2px solid var(--blue-light);
  padding: 1.3rem 1.6rem;
  margin-bottom: 1.8rem;
  background: rgba(10, 10, 10, 0.45);
  transition: border-color 0.3s, background 0.3s;
}
.journal-list-entry:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.03);
}
.journal-list-entry h2 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
  padding: 0;
  border: none;
}
.journal-list-entry h2 a { color: var(--cream); }
.journal-list-entry p {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.section .more-link { margin-top: 2.5rem; }

@media (max-width: 768px) {
  .first-time-grid {
    grid-template-columns: 1fr;
  }
  .page-body .container,
  .article-body .container {
    padding: 0 1.5rem;
  }
  .page-body dl.shop-info {
    grid-template-columns: 1fr;
    gap: 0.3rem 0;
  }
  .page-body dl.shop-info dt {
    margin-top: 0.6rem;
  }
}

/* ============================================
   v2 ADDITIONS — Shop info, Address, Social
   ============================================ */

/* TOP 店舗情報セクション */
.shop-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

address.shop-address {
  font-style: normal;
  font-size: 1.02rem;
  color: var(--text);
  line-height: 2;
  letter-spacing: 0.03em;
}

address.shop-address .shop-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--cream);
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

address.shop-address a {
  color: var(--gold);
}

/* 店舗情報 dl レイアウト */
.shop-meta {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 0.9rem 1.4rem;
  margin: 0;
}
.shop-meta dt {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-pale);
  padding-top: 0.15rem;
}
.shop-meta dd {
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.8;
  margin: 0;
}
.shop-meta dd a { color: var(--gold); }

/* ソーシャル */
.social-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding: 0;
  margin: 1.2rem 0 0;
}
.social-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
  transition: color 0.3s, border-color 0.3s;
}
.social-list a:hover {
  color: var(--gold-soft);
  border-color: var(--gold);
}
.social-list svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/* 店舗情報セクション内マップ */
.shop-map {
  margin-top: 2rem;
}
.shop-map iframe {
  border: 1px solid rgba(201, 168, 76, 0.1);
  filter: grayscale(0.5) brightness(0.7) contrast(1.1);
  transition: filter 0.4s;
  display: block;
  width: 100%;
}
.shop-map iframe:hover {
  filter: grayscale(0.2) brightness(0.85) contrast(1.05);
}

@media (max-width: 768px) {
  .shop-info-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .shop-meta {
    grid-template-columns: 1fr;
    gap: 0.3rem 0;
  }
  .shop-meta dt {
    margin-top: 0.6rem;
  }
}
