/* ═══════════════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════════════ */
:root {
  --bg:          #0d0a06;
  --bg-2:        #161009;
  --bg-3:        #1e1812;
  --bg-card:     #231d12;
  --text:        #f0e0c0;
  --text-muted:  #9a7855;
  --text-dim:    #5a4530;
  --accent:      #c8842a;
  --accent-2:    #e8a855;
  --border:      #2a1f0f;
  --border-light:#3d2d18;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  --radius:      6px;
  --transition:  0.35s ease;

  --max-w:       1200px;
  --pad-x:       clamp(1.25rem, 5vw, 3rem);
}

/* ═══════════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

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

/* ═══════════════════════════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════════════════════════ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-eyebrow.center,
.section-title.center,
.section-intro { text-align: center; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.section-intro {
  max-width: 640px;
  margin: 0 auto 4rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem var(--pad-x);
  transition: background var(--transition), backdrop-filter var(--transition),
              padding var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(13, 10, 6, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem var(--pad-x);
  border-color: var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  flex-shrink: 0;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--text); }

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 1.5rem;
}

.lang-sep {
  color: var(--text-dim);
  font-size: 0.7rem;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  padding: 0.2rem 0.35rem;
  transition: color var(--transition);
}

.lang-btn:hover  { color: var(--text-muted); }
.lang-btn.active { color: var(--accent); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg-2);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu li { margin-bottom: 2rem; }

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-style: italic;
  color: var(--text);
}

.mobile-lang {
  display: flex;
  gap: 1.5rem;
}

.mobile-lang .lang-btn {
  font-size: 0.85rem;
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-2);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(13,10,6,0.5) 0%, rgba(13,10,6,0.1) 40%, rgba(13,10,6,0.6) 100%),
    radial-gradient(ellipse at center, transparent 40%, rgba(13,10,6,0.7) 100%);
}

/* Grain texture overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 8rem var(--pad-x) 6rem;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  animation: fadeUp 1s ease both 0.2s;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
  animation: fadeUp 1s ease both 0.4s;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 3rem;
  animation: fadeUp 1s ease both 0.6s;
}

.hero-cta {
  display: inline-block;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 2.5rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  animation: fadeUp 1s ease both 0.8s;
}

.hero-cta:hover {
  background: var(--accent);
  color: var(--bg);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0.4;
  animation: fadeIn 1s ease both 1.2s;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════════ */
.about {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.about-bio p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-facts {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.fact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.fact-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.fact-label {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-transform: uppercase;
}

/* About image side */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
  aspect-ratio: 4/5;
  border: 1px solid var(--border);
}

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

.about-img-wrap.no-img .img-placeholder-text {
  display: flex;
}

.img-placeholder-text {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Fallback wood pattern when no image */
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      172deg,
      transparent,
      transparent 18px,
      rgba(200,132,42,0.04) 18px,
      rgba(200,132,42,0.04) 19px
    ),
    repeating-linear-gradient(
      8deg,
      transparent,
      transparent 30px,
      rgba(200,132,42,0.02) 30px,
      rgba(200,132,42,0.02) 31px
    );
  pointer-events: none;
}

.about-quote {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  border-left: 2px solid var(--accent);
  background: var(--bg-3);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.about-quote blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   CRAFT
═══════════════════════════════════════════════════════════════ */
.craft {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 0;
}

.craft-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  transition: border-color var(--transition), transform var(--transition);
}

.craft-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.craft-icon {
  width: 52px;
  height: 52px;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.craft-icon svg { width: 100%; height: 100%; }

.craft-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.craft-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════════════════════════ */
.gallery-section {
  padding-top: clamp(5rem, 10vw, 9rem);
  padding-bottom: clamp(5rem, 8vw, 7rem);
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.gallery-header {
  margin-bottom: 3.5rem;
}

/* Swiper overrides */
.gallery-swiper {
  width: 100%;
  padding: 0 var(--pad-x) 4rem !important;
  cursor: grab;
}

.gallery-swiper:active { cursor: grabbing; }

.gallery-swiper .swiper-wrapper {
  align-items: center;
}

.gallery-slide {
  width: auto !important;
  height: clamp(280px, 60vh, 600px);
  flex-shrink: 0;
}

.gallery-slide a {
  display: block;
  position: relative;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}

.gallery-slide a:hover { border-color: var(--border-light); }

.gallery-slide img {
  height: 100%;
  width: auto;
  max-width: 900px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-slide a:hover img { transform: scale(1.03); }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,10,6,0.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-slide a:hover .slide-overlay { opacity: 1; }

.slide-caption {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  right: 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--text);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 1;
}

.gallery-slide a:hover .slide-caption {
  opacity: 1;
  transform: none;
}

/* Missing image placeholder */
.gallery-slide.img-missing {
  background: var(--bg-3);
}
.gallery-slide.img-missing img { display: none; }
.gallery-slide.img-missing::after {
  content: attr(data-num);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

/* Swiper nav buttons */
.swiper-button-prev,
.swiper-button-next {
  color: var(--accent) !important;
  width: 44px !important;
  height: 44px !important;
  background: rgba(13,10,6,0.7);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  transition: background var(--transition), border-color var(--transition);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--accent);
  color: var(--bg) !important;
  border-color: var(--accent);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 14px !important;
  font-weight: 700;
}

.swiper-pagination-bullet {
  background: var(--text-dim) !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: var(--accent) !important;
  transform: scaleX(2.5);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

/* Gallery note */
.gallery-note {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-top: 1rem;
  padding: 0 var(--pad-x);
}

/* ═══════════════════════════════════════════════════════════════
   PHOTO STRIP
═══════════════════════════════════════════════════════════════ */
.photo-strip-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.photo-strip {
  display: flex;
  gap: 3px;
  overflow-x: scroll;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
  scrollbar-width: none;
}

.photo-strip::-webkit-scrollbar { display: none; }
.photo-strip.dragging { cursor: grabbing; scroll-behavior: auto; }

.photo-strip-item {
  flex: 0 0 auto;
  height: clamp(160px, 22vw, 300px);
  overflow: hidden;
}

.photo-strip-item img {
  height: 100%;
  width: auto;
  min-width: clamp(100px, 16vw, 200px);
  object-fit: cover;
  display: block;
  pointer-events: none;
  transition: transform 0.5s ease;
}

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

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.site-footer {
  padding: clamp(4rem, 8vw, 6rem) 0 3rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.footer-logo span {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.footer-logo small {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.footer-craft {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.footer-bottom small {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════════════
   GLIGHTBOX OVERRIDES
═══════════════════════════════════════════════════════════════ */
.glightbox-clean .gslide-description {
  background: rgba(13,10,6,0.95) !important;
}

.glightbox-clean .gdesc-inner {
  padding: 0.75rem 1.25rem !important;
}

.glightbox-clean .gslide-title {
  font-family: var(--font-sans) !important;
  font-size: 0.85rem !important;
  font-style: italic;
  color: var(--text-muted) !important;
}

.glightbox-clean .gnext,
.glightbox-clean .gprev {
  background: rgba(13,10,6,0.7) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: 50%;
}

/* ═══════════════════════════════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

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

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

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; max-width: 480px; }
  .about-img-wrap { aspect-ratio: 3/2; }
}

@media (max-width: 768px) {
  .nav-links  { display: none; }
  .lang-switcher { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }

  .about-facts { flex-wrap: wrap; gap: 1.5rem; }

  .gallery-swiper { padding: 0 1rem 3.5rem !important; }
  .gallery-slide  { height: clamp(220px, 55vw, 380px); }

  .swiper-button-prev,
  .swiper-button-next { display: none !important; }
}

@media (max-width: 480px) {
  .craft-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   PRINT (optional)
═══════════════════════════════════════════════════════════════ */
@media print {
  .site-header, .scroll-indicator, .swiper-button-prev,
  .swiper-button-next, .swiper-pagination { display: none; }
  body { background: white; color: black; }
}
