:root {
  --ink: #161317;
  --muted: #665f66;
  --paper: #fbfaf8;
  --soft: #f1eded;
  --line: #ddd5d5;
  --brand: #991a21;
  --brand-dark: #401014;
  --accent: #d7d9d5;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(28, 18, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(251, 250, 248, 0.93);
  border-bottom: 1px solid rgba(64, 16, 20, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 64px;
  height: 44px;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.18));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 13px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  padding: 10px 13px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
}

.main-nav a:hover {
  color: var(--brand);
  background: rgba(153, 26, 33, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(54px, 8vw, 110px) clamp(18px, 5vw, 72px) 44px;
  background:
    linear-gradient(110deg, #fbfaf8 0%, #fbfaf8 42%, #eee9e7 62%, #161317 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: 78px;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 46px;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 8px;
}

.button.primary {
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 14px 28px rgba(153, 26, 33, 0.24);
}

.button.primary:hover {
  background: var(--brand-dark);
}

.button.secondary {
  color: var(--brand-dark);
  background: var(--white);
  border-color: var(--line);
}

.hero-visual {
  align-self: center;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  filter: drop-shadow(0 26px 34px rgba(22, 19, 23, 0.22));
}

.hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
}

.section,
.section-band,
.contact {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.section-band {
  background: var(--soft);
}

.intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.intro p:last-child,
.section-heading > p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 30px;
}

.service-grid,
.why-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-grid article,
.price-grid article {
  min-height: 250px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-grid p,
.why-grid p,
.price-grid p {
  color: var(--muted);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  color: var(--brand);
  font-weight: 900;
  background: rgba(153, 26, 33, 0.1);
  border-radius: 8px;
}

.why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why-grid div {
  padding: 0 24px 0 0;
  border-right: 1px solid var(--line);
}

.why-grid div:last-child {
  border-right: 0;
}

.why-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.prices {
  background: var(--paper);
}

.price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-grid article {
  min-height: 220px;
}

.price-grid .featured {
  border-color: rgba(153, 26, 33, 0.35);
  box-shadow: var(--shadow);
}

.price {
  margin: 22px 0;
  color: var(--brand-dark) !important;
  font-size: 24px;
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: clamp(28px, 6vw, 80px);
  color: var(--white);
  background: var(--brand-dark);
}

.contact .section-kicker {
  color: #ffb8bc;
}

.contact-copy p:not(.section-kicker) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.contact-card {
  padding: 26px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}

dl {
  margin: 0 0 22px;
}

.contact-card div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--muted);
  font-weight: 800;
}

dd {
  margin: 0;
  font-weight: 800;
}

.full {
  width: 100%;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.legal-page {
  padding: clamp(48px, 7vw, 96px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, #ffffff 0%, #f7f3f2 100%);
}

.legal-content {
  max-width: 920px;
  padding: clamp(28px, 5vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(24, 22, 24, 0.08);
}

.legal-content h1 {
  margin-bottom: 34px;
}

.legal-content h2 {
  margin: 34px 0 14px;
  font-size: clamp(24px, 3vw, 34px);
}

.legal-content h3 {
  margin: 26px 0 10px;
  color: var(--ink);
  font-size: 22px;
}

.legal-content p {
  max-width: 78ch;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.legal-content ul {
  display: grid;
  gap: 10px;
  max-width: 78ch;
  margin: 14px 0 22px;
  padding-left: 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.legal-content strong {
  color: var(--ink);
}

.legal-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.legal-list div {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.coming-soon-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 18%, rgba(153, 26, 33, 0.28), transparent 34%),
    linear-gradient(135deg, #fbfaf8 0%, #f3efed 42%, #251416 100%);
}

.coming-soon-header {
  position: relative;
  background: rgba(251, 250, 248, 0.88);
}

.coming-soon {
  min-height: calc(100vh - 155px);
  display: grid;
  align-items: center;
  padding: clamp(42px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.coming-soon-content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.coming-soon-copy {
  max-width: 900px;
}

.coming-soon-copy h1 {
  max-width: 900px;
  margin-bottom: 24px;
}

.coming-soon-copy .lead {
  max-width: 760px;
}

.coming-soon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.coming-soon-panel {
  padding: clamp(24px, 4vw, 40px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  box-shadow: 0 26px 72px rgba(22, 12, 14, 0.2);
  backdrop-filter: blur(18px);
}

.coming-soon-panel > img {
  width: 128px;
  height: 92px;
  object-fit: contain;
  margin-bottom: 18px;
  filter: drop-shadow(0 12px 14px rgba(0, 0, 0, 0.2));
}

.coming-soon-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 44px);
}

.coming-soon-panel p {
  color: var(--muted);
}

.coming-soon-panel dl {
  margin-top: 24px;
}

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

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 38px;
  }

  .service-grid,
  .price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coming-soon-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 68px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .lead {
    font-size: 18px;
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .service-grid,
  .why-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .why-grid div {
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .why-grid div:last-child {
    border-bottom: 0;
  }

  .contact-card div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .legal-nav {
    display: flex;
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .legal-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .coming-soon {
    min-height: auto;
  }

  .coming-soon-actions {
    flex-direction: column;
  }
}
