:root {
  --wine-dark: #5A0E24;
  --wine: #76153C;
  --rose: #BF124D;
  --blue: #67B2D8;
  --ink: #191216;
  --muted: #6f6368;
  --paper: #fbf8f7;
  --white: #ffffff;
  --line: #eadfe3;
  --shadow: 0 24px 70px rgba(90, 14, 36, 0.10);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

h1, h2, h3, h4, .brand-name, .section-kicker {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 300;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.5rem, 7vw, 6.5rem); line-height: 0.96; margin: 0; padding-bottom: 20px; }
h2 { font-size: clamp(2rem, 4vw, 4rem); line-height: 1; margin: 0 0 1rem; }
h3 { font-size: 1.35rem; line-height: 1.25; margin: 0 0 0.75rem; }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 248, 247, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-link { display: inline-flex; align-items: center; gap: 12px; }
.logo-mark { width: 90px; height: 90px; border-radius: 14px; }
.brand-name { font-size: 1.15rem; color: var(--wine-dark); }
.nav-links { display: flex; align-items: center; gap: 24px; font-size: 0.94rem; color: var(--muted); }
.nav-links a:hover, .nav-links a.active { color: var(--wine-dark); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; border: 0; background: var(--white); border-radius: 999px; padding: 10px 12px; color: var(--wine-dark); font-size: 1.2rem; cursor: pointer; }

.btn, .music-btn {
  border: 1px solid var(--wine-dark);
  background: var(--wine-dark);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
  transition: 180ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn:hover, .music-btn:hover { transform: translateY(-1px); background: var(--wine); }
.btn.secondary { background: transparent; color: var(--wine-dark); }
.btn.secondary:hover { background: var(--white); }
.music-btn { padding: 10px 14px; font-size: 0.9rem; border-color: var(--rose); background: var(--rose); }

.hero { padding: 82px 0 70px; }
.hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 44px; align-items: center; }
.eyebrow { color: var(--rose); text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.2em; margin-bottom: 18px; font-weight: 500; }
.hero-copy p { font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: var(--muted); max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 38px; }
.meta-card { border: 1px solid var(--line); border-radius: 18px; padding: 16px; background: var(--white); }
.meta-card strong { display: block; color: var(--wine-dark); font-size: 1.4rem; font-weight: 400; }
.meta-card span { display: block; color: var(--muted); font-size: 0.88rem; }
.visual-card { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 560px; box-shadow: var(--shadow); background: var(--white); }
.visual-card img { width: 100%; height: 560px; object-fit: cover; filter: saturate(0.9); }
.visual-label { position: absolute; left: 22px; bottom: 22px; right: 22px; background: rgba(255,255,255,0.9); padding: 18px; border-radius: 18px; color: var(--wine-dark); }

.section { padding: 76px 0; }
.section.alt { background: var(--white); }
.section-kicker { color: var(--rose); font-size: 0.95rem; margin-bottom: 10px; }
.section-head { display: flex; justify-content: space-between; gap: 28px; align-items: center; margin-bottom: 34px; }
.section-head p { max-width: 560px; color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: 0 12px 30px rgba(90,14,36,0.04); }
.alt .card { background: var(--paper); }
.symbol { color: var(--blue); font-size: 1.5rem; margin-bottom: 18px; display: inline-block; }
.card p, .legal-content p, .legal-content li { color: var(--muted); }
.feature-row { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 28px; align-items: stretch; }
.feature-image { min-height: 420px; border-radius: var(--radius); overflow: hidden; }
.feature-image img { width: 100%; height: 100%; object-fit: cover; }
.feature-panel { background: var(--wine-dark); color: var(--white); border-radius: var(--radius); padding: clamp(32px, 5vw, 58px); display: flex; flex-direction: column; justify-content: center; }
.feature-panel p { color: rgba(255,255,255,0.76); }
.list-clean { list-style: none; padding: 0; margin: 18px 0 0; }
.list-clean li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.16); }

.page-hero { padding: 72px 0 42px; border-bottom: 1px solid var(--line); }
.page-hero p { color: var(--muted); max-width: 780px; font-size: 1.12rem; }
.package-card { position: relative; display: flex; flex-direction: column; min-height: 100%; }
.price { font-size: 2rem; color: var(--wine-dark); margin: 14px 0; font-weight: 300; }
.package-card ul { padding-left: 18px; color: var(--muted); margin-bottom: 26px; }
.package-card .btn { margin-top: auto; }
.service-band { background: var(--wine); color: white; border-radius: var(--radius); padding: 38px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.service-band p { color: rgba(255,255,255,0.78); }

.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 24px; }
.contact-list { display: grid; gap: 14px; }
.contact-item { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 20px; }
.contact-item span { display: block; color: var(--rose); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; }
.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; margin-bottom: 6px; color: var(--wine-dark); font-size: 0.9rem; }
input, textarea { width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px; font: inherit; background: var(--paper); color: var(--ink); }
textarea { min-height: 140px; resize: vertical; }
.form-field { margin-bottom: 16px; }

.legal-content { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 5vw, 54px); }
.legal-content h2 { font-size: 1.8rem; margin-top: 2rem; }
.legal-content h2:first-child { margin-top: 0; }

.site-footer { background: var(--ink); color: var(--white); padding: 44px 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr; gap: 28px; }
.footer-grid p, .site-footer a { color: rgba(255,255,255,0.72); }
.footer-links { display: grid; gap: 8px; align-content: start; justify-items: start; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 30px; padding-top: 20px; color: rgba(255,255,255,0.52); font-size: 0.9rem; }

@media (max-width: 900px) {
  .navbar { min-height: 72px; }
  .menu-toggle { display: inline-flex; }
  .nav-links { position: absolute; top: 72px; left: 0; right: 0; background: var(--paper); border-bottom: 1px solid var(--line); padding: 18px 20px 24px; display: none; flex-direction: column; align-items: flex-start; }
  .nav-links.open { display: flex; }
  .hero-grid, .feature-row, .contact-grid, .service-band { grid-template-columns: 1fr; }
  .visual-card, .visual-card img { min-height: 420px; height: 420px; }
  .section-head { display: block; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1160px); }
  .hero { padding-top: 48px; }
  .nav-actions .music-btn { font-size: 0; width: 44px; height: 44px; padding: 0; }
  .nav-actions .music-btn::before {
    content: "";
    width: 1.1rem;
    height: 1.1rem;
    display: block;
    background: url("assets/icons/music.svg") center / contain no-repeat;
  }
  .brand-name { font-size: 1rem; }
  .hero-meta, .form-row { grid-template-columns: 1fr; }
  .card, .contact-form { padding: 22px; }
}

/* Updated icon and footer refinements */
.symbol {
  font-size: 2rem;
  line-height: 1;
  color: var(--blue);
}
.list-clean li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.list-icon {
  color: var(--blue);
  font-size: 1.25rem;
  line-height: 1.55;
  flex: 0 0 auto;
}
.site-footer .brand-name {
  color: rgba(255,255,255,0.94);
}
.form-note {
  color: var(--muted);
  margin-bottom: 18px;
}
.form-status {
  display: none;
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.form-status-success {
  background: rgba(103, 178, 216, 0.15);
  border: 1px solid rgba(103, 178, 216, 0.35);
  color: var(--wine-dark);
}
.form-status-error {
  background: rgba(191, 18, 77, 0.10);
  border: 1px solid rgba(191, 18, 77, 0.25);
  color: var(--wine-dark);
}
.form-status.is-visible {
  display: block;
}


/* SVG icon replacements */
.text-icon,
.label-icon,
.symbol,
.list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  line-height: 1;
}

.symbol {
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 18px;
  color: var(--blue);
}

.symbol img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.list-icon {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.25rem;
}

.list-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.label-icon {
  width: 1.35rem;
  height: 1.35rem;
}

.label-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.visual-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  align-items: center;
  justify-content: center;
}

.menu-icon {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
}

@media (max-width: 560px) {
  .nav-actions .music-btn::before {
    content: "";
    width: 1.1rem;
    height: 1.1rem;
    display: block;
    background: url("assets/icons/music.svg") center / contain no-repeat;
  }
}


/* Service match quiz */
.quiz-section {
  padding-top: 0;
}
.quiz-head {
  align-items: flex-end;
}
.service-quiz {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
  align-items: stretch;
}
.quiz-panel,
.quiz-result {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(90,14,36,0.04);
}
.quiz-panel {
  padding: clamp(22px, 4vw, 34px);
  display: grid;
  gap: 24px;
}
.quiz-question {
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}
.quiz-question:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.quiz-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(103, 178, 216, 0.16);
  color: var(--wine-dark);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.quiz-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.quiz-option {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--wine-dark);
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  font-size: 0.94rem;
  cursor: pointer;
  transition: 180ms ease;
}
.quiz-option:hover {
  border-color: rgba(191, 18, 77, 0.35);
  transform: translateY(-1px);
}
.quiz-option.is-selected {
  background: var(--wine-dark);
  border-color: var(--wine-dark);
  color: var(--white);
}
.quiz-result {
  padding: clamp(24px, 4vw, 34px);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.quiz-result-icon {
  margin-bottom: 20px;
}
.quiz-result p {
  color: var(--muted);
}
.quiz-result-list {
  padding-left: 18px;
  color: var(--muted);
  margin: 0 0 26px;
}
.quiz-result .btn {
  margin-top: auto;
}

@media (max-width: 900px) {
  .service-quiz {
    grid-template-columns: 1fr;
  }
  .quiz-section {
    padding-top: 40px;
  }
}

@media (max-width: 560px) {
  .quiz-options {
    display: grid;
    grid-template-columns: 1fr;
  }
  .quiz-option {
    width: 100%;
    text-align: left;
  }
}

/* Projects / Gallery page */
.featured-projects {
  display: grid;
  gap: 28px;
}

.project-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(90,14,36,0.06);
}

.project-feature.reverse .project-image {
  order: 2;
}

.project-image {
  min-height: 390px;
  background: var(--line);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
}

.project-content {
  padding: clamp(28px, 5vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-tag {
  display: inline-flex;
  align-self: flex-start;
  color: var(--rose);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-weight: 500;
  margin-bottom: 16px;
}

.project-content p {
  color: var(--muted);
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.project-gallery figure {
  margin: 0;
  position: relative;
  min-height: 260px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--line);
  box-shadow: 0 12px 34px rgba(90,14,36,0.05);
}

.project-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
  filter: saturate(0.92);
}

.project-gallery figure:hover img {
  transform: scale(1.035);
  filter: saturate(1);
}

.project-gallery figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  color: var(--wine-dark);
  font-size: 0.86rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.footer-grid-expanded {
  grid-template-columns: 1.35fr 0.8fr 0.9fr 1.1fr;
}

@media (max-width: 900px) {
  .project-feature,
  .project-feature.reverse {
    grid-template-columns: 1fr;
  }

  .project-feature.reverse .project-image {
    order: 0;
  }

  .project-image {
    min-height: 300px;
  }

  .project-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid-expanded {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .project-gallery {
    grid-template-columns: 1fr;
  }

  .project-gallery figure {
    min-height: 280px;
  }

  .footer-grid-expanded {
    grid-template-columns: 1fr;
  }
}
