:root {
  --bg: #f3efe8;
  --surface: #fffdf9;
  --text: #1f1f1d;
  --text-soft: #595650;
  --accent: #b35b43;
  --accent-deep: #8f4633;
  --ring: #d88771;
  --border: #d5cbba;
  --overlay-dark: rgba(18, 18, 17, 0.34);
  --overlay-band: rgba(18, 18, 17, 0.28);
  --container: 1120px;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.container {
  width: min(92%, var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(243, 239, 232, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(213, 203, 186, 0.7);
}

.nav-shell {
  min-height: 3.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  min-width: 0;
  color: var(--text);
}

.brand-logo {
  width: 3.375rem;
  height: 3.375rem;
  object-fit: contain;
  flex: 0 0 auto;
  display: block;
}

.brand-text {
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem 1.05rem;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-soft);
  border-bottom: 2px solid transparent;
  padding-bottom: 0.1rem;
  transition: color 140ms ease, border-color 140ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.section {
  padding: 5.5rem 0;
}

.section h2,
.hero-content h1 {
  margin: 0.3rem 0 0.9rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.05;
}

.section-kicker,
.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
}

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: end;
  isolation: isolate;
}

.hero-photo,
.band-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay,
.band-overlay {
  position: absolute;
  inset: 0;
}

.hero-overlay {
  background: linear-gradient(to top, rgba(18, 18, 17, 0.62), rgba(18, 18, 17, 0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding-bottom: 4.6rem;
  max-width: 52rem;
}

.hero-content .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.hero-content p {
  max-width: 46ch;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.button {
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.68rem 1.16rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 140ms ease, background-color 140ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-deep);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.62);
  color: #fff;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.24);
}

.image-band {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.band-overlay {
  background: var(--overlay-band);
}

.band-card {
  position: relative;
  z-index: 1;
  width: min(100%, 42rem);
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid rgba(213, 203, 186, 0.95);
  border-radius: 1rem;
  padding: 1.3rem 1.2rem;
  box-shadow: var(--shadow);
}

.band-card h2 {
  color: var(--text);
}

.band-card p {
  margin: 0.5rem 0;
  color: var(--text-soft);
}

.offers,
.testimonials,
.contact {
  background: var(--bg);
}

.offers h2,
.testimonials h2,
.contact h2 {
  margin-bottom: 1.25rem;
}

.card-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.offer-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.95rem;
  overflow: hidden;
}

.offer-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.offer-copy {
  padding: 1rem 1rem 1.15rem;
}

.offer-copy h3 {
  margin: 0;
  font-size: 1.16rem;
}

.price {
  margin: 0.25rem 0 0.62rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.price-note {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-soft);
}

.offer-copy p {
  margin: 0.5rem 0;
  color: var(--text-soft);
}

.featured {
  border-color: var(--accent);
}

.badge {
  margin: 0 0 0.42rem;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
}

.text-link {
  display: inline-block;
  margin-top: 0.15rem;
  color: var(--accent-deep);
  font-weight: 700;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

blockquote {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 1rem 1rem 1.1rem;
}

blockquote cite {
  display: block;
  margin-top: 0.85rem;
  color: var(--text-soft);
  font-style: normal;
}

.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-copy p {
  color: var(--text-soft);
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 1.05rem;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin: 0.56rem 0 0.34rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c9bea9;
  border-radius: 0.5rem;
  background: #fff;
  color: var(--text);
  font: inherit;
  padding: 0.64rem 0.72rem;
}

.contact-form button {
  width: 100%;
  margin-top: 0.9rem;
}

.form-note {
  margin: 0.72rem 0 0;
  font-size: 0.83rem;
  color: var(--text-soft);
}

.form-status {
  margin-top: 0.42rem;
  min-height: 1.1em;
  font-size: 0.9rem;
}

.site-footer {
  padding: 1.9rem 0 2.8rem;
  border-top: 1px solid rgba(213, 203, 186, 0.7);
  background: var(--bg);
}

.footer-shell {
  display: flex;
  justify-content: center;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.site-nav a:focus-visible,
.button:focus-visible,
.contact-form input:focus-visible,
.contact-form textarea:focus-visible,
.text-link:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

@media (max-width: 980px) {
  .card-grid,
  .quote-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero-content {
    padding-bottom: 3.8rem;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 4.25rem 0;
  }

  .brand-text {
    font-size: 0.84rem;
  }

  .site-nav a {
    font-size: 0.82rem;
  }

  .image-band {
    min-height: 66svh;
  }

  .band-card {
    padding: 1rem 0.95rem;
  }

  .card-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
