/* ============================================================
   style.css  –  Noir & Blanc Roast
   ============================================================ */


/* ----------------------------------------
   Design Tokens
   ---------------------------------------- */

:root {
    --background: #1a1512;
    --foreground: #e8e2da;
    --card: #211c18;
    --card-foreground: #e8e2da;
    --primary: #c9a66b;
    --primary-fg: #1a1512;
    --secondary: #2a241f;
    --muted-fg: #8a7e70;
    --border: #342c25;
    --radius: 0.5rem;
    --font-sans: 'DM Sans', system-ui, sans-serif;
    --font-serif: 'DM Serif Display', Georgia, serif;
}


/* ----------------------------------------
   Reset
   ---------------------------------------- */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-serif);
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    min-width: 320px;
    font-weight: 600;
}

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

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


/* ----------------------------------------
   Utility
   ---------------------------------------- */

.container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}


/* アクセシビリティ: フォーカスリング */

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}


/* ----------------------------------------
   Animations
   ---------------------------------------- */

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

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Hero 入場アニメ（ページ読み込み時のみ） */

.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-up-1 {
    animation: fadeUp 0.8s ease-out 0.1s forwards;
    opacity: 0;
}

.animate-fade-up-2 {
    animation: fadeUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.animate-fade-up-3 {
    animation: fadeUp 0.8s ease-out 0.3s forwards;
    opacity: 0;
}


/* スクロール連動 reveal（IntersectionObserver で .visible を付与）*/

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.delay-1 {
    transition-delay: 0.1s;
}

.reveal.delay-2 {
    transition-delay: 0.2s;
}

.reveal.delay-3 {
    transition-delay: 0.3s;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}


/* prefers-reduced-motion: アニメ無効化 */

@media (prefers-reduced-motion: reduce) {
    .animate-fade-up,
    .animate-fade-up-1,
    .animate-fade-up-2,
    .animate-fade-up-3,
    .reveal {
        animation: none;
        transition: none;
        opacity: 1;
        transform: none;
    }
}


/* ----------------------------------------
   Header
   ---------------------------------------- */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: transparent;
    transition: background 0.5s, border-color 0.5s;
}

.header.scrolled {
    background: rgba(26, 21, 18, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Safari 対応 */
    border-bottom: 1px solid rgba(52, 44, 37, 0.5);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
            padding: 0 2rem;
}


/* ブランドロゴ */

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-brand-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius);
    background: rgba(201, 166, 107, 0.1);
    border: 1px solid rgba(201, 166, 107, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.nav-brand:hover .nav-brand-icon {
    border-color: rgba(201, 166, 107, 0.6);
    background: rgba(201, 166, 107, 0.2);
}

.nav-brand-icon span {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: var(--primary);
}

.nav-brand-text {
    flex-direction: column;
}

.nav-brand-sub {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted-fg);
}

.nav-brand-name {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    letter-spacing: 0.05em;
}

@media (min-width: 640px) {
    .nav-brand-text {
        display: flex;
    }
}


/* デスクトップ nav リンク */

.nav-links {
    display: none;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    position: relative;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}


/* CTA ボタン */

.nav-cta {
    display: none;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--foreground);
    color: var(--primary-fg);
    border-radius: 9999px;
    transition: background 0.3s;
}

@media (min-width: 768px) {
    .nav-cta {
        display: inline-flex;
    }
}

.nav-cta:hover {
    background: rgba(201, 166, 107, 0.9);
}


/* ハンバーガーボタン */

.menu-toggle {
    display: flex;
    background: none;
    border: none;
    padding: 0.5rem;
    color: var(--foreground);
    cursor: pointer;
    transition: color 0.3s;
}

.menu-toggle:hover {
    color: var(--primary);
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}


/* ----------------------------------------
   Mobile Menu
   ---------------------------------------- */

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: var(--background);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    /* visibility で tabindex ブロック */
    pointer-events: none;
    transition: opacity 0.4s, visibility 0.4s;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu a {
    font-family: var(--font-serif);
    font-size: 2rem;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--primary);
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    padding: 0.5rem;
    color: var(--muted-fg);
    cursor: pointer;
    transition: color 0.3s;
}

.mobile-menu-close:hover {
    color: var(--primary);
}

.mobile-menu-cta {
    margin-top: 1rem;
    padding: 1rem 2.5rem;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 9999px;
    transition: all 0.3s;
}

.mobile-menu-cta:hover {
    background: var(--primary);
    color: var(--primary-fg);
}


/* ----------------------------------------
   Hero
   ---------------------------------------- */

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

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

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 21, 18, 0.7), rgba(26, 21, 18, 0.1), #1a1512);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26, 21, 18, 0.8), transparent, rgba(26, 21, 18, 0.2));
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 80vh;
    padding: 6rem 2rem;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-label .line {
    width: 2rem;
    height: 1px;
    background: rgba(201, 166, 107, 0.6);
}

.hero-label .text {
    font-size: 2rem;
}
@media (max-width: 767px) {
    .hero h1{
        text-align: center;
    }
    .hero-label {
        margin: 0 auto 20px;
    }
    .hero-label .text {
        font-size: 1.2rem;
    }
    
}

/* h1 は1ページに1つ */

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 8vw, 4rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero h1 .accent {
    color: var(--primary);
}

.hero-tagline {
    min-height: 4rem;
    margin-top: 2rem;
}

.hero-tagline p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--muted-fg);
    line-height: 1.8;
    transition: opacity 0.4s;
}

.hero-buttons {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.btn-primary {
    padding: 1rem 2.5rem;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--primary);
    color: var(--primary-fg);
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: rgba(201, 166, 107, 0.85);
}

.btn-outline {
    padding: 1rem 2.5rem;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: transparent;
    color: var(--foreground);
    border: 1px solid rgba(52, 44, 37, 0.6);
    border-radius: 9999px;
    cursor: pointer;
    transition: border-color 0.3s;
}

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

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--muted-fg);
    transition: color 0.3s;
}

.hero-scroll:hover {
    color: var(--primary);
}

.hero-scroll span {
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.hero-scroll-line {
    position: relative;
    width: 1px;
    height: 4rem;
}

.hero-scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: pulse 2s infinite;
}


/* ----------------------------------------
   Section Common
   ---------------------------------------- */

.section {
    padding: 6rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 8rem 0;
    }
}

.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-label .line {
    height: 1px;
    width: 4rem;
    background: var(--border);
}

.section-label .text {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--primary);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.15;
}

.section-title .accent {
    color: var(--primary);
}


/* ----------------------------------------
   About Section
   ---------------------------------------- */

.about-section {
    background: var(--card);
    position: relative;
    overflow: hidden;
}

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



.about-content p {
    font-size: 1.2rem;
    line-height: 2;
    margin-top: 1.5rem;
}
@media (max-width: 1023px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-content p {
    font-size: 1rem;
}
}
.about-philosophy {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(52, 44, 37, 0.4);
}

.about-philosophy-title {
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.about-philosophy p {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    line-height: 1.8;
    margin-top: 0;
}

.about-gallery {
}

.about-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4/3;
}

.about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}


/* ----------------------------------------
   Menu Section
   ---------------------------------------- */

.menu-section {
    position: relative;
}

.menu-header {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .menu-header {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
        align-items: end;
    }
}

.menu-header p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted-fg);
}

.menu-grid {
    display: grid;
    gap: 1.5rem;
}

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

.menu-card {
    position: relative;
    overflow: hidden;
    background: rgba(33, 28, 24, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    /* Safari 対応 */
    border: 1px solid rgba(52, 44, 37, 0.4);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.5s;
}

.menu-card:hover {
    border-color: rgba(201, 166, 107, 0.4);
    background: var(--card);
}

.menu-card-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: var(--font-serif);
    font-size: 3rem;
    color: rgba(52, 44, 37, 0.3);
    transition: color 0.3s;
}

.menu-card:hover .menu-card-number {
    color: rgba(201, 166, 107, 0.2);
}

.menu-card-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(52, 44, 37, 0.6);
    border-radius: var(--radius);
    color: var(--muted-fg);
    transition: all 0.3s;
}

.menu-card:hover .menu-card-icon {
    border-color: var(--primary);
    color: var(--primary);
}

.menu-card h3 {
    margin-top: 1.5rem;
    font-family: var(--font-serif);
    font-size: 2rem;
}

.menu-card .subtitle {
    margin-top: 0.25rem;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: var(--muted-fg);
}

.menu-items {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-item {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.menu-item-info {
    display: flex;
    flex-direction: column;
}

.menu-item-name-ja {
    font-size: 1rem;
    transition: color 0.3s;
}

.menu-item:hover .menu-item-name-ja {
    color: var(--primary);
}

.menu-item-name {
    font-size: 1.1rem;
    color: rgb(121 107 92);
}

.menu-item-dots {
    flex: 1;
    min-width: 1rem;
    border-bottom: 1px dotted rgba(52, 44, 37, 0.5);
    margin-bottom: 0.4rem;
}

.menu-item-price {
    font-size: 1rem;
    font-variant-numeric: tabular-nums;
}

.menu-card-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 9999px;
    transition: width 0.5s;
}

.menu-card:hover .menu-card-line {
    width: 100%;
}

/* ----------------------------------------
   Online Store
   ---------------------------------------- */
.shop-section {
  position: relative; overflow: hidden;
  padding: 7rem 0 8rem;
}
.shop-bg {
  position: absolute; inset: 0;
}
.shop-bg img { width: 100%; height: 100%; object-fit: cover; }
.shop-bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg,
    rgba(18,15,13,0.96) 0%,
    rgba(18,15,13,0.88) 60%,
    rgba(18,15,13,0.96) 100%);
}
.shop-bg::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.3;
}
 
.shop-content { position: relative; z-index: 10; }
 
.shop-header { max-width: 42rem; margin-bottom: 4.5rem; }
.shop-title  { color: var(--fg); }
.shop-title em { color: var(--primary); }
.shop-desc {
  font-family: var(--font-jp); 
  font-size: 1rem;
  line-height: 1.9; color: var(--fg-muted); margin-top: 1.5rem;
}
 
.shop-products {
  display: grid; 
  gap: 1.5rem;
}
@media (min-width: 768px) { 
    .shop-products { 
        grid-template-columns: repeat(2, 1fr); gap: 2rem; 
    } }

.shop-product {
  display: flex; 
  flex-direction: column;
  background: rgba(28, 23, 20, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.5s;
  backdrop-filter: blur(8px); 
  -webkit-backdrop-filter: blur(8px);
}
.shop-product:hover { 
    border-color: rgba(201,164,106,0.4); transform: translateY(-4px); }
 
.shop-product-img {
  position: relative; 
  aspect-ratio: 16/10; 
  overflow: hidden;
}
.shop-product-img img {
  width: 100%; 
  height: 100%; 
  object-fit: cover;
}
.shop-product-badge {
  position: absolute; top: 1rem; right: 1rem;
  padding: 0.3rem 0.875rem;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  background: rgba(18,15,13,0.85); color: var(--primary);
  border: 1px solid rgba(201,164,106,0.35);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
 
.shop-product-body {
  padding: 1.75rem 2rem 2rem; display: flex; flex-direction: column; flex: 1;
}
.shop-product-tag {
  display: block; 
  font-size: 0.8rem; 
  letter-spacing: 0.3em; 
  text-transform: uppercase;
  color: var(--primary); margin-bottom: 0.75rem;
}
.shop-product-name {
  font-size: 2rem;
}
.shop-product-desc {
  font-family: var(--font-jp); font-size: 0.9rem;
  line-height: 1.85; color: var(--fg-muted); margin-top: 0.875rem; flex: 1;
}
.shop-product-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-dim);
}
.shop-product-price {
  font-family: var(--font-serif); 
  font-size: 1.5rem;
  font-variant-numeric: tabular-nums;
}
.shop-product-btn {
  padding: 1rem 2rem;
  font-size: 1rem; 
  letter-spacing: 0.15em; 
  text-transform: uppercase;
  background: var(--foreground); 
  border-radius: 9999px;
  color: #120f0d;
  transition: background 0.3s;
}
.shop-product-btn:hover { background: rgba(201,164,106,0.85); }
 
.shop-all {
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
  margin-top: 4rem; text-align: center;
}
.btn-shop-all {
  display: inline-flex; align-items: center; gap: 0.625rem;
  padding: 1rem 3rem;
  font-size: 0.875rem; letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid var(--primary); 
  color: var(--primary);
  transition: all 0.5s;
  position: relative; 
  overflow: hidden;
}

.btn-shop-all span, .btn-shop-all svg { 
    position: relative; z-index: 1; }
.btn-shop-all:hover { 
    color: #120f0d;
    background: var(--foreground); }
.btn-shop-all:hover::before { 
    transform: translateX(0); }
 
.shop-note {
  font-size: 0.8rem; color: var(--fg-muted); letter-spacing: 0.05em;
}

/* ----------------------------------------
   Gallery / Interior Section
   ---------------------------------------- */

.gallery-section {
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--background), rgba(33, 28, 24, 0.3), var(--background));
    pointer-events: none;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-header .section-label {
    justify-content: center;
}

.bento-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(12, 1fr);
        gap: 1.5rem;
    }
}

.bento-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

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

.bento-item.large {
    aspect-ratio: 4/3;
}

.bento-item.medium {
    aspect-ratio: 16/10;
}

@media (min-width: 768px) {
    .bento-item.large {
        grid-column: span 7;
        aspect-ratio: 16/12;
    }
    .bento-item.medium {
        grid-column: span 5;
    }
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 21, 18, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.bento-item:hover .bento-overlay {
    opacity: 1;
}

.bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    transform: translateY(1rem);
    opacity: 0;
    transition: all 0.5s;
}

.bento-item:hover .bento-content {
    transform: translateY(0);
    opacity: 1;
}

.bento-content .label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.bento-content h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
}

.bento-text-card {
    background: var(--card);
    border: 1px solid rgba(52, 44, 37, 0.4);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    transition: border-color 0.5s;
}

@media (min-width: 768px) {
    .bento-text-card {
        grid-column: span 5;
    }
}

.bento-text-card:hover {
    border-color: rgba(201, 166, 107, 0.4);
}

.bento-text-card .label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.bento-text-card h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    line-height: 1.4;
}

.bento-text-card p {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted-fg);
}


/* ----------------------------------------
   Testimonial
   ---------------------------------------- */

.testimonial {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .testimonial {
        padding: 8rem 0;
    }
}

.testimonial-bg {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}

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

.testimonial-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--background), rgba(26, 21, 18, 0.95), var(--background));
}

.testimonial-content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.5rem;
}

.testimonial-quote-mark {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 10vw, 6rem);
    line-height: 1;
    color: rgba(201, 166, 107, 0.2);
    user-select: none;
}

.testimonial blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.6;
    margin-top: 1rem;
}

.testimonial blockquote .accent {
    color: var(--primary);
}

.testimonial-author {
    margin-top: 2rem;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted-fg);
}


/* ----------------------------------------
   News Section
   ---------------------------------------- */

.news-section {
    background: #28292b;
}

.news-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .news-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.news-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.news-filter {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid rgba(52, 44, 37, 0.6);
    border-radius: 9999px;
    color: var(--muted-fg);
    cursor: pointer;
    transition: all 0.3s;
}

.news-filter:hover,
.news-filter.active {
    border-color: var(--primary);
    color: var(--primary);
}

.news-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

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

.news-card {
    background: var(--foreground);
    border: 1px solid rgb(0 0 0 / 80%);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
}

.news-card:hover {
    border-color: rgba(201, 166, 107, 0.4);
    transform: translateY(-4px);
}


/* フィルタリング用 */

.news-card[hidden] {
    display: none;
}

.news-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}


.news-card-content {
    padding: 1.5rem;
}

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

.news-card-date {
    font-size: 0.875rem;
    color: var(--secondary);
}

.news-card h3 {
    font-size: 1.0625rem;
    line-height: 1.5;
    transition: color 0.3s;
    color: var(--secondary);
}


/* ----------------------------------------
   Footer
   ---------------------------------------- */

.footer {
    background: rgba(16, 13, 11, 0.5);
}

.footer-main {
    padding: 4rem 0;
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-main {
        grid-template-columns: 2fr 1.5fr 1fr;
        gap: 4rem;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-brand-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius);
    background: rgba(201, 166, 107, 0.1);
    border: 1px solid rgba(201, 166, 107, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand-icon span {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--primary);
}

.footer-brand-text .sub {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted-fg);
}

.footer-brand-text .name {
    font-family: var(--font-serif);
    font-size: 2.3rem;
    letter-spacing: 0.05em;
}

.footer-about p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(52, 44, 37, 0.6);
    border-radius: var(--radius);
    color: var(--muted-fg);
    transition: all 0.3s;
}

.footer-social a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.footer-nav ul {
    margin-top: 1rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav a {
    font-size: 1.3rem;
    letter-spacing: 0.3em;
    color: var(--foreground);
    transition: color 0.3s;
    text-transform: uppercase;
}

.footer-nav a:hover {
    color: var(--primary);
}

.footer-info p {
    font-size: 1rem;
    color: var(--muted-fg);
    margin-bottom: 0.75rem;
}

.footer-info strong {
    color: var(--foreground);
}

.footer-reserve {
    margin-bottom: 2rem;
    display: inline-flex;
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 9999px;
    transition: all 0.3s;
}

.footer-reserve:hover {
    background: var(--foreground);
    color: var(--primary-fg);
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(52, 44, 37, 0.4);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--muted-fg);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 1rem;
    color: var(--foreground);
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--primary);
}