:root {
  --bg-deep: #1a0f14;
  --bg-elevated: #24161d;
  --bg-card: #2d1c26;
  --text: #f4ebe4;
  --text-muted: #c4b5ae;
  --accent: #c9a227;
  --accent-soft: rgba(201, 162, 39, 0.35);
  --rose: #8b3a5c;
  --rose-deep: #5c2440;
  --cream: #faf5f0;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Josefin Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--bg-deep);
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 1.5rem;
  background: linear-gradient(to bottom, var(--bg-deep) 60%, transparent);
  pointer-events: none;
}

.header-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}

.nav {
  display: none;
  gap: 2rem;
  align-items: center;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.25s var(--ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--accent);
}

.nav-cta {
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--accent);
  color: var(--accent) !important;
  border-radius: 2px;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--accent-soft);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.nav-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.75rem;
  padding: 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  pointer-events: auto;
}

.nav-panel a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-panel[hidden] {
  display: none;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-panel {
    display: none !important;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
}

.hero-main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 2.5rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .hero {
    padding: 5rem 2rem 4rem;
  }

  .hero-main {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

  .hero-main .hero-content {
    flex: 1.05;
    min-width: 0;
  }

  .hero-main .hero-aside {
    flex: 0.95;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(139, 58, 92, 0.45), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(201, 162, 39, 0.12), transparent 50%),
    linear-gradient(165deg, var(--bg-deep) 0%, #120a0e 100%);
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 36rem;
}

.hero-aside {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-frame {
  position: relative;
  width: min(100%, 20rem);
  margin: 0;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--accent-soft);
  border-radius: 50% 50% 48% 52% / 42% 44% 56% 58%;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(139, 58, 92, 0.35), transparent 60%),
    linear-gradient(320deg, rgba(201, 162, 39, 0.15), transparent 50%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 40px 80px -30px rgba(0, 0, 0, 0.6);
  transform: rotate(-4deg);
  animation: float 8s var(--ease) infinite alternate;
}

@media (min-width: 900px) {
  .hero-frame {
    width: min(100%, 22rem);
  }
}

.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

@keyframes float {
  from {
    transform: rotate(-4deg) translateY(0);
  }
  to {
    transform: rotate(-2deg) translateY(-12px);
  }
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  line-height: 1.05;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

.hero-title-accent {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.hero-lede {
  color: var(--text-muted);
  margin: 0 0 2rem;
  font-size: 1.05rem;
  max-width: 28rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.2s var(--ease);
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-deep);
}

.btn-primary:hover {
  background: #ddb22e;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-gold {
  background: var(--cream);
  color: var(--bg-deep);
}

.btn-gold:hover {
  background: #fff;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.section {
  position: relative;
  padding: 5rem 1.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1.25rem;
}

.section-title.light {
  color: var(--cream);
}

.section-text {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  max-width: 36rem;
}

.section-text.light {
  color: rgba(244, 235, 228, 0.85);
}

.section-split {
  display: grid;
  gap: 3rem;
  max-width: 72rem;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 768px) {
  .section-split {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

.split-visual {
  min-height: 14rem;
  position: relative;
}

.perform-carousel {
  position: relative;
  max-width: 36rem;
  margin: 0 auto;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(201, 162, 39, 0.2);
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.55);
  background: var(--bg-card);
}

.carousel-track {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform 0.45s var(--ease);
}

.carousel-slide {
  flex: 0 0 100%;
  margin: 0;
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.carousel-btn {
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 2px;
  background: var(--bg-elevated);
  color: var(--accent);
  cursor: pointer;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease);
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  background: var(--accent-soft);
  color: var(--cream);
  outline: none;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(244, 235, 228, 0.25);
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.carousel-dot[aria-selected="true"] {
  background: var(--accent);
  transform: scale(1.15);
}

.carousel-dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.split-copy {
  padding-left: 0;
}

@media (min-width: 768px) {
  .split-copy {
    padding-left: 1rem;
    border-left: 1px solid rgba(201, 162, 39, 0.25);
  }
}

.feature-list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
}

.feature-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.65rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.link-arrow {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.link-arrow:hover {
  text-decoration: underline;
}

.section-band {
  background: linear-gradient(120deg, var(--rose-deep) 0%, var(--bg-elevated) 45%, #1f1218 100%);
  padding: 5rem 1.5rem;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.band-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .band-inner {
    grid-template-columns: 1fr auto;
    gap: 3rem;
  }
}

.section-card {
  max-width: 48rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.card-block {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  border: 1px solid rgba(201, 162, 39, 0.2);
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.5);
}

.card-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.card-highlight {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text);
  margin: 0 0 1.75rem;
}

.section-contact {
  padding-bottom: 6rem;
}

.contact-mailto a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-soft);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.contact-mailto a:hover,
.contact-mailto a:focus-visible {
  color: #ddb22e;
  border-color: rgba(201, 162, 39, 0.6);
}

.contact-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: start;
  }
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.field input,
.field select,
.field textarea {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  color: var(--text);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.field-full {
  grid-column: 1 / -1;
}

.form-status {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  margin: 0;
  min-height: 1.25em;
}

.form-status--ok {
  color: #9fd4a8;
}

.form-status--error {
  color: #e8a0a0;
}

.form-note {
  grid-column: 1 / -1;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

.site-footer {
  padding: 2.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.footer-meta {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}
