/* ============================================
   Cherri — Design Tokens
   Sleek, minimal, restrained. Ink + cherry + gold.
   ============================================ */
@view-transition {
  navigation: auto;
}

:root {
  color-scheme: light;

  --ink: oklch(16% 0.03 25);
  --cherry: oklch(52% 0.19 22);
  --blush: oklch(90% 0.04 10);
  --cream: oklch(97% 0.012 55);
  --gold: oklch(72% 0.12 85);
  --white: oklch(100% 0 0);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Bricolage Grotesque", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --pad-desktop: 96px;
  --pad-mobile: 56px;
  --max-width: 1200px;
  --radius: 12px;
  --radius-lg: 20px;
  --header-height: 78px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  scrollbar-color: var(--cherry) transparent;
  scrollbar-width: thin;
}

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

::selection {
  background: var(--cherry);
  color: var(--cream);
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-wrap: balance;
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1em;
  text-wrap: pretty;
  max-inline-size: 62ch;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Visible focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--cherry);
  outline-offset: 3px;
}

.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;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--pad-mobile) 0;
}

@media (width >=900px) {
  .section {
    padding: var(--pad-desktop) 0;
  }
}

.section--dark {
  background: var(--ink);
  color: var(--cream);
}

.section--blush {
  background: var(--blush);
}

.section--cream {
  background: var(--cream);
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cherry);
  margin-bottom: 0.75em;
}

.section--dark .eyebrow {
  color: var(--gold);
}

h2 {
  font-size: clamp(30px, 4.5vw, 44px);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn--primary {
  background: var(--cherry);
  color: var(--cream);
}

.btn--primary:hover {
  background: color-mix(in oklch, var(--cherry), black 12%);
}

.btn--outline {
  background: transparent;
  color: var(--cherry);
  border-color: color-mix(in oklch, var(--cherry), transparent 40%);
}

.btn--outline:hover {
  border-color: var(--cherry);
  background: color-mix(in oklch, var(--cherry), transparent 94%);
}

.section--dark .btn--outline {
  color: var(--cream);
  border-color: color-mix(in oklch, var(--cream), transparent 55%);
}

.section--dark .btn--outline:hover {
  border-color: var(--cream);
  background: color-mix(in oklch, var(--cream), transparent 90%);
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

/* ============================================
   Placeholders (images/video to be supplied)
   ============================================ */
.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: color-mix(in oklch, var(--cherry), transparent 92%);
  border: 1px solid color-mix(in oklch, var(--ink), transparent 85%);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  min-height: 200px;
  padding: 16px;
}

.placeholder__label {
  max-width: 320px;
}

.placeholder--photo {
  aspect-ratio: 4 / 3;
}

.placeholder--wide {
  aspect-ratio: 16 / 9;
}

.placeholder--square {
  aspect-ratio: 1 / 1;
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 24px;
  background: color-mix(in oklch, var(--ink), transparent 30%);
  backdrop-filter: blur(12px);
  color: var(--cream);
  view-transition-name: site-header;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--cream);
}

.logo__mark {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

@media (width < 900px) {
  .site-header .logo__text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.main-nav {
  display: none;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s var(--ease);
}

.main-nav a:hover {
  color: var(--cherry);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-actions .btn {
  display: none;
  padding: 10px 22px;
  font-size: 14px;
}

@media (width >= 900px) {
  .header-actions .btn {
    display: inline-block;
  }
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--cream);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.icon-btn:hover {
  background: color-mix(in oklch, var(--cream), transparent 85%);
  color: var(--cherry);
}

.header-actions .icon-btn {
  display: none;
}

@media (width >= 900px) {
  .header-actions .icon-btn {
    display: inline-flex;
  }
}

.nav-toggle {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  padding: 8px;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  .nav-toggle__bar {
    transition: none;
  }
}

@media (width >=900px) {
  .main-nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

/* Mobile full-screen overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateY(-100%);
  transition: transform 0.3s var(--ease);
}

.mobile-menu.is-open {
  transform: translateY(0);
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 26px;
}

.mobile-menu .btn {
  margin-top: 12px;
}

.mobile-menu__social {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu {
    transition: none;
  }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      color-mix(in oklch, var(--ink), transparent 15%) 0%,
      color-mix(in oklch, var(--ink), transparent 65%) 60%,
      color-mix(in oklch, var(--ink), transparent 78%) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 24px 40px;
  width: 100%;
}

@media (width >= 900px) {
  .hero__content {
    padding-bottom: 96px;
  }
}

.hero h1 {
  font-size: clamp(36px, 7vw, 74px);
  margin-bottom: 0.3em;
  max-inline-size: 16ch;
}

/* ============================================
   Services Strip
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}

@media (width >=700px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (width >=1000px) {
  .services-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.service-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  background: color-mix(in oklch, var(--cherry), transparent 90%);
  border-radius: 50%;
  color: var(--cherry);
}

.service-item__icon svg {
  width: 22px;
  height: 22px;
}

.service-item__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ============================================
   Meet the Band
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (width >=900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .split--reverse {
    direction: rtl;
  }

  .split--reverse>* {
    direction: ltr;
  }
}

.split .placeholder--photo {
  border-radius: var(--radius-lg);
}

/* ============================================
   Showcases
   ============================================ */
.date-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.date-list.is-loading {
  visibility: hidden;
}

.date-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid color-mix(in oklch, var(--ink), transparent 90%);
}

.date-card__date {
  font-weight: 700;
  color: var(--cherry);
  min-width: 140px;
}

.date-card__venue {
  flex: 1;
  min-width: 200px;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

@media (width >=900px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid color-mix(in oklch, var(--ink), transparent 92%);
}

.testimonial-card__quote-mark {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
}

.testimonial-card__rating {
  color: var(--gold);
  letter-spacing: 2px;
}

.testimonial-card__person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-card__avatar.placeholder {
  width: 48px;
  height: 48px;
  min-height: 0;
  border-radius: 50%;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
}

.testimonial-card__venue {
  font-size: 14px;
  opacity: 0.7;
}

.read-more-link {
  display: inline-block;
  margin-top: 32px;
  font-weight: 700;
  color: var(--cherry);
  border-bottom: 2px solid var(--cherry);
}

/* ============================================
   Showcase CTA Block
   ============================================ */
.showcase-cta__text h2 {
  margin-bottom: 0.4em;
}

/* ============================================
   Final CTA
   ============================================ */
.final-cta {
  position: relative;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.final-cta .placeholder {
  min-height: 480px;
  border-radius: 0;
}

.final-cta__content {
  position: relative;
  z-index: 1;
  padding: 96px 24px;
}

.final-cta__content h2 {
  font-size: clamp(32px, 5.5vw, 52px);
}

.final-cta__overlay {
  position: absolute;
  inset: 0;
  background: var(--ink);
  opacity: 0.45;
}

.final-cta__quick-links {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
}

.final-cta__quick-links a {
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
}

/* ============================================
   Newsletter
   ============================================ */
.newsletter {
  text-align: center;
}

.newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 24px 0 12px;
}

.newsletter__form input[type="email"] {
  flex: 1;
  min-width: 220px;
  max-width: 360px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1.5px solid color-mix(in oklch, var(--ink), transparent 82%);
  background: var(--white);
  transition: border-color 0.2s var(--ease);
}

.newsletter__form input[type="email"]:focus-visible {
  border-color: var(--cherry);
}

.form-message {
  font-size: 14px;
  min-height: 1.4em;
}

.form-message--success {
  color: oklch(52% 0.13 150);
}

.form-message--error {
  color: var(--cherry);
}

.privacy-note {
  font-size: 13px;
  opacity: 0.65;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (width >=700px) {
  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 24px;
  }
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1em;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  transition: color 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--cherry);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid color-mix(in oklch, var(--cream), transparent 88%);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  font-size: 13px;
  opacity: 0.75;
}

.footer-bottom__links {
  display: flex;
  gap: 20px;
}

/* ============================================
   Contact Page
   ============================================ */
.page-hero {
  padding-top: calc(var(--pad-mobile) + 88px);
  padding-bottom: var(--pad-mobile);
  background: var(--blush);
}

.page-hero h1 {
  font-size: clamp(32px, 5.5vw, 54px);
  max-inline-size: 18ch;
}

@media (width >=900px) {
  .page-hero {
    padding-top: calc(var(--pad-desktop) + 88px);
    padding-bottom: var(--pad-desktop);
  }
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (width >=900px) {
  .contact-layout {
    grid-template-columns: 3fr 2fr;
    gap: 64px;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (width >=600px) {
  .form-row--two {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
  transition: color 0.2s var(--ease);
}

.field:has(:user-invalid) label {
  color: var(--cherry);
}

.field .required {
  color: var(--cherry);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid color-mix(in oklch, var(--ink), transparent 82%);
  background: var(--white);
  transition: border-color 0.2s var(--ease);
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  border-color: var(--cherry);
}

.field input:user-invalid,
.field select:user-invalid {
  border-color: var(--cherry);
}

.field textarea {
  min-height: 3lh;
  field-sizing: content;
  max-block-size: 40dvh;
  resize: vertical;
}

.field-error {
  color: var(--cherry);
  font-size: 13px;
  margin-top: 4px;
  min-height: 1.2em;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  accent-color: var(--cherry);
}

.checkbox-field input {
  width: auto;
  margin-top: 4px;
}

.checkbox-field label {
  font-weight: 400;
  font-size: 14px;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in oklch, var(--ink), transparent 92%);
  padding: 32px;
  height: fit-content;
}

.contact-sidebar h3 {
  margin-bottom: 1em;
}

.contact-sidebar__item {
  margin-bottom: 20px;
}

.contact-sidebar__item h4 {
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cherry);
  margin-bottom: 4px;
}

.social-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  margin-top: 8px;
}

.social-row a {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--blush);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.social-row a svg {
  width: 18px;
  height: 18px;
}

@media (width < 480px) {
  .social-row {
    gap: 8px;
  }

  .social-row a {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }

  .social-row a svg {
    width: 15px;
    height: 15px;
  }
}

.social-row a:hover {
  background: var(--cherry);
  color: var(--white);
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
}

.form-success.is-visible {
  display: block;
}

.contact-form.is-hidden {
  display: none;
}

/* ============================================
   Scroll fade-up animation
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

@media (prefers-contrast: more) {
  .btn--outline {
    border-width: 2px;
  }

  .date-card,
  .testimonial-card,
  .contact-sidebar {
    border: 2px solid var(--ink);
  }
}