/* =========================================
   Troglodyte Works — Option #1 (Minimal One-Screen)
   ========================================= */

:root {
  --bg: #0b0c0f;
  /* charcoal */
  --panel: #14161a;
  /* deep gray */
  --panel2: #101217;
  --ink: #e8e6e3;
  /* warm white */
  --muted: #a8b0ba;
  /* slate */
  --accent: #bfa35a;
  /* antique gold */
  --ring: rgba(255, 255, 255, .08);
  --ring2: rgba(255, 255, 255, .12);
  --shadow: 0 20px 50px rgba(0, 0, 0, .6);
}

/* Reset */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(1200px 800px at 20% -10%, rgba(191, 163, 90, .12), transparent 60%),
    radial-gradient(800px 600px at 100% 0%, rgba(191, 163, 90, .08), transparent 70%),
    var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

  /* One-screen layout */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* =========================================
   NAVBAR WITH STONE WALL BACKGROUND
   ========================================= */
.navbar-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 100px;

  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #2f2d2b;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
}

.navbar-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0px;
  margin-left: 20px;
}

.navbar-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .3));
}

.navbar-title {
  font-family: Cinzel, serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .8px;
  color: #f5f5f5;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .8), 0 1px 2px rgba(0, 0, 0, .6);
  margin-left: 20px;
}

.navbar-menu {
  margin-top: 0px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar-menu a {
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  color: #f5f5f5;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .8), 0 1px 2px rgba(0, 0, 0, .5);
  transition: all 0.2s;
  white-space: nowrap;
}

.navbar-menu a:hover {
  background: rgba(0, 0, 0, .25);
  transform: translateY(-1px);
  color: #ffffff;
}

.navbar-cta {
  background: var(--accent) !important;
  color: #14161a !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  text-shadow: none !important;
  margin-left: 8px !important;
}

.navbar-cta:hover {
  filter: brightness(1.15);
  transform: translateY(-2px) !important;
}

.navbar-cart {
  position: relative;
  padding: 10px !important;
  color: #f5f5f5 !important;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, .6));
}

.cart-badge {
  display: none;
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ff4444;
  color: #fff;
  border-radius: 10px;
  padding: 2px 6px;
  font-size: 11px;
  font-weight: 600;
}

.navbar-auth {
  margin-left: 10px;
}

.navbar-hamburger {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.navbar-hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #f5f5f5;
  margin: 5px 0;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .5);
}

.navbar-mobile {
  display: none;
  background: #f5f5f5;
  border-top: 1px solid rgba(0, 0, 0, .1);
}

.navbar-mobile.open {
  display: block;
}

.navbar-mobile a {
  display: block;
  padding: 14px 20px;
  color: #2d3338;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.navbar-mobile a:hover {
  background: rgba(0, 0, 0, .05);
}

@media (max-width: 900px) {
  .navbar-menu {
    display: none;
  }

  .navbar-hamburger {
    display: block;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--ring);
  background: #ffffff08;
  color: var(--ink);
  font-weight: 600;
}

.btn:hover {
  background: #ffffff12;
}

.btn.primary {
  background: var(--accent);
  color: #14161a;
  border-color: transparent;
}

.btn.primary:hover {
  filter: brightness(1.05);
}

.btn.small {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
}

/* Hamburger + mobile menu */
.hamburger {
  display: none;
  background: transparent;
  border: 0;
  padding: 10px;
  border-radius: 12px;
}

.hamburger:hover {
  background: var(--ring);
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--ink);
  display: block;
  margin: 5px 0;
}

.mobileMenu {
  display: none;
}

.mobileMenu.open {
  display: block;
  border-top: 1px solid var(--ring);
  background: var(--panel);
}

.mobileMenu a {
  display: block;
  padding: 14px 20px;
  border-bottom: 1px solid var(--ring);
  color: var(--muted);
}

.mobileMenu a:hover {
  background: #1b1f26;
  color: var(--ink);
}

/* One-screen main */
main.one-screen {
  flex: 1;
  display: grid;
  align-items: center;
}

/* Hero (minimal) */
.hero {
  padding: 20px 0 20px;
}

.hero--minimal {
  padding: 18px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}

.headline {
  font-family: Cinzel, serif;
  font-weight: 700;
  line-height: 1.08;
  font-size: clamp(28px, 4.4vw, 44px);
  margin: 10px 0 12px;
}

.sub {
  color: var(--muted);
  font-size: clamp(14px, 1.6vw, 16px);
  max-width: 56ch;
  margin: 0 0 16px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 10px;
}

.micro {
  color: rgba(168, 176, 186, .85);
  font-size: 13px;
  margin: 0;
}

/* Hero card mock */
.card-mock {

  justify-self: end;
  width: clamp(190px, 26vw, 360px);
  background: linear-gradient(145deg, #1b1f26, var(--panel2));
  border: 1px solid var(--ring);
  border-radius: 22px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.card-frame {
  border-radius: 16px;
  border: 1px solid var(--ring2);
  overflow: hidden;
  background: #0e1014;
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
}

.card-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-foot {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--ring);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .22));
  padding: 16px 0 18px;
}

.foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.foot-brand {
  font-family: Cinzel, serif;
  font-weight: 700;
  letter-spacing: .3px;
}

.foot-muted {
  color: var(--muted);
  font-size: 14px;
}

.foot-right {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.foot-right a:hover {
  color: var(--ink);
}

.dot {
  opacity: .6;
}

.legal {
  margin-top: 10px;
  color: rgba(152, 162, 173, .9);
  font-size: 12px;
}

/* Responsive */
@media (max-width: 900px) {
  .menu {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .card-mock {
    justify-self: start;
  }
}