/* Basic-tier example — Squarespace / Wix-inspired look.
   Big whitespace, sans-serif, centered heroes, template polish. */

:root {
  --ink: #1a1a1a;
  --muted: #8a8a8a;
  --rule: #ececec;
  --bg: #ffffff;
  --accent: #b8895a;             /* warm gold — different from advanced site's terracotta */
  --accent-soft: #f8f2ea;
  --wash: #fafafa;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--accent); }
[aria-current="page"] { color: var(--accent); }

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

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
  font-weight: 500;
}

/* ---------- Header ---------- */

.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  padding: 1.5rem 2rem;
}
.site-header-inner {
  max-width: 78rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.brand { display: block; line-height: 1.2; }
.brand-name {
  font-size: 1.05rem;
  letter-spacing: 0.25em;
  font-weight: 600;
  display: block;
}
.brand-tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  display: block;
  margin-top: 0.15rem;
}
.site-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.nav-cta {
  border: 1px solid var(--ink);
  padding: 0.5rem 1.2rem;
  transition: all 0.15s;
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--bg);
}

/* ---------- Buttons ---------- */

.btn-primary {
  display: inline-block;
  background: var(--ink);
  color: var(--bg);
  padding: 0.9rem 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  transition: all 0.15s;
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
.btn-primary.btn-small {
  padding: 0.55rem 1.3rem;
  font-size: 0.75rem;
}
.btn-link {
  display: inline-block;
  color: var(--ink);
  font-size: 0.9rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid transparent;
}
.btn-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ---------- Home hero ---------- */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 34rem;
  align-items: stretch;
}
.hero-image {
  background: var(--wash);
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-text {
  padding: 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero h1 {
  font-family: "Georgia", "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
}
.hero .lede {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 2rem;
  max-width: 30rem;
}
.cta-row {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
}

@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { min-height: 20rem; }
  .hero-text { padding: 3rem 2rem; }
}

/* ---------- Sections ---------- */

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}
.section-head h2 {
  font-family: "Georgia", serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 0;
  letter-spacing: -0.01em;
}

/* ---------- Featured grid (home) ---------- */

.featured {
  max-width: 78rem;
  margin: 0 auto;
  padding: 6rem 2rem;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.see-all {
  text-align: center;
  margin-top: 4rem;
}
.see-all a {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.3rem;
}

@media (max-width: 800px) {
  .featured-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Shop grid ---------- */

.page-head {
  max-width: 60rem;
  margin: 4rem auto 3rem;
  padding: 0 2rem;
  text-align: center;
}
.page-head h1 {
  font-family: "Georgia", serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
}
.page-head .lede {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 40rem;
  margin: 0 auto;
}

.shop-grid {
  max-width: 78rem;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
}
@media (max-width: 800px) { .shop-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; } }
@media (max-width: 500px) { .shop-grid { grid-template-columns: 1fr; } }

/* ---------- Piece cards ---------- */

.piece {
  display: flex;
  flex-direction: column;
}
.piece-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--wash);
  margin-bottom: 1.2rem;
}
.piece-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.piece:hover .piece-image img {
  transform: scale(1.03);
}
.piece h3 {
  font-family: "Georgia", serif;
  font-weight: 400;
  font-size: 1.2rem;
  margin: 0 0 0.3rem;
}
.piece .medium {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}
.piece .price {
  font-size: 1.05rem;
  margin: 0 0 1rem;
}
.piece .enquire { margin: 0; }

.shop-note {
  max-width: 60rem;
  margin: 2rem auto 5rem;
  padding: 2rem;
  background: var(--wash);
  text-align: center;
  color: var(--muted);
}
.shop-note a { color: var(--ink); border-bottom: 1px solid var(--rule); }

/* ---------- Story strip (home) ---------- */

.story-strip {
  background: var(--accent-soft);
  padding: 6rem 2rem;
  text-align: center;
}
.story-inner {
  max-width: 42rem;
  margin: 0 auto;
}
.story-strip h2 {
  font-family: "Georgia", serif;
  font-weight: 400;
  font-size: 2rem;
  margin: 0 0 1.5rem;
}

/* ---------- About page ---------- */

.about-body {
  max-width: 78rem;
  margin: 0 auto 6rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}
@media (max-width: 800px) {
  .about-body { grid-template-columns: 1fr; gap: 2rem; }
}
.about-portrait {
  background: var(--wash);
  aspect-ratio: 3 / 4;
}
.about-text .lede { font-size: 1.2rem; color: var(--ink); margin-bottom: 2rem; }
.about-text h2 {
  font-family: "Georgia", serif;
  font-weight: 400;
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--bg);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 78rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
}
.footer-brand .footer-name {
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  font-weight: 600;
  margin: 0 0 0.4rem;
}
.footer-brand .footer-tag {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
}
.footer-nav a { color: rgba(255,255,255,0.75); }
.footer-nav a:hover { color: var(--bg); }
.footer-designer {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.6;
}
.footer-designer a {
  color: var(--bg);
  border-bottom: 1px solid rgba(255,255,255,0.4);
}
.footer-designer a:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}
.footer-copyright {
  max-width: 78rem;
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
}

/* Cross-tier navigation footer */
.footer-tiers-row {
  max-width: 78rem;
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.footer-tiers-label {
  margin: 0 0 0.6rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.footer-tiers {
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}
.footer-tiers a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 0.15rem 0.4rem;
}
.footer-tiers a:hover { color: var(--bg); }
.footer-tiers a[aria-current="page"] { color: var(--accent); font-weight: 500; }
.footer-tiers span { color: rgba(255,255,255,0.3); }
