/* Orbit & Ember - Ultra-Premium Brand Redesign Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark: #070606;
  --bg-surface: rgba(18, 16, 16, 0.75);
  --bg-surface-hover: rgba(26, 23, 23, 0.85);
  --accent-amber: #e28a2a;
  --accent-amber-glow: rgba(226, 138, 42, 0.25);
  --accent-purple: #a78bfa;
  --accent-purple-glow: rgba(167, 139, 250, 0.15);
  --text-primary: #f4f3f0;
  --text-secondary: #9ea0a3;
  --border: rgba(255, 255, 255, 0.05);
  --border-hover: rgba(226, 138, 42, 0.3);
  
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --radius: 16px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.7;
  font-size: 1.05rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Ambient Radial Glow Fields */
.glow-field-orange {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-amber-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.glow-field-purple {
  position: absolute;
  bottom: -100px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-purple-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Accessibility Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--accent-amber);
  color: var(--bg-dark);
  padding: 10px 20px;
  font-weight: 700;
  border-radius: 4px;
  z-index: 99999;
  text-decoration: none;
  transition: var(--transition);
}

.skip-link:focus {
  top: 16px;
}

/* Top Notice Bar */
.notice-bar {
  background: linear-gradient(90deg, #1e130c, #3e1b07);
  color: #fed7aa;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid rgba(226, 138, 42, 0.15);
  position: relative;
  z-index: 1001;
}

/* Header & Sticky Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 6, 6, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  font-weight: 300;
  color: var(--accent-amber);
  letter-spacing: 0.18em;
  font-size: 1rem;
  border-left: 1px solid var(--border);
  padding-left: 0.75rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: var(--transition);
  position: relative;
  padding: 0.35rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-amber);
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--accent-amber);
}

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

.cta-btn {
  background: linear-gradient(135deg, var(--accent-amber) 0%, #ba660b 100%);
  color: var(--bg-dark);
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 14px var(--accent-amber-glow);
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(226, 138, 42, 0.4);
}

/* Layout Main Container */
main {
  flex: 1;
  position: relative;
  z-index: 1;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

/* Hero Section */
.hero-block {
  text-align: center;
  max-width: 800px;
  margin: 2rem auto 4rem auto;
}

.hero-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-amber);
  margin-bottom: 1.5rem;
  display: block;
}

.hero-block h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}

.hero-block h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-purple);
}

.hero-block p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 2.8rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--text-secondary);
  transform: translateY(-2px);
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
}

@media (max-width: 768px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    padding: 0 2rem;
  }
}

/* Premium Card Components (Glassmorphism) */
.premium-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.6rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-amber), transparent);
  opacity: 0;
  transition: var(--transition);
}

.premium-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  background: var(--bg-surface-hover);
}

.premium-card:hover::before {
  opacity: 1;
}

.premium-card h2, .premium-card h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.85rem;
  color: var(--text-light);
  margin-bottom: 1.1rem;
}

.premium-card h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-amber);
}

.premium-card p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* Structured Menu List styling */
.menu-category-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--accent-amber);
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.menu-item-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 1.5rem;
  transition: var(--transition);
}

.menu-item-row:hover {
  border-bottom-color: var(--border-hover);
}

.item-left {
  flex: 1;
}

.item-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.item-title-row h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--text-primary);
}

.item-price-tag {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--accent-amber);
  font-size: 1.05rem;
}

.item-desc-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Premium Form Elements */
.reserve-form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  max-width: 600px;
  margin: 0 auto;
}

.form-group-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group-block label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}

.form-group-block input, .form-group-block select, .form-group-block textarea {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.95rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.98rem;
  transition: var(--transition);
  width: 100%;
}

.form-group-block input:focus, .form-group-block select:focus, .form-group-block textarea:focus {
  outline: none;
  border-color: var(--accent-amber);
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 0 10px rgba(226, 138, 42, 0.15);
}

/* Site Footer */
.main-footer {
  border-top: 1px solid var(--border);
  background-color: #050404;
  padding: 3rem 2rem;
  text-align: center;
}

.main-footer p {
  font-size: 0.88rem;
  color: var(--text-secondary);
}


/* ==========================================================================
   PHOTO STORY SYSTEM (LEVEL 0 + PHOTO STORY)
   ========================================================================== */

/* Hero Banner */
.photo-hero-wrapper {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0d0c0b;
}

.hero-image-container {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}

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

.hero-gradient-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(13, 12, 11, 0.4) 0%, rgba(13, 12, 11, 0.85) 85%, #0d0c0b 100%);
}

.hero-text-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  padding: 3rem 1.5rem;
}

.hero-eyebrow-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #c27a4a;
  background: rgba(194, 122, 74, 0.15);
  padding: 0.4rem 1.1rem;
  border-radius: 30px;
  border: 1px solid rgba(194, 122, 74, 0.3);
  margin-bottom: 1rem;
}

.hero-main-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: #ffffff;
  margin: 0.5rem 0 1.2rem;
  line-height: 1.1;
}

.hero-main-title em {
  font-style: italic;
  color: #c27a4a;
}

.hero-subtext {
  font-size: 1.15rem;
  color: #d1c8bd;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto 2rem;
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #c27a4a, #8a2e2e);
  color: #ffffff;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(194, 122, 74, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* Image Wrappers & Crop Ratios */
.card-img-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  background: #181615;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.ratio-4-5 { aspect-ratio: 4 / 5; }
.ratio-16-9 { aspect-ratio: 16 / 9; }
.ratio-3-2 { aspect-ratio: 3 / 2; }

.frame-copper {
  border: 1px solid rgba(194, 122, 74, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Photo Story Blocks */
.photo-story-block {
  padding: 4rem 0;
}

.section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.subhead-tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c27a4a;
  font-weight: 700;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  color: #ffffff;
  margin: 0.4rem 0 1rem;
}

.section-title em {
  color: #c27a4a;
  font-style: italic;
}

.section-desc {
  color: #b8b0a6;
  font-size: 1.05rem;
  line-height: 1.6;
}

.photo-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.photo-card-featured {
  background: rgba(22, 20, 18, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.2rem;
  transition: all 0.3s ease;
}

.photo-card-featured:hover {
  border-color: rgba(194, 122, 74, 0.4);
  transform: translateY(-4px);
}

.photo-card-info {
  padding: 1rem 0.5rem 0.5rem;
}

.card-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #c27a4a;
  letter-spacing: 0.08em;
}

.photo-card-info h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: #ffffff;
  margin: 0.4rem 0 0.5rem;
}

.photo-card-info p {
  color: #b8b0a6;
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

/* Split Story Sections */
.photo-story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 3.5rem 0;
}

@media (max-width: 850px) {
  .photo-story-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.photo-story-split.reverse {
  direction: rtl;
}

.photo-story-split.reverse .split-text-col {
  direction: ltr;
}

.split-text-col p {
  color: #b8b0a6;
  font-size: 1.05rem;
  line-height: 1.7;
}

.link-arrow {
  color: #c27a4a;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
}

.link-arrow:hover {
  color: #ffffff;
}

/* Quote Banner */
.photo-banner-quote {
  position: relative;
  padding: 6rem 1.5rem;
  text-align: center;
  overflow: hidden;
  margin-top: 4rem;
}

.quote-bg-img {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

.quote-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(13, 12, 11, 0.82);
  z-index: 2;
}

.quote-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.quote-content blockquote {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  color: #f4efe6;
  line-height: 1.4;
  margin: 0 0 1.2rem;
}

.quote-content cite {
  font-style: normal;
  color: #c27a4a;
  font-size: 1.05rem;
  font-weight: 700;
}

/* People Story Grid */
.people-story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.person-card {
  background: rgba(22, 20, 18, 0.8);
  border: 1px solid rgba(194, 122, 74, 0.2);
  border-radius: 14px;
  padding: 1.5rem;
}

.person-info h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: #ffffff;
  margin: 1rem 0 0.2rem;
}

.person-role {
  color: #c27a4a;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.8rem;
}

.person-info p {
  color: #b8b0a6;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Team Full Card */
.team-full-card {
  background: rgba(22, 20, 18, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.5rem;
}

.team-caption {
  padding-top: 1rem;
}

.team-caption h3 {
  font-family: 'Cinzel', serif;
  color: #ffffff;
  margin: 0 0 0.5rem;
}

.team-caption p {
  color: #b8b0a6;
  margin: 0;
}

/* Editorial Gallery Grid & Lightbox */
.editorial-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-tile {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #181615;
  aspect-ratio: 4 / 3;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-tile:hover img {
  transform: scale(1.08);
}

.tile-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  color: #ffffff;
  padding: 1.2rem 1rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-tile:hover .tile-caption {
  opacity: 1;
}

/* Lightbox Modal */
.lightbox-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.lightbox-close-btn {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.2rem;
  cursor: pointer;
}

#lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
}

.lightbox-caption-text {
  color: #d1c8bd;
  margin-top: 1rem;
  font-size: 1rem;
}


/* ==========================================================================
   PHOTO STORY SITE FOOTER STYLING
   ========================================================================== */

.site-footer {
  background-color: #060505;
  border-top: 1px solid rgba(194, 122, 74, 0.25);
  padding: 4rem 2rem 2rem;
  margin-top: auto;
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-brand .footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.footer-brand .footer-logo span {
  color: #c27a4a;
  font-weight: 300;
  font-size: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 0.75rem;
}

.footer-brand p {
  color: #a39b90;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 400px;
}

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul a {
  color: #a39b90;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-col ul a:hover {
  color: #c27a4a;
}

.footer-col p {
  color: #a39b90;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  color: #787066;
  font-size: 0.85rem;
}


/* ==========================================================================
   MASTER PHOTO STORY GALLERY & LIGHTBOX V2 STYLES
   ========================================================================== */

/* Category Filter Bar */
.gallery-filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  background: rgba(22, 20, 18, 0.8);
  border: 1px solid rgba(194, 122, 74, 0.3);
  color: #a39b90;
  padding: 0.6rem 1.3rem;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: #c27a4a;
  color: #ffffff;
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, #c27a4a, #8a2e2e);
  color: #ffffff;
  border-color: #e09663;
  box-shadow: 0 4px 14px rgba(194, 122, 74, 0.3);
}

/* Master Gallery Tile Card */
.gallery-tile {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: #12100f;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(194, 122, 74, 0.25);
}

.tile-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.tile-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-tile:hover .tile-img-wrap img {
  transform: scale(1.08);
}

.tile-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(13, 12, 11, 0.92) 0%, rgba(13, 12, 11, 0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-tile:hover .tile-overlay {
  opacity: 1;
}

.tile-cat-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c27a4a;
  margin-bottom: 0.3rem;
}

.tile-overlay h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  color: #ffffff;
  margin: 0 0 0.5rem;
}

.zoom-icon {
  font-size: 0.8rem;
  color: #d1c8bd;
  font-weight: 600;
}

/* Slideshow Lightbox Modal V2 */
.lightbox-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(8, 7, 7, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.lightbox-dialog-body {
  position: relative;
  max-width: 960px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lb-image-frame {
  max-height: 70vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(194, 122, 74, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

.lb-image-frame img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
}

.lb-meta-bar {
  text-align: center;
  margin-top: 1.2rem;
  max-width: 750px;
}

.lb-counter {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c27a4a;
  margin-bottom: 0.3rem;
}

.lb-title {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: #ffffff;
  margin: 0 0 0.4rem;
}

.lb-caption {
  font-size: 0.95rem;
  color: #b8b0a6;
  line-height: 1.55;
  margin: 0;
}

/* Lightbox Prev/Next/Close Buttons */
.lb-control-btn {
  position: absolute;
  background: rgba(22, 20, 18, 0.85);
  border: 1px solid rgba(194, 122, 74, 0.4);
  color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  z-index: 2010;
}

.lb-control-btn:hover {
  background: #c27a4a;
  border-color: #ffffff;
  transform: scale(1.1);
}

.lb-close-btn {
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  font-size: 1.8rem;
  line-height: 1;
}

.lb-prev-btn {
  left: 2rem; top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  font-size: 1.5rem;
}

.lb-prev-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

.lb-next-btn {
  right: 2rem; top: 50%;
  transform: translateY(-50%);
  width: 50px; height: 50px;
  font-size: 1.5rem;
}

.lb-next-btn:hover {
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 640px) {
  .lb-prev-btn { left: 0.5rem; width: 40px; height: 40px; }
  .lb-next-btn { right: 0.5rem; width: 40px; height: 40px; }
  .lb-close-btn { top: 0.5rem; right: 0.5rem; }
}


/* Global Uncropped Logo Styling */
.logo img, .brand-logo img, .header-logo img, .hero-logo img, .footer-logo img {
  object-fit: contain !important;
  max-height: 70px !important;
  width: auto !important;
  padding: 4px !important;
  display: inline-block !important;
}


/* Responsive Safeguards */
html, body {
  margin: 0; padding: 0; width: 100%; max-width: 100vw;
  overflow-x: hidden; box-sizing: border-box;
}
*, *:before, *:after { box-sizing: inherit; }
img, video, canvas, iframe { max-width: 100%; height: auto; }

/* Clean Vector Logo Display Fix */
.hero-logo-img {
  max-height: 180px !important;
  width: auto !important;
  object-fit: contain !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  display: inline-block !important;
}

.nav-logo-icon {
  max-height: 40px !important;
  width: auto !important;
  object-fit: contain !important;
  vertical-align: middle !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.footer-logo img, img.footer-logo {
  max-height: 90px !important;
  width: auto !important;
  object-fit: contain !important;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}


/* Official Brand Finish Logo Drop-Shadow & Display Rules */
.hero-logo-img {
  max-height: 220px !important;
  width: auto !important;
  object-fit: contain !important;
  background: transparent !important;
  filter: drop-shadow(0 10px 25px rgba(224, 168, 104, 0.35)) !important;
  margin-bottom: 1.2rem !important;
}

.nav-logo-icon {
  height: 38px !important;
  width: auto !important;
  object-fit: contain !important;
  vertical-align: middle !important;
  margin-right: 0.6rem !important;
  filter: drop-shadow(0 2px 8px rgba(224, 168, 104, 0.4)) !important;
}

.footer-logo img, img.footer-logo {
  max-height: 100px !important;
  width: auto !important;
  object-fit: contain !important;
  background: transparent !important;
  filter: drop-shadow(0 4px 15px rgba(224, 168, 104, 0.25)) !important;
}
