@charset "utf-8";

/* ==========================================================
   Variables - Color Palette (Strictly Enforced)
========================================================== */
:root {
    /* Fonts */
    --font-serif: 'Shippori Mincho B1', 'Noto Serif JP', 'Yu Mincho', 'Hiragino Mincho ProN', serif;
    --font-base: 'Noto Sans JP', sans-serif;
    --font-eng: 'Cormorant Garamond', serif;
    
    /* Colors */
    --color-bg-beige: #f2ede4;      /* Washi beige / Cream */
    --color-bg-alt: #ede6d8;        /* Alternate slightly darker beige */
    --color-text: #2c2824;          /* Charcoal / Sumi text */
    --color-text-inverse: #f2ede4;  /* Light text for dark buttons */
    --color-text-muted: #6b635a;
    
    --color-violet: #8b6fae;        /* Accent: Kikyo / Sumire violet */
    --color-violet-light: #a07cc5;  /* Main purple */
    --color-violet-pale: #d4c3e8;   /* Pale sub-accent */
    --color-border: #c9b99a;        /* Washi fiber color */
    
    --header-h-pc: 100px;
    --header-h-sp: 70px;
}

/* ==========================================================
   Base & Reset
========================================================== */
html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 1rem = 10px */
}

body {
    font-family: var(--font-base);
    font-size: 1.5rem;
    color: var(--color-text);
    background-color: var(--color-bg-beige);
    line-height: 2;
    letter-spacing: 0.08em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    /* Washi noise texture */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease, color 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

.text-accent {
    color: var(--color-violet-light);
}

/* ==========================================================
   Utility 
========================================================== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
}

.relative {
    position: relative;
}

.section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.section__header {
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.section__en {
    display: block;
    font-family: var(--font-eng);
    font-size: 2rem;
    color: var(--color-violet-light);
    font-style: italic;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

.section__title {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--color-text);
}

.btn-wrap {
    text-align: center;
    margin-top: 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-violet);
    color: var(--color-text-inverse);
    padding: 15px 50px;
    border-radius: 8px;
    font-family: var(--font-base);
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 15px rgba(139, 111, 174, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 111, 174, 0.4);
    color: var(--color-text-inverse);
    opacity: 1; /* override default a:hover */
}

/* ==========================================================
   Animations & Petals
========================================================== */
/* The container that spans the entire page for falling petals */
.petals-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 100;
    overflow: hidden;
}

.petal {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: var(--color-violet-pale);
    border-radius: 15px 0 15px 0;
    opacity: 0.7;
    animation: drift 10s linear infinite;
}

@keyframes drift {
    0% {
        transform: translateY(-5vh) rotate(0deg) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(105vh) rotate(360deg) translateX(50px);
        opacity: 0;
    }
}

/* Static scattered petals at section dividers */
.petal-deco {
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23d4c3e8' d='M50,10 C60,20 80,40 80,60 C80,80 60,90 50,90 C40,90 20,80 20,60 C20,40 40,20 50,10 Z' opacity='0.5' transform='rotate(45 50 50)'/%3E%3Cpath fill='%23a07cc5' d='M40,20 C50,30 70,50 70,70 C70,90 50,100 40,100 C30,100 10,90 10,70 C10,50 30,30 40,20 Z' opacity='0.3' transform='rotate(-15 40 60)'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 0.6;
    z-index: 0;
}
.petal-deco.top-right { top: -40px; right: 5%; }
.petal-deco.bottom-left { bottom: -40px; left: 5%; }
.petal-deco.top-left { top: -40px; left: 5%; transform: scaleX(-1); }
.petal-deco.bottom-right { bottom: -40px; right: 5%; }

/* Custom divider like in screenshot 4 */
.section-divider-floral {
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 150' preserveAspectRatio='none'%3E%3Cpath fill='%23ede6d8' d='M0,0 L800,0 L800,80 Q400,150 0,80 Z'/%3E%3Cg opacity='0.4'%3E%3Cpath fill='%23d4c3e8' d='M100,60 Q120,40 140,80 Q120,100 100,60 Z'/%3E%3Cpath fill='%23a07cc5' d='M650,40 Q670,20 690,60 Q670,80 650,40 Z'/%3E%3Cpath fill='%23d4c3e8' d='M350,90 Q370,70 390,110 Q370,130 350,90 Z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100% 100%;
    margin-top: 50px;
    margin-bottom: -100px;
}

/* ==========================================================
   Header
========================================================== */
.header {
    width: 100%;
    z-index: 200;
    background: rgba(242, 237, 228, 0.95);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-h-sp);
}

@media (min-width: 900px) {
    .header__inner {
        height: var(--header-h-pc);
    }
}

.header__logo {
    display: flex;
    flex-direction: column;
}

.header__logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 900px) {
    .header__logo-img {
        height: 60px;
    }
}

.header__right {
    display: none;
}

@media (min-width: 900px) {
    .header__right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
    }
    
    .header__contact-wrap {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .header__contact-label {
        font-size: 1.2rem;
        color: var(--color-text-muted);
    }
    
    .header__contact-tel {
        font-family: var(--font-eng);
        font-size: 2.4rem;
        font-weight: 500;
        color: var(--color-text);
        letter-spacing: 0.05em;
    }

    /* Horizontal list matching the text order */
    .header__nav-list {
        display: flex;
        gap: 25px;
    }
    
    .header__nav-list a {
        font-family: var(--font-serif);
        font-size: 1.4rem;
        letter-spacing: 0.1em;
        position: relative;
    }

    .header__nav-list a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: var(--color-violet-light);
        transform: scaleX(0);
        transition: transform 0.3s;
    }

    .header__nav-list a:hover::after {
        transform: scaleX(1);
    }
}

/* ==========================================================
   Hamburger & Drawer (SP)
========================================================== */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 201;
}

@media (min-width: 900px) {
    .hamburger { display: none; }
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

.hamburger.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(242, 237, 228, 0.98);
    z-index: 199;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.drawer.is-active {
    opacity: 1;
    visibility: visible;
}

.drawer__menu {
    text-align: center;
}

.drawer__menu li {
    margin-bottom: 30px;
}

.drawer__menu a {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    letter-spacing: 0.1em;
}

/* ==========================================================
   Fixed Banner (Right Edge)
========================================================== */
.fixed-banner {
    display: none;
}

@media (min-width: 900px) {
    .fixed-banner {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        padding: 30px 0;
        background-color: var(--color-bg-alt);
        border: 1px solid var(--color-border);
        border-right: none;
        z-index: 99;
        writing-mode: vertical-rl;
        text-orientation: upright;
        font-family: var(--font-serif);
        font-size: 1.4rem;
        letter-spacing: 0.2em;
        color: var(--color-text);
        box-shadow: -2px 0 10px rgba(0,0,0,0.03);
    }
    
    .fixed-banner:hover {
        background-color: var(--color-violet-light);
        color: var(--color-text-inverse);
    }
}

/* ==========================================================
   Loading Animation
========================================================== */
.loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #f2ede4; /* 和紙ベージュ */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ロゴ画像（ローディング用） */
.loading__logo-img {
  width: 250px;
  height: auto;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

/* プログレスバー */
.loading__bar {
  width: 120px;
  height: 1px;
  background: var(--color-border);
  margin-top: 3rem;
  overflow: hidden;
}

.loading__bar-inner {
  height: 100%;
  width: 0;
  background: var(--color-violet-light);
  animation: loadBar 1.8s ease forwards;
}

@keyframes loadBar {
  to { width: 100%; }
}

/* 花びらのふわり落下 */
.loading__petals .petal {
  position: absolute;
  opacity: 0;
  animation: petalFall 2.5s ease-in forwards;
}

.loading__petals .petal--1 { top: 10%; left: 15%; animation-delay: 0.3s; }
.loading__petals .petal--2 { top: 5%;  left: 70%; animation-delay: 0.6s; }
.loading__petals .petal--3 { top: 20%; left: 40%; animation-delay: 0.1s; }
.loading__petals .petal--4 { top: 60%; left: 20%; animation-delay: 0.8s; }
.loading__petals .petal--5 { top: 70%; left: 75%; animation-delay: 0.4s; }
.loading__petals .petal--6 { top: 40%; left: 85%; animation-delay: 0.9s; }

@keyframes petalFall {
  0%   { opacity: 0; transform: translateY(-20px) rotate(0deg); }
  20%  { opacity: 1; }
  100% { opacity: 0.6; transform: translateY(40px) rotate(30deg); }
}

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

/* ==========================================================
   Hero MV
========================================================== */
.hero-mv {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}

/* 4分割グリッド */
.hero-mv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: 100%;
  height: 100%;
}

/* 各パネル共通 */
.hero-mv__panel {
  position: relative;
  overflow: hidden;
}

/* スライドラッパー */
.hero-mv__slides {
  position: absolute;
  inset: 0;
}

/* 各スライド */
.hero-mv__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero-mv__slide.is-active {
  opacity: 1;
}

/* オーバーレイ */
.hero-mv__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 10, 8, 0.2);
  z-index: 1;
}

/* 中央テキスト：グリッドの上に重ねる */
.hero-mv__center {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.8rem;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.8s ease 0.9s;
}

.hero-mv.is-ready .hero-mv__center {
  opacity: 1;
}

/* 中央テキスト新規追加分 - 元のスタイルを統合 */
.hero-mv__copy {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.6rem); /* 文字サイズ大きく */
  font-weight: 500;
  color: #fff; /* 白字にして視認性アップ */
  letter-spacing: 0.15em;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  text-align: center;
}

.hero-mv__logo {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 6rem); /* とても大きく */
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.25em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
  text-align: center;
}

.hero-mv__tagline {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.hero-mv__cta {
  display: inline-flex;
  margin-top: 15px;
  align-items: center;
  justify-content: center;
  background-color: var(--color-violet);
  color: var(--color-text-inverse);
  padding: 12px 40px;
  border-radius: 4px;
  font-family: var(--font-base);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 15px rgba(139, 111, 174, 0.5);
  transition: all 0.3s ease;
}

.hero-mv__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 111, 174, 0.6);
  opacity: 1;
}

/* グリッド区切り線（薄紫・装飾） */
.hero-mv__grid::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(160, 124, 197, 0.4) 20%,
    rgba(160, 124, 197, 0.4) 80%,
    transparent
  );
  z-index: 5;
  pointer-events: none;
}

.hero-mv__grid::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(160, 124, 197, 0.4) 20%,
    rgba(160, 124, 197, 0.4) 80%,
    transparent
  );
  z-index: 5;
  pointer-events: none;
}

/* ローディング前スライドイン */
.hero-mv:not(.is-ready) .hero-mv__panel[data-panel="0"] { transform: translate(-100%, -100%); }
.hero-mv:not(.is-ready) .hero-mv__panel[data-panel="1"] { transform: translate( 100%, -100%); }
.hero-mv:not(.is-ready) .hero-mv__panel[data-panel="2"] { transform: translate(-100%,  100%); }
.hero-mv:not(.is-ready) .hero-mv__panel[data-panel="3"] { transform: translate( 100%,  100%); }

.hero-mv.is-ready .hero-mv__panel {
  transform: translate(0, 0);
  transition: transform 1.0s cubic-bezier(0.77, 0, 0.175, 1);
}

.hero-mv.is-ready .hero-mv__panel[data-panel="1"] { transition-delay: 0.1s; }
.hero-mv.is-ready .hero-mv__panel[data-panel="2"] { transition-delay: 0.1s; }
.hero-mv.is-ready .hero-mv__panel[data-panel="3"] { transition-delay: 0.2s; }

/* SP：2×2のまま維持（高さ調整のみ） */
@media (max-width: 767px) {
  .hero-mv {
    height: 100svh;
  }
}

/* ==========================================================
   当店は (About) - 円形画像・交互配置
========================================================== */
.about__inner {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.about__row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

@media (min-width: 768px) {
    .about__row {
        flex-direction: row;
        justify-content: center;
        gap: 80px;
    }
    .about__row--reverse {
        flex-direction: row-reverse;
    }
}

.about__img-box {
    position: relative;
}

.circle-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid var(--color-bg-alt);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

@media (min-width: 768px) {
    .circle-img {
        width: 350px;
        height: 350px;
    }
}

.about__text-box {
    max-width: 500px;
}

.about__text-box p {
    font-size: 1.5rem;
    line-height: 2.2;
}

/* ==========================================================
   当店の特徴 (Feature) - カード3枚グリッド
========================================================== */
.feature__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .feature__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

.feature__card {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s;
}

.feature__card:hover {
    transform: translateY(-5px);
}

.feature__card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.feature__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.feature__card:hover .feature__card-img img {
    transform: scale(1.05);
}

.feature__card-body {
    padding: 30px 20px;
    position: relative;
}

.feature__card-num {
    position: absolute;
    top: -30px;
    left: 20px;
    font-family: var(--font-eng);
    font-size: 4.8rem;
    line-height: 1;
    color: var(--color-violet-light);
    opacity: 0.3;
}

.feature__card-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 15px;
    line-height: 1.4;
}

.feature__card-text {
    font-size: 1.4rem;
    color: var(--color-text-muted);
}

/* ==========================================================
   おすすめ (Recommend)
========================================================== */
.recommend__top {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .recommend__top {
        flex-direction: row;
        align-items: stretch;
    }
}

.recommend__top-body {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.recommend__top-img {
    flex: 1;
}

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

.recommend__label {
    display: inline-block;
    align-self: flex-start;
    background: var(--color-violet);
    color: var(--color-text-inverse);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.recommend__top-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--color-text);
}

.recommend__top-text {
    font-size: 1.5rem;
    color: var(--color-text-muted);
}

.recommend__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .recommend__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.recommend__card {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
}

.recommend__card-img {
    aspect-ratio: 4/3;
}

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

.recommend__card-body {
    padding: 20px;
}

.recommend__card-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--color-text);
}

.recommend__card-text {
    font-size: 1.4rem;
    color: var(--color-text-muted);
}

/* ==========================================================
   お客様へ (Message) 画像左・テキスト右カラム
========================================================== */
.message {
    padding-top: 60px; /* Offset for floral divider */
}

.message__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    padding: 30px;
}

@media (min-width: 768px) {
    .message__inner {
        flex-direction: row;
        align-items: center;
        padding: 60px;
        gap: 60px;
    }
}

.message__img {
    flex: 1;
}

.message__body {
    flex: 1;
}

.message__text {
    font-size: 1.5rem;
    line-height: 2.2;
}

/* ==========================================================
   店舗情報 (Contact)
========================================================== */
.contact__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background: #fff; /* cleaner white background to pop out */
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border-radius: 8px; /* Smooth corners */
    padding: 30px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .contact__inner {
        flex-direction: row;
        gap: 60px;
        padding: 60px;
    }
}

/* Subtle accent line on top of the card */
.contact__inner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--color-violet-light);
}

.contact__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact__logo {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 500; /* slightly thinner looks more elegant */
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    color: var(--color-text);
}

.contact__dl {
    margin-bottom: 30px;
    border-top: 1px solid rgba(201, 185, 154, 0.4); /* subtle border */
}

.contact__row {
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    border-bottom: 1px dashed rgba(201, 185, 154, 0.6); /* dashed looks elegant */
}

@media (min-width: 768px) {
    .contact__row {
        flex-direction: row;
        align-items: baseline; /* align text to baseline */
    }
}

.contact__row dt {
    width: 120px; /* slightly wider */
    font-family: var(--font-serif);
    color: var(--color-violet-light);
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

@media (min-width: 768px) {
    .contact__row dt {
        margin-bottom: 0;
    }
}

.contact__row dd {
    flex: 1;
    font-size: 1.4rem;
    line-height: 1.8;
}

.contact__tel-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 2.8rem; /* slightly larger */
    font-family: var(--font-eng);
    color: var(--color-text);
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.contact__tel-link:hover {
    color: var(--color-violet);
    opacity: 1; /* reset default link opacity hover */
}

.contact__note {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    background: var(--color-bg-beige);
    padding: 15px 20px;
    border-radius: 4px;
    border-left: 3px solid var(--color-violet-pale);
}

.contact__map {
    flex: 1;
    width: 100%;
}

.contact__map iframe {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 8px; /* smooth corners */
    filter: grayscale(20%) contrast(1.1); /* style map slightly */
}

/* ==========================================================
   Footer
========================================================== */
.footer {
    background: #2c2824; /* Charcoal instead of true black */
    color: #ede6d8;
    padding: 60px 0 30px;
}

.footer__sns {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .footer__sns {
        flex-direction: row;
        justify-content: center;
    }
}

.footer__banner {
    flex: 1;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05); /* very dark */
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
}

.footer__banner:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
}

.footer__banner-icon {
    flex-shrink: 0;
}

/* Simulated LINE icon styling */
.footer__banner--line .footer__banner-icon {
    background: #00B900;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Simulated IG icon styling */
.footer__banner--ig .footer__banner-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: bold;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
}

.footer__banner-title {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.footer__banner-desc {
    font-size: 1.2rem;
    color: #b0aba0;
}

.footer__copy {
    text-align: center;
    font-size: 1.2rem;
    color: #8c887e;
}
