/* THE SHUK — site chrome. Market-stall warmth: terracotta, brass, deep teal woven textile. Not corporate ecommerce. */
:root {
  --sand: #FBF3E7;
  --sand-deep: #F3E4CC;
  --terracotta: #C1613B;
  --terracotta-deep: #A14A29;
  --teal: #285E5E;
  --teal-deep: #1B4444;
  --brass: #B8862E;
  --brass-deep: #94691F;
  --ink: #2B2320;
  --ink-soft: #5C4F45;
  --line: #E6D2AF;
  --white: #FFFFFF;
  --radius: 14px;
  --shadow: 0 6px 20px rgba(43, 35, 32, 0.10);
  --serif: Georgia, 'Iowan Old Style', 'Palatino Linotype', 'Book Antiqua', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
}

a { color: var(--teal); }
a:hover { color: var(--terracotta-deep); }

h1, h2, h3 { font-family: var(--serif); color: var(--teal-deep); line-height: 1.25; margin: 0 0 0.5em; }
h1 { font-size: clamp(2rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ---- awning stripe accent (the market-stall signature) ---- */
.awning {
  height: 10px;
  background: repeating-linear-gradient(90deg, var(--terracotta) 0 28px, var(--brass) 28px 56px);
}

/* ---- header / nav ---- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 20;
}
.site-header .bar {
  max-width: 1080px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--teal-deep); text-decoration: none; }
.brand svg { width: 30px; height: 30px; flex: none; }
.site-nav { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.site-nav a { text-decoration: none; color: var(--ink-soft); font-weight: 600; font-size: 0.95rem; }
.site-nav a:hover { color: var(--teal); }
.site-nav a.cta {
  background: var(--terracotta); color: #fff; padding: 9px 16px; border-radius: 999px;
}
.site-nav a.cta:hover { background: var(--terracotta-deep); color: #fff; }

/* ---- hero ---- */
.hero {
  padding: 60px 0 46px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, var(--sand-deep), var(--sand) 70%);
}
.hero .kicker {
  display: inline-block; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  font-size: 0.78rem; color: var(--teal); background: rgba(40,94,94,0.12);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.hero p.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 640px; margin: 0 auto 28px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block; padding: 13px 26px; border-radius: 999px; font-weight: 700;
  text-decoration: none; font-size: 1rem; border: 2px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--terracotta); color: #fff; }
.btn-primary:hover { background: var(--terracotta-deep); color: #fff; }
.btn-outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; }

/* ---- sections / cards ---- */
section { padding: 40px 0; }
.section-title { text-align: center; max-width: 660px; margin: 0 auto 30px; }
.section-title p { color: var(--ink-soft); }

.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow);
}
.card h3 { margin-bottom: 6px; }
.card p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 10px; }
.card .tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 8px;
}
.card .tag.maker-pick { color: var(--brass-deep); }
.card a.open { font-weight: 700; text-decoration: none; }
.card a.open::after { content: " →"; }

.icon-badge {
  width: 44px; height: 44px; border-radius: 12px; background: var(--sand-deep);
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
  font-size: 1.4rem;
}

.callout {
  background: var(--sand-deep); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 24px; margin: 20px 0;
}
.callout strong { color: var(--teal-deep); }

.spectrum-note {
  background: #EFE3D0; border-left: 4px solid var(--brass); border-radius: 8px;
  padding: 12px 16px; font-size: 0.92rem; color: var(--ink-soft); margin: 14px 0;
}
.spectrum-note .label { font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase; font-size: 0.72rem; color: var(--brass-deep); display: block; margin-bottom: 4px; }

.disclosure-block {
  background: #F0EAE0; border: 1px solid var(--line); border-radius: 10px;
  padding: 14px 18px; font-size: 0.86rem; color: var(--ink-soft); margin: 26px 0;
}

/* ---- maker pick cards ---- */
.pick-list { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 14px; }
.pick-list li {
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px 18px; display: flex; flex-direction: column; gap: 4px;
}
.pick-list li.maker { border-left: 4px solid var(--brass); }
.pick-list .pick-badge {
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--brass-deep); background: #F6E9CE; display: inline-block; padding: 2px 9px;
  border-radius: 999px; width: fit-content; margin-bottom: 2px;
}
.pick-list .pick-name { font-weight: 700; color: var(--teal-deep); }
.pick-list .pick-desc { color: var(--ink-soft); font-size: 0.94rem; }
.pick-list a.pick-link { font-weight: 700; font-size: 0.92rem; text-decoration: none; }

/* ---- verified shop table ---- */
table.makers { width: 100%; border-collapse: collapse; margin: 18px 0 30px; }
table.makers th, table.makers td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); font-size: 0.92rem; vertical-align: top; }
table.makers th { color: var(--teal-deep); font-family: var(--serif); }

/* ---- guide index grid ---- */
.guide-card .occasion-icon { font-size: 1.8rem; margin-bottom: 8px; display: block; }

/* ---- gift finder ---- */
.finder-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.finder-form label { display: block; font-weight: 700; color: var(--teal-deep); margin: 14px 0 6px; font-size: 0.92rem; }
.finder-form select {
  width: 100%; padding: 11px 14px; border-radius: 10px; border: 1px solid var(--line);
  font-size: 1rem; background: var(--sand); color: var(--ink); font-family: var(--sans);
}
#finder-results { margin-top: 24px; }
.finder-empty { color: var(--ink-soft); font-style: italic; }

/* ---- footer ---- */
.site-footer { border-top: 1px solid var(--line); padding: 32px 0; margin-top: 40px; background: var(--teal-deep); color: #EFE7D8; }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; align-items: center; }
.site-footer nav { display: flex; gap: 18px; flex-wrap: wrap; }
.site-footer a { color: #DCE9E4; text-decoration: none; font-size: 0.92rem; }
.site-footer a:hover { color: #fff; }
.site-footer small { color: #B7CFC7; display: block; margin-top: 10px; font-size: 0.8rem; }

table.compare { width: 100%; border-collapse: collapse; margin: 20px 0; }
table.compare th, table.compare td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
table.compare th { color: var(--teal-deep); font-family: var(--serif); }

@media (max-width: 640px) {
  .site-header .bar { flex-direction: column; align-items: flex-start; }
  .site-footer .wrap { flex-direction: column; align-items: flex-start; }
}
