/* NAV (sticky + burger) */
.nav{
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand{
  /* font-weight: 500; */
  letter-spacing: 0.2px;
  text-transform: lowercase;
  color: var(--text);
}

.menu{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.menu a{
  /* font-size: 14px; */
  color: var(--muted);
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.menu a:hover{
  color: var(--text);
  background: rgba(255,255,255,0.35);
  border-color: rgba(0,0,0,0.06);
}

.menu a.is-active{
  color: var(--text);
  border-color: rgba(179, 90, 60, 0.55);
  background: rgba(255,255,255,0.15);
}

/* Burger button */
.nav-burger{
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.25);
  border-radius: 999px;
  cursor: pointer;

  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav-burger span{
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(0,0,0,0.70);
  border-radius: 2px;
}

/* Mobile menu overlay */
.mobile-menu{ display: none; }

.mobile-menu.is-open{
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 200;
}

.mobile-menu-inner{
  position: absolute;
  top: 68px;
  right: 18px;
  left: 18px;
  max-width: 520px;
  margin: 0 auto;
  background: rgba(243,236,233,0.97);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 16px;
  padding: 10px;
  box-shadow: var(--shadow);
}

.mobile-menu-inner a{
  display: block;
  padding: 12px 12px;
  border-radius: 12px;
  color: var(--muted);
  /* font-size: 16px; */
  border: 1px solid transparent;
}

.mobile-menu-inner a:hover{
  background: rgba(255,255,255,0.35);
  border-color: rgba(0,0,0,0.06);
  color: var(--text);
}

.mobile-menu-inner a.is-active{
  border-color: rgba(179, 90, 60, 0.55);
  color: var(--text);
}

/* Home Hero + Sections */
.hero{ text-align: center; padding: 0; }

.hero-overlay{
  position: relative;
  width: 100%;
}

.hero-overlay img{
  width: 100%;
  height: min(70vh, 700px);
  object-fit: cover;
  display: block;
}

.hero-text{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;

  padding-top: 2vh;
  padding-left: 24px;
  padding-right: 24px;

  color: #fff;
}

.hero-text h1{
  margin: 0;
  line-height: 1.15;
  /* font-size: clamp(22px, 4vw, 36px); */
  /* font-weight: 2000; */
  color: var(--accent);
}

.hero-text .sub{
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.2;
  /* font-size: clamp(20px, 4vw, 30px); */
  /* font-weight: 500; */
  color: var(--accent);
}

.hero-text .lead{
  margin: 0;
  /* font-size: clamp(13px, 2vw, 16px); */
  max-width: 600px;
  opacity: 0.85;
  color: var(--text);
}

.section{
  padding: 26px 0 30px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.section-title{
  text-align: center;
  margin: 0;
  /* font-size: 13px; */
  /* color: var(--ink-55); */
}

/* Home cards */
.cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 18px auto 0;
}

.card{ display: block; text-align: left; }

.card .thumb{
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(0,0,0,0.06);
}

.card .thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card h3{
  margin: 10px 0 6px;
  /* font-size: 14px; */
  color: var(--accent);
  /* font-weight: 750; */
}

.card p{
  margin: 0;
  /* font-size: 13px; */
  color: var(--ink-55);
}

.card:hover h3{
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Gallery (uniform tiles) */
.gallery{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 14px 0;
}

.gallery a{
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.35);
}

.gallery img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,0.86);
  z-index: 9999;
}
.lightbox.is-open{ display: flex; }

.lightbox figure{
  margin: 0;
  max-width: min(1100px, 95vw);
  max-height: 92vh;
  width: 100%;
  position: relative;
}

.lightbox img{
  width: 100%;
  height: auto;
  max-height: 92vh;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

.lightbox .close,
.lightbox .prev,
.lightbox .next{
  position: absolute;
  border: 0;
  background: rgba(255,255,255,0.14);
  color: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  /* font-size: 18px; */
}
.lightbox .close{ right: 12px; top: 12px; }
.lightbox .prev{ left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox .next{ right: 12px; top: 50%; transform: translateY(-50%); }

.lightbox .hint{
  position: absolute;
  left: 12px;
  bottom: 12px;
  color: rgba(255,255,255,0.75);
  /* font-size: 13px; */
}

/* Footer */
.footer{
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 34px 18px;
  text-align: center;
}

.footer .brand2{
  color: var(--footer-logo);
  /* font-size: 30px; */
  /* font-weight: 750; */
  letter-spacing: 0.3px;
  margin-bottom: 8px;
  text-transform: lowercase;
  opacity: 0.85;
}

.footer .small{
  /* font-size: 12px; */
  color: rgba(255,255,255,0.55);
}

.footer-nav{
  margin: 14px 0 10px;
  display: flex;
  gap: 16px;
  justify-content: center;
}

.footer-nav a{
  /* font-size: 12px; */
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.footer-nav a:hover{
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.6);
}

/* Shop Button */

.shop-button-wrap{
  margin: 24px 0;
  display: flex;
  justify-content: center;
}

.page .shop-button{
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;

  background: var(--button-bg);
  color: #fff;

  /* font-size: 15px; */
  /* font-weight: 600; */
  letter-spacing: 0.02em;
  text-decoration: none;

  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.shop-button:hover{
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255,136,136,0.35);
}
