/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  --bg:        #080807;
  --bg-2:      #0e0e0c;
  --bg-3:      #161614;
  --bg-4:      #1e1e1b;
  --cream:     #f2ece3;
  --cream-dim: #c4bdb4;
  --muted:     #7a7268;
  --accent:    #c49a72;   /* warm terracotta-gold */
  --accent-2:  #9c7b9f;   /* dusty mauve */
  --line:      rgba(242,236,227,0.08);
  --line-mid:  rgba(242,236,227,0.15);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, -apple-system, sans-serif;

  --nav-h:  72px;
  --pad-x:  clamp(1.25rem, 5vw, 4.5rem);
  --sec-py: clamp(5rem, 10vw, 10rem);
  --gap:    clamp(1rem, 2.5vw, 1.75rem);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io:  cubic-bezier(0.4, 0, 0.2, 1);
  --r: 2px;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; color: inherit; font: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }

/* Subtle grain overlay — tactile depth */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 300px;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.label {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 300; line-height: 1.05; }

.display {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.05;
}

.display em { font-style: italic; color: var(--accent); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  transition: background 0.5s var(--ease-io), border-color 0.5s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(8,8,7,0.88);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom-color: var(--line);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--cream);
  flex-shrink: 0;
}

.nav-center {
  display: flex;
  gap: 2.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-center a {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 0.2s;
}
.nav-center a:hover,
.nav-center a.active { color: var(--cream); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--cream-dim);
  transition: color 0.2s;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.cart-btn:hover { color: var(--cream); }

.cart-badge {
  position: absolute;
  top: -7px;
  right: -10px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.55rem;
  font-weight: 600;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  padding: 0 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s, transform 0.25s var(--ease-out);
}
.cart-badge.show { opacity: 1; transform: scale(1); }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.nav-burger span {
  display: block;
  height: 1px;
  background: var(--cream);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.mob-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(8,8,7,0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out);
}
.mob-nav.open { transform: translateX(0); }
.mob-nav a {
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 300;
  color: var(--cream-dim);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.mob-nav a:hover { color: var(--cream); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  padding: 0 var(--pad-x) clamp(4rem, 9vw, 9rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Hero artwork image */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tagline {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(242,236,227,0.8);
  margin-bottom: 1.5rem;
}
.hero-tagline::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: var(--pad-x);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.hero-scroll span {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: linePulse 2.2s ease-in-out infinite;
}
@keyframes linePulse {
  0%,100% { opacity:0.3; transform:scaleY(1) translateY(0); }
  50%      { opacity:1;   transform:scaleY(0.5) translateY(-16px); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--r);
  transition: transform 0.22s var(--ease-out), background 0.22s, color 0.22s, border-color 0.22s, box-shadow 0.22s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97) !important; }

.btn-fill {
  background: var(--accent);
  color: var(--bg);
}
.btn-fill:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,154,114,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line-mid);
}
.btn-outline:hover {
  background: rgba(242,236,227,0.05);
  border-color: rgba(242,236,227,0.45);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding: 0;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  gap: 0.6rem;
  transition: gap 0.22s, color 0.22s;
}
.btn-ghost::after {
  content: '→';
  transition: transform 0.22s var(--ease-out);
}
.btn-ghost:hover { color: var(--cream); gap: 0.85rem; }
.btn-ghost:hover::after { transform: translateX(3px); }

/* ============================================================
   SECTIONS — SHARED
   ============================================================ */
.section { padding: var(--sec-py) var(--pad-x); }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.sec-header { margin-bottom: clamp(3rem, 6vw, 5rem); }
.sec-footer { margin-top: clamp(2.5rem, 5vw, 4rem); }

/* divider line with label */
.divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: var(--sec-py);
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
.divider span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

/* ============================================================
   IMAGE PLACEHOLDERS (replace with real <img> tags)
   ============================================================ */
.ph {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  background: var(--bg-3);
}
.ph::after {
  content: '';
  display: block;
  padding-top: var(--ratio, 100%);
  background:
    repeating-linear-gradient(
      -55deg,
      transparent 0px,
      transparent 12px,
      rgba(255,255,255,0.012) 12px,
      rgba(255,255,255,0.012) 13px
    );
}
/* When you add a real image inside .ph, the ::after padding will not apply */
.ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   SECTION HEADER — inline (label + link on same row)
   ============================================================ */
.sec-header-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.sec-header-inline .label { margin-bottom: 0; }

/* ============================================================
   HOME GALLERY — 3-col image grid (not masonry)
   ============================================================ */
.home-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.home-gallery .masonry-item { border-radius: var(--r); }
.home-gallery .masonry-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.home-gallery .masonry-item .ph { --ratio: 100%; }

@media (max-width: 700px) {
  .home-gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .home-gallery { grid-template-columns: 1fr; }
}

/* ============================================================
   GALLERY / MASONRY GRID
   ============================================================ */
.masonry {
  columns: 3;
  column-gap: var(--gap);
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: var(--gap);
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  cursor: zoom-in;
}
.masonry-item img,
.masonry-item .ph {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.masonry-item:hover img,
.masonry-item:hover .ph { transform: scale(1.04); }

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,7,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }

.masonry-overlay .item-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--cream);
  transform: translateY(6px);
  transition: transform 0.35s var(--ease-out);
}
.masonry-overlay .item-cat {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.25rem;
  transform: translateY(6px);
  transition: transform 0.4s var(--ease-out);
}
.masonry-item:hover .item-title,
.masonry-item:hover .item-cat { transform: translateY(0); }

/* Filter pills */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.filter-pill {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--line-mid);
  border-radius: 99px;
  color: var(--cream-dim);
  background: transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.filter-pill:hover { color: var(--cream); border-color: rgba(242,236,227,0.4); }
.filter-pill.active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

/* ============================================================
   SHOP GRID
   ============================================================ */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--gap);
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  cursor: pointer;
}

.product-thumb {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
}

.product-thumb .ph { --ratio: 122%; }

.product-thumb img,
.product-thumb .ph {
  transition: transform 0.55s var(--ease-out);
}
.product-card:hover .product-thumb .ph,
.product-card:hover .product-thumb img { transform: scale(1.05); }

.product-atc {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  transition: opacity 0.25s, transform 0.3s var(--ease-out);
  white-space: nowrap;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(8,8,7,0.9);
  color: var(--cream);
  border: 1px solid var(--line-mid);
  padding: 0.55rem 1.35rem;
  border-radius: var(--r);
  backdrop-filter: blur(8px);
}
.product-card:hover .product-atc {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.product-atc:hover,
.product-atc--square:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

/* Square buy link — styled same as product-atc but is an <a> */
.product-atc--square {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Cart per-item buy link */
.cart-line-buy {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.cart-line-buy:hover { color: var(--cream); }
.cart-line-buy--pending { color: var(--muted); cursor: default; }

/* Disabled checkout button */
[aria-disabled="true"].btn {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

/* Sold-out badge */
.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--bg);
  color: var(--cream-dim);
  padding: 0.3rem 0.75rem;
  border-radius: var(--r);
  border: 1px solid var(--line-mid);
}
.product-badge.new {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.product-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.product-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.25;
}
.product-type {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.3rem;
}
.product-price {
  font-size: 0.88rem;
  color: var(--cream-dim);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 0.2rem;
}
.product-price s {
  text-decoration: line-through;
  opacity: 0.5;
  margin-right: 0.3rem;
}

/* ============================================================
   SERVICE CARDS (3-up layout)
   ============================================================ */
.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  align-items: start;
}

.service-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}
.service-card:hover { border-color: var(--line-mid); }

.service-card-img { overflow: hidden; }
.service-card-img .ph { transition: transform 0.55s var(--ease-out); }
.service-card:hover .service-card-img .ph { transform: scale(1.04); }
.service-card-img img {
  width: 100%;
  display: block;
  transition: transform 0.55s var(--ease-out);
}
.service-card:hover .service-card-img img { transform: scale(1.04); }

.service-card-body {
  padding: 2rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  flex: 1;
}

.service-num {
  font-family: var(--serif);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--accent);
}

.service-card-body h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
}
.service-card-body h3 em { font-style: italic; color: var(--accent); }

.service-card-body > p {
  font-size: 0.88rem;
  color: var(--cream-dim);
  line-height: 1.8;
}

.service-card-pricing {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-top: 0.5rem;
}
.service-card-pricing .pricing-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.service-card-pricing .pricing-price {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}
.service-card-pricing .pricing-price sup {
  font-size: 1rem;
  vertical-align: super;
}

.service-card-pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}

@media (max-width: 1024px) {
  .services-cards { grid-template-columns: 1fr; }
  .service-card { flex-direction: row; }
  .service-card-img { width: 40%; flex-shrink: 0; }
  .service-card-img .ph { --ratio: 100%; height: 100%; }
}

@media (max-width: 700px) {
  .service-card { flex-direction: column; }
  .service-card-img { width: 100%; }
  .service-card-pricing-row { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICE SECTION (legacy — kept for reuse)
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
}

.service-body p {
  font-size: 0.975rem;
  color: var(--cream-dim);
  line-height: 1.9;
  margin: 1.5rem 0;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2.25rem;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--cream-dim);
}
.service-features li::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.service-img .ph { --ratio: 105%; }

/* Pricing cards */
.pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 1.5rem;
}
.pricing-card {
  background: var(--bg-3);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.pricing-card.featured { background: var(--bg-4); }
.pricing-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}
.pricing-price {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin: 0.25rem 0;
}
.pricing-price sup { font-size: 0.9rem; vertical-align: super; }
.pricing-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
}
.about-portrait .ph { --ratio: 130%; }
.about-body { display: flex; flex-direction: column; gap: 1.75rem; }
.about-body p {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.9;
}
.about-body p strong {
  font-weight: 500;
  color: var(--cream);
}

/* Stat pills */
.about-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ============================================================
   MARQUEE / TICKER
   ============================================================ */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--bg-2);
}
.ticker-track {
  display: inline-flex;
  gap: 3rem;
  animation: tickerScroll 30s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 3rem;
}
.ticker-item::after {
  content: '✦';
  font-style: normal;
  font-size: 0.5rem;
  color: var(--accent);
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   TESTIMONIALS / QUOTES
   ============================================================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--gap);
}
.testimonial {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.75;
}
.testimonial cite {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-style: normal;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}
.contact-info .display { font-size: clamp(2rem, 4vw, 3.5rem); }
.contact-info p {
  font-size: 0.925rem;
  color: var(--cream-dim);
  line-height: 1.85;
  margin: 1.5rem 0;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}
.contact-detail a {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: color 0.2s;
}
.contact-detail a::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--accent);
}
.contact-detail a:hover { color: var(--cream); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--cream);
  padding: 0.875rem 1rem;
  border-radius: var(--r);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(122,114,104,0.5); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: var(--bg-4);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237a7268' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: clamp(3.5rem, 7vw, 6rem) var(--pad-x) 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.footer-brand .nav-logo { display: inline-block; margin-bottom: 0.75rem; }
.footer-brand p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a {
  font-size: 0.8rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p, .footer-bottom a {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.footer-bottom a:hover { color: var(--cream-dim); }

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-scrim {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(3px);
}
.cart-scrim.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(420px, 92vw);
  background: var(--bg-3);
  border-left: 1px solid var(--line);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--line);
}
.cart-head h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.03em;
}
.cart-x {
  font-size: 1rem;
  color: var(--muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.cart-x:hover { background: var(--bg-4); color: var(--cream); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.75rem;
  scrollbar-width: thin;
  scrollbar-color: var(--line-mid) transparent;
}
.cart-empty-msg {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 3rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.875rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.cart-line-img {
  width: 64px;
  height: 64px;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--bg-4);
  flex-shrink: 0;
}
.cart-line-img .ph { --ratio: 100%; }
.cart-line-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-name {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}
.cart-line-sub {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.cart-line-rm {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.cart-line-rm:hover { color: var(--cream); }

.cart-qty {
  width: 24px;
  height: 24px;
  border: 1px solid var(--line-mid);
  border-radius: var(--r);
  font-size: 1rem;
  color: var(--cream-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
  line-height: 1;
}
.cart-qty:hover { background: var(--bg-4); color: var(--cream); }

#cartCheckout:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.cart-line-price {
  font-size: 0.88rem;
  color: var(--cream-dim);
  white-space: nowrap;
}

.cart-foot {
  padding: 1.25rem 1.75rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.cart-total-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.cart-total-val {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8,8,7,0.97);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  padding: 3rem;
}
.lightbox[hidden] { display: none; }
.lb-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--r);
  pointer-events: none;
}
.lb-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 1rem;
  color: var(--muted);
  transition: color 0.2s;
  z-index: 1;
}
.lb-close:hover { color: var(--cream); }
.lb-caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.lb-caption .item-title { font-family: var(--serif); font-size: 1rem; font-weight: 400; }
.lb-caption .item-cat {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 0.25rem;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
[data-d="1"] { transition-delay: 0.1s; }
[data-d="2"] { transition-delay: 0.2s; }
[data-d="3"] { transition-delay: 0.3s; }
[data-d="4"] { transition-delay: 0.4s; }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-h) + clamp(4rem, 8vw, 7rem)) var(--pad-x) clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line);
}
.page-hero .display { margin-top: 0.75rem; }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--bg-3);
  border: 1px solid var(--line-mid);
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 0.75rem 1.5rem;
  border-radius: 99px;
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.3s var(--ease-out);
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .masonry { columns: 2; }
}

@media (max-width: 860px) {
  .nav-center { display: none; }
  .nav-burger { display: flex; }
  .service-grid,
  .about-grid,
  .contact-wrap { grid-template-columns: 1fr; }
  .service-img { order: -1; }
  .pricing-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .masonry { columns: 1; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: clamp(3.25rem, 16vw, 5rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 1.25rem; }
}

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