﻿/* ============================
   Mountain Goat Geo — style.css
   ============================ */

/* === CUSTOM FONT === */
@font-face {
  font-family: 'MountainGoatGeo';
  src: url('MountainGoatGeo-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Tighten letter-spacing on all brand-font elements */
h1, h2,
.nav__logo span,
.footer__logo,
.portfolio__overlay span {
  letter-spacing: -0.04em;
}

/* === TOKENS === */
:root {
  --white:    #FFFFFF;
  --bg:       #FDFAF6;
  --bg-alt:   #F4EFE7;
  --rule:     #E8E0D4;
  --stone:    #D4C9B8;
  --mid:      #9A8F82;
  --body:     #3D3530;
  --heading:  #1E1A17;
  --accent:   #A0622A;
  --accent-h: #7E4D20;

  /* MountainGoatGeo → display/brand text */
  --font-brand: 'MountainGoatGeo', cursive;
  /* Arial → everything else */
  --font-body:  'Fira Sans', sans-serif;

  --nav-h: 64px;
  --r:    6px;
  --r-lg: 14px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm:    0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-hover: 0 8px 28px rgba(0,0,0,0.11), 0 2px 6px rgba(0,0,0,0.05);
}

/* === FULL-PAGE BACKGROUND PHOTO === */

/* === CART TRAY === */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 299;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-tray {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: var(--bg);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -6px 0 40px rgba(0,0,0,0.12);
}
.cart-tray.open { transform: translateX(0); }

body.tray-open { overflow: hidden; }

.cart-tray__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--rule);
  flex-shrink: 0;
}
.cart-tray__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--head);
  margin: 0;
}
.cart-tray__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--mid);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.cart-tray__close:hover { color: var(--head); }
.cart-tray__close svg { width: 20px; height: 20px; }

.cart-tray__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cart-tray__empty {
  text-align: center;
  color: var(--mid);
  font-size: 0.9rem;
  padding: 40px 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: start;
}
.cart-item__img {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-alt);
  flex-shrink: 0;
}
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__img-placeholder { width: 100%; height: 100%; background: var(--bg-alt); }
.cart-item__info { display: flex; flex-direction: column; gap: 4px; }
.cart-item__name { font-size: 0.875rem; font-weight: 500; color: var(--head); line-height: 1.3; }
.cart-item__variant { font-size: 0.78rem; color: var(--mid); }
.cart-item__qty { font-size: 0.78rem; color: var(--mid); }
.cart-item__remove {
  background: none;
  border: none;
  font-size: 0.72rem;
  color: var(--mid);
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-align: left;
  margin-top: 4px;
  transition: color 0.2s;
}
.cart-item__remove:hover { color: var(--accent); }
.cart-item__price { font-size: 0.875rem; font-weight: 600; color: var(--head); white-space: nowrap; }

.cart-tray__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--rule);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-tray__subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--head);
}
.cart-tray__note { font-size: 0.75rem; color: var(--mid); text-align: center; }
.cart-tray__checkout {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.cart-tray__checkout:hover { background: var(--accent-h); }

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Monochrome fixed background — visible through hero, about, contact */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: #A0622A;
  opacity: 0.10;
  pointer-events: none;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url('cover.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  opacity: 0.20;
  pointer-events: none;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* === LAYOUT === */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* === TYPE === */
h1, h2 {
  font-family: var(--font-brand);
  font-weight: normal;
  color: var(--heading);
  line-height: 1.2;
}
h3, h4 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--heading);
  line-height: 1.25;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.1rem; }
h4 { font-size: 0.95rem; }
em { font-style: italic; }
p  { font-size: 0.9375rem; }

.label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}
.section-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 48px;
}
.section-header h2 { margin-bottom: 10px; }
.section-sub { color: var(--mid); font-size: 0.9rem; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}
.btn--dark {
  background: var(--heading);
  color: var(--white);
}
.btn--dark:hover { background: #2e2420; transform: translateY(-1px); }
.btn--outline {
  border: 1.5px solid var(--rule);
  color: var(--body);
}
.btn--outline:hover { border-color: var(--body); background: rgba(0,0,0,0.03); }
.btn--sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}
.btn--full { width: 100%; justify-content: center; }

/* =========================
   NAV
   ========================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(253,250,246,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-brand);
  font-size: 1.4rem;
  font-weight: normal;
  color: var(--heading);
  text-decoration: none;
}
.nav__logo-img {
  height: 42px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.nav__logo span {
  text-transform: uppercase;
  letter-spacing: -0.04em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 0.875rem;
  color: var(--mid);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--heading); }
.nav__cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: color 0.2s;
}
.nav__cart svg { width: 26px; height: 26px; }
.nav__cart:hover { color: var(--accent-h); }
.nav__cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--accent);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--heading);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =========================
   HERO
   ========================= */
.hero {
  padding: calc(var(--nav-h) + 140px) 48px 80px;
  background-image: url('cover.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__inner {
  max-width: 640px;
  margin-bottom: 72px;
}
.hero__inner .label { font-size: 1.05rem; color: #fff; text-shadow: 2px 3px 0px #A0622A; white-space: nowrap; }
.hero__inner h1 { margin-bottom: 20px; color: #fff; text-shadow: 3px 4px 0px #A0622A; }
.hero__inner h1 em { color: #fff; }
.hero__sub {
  color: #fff;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
  text-shadow: 2px 3px 0px #A0622A;
}
.hero__actions .btn--dark {
  background: #A0622A;
  color: #fff;
  border: 1.5px solid #A0622A;
}
.hero__actions .btn--dark:hover { background: #7E4D20; border-color: #7E4D20; }
.hero__actions .btn--outline {
  border: 1.5px solid rgba(255,255,255,0.8);
  color: #fff;
  background: transparent;
}
.hero__actions .btn--outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 80px;
}
.hero__cat {
  display: block;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--rule);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
  box-shadow: var(--shadow-sm);
}
.hero__cat:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.hero__cat-img {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero__cat-img--pottery  { background: #F0EBE0; }
.hero__cat-img--jewelry  { background: #EAE8F0; }
.hero__cat-img--cabochon { background: #EDF0E8; }
.hero__cat-placeholder { width: 48%; color: var(--stone); }
.hero__cat-placeholder svg { width: 100%; }
.hero__cat h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading);
  padding: 16px 20px 4px;
}
.hero__cat p { font-size: 0.8rem; color: var(--mid); padding: 0 20px 18px; }

/* =========================
   SHOP
   ========================= */
.shop {
  background: var(--white);
  padding: 100px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.shop__filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter {
  padding: 9px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--rule);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--mid);
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.filter:hover { border-color: var(--body); color: var(--body); }
.filter.active {
  background: var(--heading);
  border-color: var(--heading);
  color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}
.product:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.product.hidden { display: none; }

.product__img {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product__img--pottery      { background: #F2EDE4; }
.product__img--jewelry      { background: #ECEAF4; }
.product__img--cabochon     { background: #EBF0E8; }
.product__img--illustration { background: #F0EBE0; }
.product__img--digital      { background: #E8EDF2; }

.product__img-inner { width: 52%; max-width: 100px; color: var(--stone); }
.product__img-inner svg { width: 100%; }

.product__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--white);
  border: 1px solid rgba(160,98,42,0.2);
  padding: 4px 10px;
  border-radius: 100px;
}

.product__info {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product__info h3 { color: var(--heading); margin-bottom: 8px; }
.product__info h3 a { color: inherit; text-decoration: none; }
.product__info h3 a:hover { color: var(--accent); }
.product__info p {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 18px;
}
.product__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.product__price {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--body);
}
.product__status {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product__status--available { color: var(--accent); }
.product__status--sold      { color: var(--stone); }

/* === COLLECTION GRID (mobile shop view) === */
.collection-grid { display: none; }

.collection-card {
  display: flex;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.collection-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.collection-card__img {
  width: 110px;
  flex-shrink: 0;
  background: var(--bg-alt);
  overflow: hidden;
}
.collection-card__img img { width: 100%; height: 100%; object-fit: cover; }
.collection-card__img-placeholder { width: 100%; min-height: 100px; background: var(--bg-alt); }
.collection-card__body { padding: 18px 20px; display: flex; flex-direction: column; justify-content: center; gap: 4px; }
.collection-card__title { font-family: var(--font-brand); font-size: 1.3rem; color: var(--heading); line-height: 1.2; }
.collection-card__count { font-size: 0.8rem; color: var(--mid); }

.shop__loading { grid-column: 1/-1; text-align: center; padding: 60px 0; color: var(--mid); font-size: 0.9rem; letter-spacing: 0.06em; }
.shop__empty   { grid-column: 1/-1; text-align: center; padding: 60px 0; color: var(--mid); font-size: 0.9375rem; font-style: italic; }
.shop__note {
  margin-top: 52px;
  text-align: center;
  font-size: 0.875rem;
  color: var(--mid);
  padding: 24px;
  border: 1px dashed var(--rule);
  border-radius: var(--r-lg);
}
.shop__note a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* =========================
   ABOUT
   ========================= */
.about {
  padding: 100px 0;
  background: transparent;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: center;
}
.about__img { position: relative; }
.about__img-placeholder {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-alt);
  aspect-ratio: 4/5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule);
  gap: 14px;
  position: relative;
}
.about__img-placeholder svg { width: 100%; height: 100%; }
.about__img-placeholder p {
  font-size: 0.75rem;
  color: var(--stone);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: absolute;
}
.about__copy h2 { margin-bottom: 20px; }
.about__copy p { color: var(--mid); margin-bottom: 16px; font-size: 0.9375rem; }
.about__copy blockquote p { color: #1a1a1a; }
.about__copy blockquote {
  border-left: 2px solid var(--rule);
  padding: 14px 20px;
  margin: 28px 0;
  font-style: italic;
  color: var(--accent);
  font-size: 0.95rem;
  line-height: 1.65;
}
.about__sign { color: var(--body); }
.about__sign em { color: var(--accent); }

/* =========================
   PORTFOLIO
   ========================= */
.portfolio {
  padding: 100px 0 80px;
  background: var(--bg);
  border-top: 1px solid var(--rule);
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 6px;
  margin: 0 0 48px;
}
.portfolio__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.portfolio__item--tall { grid-row: span 2; }
.portfolio__item--wide { grid-column: span 2; }

.portfolio__fill {
  width: 100%;
  height: 100%;
  transition: transform 0.5s var(--ease);
}
.portfolio__item:hover .portfolio__fill { transform: scale(1.04); }

.portfolio__fill--a { background: #E8DFD0; }
.portfolio__fill--b { background: #DFE0EC; }
.portfolio__fill--c { background: #DCE8D8; }
.portfolio__fill--d { background: #EDE5D8; }
.portfolio__fill--e { background: #E0D8EC; }
.portfolio__fill--f { background: #D8E8E0; }
.portfolio__fill--g { background: #EAE0D2; }
.portfolio__fill--h { background: #D8E4EC; }
.portfolio__fill--i { background: #E8D8E2; }

.portfolio__fill::after {
  content: 'Add photo';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  pointer-events: none;
}

.portfolio__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 26, 23, 0.62);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px 22px;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.portfolio__item:hover .portfolio__overlay { opacity: 1; }

.portfolio__overlay span {
  font-family: var(--font-brand);
  font-size: 1.15rem;
  font-weight: normal;
  color: #FFFFFF;
  display: block;
  line-height: 1.2;
  margin-bottom: 4px;
}
.portfolio__overlay em {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-style: normal;
}

.portfolio__note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--mid);
  margin-top: 8px;
}
.portfolio__note a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* Mobile portfolio single-link card */
.portfolio__mobile-link {
  display: none;
  position: relative;
  height: 280px;
  overflow: hidden;
  text-decoration: none;
  margin: 0 0 32px;
}
.portfolio__mobile-bg {
  width: 100%;
  height: 100%;
  background: #EDE5D8;
  transition: transform 0.5s var(--ease);
}
.portfolio__mobile-link:hover .portfolio__mobile-bg { transform: scale(1.03); }
.portfolio__mobile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 26, 23, 0.48);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
}
.portfolio__mobile-overlay span {
  font-family: var(--font-brand);
  font-size: 2.4rem;
  letter-spacing: -0.04em;
  line-height: 1;
}
.portfolio__mobile-overlay em {
  font-size: 0.85rem;
  font-style: normal;
  letter-spacing: 0.06em;
  opacity: 0.85;
}

/* =========================
   WORKSHOPS
   ========================= */
.workshops { padding: 100px 0; background: transparent; }
.workshops__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.workshop__card {
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--rule);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.workshop__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px 16px;
  color: var(--accent);
}
.workshop__icon svg { width: 48px; height: 48px; }
.workshop__body { padding: 0 24px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.workshop__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.workshop__card h3 { font-family: var(--font-head); font-size: 1.1rem; line-height: 1.3; margin: 0; color: var(--head); }
.workshop__card p { font-size: 0.875rem; color: var(--mid); line-height: 1.65; margin: 0; flex: 1; }
.workshop__details {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.workshop__details li { font-size: 0.78rem; color: var(--mid); padding-left: 14px; position: relative; }
.workshop__details li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }
.workshop__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.workshop__price { font-family: var(--font-head); font-size: 1rem; color: var(--head); }
.workshops__note {
  margin-top: 48px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--mid);
}
.workshops__note a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* =========================
   PROMISE STRIP
   ========================= */
.promise {
  background: var(--bg-alt);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 64px 0;
}
.promise__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  text-align: center;
}
.promise__item svg { width: 28px; height: 28px; color: var(--accent); margin: 0 auto 16px; }
.promise__item h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 6px;
}
.promise__item p { font-size: 0.82rem; color: var(--mid); line-height: 1.5; }

/* =========================
   CONTACT
   ========================= */
.contact {
  padding: 100px 0;
  background: transparent;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}
.contact__copy h2 { margin-bottom: 16px; }
.contact__copy p { color: #1a1a1a; font-size: 0.9375rem; line-height: 1.7; margin-bottom: 28px; }
.contact__links { display: flex; flex-direction: column; gap: 14px; }
.contact__link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: #1a1a1a;
  transition: color 0.2s;
}
.contact__link svg { width: 18px; height: 18px; flex-shrink: 0; }
.contact__link:hover { color: var(--accent); }

.contact__form {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--body);
}
.field input,
.field select,
.field textarea {
  background: var(--white);
  border: 1.5px solid var(--rule);
  border-radius: var(--r);
  padding: 11px 14px;
  color: var(--heading);
  font-size: 0.9rem;
  transition: border-color 0.2s;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--stone); }
.field select option { background: var(--white); }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--body); }
.form-status {
  font-size: 0.85rem;
  text-align: center;
  padding: 12px;
  border-radius: var(--r);
}
.form-status.success { color: #2D7A3A; background: #EAF6EC; }
.form-status.error   { color: #8B2020; background: #F9ECEC; }

/* =========================
   FOOTER
   ========================= */
.footer {
  background: var(--heading);
  color: rgba(253,250,246,0.65);
  padding: 52px 0;
  text-align: center;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.footer__logo {
  font-family: var(--font-brand);
  font-size: 1.6rem;
  font-weight: normal;
  color: var(--bg);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.footer__tagline { font-size: 0.85rem; font-style: italic; }
.footer__nav {
  display: flex;
  gap: 28px;
  margin-top: 8px;
}
.footer__nav a {
  font-size: 0.8rem;
  color: rgba(253,250,246,0.55);
  transition: color 0.2s;
  letter-spacing: 0.04em;
}
.footer__nav a:hover { color: var(--bg); }
.footer__copy { font-size: 0.75rem; color: rgba(253,250,246,0.3); margin-top: 8px; }

/* =========================
   SCROLL FADE-IN
   ========================= */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.07s; }
.fade-up.d2 { transition-delay: 0.14s; }
.fade-up.d3 { transition-delay: 0.21s; }
.fade-up.d4 { transition-delay: 0.28s; }

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1024px) {
  .hero__categories { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__img { max-width: 380px; }
  .promise__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .portfolio__grid { grid-template-columns: repeat(3, 1fr); }
  .workshops__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  html { font-size: 18px; }
  .hero__inner .label { white-space: normal; font-size: 0.85rem; }
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(253,250,246,0.97);
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
    gap: 20px;
    border-bottom: 1px solid var(--rule);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.35s var(--ease), opacity 0.3s;
    backdrop-filter: blur(12px);
  }
  .nav__links.open { transform: translateY(0); opacity: 1; }
  .nav__links a { font-size: 1rem; color: var(--body); }
  .nav__cta { align-self: flex-start; }

  .hero { padding-top: calc(var(--nav-h) + 48px); }
  .hero__categories { grid-template-columns: 1fr; gap: 14px; padding-bottom: 52px; }
  .hero__cat-img { aspect-ratio: 3/2; }
  .shop__filters { display: none; }
  .product-grid { display: none; }
  .collection-grid { display: flex; flex-direction: column; gap: 14px; }
  .promise__grid { grid-template-columns: 1fr 1fr; }
  .contact__form { padding: 28px; }
  .portfolio__grid { display: none; }
  .portfolio__mobile-link { display: block; }

  h1 { font-size: 2.4rem; }
  h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .promise__grid { grid-template-columns: 1fr; }
  .workshops__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .footer__nav { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .portfolio__grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .portfolio__item--wide { grid-column: span 1; }
}
