/*
Theme Name: Brackwell Theme
Description: Cinematic Bar Experience — Brackwell.jp Premium Redesign
Author: Antigravity
Version: 4.0
Text Domain: brackwell
*/

/* ======================== */
/* CSS Variables & Reset    */
/* ======================== */
:root {
  /* Light palette */
  --color-bg: #f5f1ec;
  --color-bg-warm: #ede7df;
  --color-bg-dark: #e8e2da;

  /* Dark palette */
  --color-dark: #1a1412;
  --color-dark-surface: #231d19;
  --color-dark-card: #2c2420;
  --color-dark-border: #3d332d;

  /* Accent */
  --color-accent: #6f2525;
  --color-accent-light: #8a3a3a;
  --color-accent-glow: rgba(111, 37, 37, 0.3);
  --color-gold: #c9a96e;
  --color-gold-light: #dfc28a;

  /* Text */
  --color-text: #111111;
  --color-text-secondary: #333333;
  --color-text-light: #666666;
  --color-text-muted: #999999;
  --color-white: #ffffff;
  --color-white-soft: rgba(255, 255, 255, 0.9);

  /* Borders */
  --color-border: #d4cfc8;
  --color-border-light: #e8e3dc;

  /* Typography */
  --font-main: 'Shippori Mincho B1', "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  --font-accent: 'Playfair Display', 'Cormorant Garamond', 'Shippori Mincho B1', serif;

  /* Effects */
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-heavy: 0 16px 48px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 40px rgba(111, 37, 37, 0.15);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-bg-light: rgba(245, 241, 236, 0.85);

  /* Layout */
  --max-width: 1100px;
  --max-width-narrow: 800px;
  --max-width-wide: 1400px;
}

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

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

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition-base), color var(--transition-base);
}

a:hover {
  opacity: 0.7;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  line-height: 1.4;
}

/* ======================== */
/* Scroll Animations        */
/* ======================== */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate="fade-in"] {
  transform: none;
}

[data-animate="slide-left"] {
  transform: translateX(-40px);
}

[data-animate="slide-right"] {
  transform: translateX(40px);
}

[data-animate="scale-in"] {
  transform: scale(0.95);
}

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }

/* ======================== */
/* Header / Navigation      */
/* ======================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  padding: 1.2rem 2rem;
  transition: background var(--transition-slow),
              box-shadow var(--transition-slow),
              padding var(--transition-slow);
}

.header.scrolled {
  background: rgba(245, 241, 236, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  padding: 0.6rem 2rem;
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.header__logo {
  display: block;
  width: 180px;
  transition: width var(--transition-slow), filter var(--transition-slow);
  filter: brightness(0) invert(1);
}

.header.scrolled .header__logo {
  width: 130px;
  filter: none;
}

.header__logo img {
  width: 100%;
}

.header__nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.header__nav a {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--color-white-soft);
  position: relative;
  padding-bottom: 2px;
  text-transform: uppercase;
  transition: color var(--transition-base);
}

.header.scrolled .header__nav a {
  color: var(--color-text-secondary);
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-base), left var(--transition-base);
}

.header__nav a:hover {
  opacity: 1;
  color: var(--color-gold);
}

.header__nav a:hover::after {
  width: 100%;
  left: 0;
}

.header__nav .nav-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.header__nav .nav-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Mobile hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
  padding: 8px;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: transform var(--transition-base), opacity var(--transition-base), background var(--transition-base);
}

.header.scrolled .header__hamburger span {
  background: var(--color-text);
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header.scrolled .header__hamburger.active span {
  background: var(--color-white);
}

.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 20, 18, 0.97);
  backdrop-filter: blur(20px);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.mobile-nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-overlay a {
  font-size: 18px;
  color: var(--color-white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
}

.mobile-nav-overlay a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-base), left var(--transition-base);
}

.mobile-nav-overlay a:hover::after {
  width: 100%;
  left: 0;
}

/* ======================== */
/* Hero Section             */
/* ======================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__video,
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: heroKenBurns 20s ease-in-out infinite alternate;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.08) translate(-1%, -1%);
  }
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__title {
  font-family: var(--font-accent);
  font-size: 64px;
  font-weight: 300;
  color: var(--color-white);
  letter-spacing: 0.25em;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.hero__subtitle {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 300;
  color: var(--color-white-soft);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero__location {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 1.5rem;
}

/* Scroll Indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.hero__scroll-indicator span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

/* ======================== */
/* Section Layout           */
/* ======================== */
.section {
  padding: 6rem 1.5rem;
}

.section--dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.section--accent {
  background: var(--color-accent);
  color: var(--color-white);
}

.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section--narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.section__heading {
  text-align: center;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

.section__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background: var(--color-gold);
}

.section--dark .section__heading::after {
  background: var(--color-gold);
}

.section__heading-sub {
  display: block;
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.2em;
  margin-top: 0.5rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.section--dark .section__heading-sub {
  color: rgba(255, 255, 255, 0.4);
}

.section__tagline {
  text-align: center;
  font-size: 24px;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  letter-spacing: 0.1em;
  border-bottom: none;
}

/* ======================== */
/* Intro Text               */
/* ======================== */
.intro-text {
  text-align: center;
  font-size: 17px;
  line-height: 2.2;
  color: var(--color-text);
  padding: 2rem 0;
  max-width: 600px;
  margin: 0 auto;
}

.intro-text p + p {
  margin-top: 1em;
}

/* ======================== */
/* Interior Slider          */
/* ======================== */
.slider-section {
  padding: 5rem 0;
  overflow: hidden;
}

.slider-section__heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.slider-section__heading h2 {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.slider-section__heading .sub {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.3rem;
}

.interior-slider {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 1rem;
}

.interior-slider .swiper-slide {
  overflow: hidden;
  border-radius: 6px;
}

.interior-slider .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  transition: transform 0.6s ease;
}

.interior-slider .swiper-slide:hover img {
  transform: scale(1.03);
}

.interior-slider .swiper-button-prev,
.interior-slider .swiper-button-next {
  color: var(--color-accent);
  opacity: 0.6;
  transition: opacity var(--transition-base);
}

.interior-slider .swiper-button-prev:hover,
.interior-slider .swiper-button-next:hover {
  opacity: 1;
}

.interior-slider .swiper-pagination-bullet {
  background: var(--color-text-muted);
  opacity: 0.4;
}

.interior-slider .swiper-pagination-bullet-active {
  background: var(--color-accent);
  opacity: 1;
}

.slider-desc {
  max-width: 600px;
  margin: 2.5rem auto 0;
  padding: 0 1.5rem;
  font-size: 15px;
  line-height: 2.2;
  color: var(--color-text-secondary);
  text-align: center;
}

/* ======================== */
/* Drink About (Image+Text) */
/* ======================== */
.drink-about {
  padding: 4rem 1.5rem;
}

.drink-about__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.drink-about__row {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.drink-about__row:last-child {
  margin-bottom: 0;
}

.drink-about__row--reverse {
  flex-direction: row-reverse;
}

.drink-about__img {
  flex: 0 0 45%;
  overflow: hidden;
  border-radius: 6px;
}

.drink-about__img img {
  width: 100%;
  border-radius: 6px;
  transition: transform 0.8s ease;
}

.drink-about__img:hover img {
  transform: scale(1.04);
}

.drink-about__text {
  flex: 1;
}

.drink-about__text h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

.drink-about__text p {
  font-size: 16px;
  line-height: 2;
  color: var(--color-text-secondary);
}

/* ======================== */
/* Drink Menu (Dark)        */
/* ======================== */
.menu-section {
  padding: 6rem 1.5rem;
  background: var(--color-dark);
  color: var(--color-white);
  position: relative;
}

.menu-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.menu-section__inner {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.menu-section .section__heading {
  color: var(--color-white);
}

.menu-section .section__heading::after {
  background: var(--color-gold);
}

.menu-section .section__heading-sub {
  color: rgba(255, 255, 255, 0.4);
}

/* Menu Tabs */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.menu-tab {
  padding: 0.5rem 1.5rem;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--color-dark-border);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: var(--font-main);
  border-radius: 2px;
}

.menu-tab:hover {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.menu-tab.active {
  color: var(--color-gold);
  border-color: var(--color-gold);
  background: rgba(201, 169, 110, 0.08);
}

/* Menu Categories */
.menu-category {
  margin-bottom: 3rem;
}

.menu-category[data-category] {
  display: none;
}

.menu-category[data-category].active {
  display: block;
}

.menu-category__title {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--color-gold);
  letter-spacing: 0.1em;
}

.menu-list {
  border-top: 1px solid var(--color-dark-border);
}

.menu-list li {
  padding: 0.9rem 0;
  font-size: 16px;
  border-bottom: 1px solid var(--color-dark-border);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  color: rgba(255, 255, 255, 0.85);
}

.menu-list .item-name {
  flex: 1;
  letter-spacing: 0.03em;
}

.menu-list .item-price {
  white-space: nowrap;
  margin-left: 1rem;
  color: var(--color-gold-light);
  font-size: 16px;
  letter-spacing: 0.05em;
}

/* Menu section photo divider */
.menu-photo-divider {
  width: 100%;
  max-width: var(--max-width-wide);
  margin: 0 auto;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.menu-photo-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ======================== */
/* Accordion Menu            */
/* ======================== */
.custom-accordion {
  width: 100%;
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}

.custom-accordion details {
  border-bottom: 1px solid var(--color-dark-border);
  padding: 1.2rem 0;
}

.custom-accordion summary {
  font-family: var(--font-accent);
  font-size: 18px;
  letter-spacing: 0.1em;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-base);
}

.custom-accordion summary::-webkit-details-marker {
  display: none;
}

.custom-accordion summary::after {
  content: '+';
  font-size: 22px;
  color: var(--color-gold);
  transition: transform var(--transition-base);
}

.custom-accordion details[open] summary::after {
  content: '\2212';
}

.custom-accordion summary:hover {
  color: var(--color-gold-light);
}

.custom-accordion .accordion-content {
  padding-top: 1rem;
}

.accordion-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.7rem 0;
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-item span:last-child {
  white-space: nowrap;
  margin-left: 1rem;
  color: var(--color-gold-light);
  letter-spacing: 0.05em;
}

/* ======================== */
/* Cocktail Cards           */
/* ======================== */
.cocktail-cards {
  padding: 6rem 1.5rem;
  background: var(--color-bg);
}

.cocktail-card {
  max-width: var(--max-width-narrow);
  margin: 0 auto 3rem;
  border: 1px solid var(--color-border);
  padding: 2.5rem;
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  background: var(--color-white);
  border-radius: 4px;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.cocktail-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.cocktail-card:last-child {
  margin-bottom: 0;
}

.cocktail-card--reverse {
  flex-direction: row-reverse;
}

.cocktail-card__img {
  flex: 0 0 42%;
  overflow: hidden;
  border-radius: 4px;
}

.cocktail-card__img img {
  width: 100%;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cocktail-card:hover .cocktail-card__img img {
  transform: scale(1.05);
}

.cocktail-card__text {
  flex: 1;
}

.cocktail-card__name {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

.cocktail-card__price {
  font-size: 14px;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.cocktail-card__desc {
  font-size: 14px;
  line-height: 2;
  color: var(--color-text-secondary);
}

/* ======================== */
/* Space Rental Section     */
/* ======================== */
.rental-section {
  padding: 6rem 1.5rem;
  background: var(--color-dark);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.rental-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.rental-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.rental-section .section__heading {
  color: var(--color-white);
}

.rental-section .section__heading::after {
  background: var(--color-gold);
}

.rental-section .section__heading-sub {
  color: rgba(255, 255, 255, 0.4);
}

.rental-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 15px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.7);
}

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

.rental-plan {
  border: 1px solid var(--color-dark-border);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--color-dark-card);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  position: relative;
  overflow: hidden;
}

.rental-plan:hover {
  border-color: var(--color-gold);
  box-shadow: 0 0 30px rgba(201, 169, 110, 0.1);
}

.rental-plan__badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid var(--color-gold);
  padding: 0.2rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}

.rental-plan__name {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.rental-plan__price {
  font-family: var(--font-accent);
  font-size: 36px;
  font-weight: 300;
  color: var(--color-gold);
  margin-bottom: 0.3rem;
  letter-spacing: 0.05em;
}

.rental-plan__price-unit {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.rental-plan__details {
  margin-top: 1.5rem;
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.6);
}

.rental-plan__details li {
  padding: 0.3rem 0;
}

.rental-plan__details li::before {
  content: '─ ';
  color: var(--color-gold);
}

/* Features grid */
.rental-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.rental-feature {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid var(--color-dark-border);
  border-radius: 4px;
  background: var(--color-dark-surface);
}

.rental-feature__icon {
  font-size: 28px;
  margin-bottom: 0.8rem;
}

.rental-feature__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

/* CTA */
.rental-cta {
  text-align: center;
}

.rental-cta__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.btn-rental {
  display: inline-block;
  padding: 1rem 3rem;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition-base);
  font-family: var(--font-main);
}

.btn-rental:hover {
  background: var(--color-gold);
  color: var(--color-dark);
  opacity: 1;
}

/* ======================== */
/* Instagram Section        */
/* ======================== */
.instagram-section {
  padding: 6rem 1.5rem;
  background: var(--color-bg);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  max-width: var(--max-width);
  margin: 0 auto 2rem;
  border-radius: 4px;
  overflow: hidden;
}

.instagram-grid__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.instagram-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.instagram-grid__item:hover img {
  transform: scale(1.08);
}

.instagram-grid__item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background var(--transition-base);
}

.instagram-grid__item:hover::after {
  background: rgba(0, 0, 0, 0.2);
}

.instagram-follow-btn {
  display: block;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  padding: 1rem;
  transition: color var(--transition-base);
}

.instagram-follow-btn:hover {
  color: var(--color-gold);
  opacity: 1;
}

/* ======================== */
/* News                     */
/* ======================== */
.news-section {
  padding: 5rem 1.5rem;
}

.news-table {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  width: 100%;
  border-collapse: collapse;
}

.news-table tr {
  border-bottom: 1px solid var(--color-border-light);
}

.news-table th,
.news-table td {
  padding: 1.2rem 0.5rem;
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  vertical-align: top;
}

.news-table th {
  white-space: nowrap;
  width: 140px;
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: 13px;
  letter-spacing: 0.05em;
}

.news-table td {
  color: var(--color-text-secondary);
}

/* ======================== */
/* Access / Map             */
/* ======================== */
.access-section {
  padding: 5rem 1.5rem;
  background: var(--color-bg-warm);
}

.access-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  gap: 3rem;
}

.access-info {
  flex: 1;
}

.access-map {
  flex: 1;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.access-map iframe {
  width: 100%;
  height: 350px;
  border: none;
}

.access-table {
  width: 100%;
  border-collapse: collapse;
}

.access-table tr {
  border-bottom: 1px solid var(--color-border);
}

.access-table th,
.access-table td {
  padding: 0.9rem 0.5rem;
  font-size: 15px;
  text-align: left;
  vertical-align: top;
}

.access-table th {
  font-weight: 400;
  white-space: nowrap;
  width: 80px;
  color: var(--color-text-muted);
  font-size: 13px;
  letter-spacing: 0.03em;
}

.btn-google-map {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 2.5rem;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 14px;
  letter-spacing: 0.1em;
  border-radius: 2px;
  transition: background var(--transition-base), box-shadow var(--transition-base);
  text-align: center;
}

.btn-google-map:hover {
  background: var(--color-accent-light);
  box-shadow: var(--shadow-glow);
  opacity: 1;
}

/* ======================== */
/* Footer                   */
/* ======================== */
.footer {
  background: var(--color-dark);
  padding: 4rem 1.5rem 2rem;
  color: var(--color-white);
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-dark-border);
  margin-bottom: 2rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__logo {
  width: 150px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer__tagline {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.4);
}

.footer__column h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 1.2rem;
}

.footer__column a,
.footer__column p {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.6rem;
  transition: color var(--transition-base);
}

.footer__column a:hover {
  color: var(--color-white);
  opacity: 1;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-dark-border);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-base);
}

.footer__social a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  opacity: 1;
}

.footer__social a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ======================== */
/* Responsive               */
/* ======================== */
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }

  .header__hamburger {
    display: flex;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .header__inner {
    flex-direction: row;
    justify-content: center;
    position: relative;
  }

  .header__logo {
    width: 130px;
  }

  .hero__title {
    font-size: 40px;
    letter-spacing: 0.15em;
  }

  .hero__subtitle {
    font-size: 14px;
  }

  .hero__location {
    font-size: 10px;
  }

  .concept-video__text {
    font-size: 22px;
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .section__heading {
    font-size: 22px;
  }

  .section__tagline {
    font-size: 18px;
  }

  .intro-text {
    font-size: 16px;
    padding: 1.5rem 0;
  }

  .drink-about__row,
  .drink-about__row--reverse {
    flex-direction: column;
  }

  .drink-about__img {
    flex: none;
    width: 100%;
  }

  .drink-about__text h3 {
    font-size: 20px;
  }

  .drink-about__text p {
    font-size: 16px;
  }

  .cocktail-card {
    flex-direction: column !important;
    padding: 1.5rem;
  }

  .cocktail-card__img {
    flex: none;
    width: 100%;
  }

  .rental-plans {
    grid-template-columns: 1fr;
  }

  .rental-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .rental-plan__price {
    font-size: 28px;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .access-section__inner {
    flex-direction: column;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .menu-list li {
    font-size: 16px;
  }

  .news-table th {
    width: 100px;
    font-size: 12px;
  }

  .news-table td {
    font-size: 15px;
  }

  .menu-tabs {
    gap: 0.3rem;
  }

  .menu-tab {
    padding: 0.4rem 1rem;
    font-size: 14px;
  }

  .menu-photo-divider {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 32px;
    letter-spacing: 0.1em;
  }

  .hero__subtitle {
    font-size: 12px;
  }

  .header__logo {
    width: 110px;
  }

  .section__heading {
    font-size: 20px;
  }

  .cocktail-card {
    padding: 1rem;
  }

  .cocktail-card__name {
    font-size: 18px;
  }

  .rental-features {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .rental-feature {
    padding: 1rem 0.5rem;
  }

  .slider-section__heading h2 {
    font-size: 22px;
  }

  .concept-video__text {
    font-size: 18px;
  }
}
