/* ======================================
   Boulangerie Beurréé — style.css
   ====================================== */

/* ---------- CSS Variables ---------- */
:root {
  --cream:        #FDF6EC;
  --cream-deep:   #F5E6D0;
  --brown:        #6B3F1E;
  --brown-light:  #9A6240;
  --caramel:      #C8874A;
  --caramel-light:#E8B07A;
  --gold:         #D4A843;
  --text-dark:    #2C1A0E;
  --text-mid:     #5C3D20;
  --text-light:   #8C6040;
  --white:        #FFFFFF;
  --green:        #6B8F5E;
  --shadow-sm:    0 2px 8px rgba(107,63,30,0.10);
  --shadow-md:    0 8px 32px rgba(107,63,30,0.14);
  --shadow-lg:    0 20px 60px rgba(107,63,30,0.18);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    32px;
  --radius-full:  9999px;
  --font-serif:   'Cormorant Garamond', 'Noto Serif JP', serif;
  --font-jp:      'Noto Serif JP', serif;
  --font-display: 'Playfair Display', serif;
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  background: var(--cream);
  color: var(--text-dark);
  font-family: var(--font-jp);
  line-height: 1.8;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- Utility ---------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--caramel);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--brown);
  line-height: 1.35;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-jp);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), opacity 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--brown);
  color: var(--cream);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--text-dark); box-shadow: var(--shadow-lg); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

.btn-instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
  box-shadow: var(--shadow-sm);
  margin-top: 24px;
}

.btn-map {
  background: var(--caramel);
  color: var(--white);
  margin-top: 24px;
  box-shadow: var(--shadow-sm);
}
.btn-map:hover { background: var(--brown); }

.btn-cta-primary {
  background: var(--white);
  color: var(--brown);
  font-weight: 600;
  box-shadow: var(--shadow-md);
}
.btn-cta-primary:hover { background: var(--cream); box-shadow: var(--shadow-lg); }

.btn-cta-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.8);
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.12); }

/* ======================================
   HEADER
   ====================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,246,236,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,135,74,0.15);
  transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); }

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

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 1px;
}
.logo-fr {
  font-family: var(--font-serif);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--caramel);
  text-transform: uppercase;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--brown);
  letter-spacing: 0.02em;
}
.logo-jp {
  font-size: 0.6rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
}

.nav ul {
  display: flex;
  gap: 36px;
}
.nav a {
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  color: var(--text-mid);
  position: relative;
  padding-bottom: 2px;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--caramel);
  transition: width 0.3s var(--ease-out);
}
.nav a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: var(--cream);
  border-top: 1px solid var(--cream-deep);
  padding: 16px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--cream-deep);
  color: var(--text-dark);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

/* ======================================
   HERO
   ====================================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(212,168,67,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(200,135,74,0.15) 0%, transparent 60%),
    linear-gradient(160deg, #2C1A0E 0%, #5C3D20 40%, #8C6040 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  animation: heroFadeIn 1.2s var(--ease-out) both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  color: var(--caramel-light);
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-serif);
}

.hero-title {
  margin-bottom: 4px;
}
.hero-title-fr {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  letter-spacing: 0.35em;
  color: var(--caramel-light);
  font-weight: 300;
}
.hero-title-main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.01em;
  font-weight: 700;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--cream-deep);
  letter-spacing: 0.2em;
  margin-bottom: 32px;
  font-family: var(--font-jp);
}

.hero-catch {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  margin-bottom: 40px;
}
.hero-catch strong {
  color: var(--gold);
  font-size: 1.2em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* 浮遊パン */
.hero-deco {
  position: absolute;
  font-size: 3rem;
  opacity: 0.08;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.hero-deco-1 { top: 15%; left: 8%; animation-delay: 0s; font-size: 4rem; }
.hero-deco-2 { bottom: 20%; right: 10%; animation-delay: 2.5s; font-size: 5rem; }
.hero-deco-3 { top: 55%; left: 5%; animation-delay: 5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-20px) rotate(5deg); }
}

/* ======================================
   STRIP
   ====================================== */
.strip {
  background: var(--brown);
  padding: 32px 24px;
}
.strip-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  padding: 12px 32px;
  text-align: left;
}
.strip-icon { font-size: 1.8rem; flex-shrink: 0; }
.strip-item p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(253,246,236,0.9);
}
.strip-item p strong { color: var(--gold); font-size: 1.2em; }
.strip-divider {
  width: 1px;
  height: 48px;
  background: rgba(253,246,236,0.2);
}

/* ======================================
   ABOUT
   ====================================== */
.about {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: 'BREAD';
  position: absolute;
  top: 40px; right: -60px;
  font-family: var(--font-display);
  font-size: 10rem;
  color: rgba(200,135,74,0.06);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.1em;
}

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

.about-lead {
  font-size: 1.15rem;
  line-height: 2;
  color: var(--brown);
  margin-bottom: 24px;
  font-weight: 500;
}
.about-text p {
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.95;
}

.about-quote {
  margin-top: 40px;
  padding: 28px 32px;
  border-left: 3px solid var(--caramel);
  background: var(--cream-deep);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.about-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--brown);
  line-height: 1.6;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  border: 1px solid rgba(200,135,74,0.1);
}
.about-card:hover { transform: translateX(8px); box-shadow: var(--shadow-md); }

.about-card-icon { font-size: 2.2rem; flex-shrink: 0; }
.about-card h3 {
  font-family: var(--font-jp);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 6px;
}
.about-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

/* ======================================
   HIGHLIGHT
   ====================================== */
.highlight {
  background: linear-gradient(135deg, var(--brown) 0%, #3D2010 100%);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.highlight::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.highlight-content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.highlight-number {
  flex-shrink: 0;
  text-align: center;
}
.highlight-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
}
.highlight-unit {
  font-size: 1rem;
  color: var(--caramel-light);
  letter-spacing: 0.12em;
}

.highlight-text h2 {
  font-family: var(--font-jp);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 20px;
  font-weight: 400;
}
.highlight-text p {
  color: rgba(253,246,236,0.8);
  line-height: 1.9;
}

/* ======================================
   MENU
   ====================================== */
.menu { background: var(--cream-deep); }

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.menu-tab {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1.5px solid rgba(200,135,74,0.3);
  color: var(--text-mid);
  font-family: var(--font-jp);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}
.menu-tab:hover { border-color: var(--caramel); color: var(--caramel); }
.menu-tab.active {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--cream);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,135,74,0.12);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  position: relative;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.menu-card.hidden { display: none; }

.menu-card-featured {
  border: 2px solid var(--caramel);
}

.menu-card-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--caramel);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  z-index: 1;
}

.menu-card-img {
  height: 160px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-emoji { font-size: 4.5rem; }

.menu-card-body { padding: 20px 24px 24px; }

.menu-tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  background: var(--cream-deep);
  color: var(--brown);
  border: 1px solid rgba(107,63,30,0.15);
}
.tag-ikuji { background: #EDF4EC; color: var(--green); border-color: rgba(107,143,94,0.2); }
.tag-sweet { background: #FFF0E8; color: #C87040; border-color: rgba(200,112,64,0.2); }

.menu-card-body h3 {
  font-family: var(--font-jp);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 8px;
  line-height: 1.4;
}
.menu-card-body p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 14px;
}
.menu-price {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--caramel);
  font-weight: 600;
  margin: 0 !important;
}

.menu-note {
  text-align: center;
  margin-top: 48px;
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid rgba(200,135,74,0.2);
}
.menu-note p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ======================================
   ATMOSPHERE
   ====================================== */
.atmosphere { background: var(--cream); }

.atm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.atm-text .section-label { text-align: left; }
.atm-text .section-title { text-align: left; font-size: clamp(1.6rem, 3vw, 2.4rem); }

.atm-text p {
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 20px;
}

.atm-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
  padding: 28px;
  background: var(--cream-deep);
  border-radius: var(--radius-md);
}

.atm-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.atm-info-icon { font-size: 1.4rem; flex-shrink: 0; }

.atm-visual {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.atm-emoji-wrap {
  background: linear-gradient(135deg, var(--brown) 0%, #5C3D20 100%);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.atm-big-emoji { font-size: 5rem; margin-bottom: 16px; }
.atm-emoji-caption {
  color: rgba(253,246,236,0.85);
  font-size: 0.95rem;
  line-height: 1.7;
}

.atm-pay-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,135,74,0.12);
}
.atm-pay-title {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 14px;
  letter-spacing: 0.08em;
}
.atm-pay-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.atm-pay-list span {
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: var(--cream-deep);
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 500;
}

/* ======================================
   CTA
   ====================================== */
.cta {
  background:
    radial-gradient(ellipse 70% 60% at 30% 50%, rgba(212,168,67,0.2) 0%, transparent 60%),
    linear-gradient(135deg, #1E0F05 0%, #5C3D20 50%, #8C6040 100%);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '🥖';
  position: absolute;
  font-size: 18rem;
  opacity: 0.04;
  top: 50%; left: -5%;
  transform: translateY(-50%) rotate(-20deg);
  pointer-events: none;
}

.cta-inner { max-width: 680px; margin: 0 auto; position: relative; }

.cta-label {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--caramel-light);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 20px;
}
.cta-body {
  color: rgba(253,246,236,0.75);
  line-height: 1.9;
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ======================================
   ACCESS
   ====================================== */
.access { background: var(--cream-deep); }

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

.access-dl { display: flex; flex-direction: column; gap: 0; }
.access-dl-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(200,135,74,0.15);
  align-items: start;
}
.access-dl-row:first-child { border-top: 1px solid rgba(200,135,74,0.15); }

.access-dl dt {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
  font-weight: 500;
  padding-top: 2px;
}
.access-dl dd {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.7;
}
.access-dl dd a {
  color: var(--caramel);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.access-dl dd a:hover { color: var(--brown); }

.hours-table { border-collapse: collapse; }
.hours-table th, .hours-table td {
  padding: 2px 12px 2px 0;
  font-weight: 400;
  vertical-align: middle;
}
.hours-table th { font-size: 0.85rem; color: var(--text-light); width: 80px; }
.closed { color: var(--caramel); font-size: 0.88rem; }

.access-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(200,135,74,0.15);
}
.access-map iframe { display: block; }

/* ======================================
   FOOTER
   ====================================== */
.footer {
  background: var(--text-dark);
  padding: 60px 24px 40px;
  text-align: center;
}
.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 16px;
}
.footer-logo-fr {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--caramel-light);
  text-transform: uppercase;
}
.footer-logo-main {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.footer-logo-jp {
  font-size: 0.65rem;
  color: rgba(253,246,236,0.5);
  letter-spacing: 0.12em;
}
.footer-address {
  font-size: 0.82rem;
  color: rgba(253,246,236,0.5);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.footer-sns {
  margin-bottom: 24px;
}
.footer-sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  transition: background 0.2s;
}
.footer-sns a:hover { background: rgba(255,255,255,0.2); }
.footer-nav {
  margin-bottom: 24px;
}
.footer-nav a {
  font-size: 0.78rem;
  color: rgba(253,246,236,0.4);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-nav a:hover { color: rgba(253,246,236,0.7); }
.footer-copy {
  font-size: 0.75rem;
  color: rgba(253,246,236,0.3);
  letter-spacing: 0.05em;
}

/* ======================================
   ANIMATIONS (Scroll reveal)
   ====================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================
   RESPONSIVE — Tablet
   ====================================== */
@media (max-width: 900px) {
  .nav { display: none; }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .highlight-content { flex-direction: column; gap: 32px; text-align: center; }
  .atm-grid { grid-template-columns: 1fr; gap: 48px; }
  .access-grid { grid-template-columns: 1fr; }

  .strip-inner { gap: 0; }
  .strip-divider { display: none; }
  .strip-item { width: 50%; padding: 16px 20px; }
}

/* ======================================
   RESPONSIVE — Mobile
   ====================================== */
@media (max-width: 600px) {
  .section { padding: 72px 0; }
  .section-title { font-size: 1.7rem; }

  .hero-title-main { font-size: 3.5rem; }
  .hero-actions { flex-direction: column; align-items: center; }

  .strip-item { width: 100%; }

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

  .access-dl-row { grid-template-columns: 80px 1fr; }

  .cta-actions { flex-direction: column; align-items: center; }

  .highlight-content { gap: 24px; }

  .about-card { flex-direction: column; }
}
