/* ----------------------------------------
   Transcendental Basketry — Minimal Theme
   ---------------------------------------- */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f5f2ee;
  --text: #1a1816;
  --muted: #7a7268;
  --accent: #3d2f1f;
  --border: #d9d3cb;
  --gap: 2rem;
  --max-w: 1100px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Georgia', serif;
  font-size: 1rem;
  line-height: 1.7;
}

/* ---- Nav ---- */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

nav {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.25rem var(--gap);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--text);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul a {
  text-decoration: none;
  color: var(--muted);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav ul a:hover,
.shop-link {
  color: var(--text) !important;
}

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

main > section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 6rem var(--gap);
  border-bottom: 1px solid var(--border);
}

h2 {
  font-size: 0.75rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3rem;
}

/* ---- Hero ---- */

.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

.tagline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  font-weight: normal;
  max-width: 600px;
}

/* ---- Gallery ---- */

.gallery {
  columns: 2;
  column-gap: 1.5rem;
  gap: 1.5rem;
}

@media (max-width: 600px) {
  .gallery { columns: 1; }
}

.gallery figure {
  break-inside: avoid;
  margin-bottom: 1.5rem;
}

.img-placeholder {
  background: var(--border);
  width: 100%;
  aspect-ratio: 4/3;
}

.img-placeholder.tall {
  aspect-ratio: 3/4;
}

figcaption {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--muted);
  letter-spacing: 0.03em;
}

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

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 700px) {
  .about-content { grid-template-columns: 1fr; }
}

.about-text p + p {
  margin-top: 1.25rem;
}

.about-img {
  aspect-ratio: 3/4;
  width: 100%;
}

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

.shop-text {
  margin-bottom: 2rem;
  color: var(--muted);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 1px solid var(--text);
  text-decoration: none;
  color: var(--text);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: var(--text);
  color: var(--bg);
}

/* ---- Contact Form ---- */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 520px;
  margin-top: 2rem;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--text);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  align-self: flex-start;
  background: none;
  border: 1px solid var(--text);
  padding: 0.65rem 1.75rem;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--text);
  transition: background 0.2s, color 0.2s;
}

.contact-form button:hover {
  background: var(--text);
  color: var(--bg);
}

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

footer {
  text-align: center;
  padding: 2.5rem var(--gap);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
