/* Yucca Bloom Studio — first static launch site */

:root {
  --ink: #171410;
  --paper: #eee8dc;
  --paper-deep: #ded4c4;
  --muted: #6f675d;
  --line: rgba(23, 20, 16, 0.18);
  --max: 1500px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 10;
  width: min(calc(100% - 3rem), var(--max));
  min-height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-mark {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2.5rem);
}

nav a,
.social-links a {
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav a:hover,
.social-links a:hover,
.text-link:hover {
  opacity: 0.58;
}

main {
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(420px, 1.28fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
  padding: clamp(3rem, 7vw, 7rem) 0;
}

.hero-copy {
  max-width: 510px;
}

.eyebrow {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 680;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  font-size: clamp(5rem, 12vw, 11rem);
  line-height: 0.82;
  letter-spacing: -0.065em;
}

h1 em {
  font-style: normal;
}

.lede {
  max-width: 26rem;
  margin: 2.5rem 0 0;
  font-family: Iowan Old Style, Baskerville, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.1vw, 2.05rem);
  line-height: 1.22;
}

.details {
  margin: 3.25rem 0 2.3rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.details div {
  display: grid;
  grid-template-columns: 7.25rem 1fr;
  gap: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 680;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

dd {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
}

.text-link {
  display: inline-block;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

.hero-art {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #0e0d0c;
  box-shadow: 0 28px 85px rgba(49, 30, 18, 0.2);
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-art img {
  width: 100%;
  height: auto;
}

.statement {
  padding: clamp(6rem, 14vw, 13rem) 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  column-gap: clamp(2rem, 7vw, 8rem);
}

.statement .eyebrow {
  grid-row: span 2;
}

.statement h2 {
  max-width: 1050px;
  font-size: clamp(2.7rem, 5.6vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.statement > p:last-child {
  max-width: 610px;
  margin: 3rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.7;
}

.contact {
  padding: clamp(4rem, 9vw, 8rem) 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 4rem;
}

.contact h2 {
  max-width: 800px;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.email-button {
  justify-self: end;
  max-width: 100%;
  padding: 1.05rem 1.25rem;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-size: clamp(0.73rem, 1vw, 0.9rem);
  letter-spacing: 0.07em;
  overflow-wrap: anywhere;
  transition: color 180ms ease, background 180ms ease;
}

.email-button:hover {
  color: var(--paper);
  background: var(--ink);
}

footer {
  width: min(calc(100% - 3rem), var(--max));
  min-height: 120px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem 1.6rem;
}

@media (max-width: 900px) {
  .site-header {
    min-height: 82px;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    padding-top: 4rem;
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero-art {
    max-width: 680px;
    margin: 0 auto;
  }

  .statement,
  .contact {
    grid-template-columns: 1fr;
  }

  .statement .eyebrow {
    grid-row: auto;
  }

  .contact {
    align-items: start;
  }

  .email-button {
    justify-self: start;
  }

  footer {
    padding: 2.2rem 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .social-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .site-header,
  main,
  footer {
    width: min(calc(100% - 2rem), var(--max));
  }

  .brand {
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  .brand-mark {
    width: 27px;
    height: 27px;
  }

  .hero {
    padding-top: 3rem;
  }

  h1 {
    font-size: clamp(4.7rem, 26vw, 7rem);
  }

  .details div {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .statement h2 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

  .social-links {
    gap: 0.9rem 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}
