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

/* Screen-reader only — visible to search crawlers, hidden visually */
.sr-only {
  position: absolute;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

:root {
  --gold:       #C9A052;
  --gold-light: #E8C97A;
  --gold-dim:   #7A5E2A;
  --bg:         #06060A;
  --bg2:        #0D0D12;
  --bg3:        #111118;
  --text:       #F0EAD6;
  --text-muted: #9A8C70;
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Sarabun', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

/* ══ NAV ══ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(6,6,10,.92) 0%, transparent 100%);
  backdrop-filter: blur(2px);
}
.nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.nav-logo img {
  height: 28px; width: auto; display: block;
}
.nav-logo-sub {
  font-size: 10px; letter-spacing: .2em;
  color: var(--text-muted); display: block;
  font-weight: 400; border-left: 1px solid var(--gold-dim);
  padding-left: 14px;
}
@media (max-width: 640px) { .nav-logo-sub { display: none; } }
.nav-event-tag {
  font-family: var(--sans); font-size: 12px;
  letter-spacing: .2em; color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 6px 16px; font-weight: 500;
  text-transform: uppercase;
}
.nav-right {
  display: flex; align-items: center; gap: 14px;
}
.nav-blog-link {
  font-family: var(--sans); font-size: 12px;
  letter-spacing: .15em; color: var(--text-muted);
  text-decoration: none; font-weight: 500;
  transition: color .3s;
}
.nav-blog-link:hover { color: var(--gold); }
@media (max-width: 768px) { .nav-blog-link { display: none; } }

/* ══ LANGUAGE SWITCHER ══ */
.lang-switch {
  display: inline-flex; align-items: center;
  border: 1px solid var(--gold-dim);
  font-family: var(--sans); font-size: 11px;
  letter-spacing: .15em; font-weight: 600;
  overflow: hidden;
}
.lang-btn {
  background: transparent; border: none; cursor: pointer;
  color: var(--text-muted); padding: 6px 10px;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  transition: all .25s ease;
}
.lang-btn:hover { color: var(--gold); }
.lang-btn.active { background: var(--gold); color: var(--bg); }
.lang-switch-mobile {
  margin-top: 8px;
}

/* ══ MOBILE MENU ══ */
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; padding: 0;
  flex-direction: column; justify-content: center; gap: 5px;
}
.menu-toggle span {
  display: block; width: 24px; height: 1.5px; background: var(--gold);
  transition: transform .3s, opacity .3s;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(6,6,10,.98); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px; opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
}
.mobile-menu.active { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--sans); font-size: 20px; font-weight: 400;
  color: var(--text); text-decoration: none;
  letter-spacing: .1em; padding: 8px 16px;
  transition: color .3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-divider {
  width: 40px; height: 1px; background: var(--gold-dim); margin: 8px 0;
}

/* ══ CTA BUTTONS ══ */
.cta-row {
  display: flex; gap: 14px; justify-content: center;
  margin-top: 40px; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; font-size: 13px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  border: 1px solid var(--gold); background: transparent;
  color: var(--gold); transition: all .3s ease;
  font-family: var(--sans);
}
.btn:hover { background: var(--gold); color: var(--bg); }
.btn.btn-primary { background: var(--gold); color: var(--bg); }
.btn.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn svg { width: 16px; height: 16px; fill: currentColor; }

/* ══ HERO ══ */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  /* background-image removed — <img> below handles visual + LCP measurement */
  overflow: hidden;
  transform: scale(1.05); transition: transform 8s ease;
}
/* LCP img — replaces CSS background; must be visible for browser LCP measurement */
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  transform: inherit;
  pointer-events: none;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(6,6,10,.6) 0%, rgba(6,6,10,.25) 40%, rgba(6,6,10,.7) 80%, var(--bg) 100%),
    radial-gradient(ellipse at center, transparent 20%, rgba(6,6,10,.55) 100%);
}
.hero:hover .hero-bg { transform: scale(1); }

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
}
.hero-eyebrow {
  font-family: var(--sans); font-size: 12px;
  letter-spacing: .35em; color: var(--gold-light);
  text-transform: uppercase; margin-bottom: 20px;
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(0,0,0,.8);
}
.hero-title-th {
  font-family: var(--sans);
  font-size: clamp(60px, 11vw, 120px);
  font-weight: 300; line-height: 1;
  letter-spacing: .06em; color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 4px 32px rgba(0,0,0,.9), 0 2px 8px rgba(0,0,0,.7);
}
.hero-title-en {
  font-family: var(--serif);
  font-size: clamp(17px, 2.5vw, 26px);
  font-weight: 400; font-style: italic;
  color: var(--gold-light); letter-spacing: .18em; margin-bottom: 36px;
  text-shadow: 0 2px 16px rgba(0,0,0,.9);
}
.hero-divider {
  width: 56px; height: 1px;
  background: var(--gold); margin: 0 auto 36px;
  position: relative;
}
.hero-divider::before, .hero-divider::after {
  content: ''; position: absolute; top: -3px;
  width: 7px; height: 7px;
  border: 1px solid var(--gold); transform: rotate(45deg);
}
.hero-divider::before { left: -4px; }
.hero-divider::after  { right: -4px; }
.hero-meta {
  display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
}
.hero-meta-item { text-align: center; }
.hero-meta-label {
  font-size: 10px; letter-spacing: .3em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 4px; font-weight: 500;
  text-shadow: 0 1px 8px rgba(0,0,0,.8);
}
.hero-meta-value {
  font-family: var(--sans); font-size: 15px;
  letter-spacing: .08em; color: #fff; font-weight: 500;
  text-shadow: 0 2px 12px rgba(0,0,0,.9);
}
.hero-meta-sep { width: 1px; height: 28px; background: var(--gold-dim); }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll span {
  font-size: 10px; letter-spacing: .3em; color: var(--text-muted);
  text-transform: uppercase; font-weight: 400;
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; } 50% { opacity: 1; }
}

/* ══ SECTION SHARED ══ */
section { padding: 88px 48px; }
.section-label {
  font-size: 11px; letter-spacing: .35em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
  font-weight: 500;
}
.section-label::before {
  content: ''; display: inline-block;
  width: 20px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: var(--sans);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500; line-height: 1.2; letter-spacing: .02em;
}

/* ══ BRANDS BAR ══ */
.brands-bar {
  background: var(--bg2);
  border-top: 1px solid rgba(201,160,82,.2);
  border-bottom: 1px solid rgba(201,160,82,.08);
}
.brands-bar-label {
  text-align: center; padding: 52px 48px 40px;
}
.brands-bar-label h2 {
  font-family: var(--sans);
  font-size: clamp(20px, 2.8vw, 32px);
  font-weight: 500; letter-spacing: .04em; margin-top: 10px;
}
.brands-bar-label p {
  font-size: 14px; color: var(--text-muted);
  margin-top: 10px; font-weight: 400; letter-spacing: .03em;
}
.brands-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid rgba(201,160,82,.12);
}
.brand-card {
  position: relative; background: var(--bg2);
  padding: 36px 24px 32px;
  display: flex; flex-direction: column; align-items: flex-start;
  text-decoration: none; color: var(--text);
  overflow: hidden; transition: background .3s ease;
  min-height: 260px;
  border-right: 1px solid rgba(201,160,82,.08);
}
.brand-card:last-child { border-right: none; }
.brand-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform .4s ease;
}
.brand-card.has-link { cursor: pointer; }
.brand-card.has-link:hover { background: #131320; }
.brand-card.has-link:hover::before { transform: scaleX(1); }
.brand-card.no-link { cursor: default; opacity: .6; }

.brand-logo-wrap {
  height: 72px; margin-bottom: 20px;
  display: flex; align-items: center;
}
.brand-logo-wrap picture { display: inline-flex; }
.brand-logo-wrap img {
  max-height: 64px; max-width: 180px;
  width: auto; height: auto;
  object-fit: contain;
  opacity: .92; transition: opacity .3s ease;
}
.brand-logo-wrap img.logo-mono { filter: brightness(0) invert(1); }
.brand-card.has-link:hover .brand-logo-wrap img { opacity: 1; }
.brand-logo-text {
  font-family: var(--sans); font-size: 17px; font-weight: 600;
  letter-spacing: .12em; color: var(--text);
  text-transform: uppercase; opacity: .75;
  transition: opacity .3s ease;
}
.brand-card.has-link:hover .brand-logo-text { opacity: 1; }
.brand-num {
  font-size: 10px; letter-spacing: .3em; color: var(--gold-dim);
  font-weight: 500; margin-bottom: 14px;
  transition: color .3s;
}
.brand-card.has-link:hover .brand-num { color: var(--gold); }
.brand-desc {
  font-size: 12px; color: var(--text-muted);
  line-height: 1.8; flex: 1; font-weight: 400;
}
.brand-badge-soon {
  margin-top: 18px; font-size: 9px; letter-spacing: .3em;
  color: var(--gold-dim); text-transform: uppercase;
  border: 1px solid rgba(122,94,42,.5); padding: 4px 10px; display: inline-block;
}
.brand-cta {
  margin-top: 18px; font-size: 10px; letter-spacing: .28em;
  color: var(--gold); text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
  font-weight: 500; transition: gap .3s ease;
}
.brand-card.has-link:hover .brand-cta { gap: 16px; }
.brand-cta-line {
  width: 18px; height: 1px; background: var(--gold); transition: width .3s;
}
.brand-card.has-link:hover .brand-cta-line { width: 28px; }
.brand-corner {
  position: absolute; bottom: 14px; right: 14px;
  width: 14px; height: 14px;
  border-bottom: 1px solid rgba(201,160,82,.2);
  border-right: 1px solid rgba(201,160,82,.2);
  transition: border-color .3s;
}
.brand-card.has-link:hover .brand-corner { border-color: var(--gold); }

/* ══ VIDEO SECTION ══ */
.video-section {
  background: var(--bg); text-align: center;
}
.video-inner {
  max-width: 1280px; margin: 0 auto;
}
.video-header { margin-bottom: 40px; }
.video-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px; align-items: start;
}
.video-landscape {
  position: relative; padding-bottom: 56.25%;
  height: 0; overflow: hidden;
  border: 1px solid rgba(201,160,82,.2);
}
.video-landscape iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
}
/* Click-to-play video placeholder */
.video-placeholder {
  position: absolute; inset: 0;
  cursor: pointer; overflow: hidden;
}
.video-placeholder img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block; transition: transform .4s ease;
}
.video-placeholder:hover img { transform: scale(1.03); }
.video-placeholder:focus { outline: 2px solid var(--gold); }
.video-play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.video-play-btn svg { width: 72px; height: 72px; filter: drop-shadow(0 2px 8px rgba(0,0,0,.5)); }
.video-placeholder:hover .video-play-btn svg { transform: scale(1.1); transition: transform .2s; }
.video-portrait-wrap {
  width: 220px; flex-shrink: 0;
}
.video-portrait {
  position: relative; padding-bottom: 177.78%;
  height: 0; overflow: hidden;
  border: 1px solid rgba(201,160,82,.2);
}
.video-portrait iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
}
.video-portrait .video-placeholder iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
}
.video-caption {
  font-size: 10px; letter-spacing: .25em; color: var(--text-muted);
  text-transform: uppercase; margin-top: 10px; font-weight: 400;
}
@media (max-width: 768px) {
  .video-grid { grid-template-columns: 1fr; }
  .video-portrait-wrap { width: 100%; }
  .video-portrait { padding-bottom: 177.78%; }
}

/* ══ CONCEPT ══ */
.concept {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
  max-width: 1280px; margin: 0 auto;
}
.concept-title {
  font-family: var(--sans);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400; line-height: 1.2; margin-bottom: 8px;
}
.concept-title em { font-style: italic; color: var(--gold-light); font-weight: 300; }
.concept-subtitle {
  font-family: var(--serif); font-size: 17px; font-style: italic;
  color: var(--gold); margin-bottom: 28px; letter-spacing: .06em;
}
.concept-body {
  font-size: 15px; line-height: 1.9; color: var(--text-muted);
}
.concept-body p + p { margin-top: 14px; }
.concept-body strong { color: var(--text); font-weight: 500; }
.concept-quote {
  margin-top: 32px; padding-left: 18px;
  border-left: 2px solid var(--gold);
}
.concept-quote p {
  font-family: var(--sans); font-size: 18px; font-weight: 400;
  color: var(--text); line-height: 1.6;
}
.concept-image {
  position: relative; border-radius: 2px; overflow: hidden;
}
.concept-image img {
  width: 100%; display: block;
  filter: brightness(.88) contrast(1.05);
  transition: transform .6s ease;
}
.concept-image:hover img { transform: scale(1.04); }
.concept-image::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  border: 1px solid rgba(201,160,82,.22); pointer-events: none;
}

/* ══ GALLERY ══ */
.gallery-section { padding: 72px 0; background: var(--bg); overflow: hidden; }
.gallery-header {
  padding: 0 48px; margin-bottom: 36px;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.gallery-hint {
  font-size: 11px; letter-spacing: .25em;
  color: var(--text-muted); text-transform: uppercase; font-weight: 400;
}
.gallery-strip {
  display: flex; gap: 12px; padding: 0 48px;
  overflow-x: auto; cursor: grab;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.gallery-strip::-webkit-scrollbar { display: none; }
.gallery-strip:active { cursor: grabbing; }
.gallery-item {
  flex-shrink: 0; overflow: hidden; border-radius: 2px; position: relative;
}
.gallery-item img {
  display: block; height: 320px; width: auto; object-fit: cover;
  filter: brightness(.82) contrast(1.08) saturate(.9);
  transition: filter .4s, transform .5s;
}
.gallery-item:hover img { filter: brightness(1) contrast(1.02) saturate(1); transform: scale(1.03); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid rgba(201,160,82,0); transition: border-color .4s; pointer-events: none;
}
.gallery-item:hover::after { border-color: rgba(201,160,82,.4); }

/* ══ EVENT ══ */
.event-section { background: var(--bg3); }
.event-inner {
  max-width: 1280px; margin: 0 auto;
}
.event-header { text-align: center; margin-bottom: 48px; }
.event-header h2 {
  font-family: var(--sans); font-size: clamp(28px, 4vw, 44px);
  font-weight: 500; letter-spacing: .02em; margin-top: 10px;
}
.event-header p {
  color: var(--text-muted); margin-top: 14px; font-size: 15px;
}
.event-datetime {
  display: inline-flex; gap: 18px; margin-top: 22px;
  padding: 12px 24px; border: 1px solid var(--gold-dim);
  flex-wrap: wrap; justify-content: center;
}
.event-datetime span { color: var(--gold); font-weight: 600; letter-spacing: .08em; font-size: 14px; }
.event-datetime em { color: var(--text-muted); font-style: normal; font-size: 13px; }

.event-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; align-items: stretch;
}
.event-poster {
  position: relative; overflow: hidden;
  border: 1px solid rgba(201,160,82,.2);
}
.event-poster img {
  width: 100%; display: block; transition: transform .6s ease;
}
.event-poster:hover img { transform: scale(1.02); }
.event-poster-label {
  position: absolute; top: 14px; left: 14px;
  background: rgba(6,6,10,.85); color: var(--gold);
  padding: 6px 14px; font-size: 10px; letter-spacing: .25em;
  border: 1px solid var(--gold-dim); text-transform: uppercase;
  font-weight: 500;
}
.event-highlights {
  background: var(--bg2); padding: 36px 32px;
  border: 1px solid rgba(201,160,82,.15);
  display: flex; flex-direction: column;
}
.event-highlights h3 {
  font-family: var(--sans); font-size: 13px;
  letter-spacing: .3em; color: var(--gold);
  text-transform: uppercase; font-weight: 500; margin-bottom: 20px;
}
.event-highlight-list {
  list-style: none; padding: 0; margin: 0 0 28px;
}
.event-highlight-list li {
  padding: 14px 0; border-bottom: 1px solid rgba(201,160,82,.08);
  font-size: 15px; line-height: 1.6;
  display: flex; gap: 12px; align-items: flex-start;
}
.event-highlight-list li:last-child { border-bottom: none; }
.event-highlight-list li::before {
  content: '◆'; color: var(--gold); font-size: 10px;
  margin-top: 6px; flex-shrink: 0;
}
.event-speakers {
  margin-top: auto; padding-top: 20px;
  border-top: 1px solid rgba(201,160,82,.15);
}
.event-speakers-label {
  font-size: 10px; letter-spacing: .3em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 12px; font-weight: 500;
}
.event-speaker-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px;
}
.event-speaker {
  font-size: 13px; line-height: 1.4; padding: 6px 0;
}
.event-speaker strong {
  display: block; color: var(--text); font-weight: 500;
}
.event-speaker span {
  color: var(--text-muted); font-size: 11px; letter-spacing: .02em;
}
.event-cta-row {
  display: flex; gap: 12px; justify-content: center;
  margin-top: 32px; flex-wrap: wrap;
}
.event-live {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; font-size: 12px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); background: transparent;
  border: 1px solid var(--gold-dim);
  text-decoration: none; transition: all .3s;
  font-family: var(--sans);
}
.event-live:hover { border-color: var(--gold); color: var(--gold-light); }
.event-live::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201,160,82,.6);
  animation: livePulse 2s infinite;
}
@keyframes livePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,160,82,.55); }
  50%     { box-shadow: 0 0 0 7px rgba(201,160,82,0); }
}
@media (max-width: 900px) {
  .event-grid { grid-template-columns: 1fr; }
  .event-speaker-row { grid-template-columns: 1fr; }
}

/* ══ LOCATION ══ */
.location-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.location-image { position: relative; border-radius: 2px; overflow: hidden; }
.location-image img {
  width: 100%; display: block;
  filter: brightness(.78) contrast(1.1) saturate(.65);
}
.location-image::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  border: 1px solid rgba(201,160,82,.2); pointer-events: none;
}
.location-item {
  padding: 24px 0; border-bottom: 1px solid rgba(201,160,82,.1);
}
.location-item:first-child { padding-top: 0; }
.location-item-label {
  font-size: 10px; letter-spacing: .35em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 8px; font-weight: 500;
}
.location-item-value {
  font-family: var(--sans); font-size: 20px; font-weight: 500; line-height: 1.4;
}
.location-item-sub {
  font-size: 14px; color: var(--text-muted); margin-top: 4px; line-height: 1.6;
}
.booth-badge {
  display: inline-block; background: var(--gold); color: var(--bg);
  font-family: var(--sans); font-size: 26px; font-weight: 700;
  padding: 8px 22px; letter-spacing: .12em; margin-top: 4px;
}

/* ══ FAQ ══ */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  background: var(--bg2);
  border-left: 2px solid var(--gold-dim);
  transition: border-color .3s;
}
.faq-item[open] { border-left-color: var(--gold); }
.faq-q {
  padding: 22px 28px; cursor: pointer;
  font-size: 16px; font-weight: 500; line-height: 1.5;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+'; font-size: 22px; color: var(--gold);
  font-weight: 300; flex-shrink: 0; line-height: 1;
  transition: transform .3s;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 28px 22px;
  font-size: 14px; line-height: 1.9; color: var(--text-muted);
}
.faq-a strong { color: var(--text); font-weight: 500; }

/* ══ FOOTER ══ */
footer {
  background: var(--bg); padding: 56px 48px 36px;
  border-top: 1px solid rgba(201,160,82,.1);
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.footer-brand {
  display: flex; align-items: center; gap: 14px;
}
.footer-brand img {
  height: 32px; width: auto; display: block; opacity: .9;
}
.footer-brand span {
  display: block; font-size: 10px; letter-spacing: .25em;
  color: var(--text-muted); text-transform: uppercase;
  font-weight: 400; padding-left: 14px;
  border-left: 1px solid var(--gold-dim);
}
.footer-copy { font-size: 12px; color: var(--text-muted); letter-spacing: .06em; text-align: right; }
.footer-wave {
  text-align: center; padding: 28px 0 0;
  max-width: 1280px; margin: 28px auto 0;
  border-top: 1px solid rgba(255,255,255,.04);
}
.footer-wave p {
  font-family: var(--serif); font-style: italic;
  font-size: 15px; color: var(--text-muted); letter-spacing: .06em;
}

/* ══ CONTACT ══ */
.contact-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: stretch;
}
.contact-item {
  display: flex; gap: 16px; padding: 20px 0;
  border-bottom: 1px solid rgba(201,160,82,.1);
}
.contact-item:first-child { padding-top: 0; }
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid var(--gold-dim); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); transition: all .3s;
}
.contact-item:hover .contact-icon { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.contact-icon svg { width: 18px; height: 18px; fill: currentColor; }
.contact-info { flex: 1; }
.contact-label {
  font-size: 10px; letter-spacing: .3em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 4px; font-weight: 500;
}
.contact-value {
  font-size: 15px; color: var(--text); font-weight: 400;
  text-decoration: none; line-height: 1.5;
}
a.contact-value:hover { color: var(--gold); }
.contact-sub { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.social-row {
  display: flex; gap: 10px; margin-top: 28px;
}
.social-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--gold-dim); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); text-decoration: none;
  transition: all .3s;
}
.social-icon:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.social-icon svg { width: 18px; height: 18px; fill: currentColor; }
.map-wrap {
  position: relative; width: 100%; min-height: 380px;
  border: 1px solid rgba(201,160,82,.2); overflow: hidden;
}
.map-wrap iframe {
  width: 100%; height: 100%; border: none;
  filter: grayscale(.3) contrast(1.1);
  position: absolute; inset: 0;
}
/* Map card — replaces iframe; no external SDK load */
.map-card { min-height: 0; display: flex; align-items: stretch; }
.map-card-inner {
  display: flex; align-items: flex-start; gap: 24px;
  padding: 40px; width: 100%;
  background: linear-gradient(135deg, rgba(201,160,82,.07) 0%, transparent 60%);
}
.map-card-icon { flex-shrink: 0; margin-top: 4px; }
.map-card-info { flex: 1; }
.map-card-name {
  font-family: var(--serif); font-size: 22px;
  color: var(--gold); margin-bottom: 6px;
}
.map-card-addr { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.map-card-how {
  list-style: none; margin-bottom: 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.map-card-how li { font-size: 14px; color: var(--text); line-height: 1.5; }
.map-card-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border: 1px solid var(--gold);
  color: var(--gold); font-size: 13px; letter-spacing: .1em;
  text-decoration: none; transition: background .2s, color .2s;
}
.map-card-btn:hover { background: var(--gold); color: var(--bg); text-decoration: none; }
@media (max-width: 600px) {
  .map-card-inner { flex-direction: column; gap: 16px; padding: 24px; }
}

/* ══ COOKIE BANNER ══ */
.cookie-banner {
  position: fixed; bottom: 20px; left: 20px; right: 20px;
  max-width: 640px; margin: 0 auto;
  background: var(--bg2); border: 1px solid rgba(201,160,82,.3);
  padding: 20px 24px; z-index: 200;
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
  transform: translateY(120%); transition: transform .5s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-text { flex: 1; min-width: 240px; font-size: 13px; line-height: 1.7; color: var(--text-muted); }
.cookie-text strong { color: var(--text); font-weight: 500; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-btns { display: flex; gap: 8px; }
.cookie-btn {
  font-size: 12px; font-weight: 500; padding: 10px 20px;
  border: 1px solid var(--gold-dim); background: transparent;
  color: var(--text); cursor: pointer; font-family: var(--sans);
  letter-spacing: .05em; transition: all .3s;
}
.cookie-btn:hover { border-color: var(--gold); }
.cookie-btn.primary { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.cookie-btn.primary:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* ══ PARTICLES ══ */
.particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%; background: var(--gold);
  animation: float linear infinite;
}
@keyframes float {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: .5; }
  90%  { opacity: .15; }
  100% { transform: translateY(-20px) scale(1); opacity: 0; }
}

/* ══ FADE UP ══ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══ RESPONSIVE ══ */
@media (max-width: 1280px) {
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-card:nth-child(3) { border-right: none; }
  .brand-card:nth-child(3n) { border-right: none; }
}
@media (max-width: 1024px) {
  .concept, .location-inner { grid-template-columns: 1fr; gap: 40px; }
  .concept-image { order: -1; }
}
@media (max-width: 768px) {
  section { padding: 64px 24px; }
  nav { padding: 14px 24px; }
  .nav-event-tag { display: none; }
  .menu-toggle { display: flex; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-row { gap: 10px; }
  .btn { padding: 12px 20px; font-size: 12px; }
  .cookie-banner { padding: 16px; bottom: 12px; left: 12px; right: 12px; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-card { border-right: 1px solid rgba(201,160,82,.08); }
  .brand-card:nth-child(2n) { border-right: none; }
  .brand-card:nth-child(3) { border-right: 1px solid rgba(201,160,82,.08); }
  .hero-meta-sep { display: none; }
  .gallery-header, .gallery-strip { padding-left: 24px; padding-right: 24px; }
  footer { padding: 44px 24px 28px; }
  .brands-bar-label { padding: 36px 24px 28px; }
}
@media (max-width: 480px) {
  .brands-grid { grid-template-columns: 1fr; }
  .brand-card { border-right: none; }
}
