/* dallasvietty.com — warm performer aesthetic, mobile-first */

:root {
  --bg: #1a1410;
  --bg-dark: #110c08;
  --ink: #f5ede1;
  --ink-dim: #c9bca8;
  --accent: #c89968;
  --accent-bright: #e0b482;
  --serif: Georgia, "Times New Roman", "Iowan Old Style", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --max: 1100px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-bright); text-decoration: none; }
a:hover { color: var(--ink); text-decoration: underline; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: 0.01em; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem var(--pad);
  background: rgba(17, 12, 8, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200, 153, 104, 0.15);
}

.brand {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.brand:hover { color: var(--accent-bright); text-decoration: none; }

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  font-size: 0.95rem;
}
.site-header nav a {
  color: var(--ink-dim);
  text-decoration: none;
}
.site-header nav a:hover { color: var(--accent-bright); }
.site-header nav a.ext { color: var(--accent); }

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

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) var(--pad) clamp(2rem, 6vw, 5rem);
}

@media (min-width: 760px) {
  .hero {
    grid-template-columns: 1.1fr 1fr;
    gap: 3.5rem;
    padding-top: clamp(3rem, 7vw, 6rem);
  }
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.05;
  margin: 0 0 0.6rem 0;
}

.hero .tagline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent-bright);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin: 0 0 1.5rem 0;
}

.hero .lede {
  color: var(--ink-dim);
  max-width: 38ch;
  font-size: 1.05rem;
  margin: 0 0 2rem 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  background: var(--accent);
  color: var(--bg-dark);
  border-radius: 2px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.15s ease;
}
.btn:hover { background: var(--accent-bright); color: var(--bg-dark); text-decoration: none; }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--bg-dark); }

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  filter: saturate(0.95);
}

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

.section {
  padding: clamp(3rem, 7vw, 5rem) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}

.section-dark {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  background: var(--bg-dark);
}
.section-dark > h2,
.section-dark > .video-grid,
.section-dark > .contact-lede,
.section-dark > .booking-form,
.section-dark > .socials {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin: 0 0 2rem 0;
  position: relative;
  padding-bottom: 0.75rem;
}
h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--accent);
  position: absolute;
  bottom: 0;
  left: 0;
}

/* ---------- Gig list ---------- */

.gig-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.gig {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(200, 153, 104, 0.15);
}
@media (min-width: 600px) {
  .gig {
    grid-template-columns: 180px 1fr;
    gap: 1.5rem;
    align-items: baseline;
  }
}

.gig-date {
  font-family: var(--serif);
  color: var(--accent-bright);
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
}

.gig-title { font-size: 1.1rem; color: var(--ink); margin: 0; }
.gig-meta { color: var(--ink-dim); font-size: 0.95rem; margin: 0.2rem 0 0 0; }

.gig-empty {
  padding: 1.5rem 0;
  color: var(--ink-dim);
  font-style: italic;
}

.past-toggle {
  margin-top: 2.5rem;
}
.past-toggle summary {
  cursor: pointer;
  color: var(--accent);
  font-size: 0.95rem;
  padding: 0.5rem 0;
  list-style: none;
}
.past-toggle summary::before {
  content: "▸ ";
  display: inline-block;
  transition: transform 0.15s ease;
}
.past-toggle[open] summary::before { content: "▾ "; }

.gig-list.past .gig { opacity: 0.75; }

/* ---------- Videos ---------- */

.video-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .video-grid { grid-template-columns: 1fr 1fr; }
}

.video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border-radius: 2px;
}
.video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 760px) {
  .about-grid {
    grid-template-columns: 0.9fr 1.2fr;
    gap: 3rem;
  }
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.about-text p {
  margin: 0 0 1rem 0;
  color: var(--ink-dim);
}
.about-text p:first-of-type {
  color: var(--ink);
  font-size: 1.15rem;
}

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

.contact-lede {
  color: var(--ink-dim);
  margin: 0 0 2rem 0;
  max-width: 60ch;
}

/* ---------- Booking form ---------- */

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 0 0 2.5rem 0;
}
/* Inner content stays readable even when the form spans the section width */
.booking-form > .field,
.booking-form > .field-row,
.booking-form > .btn-submit,
.booking-form > .form-fine-print { max-width: 720px; }

.field-row {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.field > span {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.field > span em {
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.85em;
  opacity: 0.7;
}

.field input,
.field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: rgba(245, 237, 225, 0.05);
  border: 1px solid rgba(200, 153, 104, 0.25);
  border-radius: 2px;
  padding: 0.7rem 0.85rem;
  width: 100%;
  transition: border-color 0.15s ease, background 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(201, 188, 168, 0.4); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(245, 237, 225, 0.08);
}
.field textarea { resize: vertical; min-height: 140px; }

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.btn-submit {
  align-self: flex-start;
  cursor: pointer;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.8rem;
}

.form-fine-print {
  font-size: 0.85rem;
  color: var(--ink-dim);
  margin: 0;
  max-width: 60ch;
}
.form-fine-print a { color: var(--accent-bright); }

/* ---------- Socials ---------- */

.socials {
  color: var(--ink-dim);
  font-size: 0.95rem;
  margin: 0;
}
.socials span { margin: 0 0.4rem; opacity: 0.5; }

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

.site-footer {
  border-top: 1px solid rgba(200, 153, 104, 0.15);
  padding: 2rem var(--pad);
  text-align: center;
  color: var(--ink-dim);
  font-size: 0.85rem;
}
.site-footer p { margin: 0; }

/* ---------- Thanks page ---------- */

.thanks {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.thanks h1 {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  margin: 0 0 1.5rem 0;
}
.thanks-lede {
  color: var(--ink-dim);
  font-size: 1.1rem;
  max-width: 50ch;
  margin: 0 0 1rem 0;
}
.thanks .cta-row { margin-top: 1.5rem; }
