:root {
  color-scheme: light;
  --ink: #2c2027;
  --muted: #705d68;
  --line: #ead3dc;
  --paper: #fff8fb;
  --soft: #f8e8ef;
  --clay: #c24f7f;
  --clay-dark: #93375e;
  --sage: #8c6179;
  --gold: #d99ab6;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(91, 35, 62, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 64px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(25, 20, 18, 0.72), rgba(25, 20, 18, 0));
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 15px;
  letter-spacing: 0;
}

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

.brand strong {
  font-size: 15px;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  font-size: 14px;
}

nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
}

nav a:hover {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #241720;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(42, 21, 35, 0.9) 0%, rgba(69, 31, 52, 0.67) 40%, rgba(69, 31, 52, 0.1) 78%),
    linear-gradient(0deg, rgba(42, 20, 34, 0.44), rgba(42, 20, 34, 0.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 88px);
  margin-top: 48px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd0e2;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 9vw, 112px);
  font-weight: 500;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 500;
}

h3 {
  font-size: 21px;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 23px);
}

.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 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--clay);
}

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

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 64px);
}

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

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(36px, 7vw, 96px);
  max-width: 1180px;
  margin: 0 auto;
}

.intro-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
}

.services,
.audience,
.contact {
  max-width: 1280px;
  margin: 0 auto;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 38px;
}

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

.service-card,
.price-card {
  min-height: 280px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(91, 35, 62, 0.08);
}

.card-number {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 900;
}

.service-card p,
.price-card p,
.principles p,
.contact p {
  color: var(--muted);
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
}

.principles > div {
  padding-top: 22px;
  border-top: 2px solid rgba(194, 79, 127, 0.35);
}

.audience {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 18px;
}

.audience-panel,
.quote-panel {
  border-radius: 8px;
  padding: clamp(28px, 4vw, 48px);
}

.audience-panel {
  background: var(--white);
  border: 1px solid var(--line);
}

.audience-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 18px;
}

.quote-panel {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #8d3f69, #c24f7f);
  color: var(--white);
}

blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.2;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
}

.price-card {
  min-height: 240px;
}

.price-card.featured {
  border-color: rgba(194, 79, 127, 0.45);
  box-shadow: var(--shadow);
}

.price {
  margin: 22px 0 8px;
  color: var(--ink) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1;
}

.pricing-note {
  margin: 24px 0 0;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 0.72fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}

form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #dfbdcc;
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fffafd;
  font: inherit;
}

textarea {
  resize: vertical;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.72);
  background: #281821;
  font-size: 14px;
}

footer p {
  margin: 0;
}

@media (max-width: 940px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 92svh;
    align-items: flex-end;
  }

  .hero-content {
    margin: 0 20px 56px;
    width: calc(100% - 40px);
  }

  .section-grid,
  .audience,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .service-card,
  .price-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 52px;
  }

  .brand small {
    display: none;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  footer {
    display: grid;
  }
}
