/* Navarraluxe — curated vintage & designer.
   Editorial lookbook on warm ivory — the page is the same paper as the photos,
   so the bags sit uncropped and unboxed, like a printed lookbook.
   calm-ds structure; own palette. */

/* ---- Fonts (self-hosted, portable) ---- */
/* Fraunces — variable display serif (opsz + wght), the Canela-flavoured voice */
@font-face {
  font-family: "Fraunces";
  src: url("assets/fonts/fraunces.woff2") format("woff2");
  font-weight: 400 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("assets/fonts/fraunces-italic.woff2") format("woff2");
  font-weight: 400 600; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Atkinson";
  src: url("assets/fonts/atkinson-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Atkinson";
  src: url("assets/fonts/atkinson-700.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ---- Palette (warm ivory paper, black ink, one antique gold) ---- */
:root {
  --paper:   #F4F0E9;
  --paper-2: #EDE8DF;
  --ink:     #201C17;
  --muted:   #5C5346;
  --faint:   #8A8172;
  --gold:    #9E7C2F;
  --gold-text: #7A5E22;
  --line:    rgba(32, 28, 23, 0.12);
  --line-soft: rgba(32, 28, 23, 0.07);

  --measure: 33rem;
  --wrap: 72rem;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Atkinson", system-ui, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  font-optical-sizing: auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3.5rem);
}

/* ---- Labels ---- */
.eyebrow {
  font-family: "Atkinson", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

/* ---- Hero banner (compact, background image; mobile-first) ---- */
.hero-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 56svh;
  padding: clamp(2.5rem, 9vw, 4.5rem) clamp(1.25rem, 5vw, 3rem);
}
@media (min-width: 700px) {
  .hero-banner { min-height: 58vh; max-height: 42rem; }
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg,
    rgba(244, 240, 233, 0.60) 0%,
    rgba(244, 240, 233, 0.40) 40%,
    rgba(244, 240, 233, 0.82) 80%,
    var(--paper) 100%);
}
.hero-inner { width: 100%; max-width: 40rem; }

.wordmark {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.5rem, 7.2vw, 5.4rem);
  font-variation-settings: "opsz" 144, "wght" 600;
  letter-spacing: -0.015em;
  margin: 0 0 0.6rem;
  line-height: 0.92;
  text-transform: uppercase;
  max-width: 100%;
}
.wordmark .lux {
  color: var(--gold);
  font-style: italic;
  font-variation-settings: "opsz" 144, "wght" 500;
}
.tagline {
  font-family: "Atkinson", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(0.6rem, 2.7vw, 0.78rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

/* ---- Social row (brand-coloured icons) ---- */
.social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin: 1.5rem 0 0;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  font-family: "Atkinson", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  background: rgba(244, 240, 233, 0.62);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(2px);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.social-link svg { width: 1.1rem; height: 1.1rem; fill: var(--muted); }
.social-link:hover, .social-link:focus-visible {
  color: var(--gold-text);
  border-color: var(--gold);
  background: color-mix(in srgb, var(--gold) 9%, rgba(244, 240, 233, 0.72));
  outline: none;
}
.social-link:hover svg, .social-link:focus-visible svg { fill: var(--gold-text); }
/* Mobile: compact icon-only circles (labels kept for screen readers) */
@media (max-width: 560px) {
  .social { gap: 0.6rem; }
  .social-link {
    width: 2.9rem;
    height: 2.9rem;
    padding: 0;
    gap: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .social-link svg { width: 1.3rem; height: 1.3rem; }
  .social-link span {
    position: absolute;
    width: 1px; height: 1px;
    margin: -1px; padding: 0; border: 0;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
  }
}

/* Hairline rule */
.rule {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  margin: 0;
}

/* ---- Section headings ---- */
.section-head {
  text-align: center;
  margin: clamp(1.75rem, 4vw, 2.75rem) 0 clamp(1.75rem, 4vw, 2.5rem);
}
.section-head h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.9rem, 5vw, 2.7rem);
  letter-spacing: 0.02em;
  margin: 0.5rem 0 0;
  line-height: 1.05;
}

/* ---- Pieces grid (editorial, big uncropped images) ---- */
.pieces {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(21rem, 1fr));
  gap: clamp(2.25rem, 5vw, 3.75rem) clamp(1.75rem, 4vw, 3rem);
}

.piece { display: flex; flex-direction: column; }

/* full frame — never cropped; image shown at its own aspect */
.piece .shot {
  width: 100%;
  height: auto;
  border: 1px solid var(--line-soft);
  border-radius: 2px;
  background: var(--paper-2);
  transition: box-shadow 0.45s var(--ease);
}
.piece:hover .shot {
  box-shadow: 0 20px 44px -30px rgba(60, 48, 30, 0.5);
}

.piece .meta {
  padding: 1.15rem 0.15rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.piece .tag {
  font-family: "Atkinson", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.piece h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.1;
}
.piece .desc {
  color: var(--muted);
  font-size: 0.94rem;
  margin: 0;
  flex: 1;
}
.piece .price {
  font-family: "Atkinson", system-ui, sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin: 0.35rem 0 0.15rem;
}
.piece .price .cur {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-right: 0.35em;
}

/* ---- WhatsApp enquire ---- */
.enquire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.35rem;
  padding: 0.8rem 1.1rem;
  font-family: "Atkinson", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-text);
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: transparent;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
.enquire:hover, .enquire:focus-visible {
  background: var(--gold);
  color: var(--paper);
  outline: none;
}
.enquire svg { width: 1.05em; height: 1.05em; fill: currentColor; }

/* ---- Footer ---- */
.site-foot {
  text-align: center;
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.5rem, 6vw, 4rem);
  margin-top: clamp(3.5rem, 8vw, 6rem);
}
.contacts {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  justify-content: center;
}
.contacts a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Atkinson", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.3s var(--ease);
}
.contacts a svg { width: 1rem; height: 1rem; fill: currentColor; }
.contacts a:hover, .contacts a:focus-visible { color: var(--gold-text); }
.site-foot .place {
  font-family: "Atkinson", system-ui, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 1.75rem 0 0;
}

/* ---- Card links (home) ---- */
.shot-link { display: block; position: relative; }
.piece h3 a.piece-name { color: inherit; text-decoration: none; }
.piece h3 a.piece-name:hover { color: var(--gold-text); }

/* ---- Sold state ---- */
.sold-badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  font-family: "Atkinson", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(32, 28, 23, 0.86);
  padding: 0.35rem 0.6rem;
  border-radius: 2px;
}
.piece.is-sold .shot { filter: grayscale(0.35) brightness(0.98); }
.soldline {
  font-family: "Atkinson", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  border: 1px solid var(--line);
  border-radius: 2px;
  text-align: center;
  padding: 0.8rem 1.1rem;
  margin-top: 0.35rem;
}
.product-shot { position: relative; }
.product-shot.is-sold img { filter: grayscale(0.35); }
.soldline-lg { align-self: flex-start; padding: 0.9rem 1.4rem; margin-top: 0.5rem; }

/* ---- Product page ---- */
.mini-head {
  text-align: center;
  padding: clamp(1.5rem, 5vw, 2.5rem) 0 clamp(1rem, 3vw, 1.5rem);
}
.brandback {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 120, "wght" 600;
  font-size: clamp(1.5rem, 6vw, 2.2rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
}
.brandback .lux { color: var(--gold); font-style: italic; }

.product { padding-top: clamp(1.5rem, 4vw, 2.5rem); }
.back {
  display: inline-block;
  font-family: "Atkinson", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}
.back:hover { color: var(--gold-text); }
.product-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
@media (min-width: 760px) {
  .product-grid { grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 4vw, 3.5rem); }
}
.product-shot { margin: 0; }
.product-shot img {
  width: 100%;
  border: 1px solid var(--line-soft);
  border-radius: 3px;
  background: var(--paper-2);
}
.product-info { display: flex; flex-direction: column; gap: 0.75rem; }
.product-info .tag {
  font-family: "Atkinson", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.product-info h1 {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 96, "wght" 600;
  font-size: clamp(2rem, 6vw, 2.9rem);
  line-height: 1.05;
  margin: 0;
}
.product-info .price {
  font-family: "Atkinson", system-ui, sans-serif;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0.15rem 0 0.4rem;
}
.product-info .price .cur { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-text); margin-right: 0.35em; }
.product-info .long { color: var(--muted); font-size: 1.02rem; line-height: 1.7; margin: 0; }
.product-info .enquire { align-self: flex-start; margin-top: 0.5rem; }
.product-info .pay-note {
  font-family: "Atkinson", system-ui, sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  color: var(--faint);
  margin: 0.4rem 0 0;
}
.more { margin-top: clamp(3.5rem, 8vw, 6rem); }
.empty { color: var(--muted); text-align: center; grid-column: 1 / -1; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
