/* ============================================================
   Helvin Film og Foto — Main Stylesheet
   Fonts: Cormorant Garamond (display), Jost (body/UI)
   Colour system defined in :root variables
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

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

:root {
  --dark:   #1a1a18;
  --deep:   #2c2b27;
  --stone:  #6b6860;
  --sand:   #c4b89a;
  --birch:  #e8e0d0;
  --cream:  #f5f1ea;
  --white:  #fdfcf9;
  --moss:   #7a8c6e;
  --rust:   #8b5e3c;
  --arctic: #4a6070;
  --nav-h:  64px;
  --max-w:  1400px;
  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--dark);
  color: var(--birch);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

button {
  font-family: 'Jost', sans-serif;
}

/* ── UTILITY ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background 0.4s var(--ease), border-color 0.4s;
  border-bottom: 0.5px solid transparent;
}

nav.scrolled {
  background: rgba(26, 26, 24, 0.97);
  border-bottom-color: rgba(196, 184, 154, 0.15);
  backdrop-filter: blur(12px);
}

.nav-logo img {
  height: 44px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.nav-logo img:hover {
  opacity: 1;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0.75;
  transition: opacity 0.25s;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: var(--birch);
}

/* Cart icon in nav */
.nav-cart {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--sand);
  color: var(--dark);
  font-size: 9px;
  font-weight: 500;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.cart-badge.show {
  opacity: 1;
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--sand);
  transition: all 0.3s;
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 24, 0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sand);
  cursor: pointer;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--birch);
}

/* ── SHARED LAYOUT ── */
.page-header {
  padding: calc(var(--nav-h) + 60px) 48px 40px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--birch);
  margin-bottom: 40px;
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  color: var(--birch);
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sand);
  border: 0.5px solid var(--sand);
  padding: 12px 28px;
  cursor: pointer;
  transition: all 0.3s;
  background: transparent;
  font-family: 'Jost', sans-serif;
}

.btn:hover {
  background: var(--sand);
  color: var(--dark);
}

.btn-dark {
  border-color: var(--stone);
  color: var(--stone);
}

.btn-dark:hover {
  background: var(--stone);
  color: var(--white);
}

.back-btn {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 40px;
  padding: 0;
  transition: color 0.2s;
  font-family: 'Jost', sans-serif;
}

.back-btn:hover {
  color: var(--sand);
}

/* ── ANIMATIONS ── */
@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.06) translate(-1%, -1%); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%       { transform: scaleY(0.5); opacity: 1; }
}

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

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 28s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,26,24,0.3) 0%,
    rgba(26,26,24,0.15) 40%,
    rgba(26,26,24,0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero-pre {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.4s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.04em;
  margin: 16px 0 20px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.7s forwards;
}

.hero-sub {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.5s forwards;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--sand);
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sand);
  font-family: 'Jost', sans-serif;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--sand);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ── HOME SECTIONS ── */
.home-section {
  padding: 80px 48px;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ── CATEGORY GRID (homepage) ── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cat-tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
  aspect-ratio: 4 / 3;
}

.cat-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.cat-tile:hover img {
  transform: scale(1.04);
}

.cat-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,24,0.7) 0%, transparent 55%);
  transition: background 0.4s;
}

.cat-tile:hover .cat-tile-overlay {
  background: linear-gradient(to top, rgba(26,26,24,0.8) 0%, rgba(26,26,24,0.1) 65%);
}

.cat-tile-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 18px;
}

.cat-tile-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--white);
  display: block;
  transition: transform 0.3s var(--ease);
}

.cat-tile:hover .cat-tile-name {
  transform: translateY(-4px);
}

.cat-tile-count {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s var(--ease) 0.05s;
  display: block;
  margin-top: 4px;
}

.cat-tile:hover .cat-tile-count {
  opacity: 1;
  transform: translateY(0);
}

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--deep);
  padding: 80px 48px;
  border-top: 0.5px solid rgba(196, 184, 154, 0.1);
  border-bottom: 0.5px solid rgba(196, 184, 154, 0.1);
}

.intro-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.intro-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-style: italic;
  font-weight: 300;
  color: var(--birch);
  line-height: 1.5;
}

.intro-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.9;
}

.intro-text p + p {
  margin-top: 16px;
}

.intro-btns {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── GALLERY PAGE ── */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.filter-btn {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 0.5px solid rgba(196, 184, 154, 0.3);
  background: transparent;
  color: var(--stone);
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 1px;
  font-family: 'Jost', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--sand);
  color: var(--birch);
  background: rgba(196, 184, 154, 0.08);
}

.gallery-grid {
  padding: 0 48px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  columns: 3;
  gap: 10px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s var(--ease);
}

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

.gallery-item-info {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 24, 0);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  transition: background 0.35s;
}

.gallery-item:hover .gallery-item-info {
  background: rgba(26, 26, 24, 0.5);
}

.gallery-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s var(--ease);
}

.gallery-item:hover .gallery-item-name {
  opacity: 1;
  transform: translateY(0);
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26, 26, 24, 0.97);
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -36px;
  right: 0;
  background: none;
  border: none;
  color: var(--sand);
  font-size: 13px;
  cursor: pointer;
  letter-spacing: 0.12em;
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: var(--birch);
}

.lightbox-caption {
  margin-top: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--stone);
  text-align: center;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--sand);
  font-size: 24px;
  cursor: pointer;
  padding: 16px;
  transition: color 0.2s;
}

.lightbox-nav:hover {
  color: var(--white);
}

.lb-prev { left: -56px; }
.lb-next { right: -56px; }

/* ── STORE ── */
.store-intro {
  font-size: 13px;
  font-weight: 300;
  color: var(--stone);
  max-width: 500px;
  margin-top: 12px;
  line-height: 1.8;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 48px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.product-card {
  background: var(--deep);
  border: 0.5px solid rgba(196, 184, 154, 0.08);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.product-card:hover {
  border-color: rgba(196, 184, 154, 0.3);
  transform: translateY(-4px);
}

.product-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.product-card:hover .product-img img {
  transform: scale(1.04);
}

.product-info {
  padding: 20px;
}

.product-type {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 8px;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--birch);
  margin-bottom: 6px;
}

.product-size {
  font-size: 11px;
  color: var(--stone);
  margin-bottom: 16px;
  font-weight: 300;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 14px;
  font-weight: 400;
  color: var(--birch);
}

.add-to-cart {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: none;
  border: 0.5px solid rgba(196, 184, 154, 0.4);
  color: var(--sand);
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Jost', sans-serif;
}

.add-to-cart:hover {
  background: var(--sand);
  color: var(--dark);
  border-color: var(--sand);
}

/* ── PRODUCT DETAIL ── */
.product-detail {
  padding: calc(var(--nav-h) + 60px) 48px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-detail-img img {
  width: 100%;
  border-radius: 2px;
}

.product-detail-type {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 12px;
}

.product-detail-info h1 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2rem;
  font-weight: 300;
  color: var(--birch);
  margin-bottom: 20px;
}

.product-detail-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.9;
  margin-bottom: 28px;
}

.option-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 8px;
}

.option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.option-btn {
  padding: 8px 16px;
  border: 0.5px solid rgba(196, 184, 154, 0.25);
  background: none;
  color: var(--stone);
  font-size: 11px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Jost', sans-serif;
}

.option-btn.selected,
.option-btn:hover {
  border-color: var(--sand);
  color: var(--birch);
}

.detail-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--birch);
  margin-bottom: 20px;
}

.detail-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── CART PAGE ── */
.cart-page {
  padding: calc(var(--nav-h) + 60px) 48px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.cart-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--birch);
  margin-bottom: 40px;
}

.cart-empty {
  font-size: 14px;
  color: var(--stone);
  font-weight: 300;
  text-align: center;
  padding: 60px 0;
  line-height: 2;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 0.5px solid rgba(196, 184, 154, 0.12);
}

.cart-item img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 1px;
}

.cart-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--birch);
}

.cart-item-sub {
  font-size: 11px;
  color: var(--stone);
  margin-top: 4px;
  font-weight: 300;
}

.cart-item-price {
  font-size: 13px;
  color: var(--birch);
  white-space: nowrap;
}

.cart-remove {
  background: none;
  border: none;
  color: var(--stone);
  cursor: pointer;
  font-size: 18px;
  padding: 0 4px;
  transition: color 0.2s;
}

.cart-remove:hover {
  color: var(--birch);
}

.cart-total {
  text-align: right;
  padding: 30px 0;
}

.cart-total-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}

.cart-total-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--birch);
  margin-bottom: 24px;
}

.checkout-btns {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* ── ABOUT PAGE ── */
.about-hero {
  height: 50vh;
  position: relative;
  overflow: hidden;
}

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

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 24, 0.5);
}

.about-hero-title {
  position: absolute;
  bottom: 40px;
  left: 48px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
}

.about-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
}

.about-bio p {
  font-size: 15px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-bio h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--birch);
  margin: 40px 0 16px;
}

.cv-section {
  margin-bottom: 32px;
}

.cv-section-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 16px;
}

.cv-item {
  padding: 14px 0;
  border-bottom: 0.5px solid rgba(196, 184, 154, 0.12);
}

.cv-item:last-child {
  border-bottom: none;
}

.cv-year {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--stone);
  margin-bottom: 4px;
}

.cv-role {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--birch);
}

.cv-org {
  font-size: 12px;
  color: var(--stone);
  margin-top: 2px;
  font-weight: 300;
}

.skills-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.skill-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--stone);
}

.skill-bar {
  width: 60%;
  height: 1.5px;
  background: rgba(196, 184, 154, 0.15);
}

.skill-fill {
  height: 100%;
  background: var(--sand);
}

.about-sidebar-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 16px;
}

/* ── CONTACT PAGE ── */
.contact-page {
  padding: calc(var(--nav-h) + 60px) 48px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--birch);
  margin-bottom: 24px;
}

.contact-info p {
  font-size: 14px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.9;
  margin-bottom: 16px;
}

.contact-details {
  margin-top: 32px;
}

.contact-detail {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.contact-detail-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  min-width: 68px;
  padding-top: 2px;
}

.contact-detail-val {
  font-size: 13px;
  color: var(--stone);
  font-weight: 300;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(196, 184, 154, 0.05);
  border: 0.5px solid rgba(196, 184, 154, 0.2);
  color: var(--birch);
  padding: 12px 14px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.25s;
  border-radius: 1px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(196, 184, 154, 0.5);
}

.form-group select option {
  background: var(--deep);
  color: var(--birch);
}

.form-success {
  padding: 16px;
  background: rgba(122, 140, 110, 0.15);
  border: 0.5px solid rgba(122, 140, 110, 0.4);
  color: var(--moss);
  font-size: 13px;
  display: none;
}

.form-success.show {
  display: block;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 0.5px solid rgba(196, 184, 154, 0.1);
  padding: 48px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-brand img {
  height: 32px;
  opacity: 0.6;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 11px;
  font-weight: 300;
  color: var(--stone);
  line-height: 1.8;
}

.footer-col h4 {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 12px;
  font-weight: 300;
  color: var(--stone);
  text-decoration: none;
  margin-bottom: 8px;
  cursor: pointer;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--birch);
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 0.5px solid rgba(196, 184, 154, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 10px;
  color: var(--stone);
  letter-spacing: 0.05em;
}

/* ── TOAST NOTIFICATION ── */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--deep);
  border: 0.5px solid rgba(196, 184, 154, 0.3);
  color: var(--birch);
  padding: 14px 20px;
  font-size: 12px;
  z-index: 300;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.35s var(--ease);
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet — 900px and below */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .page-header,
  .home-section { padding-left: 24px; padding-right: 24px; }

  .gallery-grid { padding-left: 24px; padding-right: 24px; columns: 2; }
  .store-grid   { grid-template-columns: repeat(2, 1fr); padding-left: 24px; padding-right: 24px; }
  .cat-grid     { grid-template-columns: repeat(2, 1fr); }

  .intro-inner  { grid-template-columns: 1fr; }
  .about-body   { grid-template-columns: 1fr; gap: 40px; padding-left: 24px; padding-right: 24px; }
  .contact-page { grid-template-columns: 1fr; padding-left: 24px; padding-right: 24px; }
  .product-detail { grid-template-columns: 1fr; padding-left: 24px; padding-right: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  footer        { padding: 40px 24px; }

  .cart-page    { padding-left: 24px; padding-right: 24px; }
  .cart-item    { grid-template-columns: 60px 1fr auto; gap: 12px; }
  .cart-item-price { display: none; }

  .lb-prev { left: -40px; }
  .lb-next { right: -40px; }
}

/* Mobile — 600px and below */
@media (max-width: 600px) {
  .cat-grid   { grid-template-columns: 1fr; }
  .store-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .hero-title { font-size: 2.2rem; }
  .about-hero-title { left: 24px; bottom: 24px; }
  .about-hero { height: 35vh; }
  .intro-strip { padding: 48px 24px; }
  .checkout-btns { flex-direction: column; }
  .detail-btns { flex-direction: column; }
}
