/* The Garret — single-page site
   Full-bleed atmospheric version
   ----------------------------------- */

:root {
  --paper: #FBFAF6;          /* light text on dark photo overlays */
  --paper-band: #EAEBE3;     /* cool stone: bg for prose section */
  --paper-soft: #f3eee2;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --ink-deep: #14110d;
  --rule: #d8d4c8;
  --rule-light: rgba(251, 250, 246, 0.25);
  --measure: 640px;
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink-deep);
  color: var(--ink);
  font-family: 'Iowan Old Style', 'Charter', Georgia, 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Accessibility */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

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

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 17, 13, 0.55) 0%,
    rgba(20, 17, 13, 0.45) 50%,
    rgba(20, 17, 13, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 32px;
  max-width: 720px;
}

.wordmark {
  margin: 0 auto;
  width: 100%;
  max-width: min(92vw, 960px);
}

.wordmark svg {
  display: block;
  width: 100%;
  height: auto;
}

.tagline {
  margin: 28px auto 0;
  max-width: 580px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1.45;
  opacity: 0.92;
}

.tagline-light {
  color: var(--paper);
}

/* ===== BANDS (text sections) ===== */
.band {
  position: relative;
  width: 100%;
  padding: 96px 32px;
  overflow: hidden;
}

.band-cream {
  background: var(--paper-band);
  color: var(--ink);
}

.band-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  color: var(--paper);
}

.band-tall {
  padding: 140px 32px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 17, 13, 0.55) 0%,
    rgba(20, 17, 13, 0.65) 100%
  );
}

.band-overlay-dark {
  background: linear-gradient(
    180deg,
    rgba(20, 17, 13, 0.55) 0%,
    rgba(20, 17, 13, 0.75) 100%
  );
}

.band-content {
  position: relative;
  z-index: 1;
  max-width: var(--measure);
  margin: 0 auto;
}

.band-content-center {
  text-align: center;
}

/* ===== Prose ===== */
.prose {
  max-width: var(--measure);
  margin: 0 auto;
}

.prose p {
  margin: 0 0 1.3em;
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink);
}

.prose p:last-child {
  margin-bottom: 0;
}

/* ===== Headings ===== */
h2 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
}

h2.light {
  color: var(--paper);
  border-bottom-color: var(--rule-light);
}

h2.center {
  display: inline-block;
  border-bottom: 1px solid var(--rule-light);
  padding-bottom: 14px;
  margin-bottom: 36px;
}

/* ===== What's included list ===== */
.included {
  list-style: none;
  padding: 0;
  margin: 0;
}

.included li {
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 18px;
  line-height: 1.5;
}

.included.light li {
  border-bottom: 1px solid var(--rule-light);
  color: var(--paper);
}

.included li:last-child {
  border-bottom: none;
}

/* ===== Pricing ===== */
.price-light {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 200;
  font-size: 64px;
  letter-spacing: -0.02em;
  margin: 16px 0 18px;
  color: var(--paper);
  line-height: 1;
}

.price-per {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  opacity: 0.75;
}

.price-detail-light {
  font-size: 17px;
  line-height: 1.6;
  color: var(--paper);
  max-width: 480px;
  margin: 0 auto;
  opacity: 0.92;
}

/* ===== Full-bleed figures ===== */
.bleed-figure {
  width: 100%;
  margin: 0;
}

.bleed-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.bleed-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
}

.bleed-pair figure {
  margin: 0;
  overflow: hidden;
}

.bleed-pair img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* ===== Contact ===== */
.contact-text-light {
  font-size: 19px;
  line-height: 1.6;
  color: var(--paper);
  margin: 0 0 28px;
  opacity: 0.92;
}

.contact-link-light {
  display: inline-block;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--paper);
  text-decoration: none;
  border-bottom: 1px solid var(--paper);
  padding-bottom: 4px;
  letter-spacing: 0.01em;
  transition: opacity 0.2s ease;
}

.contact-link-light:hover {
  opacity: 0.7;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--ink-deep);
  color: var(--paper);
  padding: 56px 32px;
  text-align: center;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 1.7;
}

.site-footer p {
  margin: 4px 0;
  opacity: 0.7;
}

.footer-brand {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 1 !important;
  margin-bottom: 12px !important;
}

/* ===== Responsive ===== */
@media (max-width: 720px) {
  body { font-size: 17px; }

  .hero {
    min-height: 88vh;
    background-position: 22% center;
  }

  .wordmark {
    max-width: 92vw;
  }

  .tagline {
    font-size: 17px;
    margin-top: 22px;
  }

  .band {
    padding: 72px 24px;
  }

  .band-tall {
    padding: 100px 24px;
    min-height: 50vh;
  }

  .prose p {
    font-size: 17px;
    line-height: 1.6;
  }

  .price-light {
    font-size: 48px;
  }

  .price-per {
    font-size: 20px;
  }

  .bleed-pair {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 40px 24px;
  }
}
