/* Textured Talent — Stephanie Dill, mixed-media artist
   Palette: terracotta #B85C38 · sage #9CAF88 · deep green #3E5641
            sky blue #A8C8D8 · warm cream #F6F1E7 · charcoal #33312E */

:root {
  --terracotta: #B85C38;
  --terracotta-dark: #96462A;
  --sage: #9CAF88;
  --deep-green: #3E5641;
  --sky: #A8C8D8;
  --page-green: #174657;
  --page-green-dark: #103542;
  --cream: #F6F1E7;
  --cream-dark: #EDE4D3;
  --card: #FFFDF7;
  --on-page: #FFFFFF;
  --on-page-soft: #FFFFFF;
  --charcoal: #33312E;
  --ink: #4A4742;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--page-green);
  /* subtle paper texture via layered gradients — echoes her canvas surfaces */
  background-image:
    radial-gradient(ellipse at 20% 30%, rgba(184, 92, 56, 0.025), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(62, 86, 65, 0.045), transparent 50%);
  line-height: 1.6;
}

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

a { color: var(--terracotta); }

.page-intro a,
.page-note a {
  color: #F2B28F;
  font-weight: 600;
}

/* ---------- header ---------- */
header {
  background: var(--page-green);
  border-bottom: 1px solid var(--page-green-dark);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.brand {
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--on-page);
  text-decoration: none;
}
.brand span { color: #F2B28F; }
nav { display: flex; flex-wrap: wrap; gap: 0.25rem; }
nav a {
  text-decoration: none;
  color: var(--on-page);
  font-size: 0.95rem;
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
}
nav a:hover { background: var(--page-green-dark); }
nav a.active { color: #F2B28F; font-weight: 600; }
nav a.cta {
  background: var(--terracotta);
  color: #fff;
  font-weight: 600;
}
nav a.cta:hover { background: var(--terracotta-dark); }

/* ---------- shared layout ---------- */
main { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem 4rem; }

.page-intro { max-width: 720px; margin: 3rem auto 2.5rem; text-align: center; }
h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--on-page);
}
.page-intro p { font-size: 1.08rem; color: var(--on-page-soft); }

h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.6rem;
  margin: 3rem 0 1.25rem;
  color: var(--on-page);
}

.btn {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.8rem 1.7rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}
.btn:hover { background: var(--terracotta-dark); }
.btn.secondary {
  background: transparent;
  color: var(--deep-green);
  border: 2px solid var(--deep-green);
}
.btn.secondary:hover { background: var(--deep-green); color: #fff; }

/* ---------- hero (home) ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3.5rem 0 3rem;
}
.hero h1 { margin-bottom: 1.1rem; }
.hero p.sub { font-size: 1.15rem; color: var(--on-page-soft); margin-bottom: 1.6rem; }
.hero-art img {
  border-radius: 10px;
  border: 6px solid var(--card);
  box-shadow: 0 10px 28px rgba(51, 49, 46, 0.22);
  transform: rotate(1.2deg);
}
@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; padding-top: 2rem; }
}

/* ---------- ways to buy (home) ---------- */
.buy-paths {
  margin: 0 0 3rem;
  padding: 2.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.buy-paths-intro {
  max-width: 620px;
  margin: 0 auto 1.4rem;
  text-align: center;
}
.buy-paths .eyebrow {
  color: #F2B28F;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.buy-paths h2 {
  margin: 0.25rem 0 0;
}
.buy-paths-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}
.buy-path {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 260px;
  padding: 1.7rem;
  background: var(--card);
  border-top: 5px solid var(--terracotta);
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(16, 53, 66, 0.28);
}
.buy-path:nth-child(2) {
  border-top-color: var(--sage);
}
.buy-path-label {
  color: var(--terracotta-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.buy-path:nth-child(2) .buy-path-label {
  color: var(--deep-green);
}
.buy-path h3 {
  margin: 0.25rem 0 0.5rem;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}
.buy-path > p:not(.buy-path-label) {
  margin-bottom: 1.3rem;
  color: var(--ink);
}
.buy-path .btn {
  margin-top: auto;
}
@media (max-width: 640px) {
  .buy-paths {
    padding-top: 2rem;
  }
  .buy-paths-grid {
    grid-template-columns: 1fr;
  }
  .buy-path {
    min-height: 0;
  }
}

/* ---------- feature cards (home) ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin: 1.5rem 0 2rem;
}
.feature-card {
  background: var(--card);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: var(--charcoal);
  box-shadow: 0 4px 14px rgba(51, 49, 46, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(51, 49, 46, 0.18);
}
.feature-card img { height: 210px; width: 100%; object-fit: cover; }
.feature-card .card-text { padding: 1.1rem 1.2rem 1.3rem; }
.feature-card h3 { font-family: var(--serif); font-weight: 500; font-size: 1.25rem; }
.feature-card p { font-size: 0.95rem; color: var(--ink); margin-top: 0.3rem; }
.feature-card .more { color: var(--terracotta); font-weight: 600; font-size: 0.9rem; }

/* ---------- galleries ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}
.gallery.wide {
  display: block;
  columns: 330px 2;
  column-gap: 1.5rem;
}
.gallery.wide .art-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 1.5rem;
  break-inside: avoid;
}
.art-card {
  background: var(--card);
  border-radius: 10px;
  padding: 0.85rem 0.85rem 0.95rem;
  box-shadow: 0 4px 14px rgba(51, 49, 46, 0.12);
}
.art-card img { border-radius: 6px; width: 100%; }
.art-card figcaption {
  margin-top: 0.7rem;
  font-size: 0.95rem;
  color: var(--ink);
  text-align: center;
}
.art-card figcaption strong { color: var(--charcoal); font-family: var(--serif); font-size: 1.05rem; }

/* lightbox-free zoom: open image in new tab via link */
.art-card a { display: block; }

/* ---------- sold / available badges ---------- */
.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  color: #fff;
}
.badge.available { background: var(--deep-green); }
.badge.sold { background: var(--terracotta); }
.price-line { font-size: 0.9rem; color: var(--ink); }
.price-line a { font-weight: 600; }

/* ---------- testimonial ---------- */
.testimonial {
  max-width: 640px;
  margin: 3rem auto;
  text-align: center;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--on-page);
}
.testimonial .who {
  display: block;
  margin-top: 0.6rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--on-page-soft);
}

/* ---------- how it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  margin: 1.5rem 0 2rem;
}
.step {
  background: var(--card);
  border-radius: 10px;
  padding: 1.5rem 1.3rem;
  text-align: center;
  box-shadow: 0 4px 14px rgba(51, 49, 46, 0.1);
}
.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--deep-green);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}
.step h3 { font-family: var(--serif); font-weight: 500; margin-bottom: 0.3rem; }
.step p { font-size: 0.95rem; color: var(--ink); }

.center { text-align: center; margin: 2.2rem 0; }
.page-note { text-align: center; color: var(--on-page-soft); }

/* ---------- banner sections ---------- */
.band {
  background: var(--deep-green);
  color: var(--cream);
  border-radius: 12px;
  padding: 2.2rem 2rem;
  margin: 3rem 0;
  text-align: center;
}
.band h2 { color: #fff; margin: 0 0 0.6rem; }
.band p { max-width: 640px; margin: 0 auto 1.2rem; }

/* ---------- about ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2.5rem;
}
@media (max-width: 760px) { .about-grid { grid-template-columns: 1fr; } }
.about-grid img {
  border-radius: 10px;
  border: 6px solid var(--card);
  box-shadow: 0 8px 22px rgba(51, 49, 46, 0.18);
}
.about-text p { margin-bottom: 1rem; font-size: 1.05rem; color: var(--on-page-soft); }

/* ---------- commission form ---------- */
.form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--card);
  border-radius: 12px;
  padding: 2rem 1.8rem;
  box-shadow: 0 6px 18px rgba(51, 49, 46, 0.12);
}
.form-row { margin-bottom: 1.2rem; }
label { display: block; font-weight: 600; margin-bottom: 0.35rem; font-size: 0.97rem; }
input[type="text"], input[type="email"], select, textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 1rem;
  background: var(--cream);
  color: var(--charcoal);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--sage);
  border-color: var(--sage);
}
textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 0.92rem; color: var(--ink); margin-top: 1rem; text-align: center; }

/* ---------- footer ---------- */
footer {
  background: var(--charcoal);
  color: var(--cream-dark);
  margin-top: 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.6rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.93rem;
}
footer a { color: var(--sky); text-decoration: none; }
footer a:hover { text-decoration: underline; }
