:root {
  --bg: #FFF8F0;
  --bg-alt: #FDF3E8;
  --fg: #1A1917;
  --fg-muted: #6B6560;
  --accent: #E85D3B;
  --accent-warm: #F09A76;
  --teal: #1A9E8C;
  --teal-light: #3AB5AA;
  --coral-light: #FCECE4;
  --cream-dark: #EDE4D8;
  --navy: #1E2A3A;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
}
.nav__logo-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--fg);
}
.nav__tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* HERO */
.hero {
  padding: 80px 48px 100px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero__headline em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}
.hero__headline em::after {
  content: '';
  display: block;
  height: 4px;
  background: var(--teal);
  margin-top: 4px;
  border-radius: 2px;
}
.hero__sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 36px;
}
.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  background: var(--coral-light);
  color: var(--accent);
  letter-spacing: 0.02em;
}
.tag:nth-child(2) { background: #E8F5F3; color: var(--teal); }
.tag:nth-child(3) { background: #FFF0E8; color: #C84B1A; }
.tag:nth-child(4) { background: #F0EDF8; color: #6B5FA8; }

/* HERO GRAPHIC — abstract mosaic */
.hero-graphic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 100px);
  gap: 12px;
}

/* SHOWCASE */
.showcase {
  padding: 80px 48px;
  background: var(--bg-alt);
}
.showcase__label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.showcase__rule {
  flex: 1;
  height: 1px;
  background: var(--cream-dark);
}
.showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.showcase__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.showcase__caption {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.showcase__preview {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: relative;
}

/* Social preview */
.social-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  padding: 20px;
}
.social-preview__bar {
  width: 100%;
  height: 24px;
  border-radius: 6px;
  background: var(--accent);
  margin-bottom: 4px;
}
.social-preview__img {
  width: 100%;
  height: 60px;
  border-radius: 8px;
}
.social-preview__img--post1 { background: linear-gradient(135deg, #E85D3B, #F09A76); }
.social-preview__img--post2 { background: linear-gradient(135deg, #1A9E8C, #3AB5AA); }
.social-preview__img--post3 { background: linear-gradient(135deg, #1E2A3A, #3A4F63); }
.social-preview__caption {
  font-size: 10px;
  color: var(--fg-muted);
  font-weight: 500;
  margin-top: 4px;
}

/* Logo preview */
.logo-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.logo-preview__circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--teal);
}
.logo-preview__lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.logo-preview__line {
  height: 6px;
  border-radius: 3px;
  background: var(--navy);
}
.logo-preview__line--wide { width: 80%; }
.logo-preview__line--med { width: 60%; }
.logo-preview__line--short { width: 40%; }
.logo-preview__tag {
  font-size: 10px;
  color: var(--fg-muted);
  font-weight: 500;
  margin-top: 8px;
}

/* Flyer preview */
.flyer-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.flyer-preview__poster {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.flyer-preview__bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.03) 0px,
    rgba(255,255,255,0.03) 1px,
    transparent 1px,
    transparent 10px
  );
}
.flyer-preview__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.flyer-preview__headline-text {
  width: 80px;
  height: 12px;
  background: var(--accent-warm);
  border-radius: 4px;
}
.flyer-preview__sub-text {
  width: 60px;
  height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 4px;
}
.flyer-preview__cta {
  width: 50px;
  height: 18px;
  background: var(--teal);
  border-radius: 100px;
  margin-top: 8px;
}
.flyer-preview__tag {
  font-size: 10px;
  color: var(--fg-muted);
  font-weight: 500;
  margin-top: 10px;
}

/* Album preview */
.album-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.album-preview__cover {
  position: relative;
  width: 100px;
}
.album-preview__art {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  background: linear-gradient(135deg, #7B2FBE, #E85D3B, #F09A76);
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.album-preview__vinyl {
  position: absolute;
  top: 50%;
  left: -16px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #1A1917;
  transform: translateY(-50%) translateX(-16px);
  z-index: 0;
}
.album-preview__vinyl::after {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  background: #2D2B28;
}
.album-preview__vinyl::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cream-dark);
  z-index: 1;
}
.album-preview__label {
  font-size: 10px;
  color: var(--fg-muted);
  font-weight: 500;
}

/* SERVICES */
.services {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.services__header {
  max-width: 600px;
  margin-bottom: 64px;
}
.services__overline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.services__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--fg);
}
.services__desc {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.service-card {
  background: white;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  border: 1px solid var(--cream-dark);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--coral-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--fg);
}
.service-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-card__list li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.services__why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 36px 40px;
  background: var(--navy);
  border-radius: 20px;
}
.services__why-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.services__why-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-light);
  flex-shrink: 0;
  margin-top: 5px;
}

/* PROCESS */
.process {
  padding: 100px 48px;
  background: var(--bg-alt);
}
.process__header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.process__overline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.process__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
}
.process__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 0;
}
.step {
  flex: 1;
  max-width: 240px;
  text-align: center;
  padding: 0 20px;
}
.step__number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 16px;
}
.step__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.step__desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step__connector {
  width: 60px;
  height: 1px;
  background: var(--cream-dark);
  margin-top: 48px;
  flex-shrink: 0;
  position: relative;
}
.step__connector::after {
  content: '';
  position: absolute;
  right: -2px;
  top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* PRICING */
.pricing {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.pricing__header {
  max-width: 600px;
  margin-bottom: 56px;
}
.pricing__overline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.pricing__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 16px;
}
.pricing__desc {
  font-size: 17px;
  color: var(--fg-muted);
}
.pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.price-card {
  background: white;
  border-radius: 20px;
  padding: 40px 36px;
  border: 1px solid var(--cream-dark);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  position: relative;
}
.price-card--featured {
  background: var(--navy);
  border-color: var(--navy);
}
.price-card__badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--teal);
  color: white;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.price-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.price-card--featured .price-card__name { color: white; }
.price-card__price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1;
}
.price-card--featured .price-card__price { color: var(--teal-light); }
.price-card__desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
  margin-bottom: 24px;
}
.price-card--featured .price-card__desc { color: rgba(255,255,255,0.6); }
.price-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-card__features li {
  font-size: 14px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-card__features li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}
.price-card--featured .price-card__features li { color: rgba(255,255,255,0.75); }
.price-card--featured .price-card__features li::before { background: var(--teal-light); }
.pricing__cta-note {
  text-align: center;
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
}

/* CLOSING */
.closing {
  padding: 100px 48px;
  background: var(--navy);
}
.closing__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
}
.closing__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
}
.closing__cta {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.closing__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--accent);
  color: white;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, transform 0.15s ease;
}
.closing__btn:hover { background: #d14d2e; transform: translateY(-1px); }
.closing__statement {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.closing__statement p {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.closing__statement em {
  font-style: normal;
  color: var(--teal-light);
  font-weight: 500;
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  background: var(--bg);
  border-top: 1px solid var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.footer__logo-mark {
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}
.footer__logo-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--fg);
}
.footer__tagline {
  font-size: 13px;
  color: var(--fg-muted);
  margin-left: 38px;
}
.footer__copy {
  font-size: 13px;
  color: var(--fg-muted);
}

/* CONTACT */
.contact {
  padding: 100px 48px;
  background: var(--bg-alt);
}
.contact__inner {
  max-width: 720px;
  margin: 0 auto;
}
.contact__header {
  text-align: center;
  margin-bottom: 56px;
}
.contact__overline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.contact__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 16px;
}
.contact__desc {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* CONTACT FORM */
.contact-form {
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid var(--cream-dark);
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.contact-form__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.02em;
}
.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--cream-dark);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}
.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: var(--fg-muted);
  opacity: 0.6;
}
.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,93,59,0.12);
}
.contact-form__input.error,
.contact-form__textarea.error {
  border-color: #e74c3c;
}
.contact-form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6560' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.contact-form__textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}
.contact-form__submit {
  width: 100%;
  padding: 16px 24px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s ease, transform 0.15s ease;
  letter-spacing: 0.01em;
  margin-top: 8px;
}
.contact-form__submit:hover { background: #d14d2e; transform: translateY(-1px); }
.contact-form__submit:active { transform: translateY(0); }
.contact-form__submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
.contact-form__submit-loading { display: none; }
.contact-form__submit.loading .contact-form__submit-text { display: none; }
.contact-form__submit.loading .contact-form__submit-loading { display: flex; align-items: center; gap: 8px; animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.contact-form__feedback {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  display: none;
}
.contact-form__feedback.success {
  display: block;
  background: #E8F5F3;
  color: var(--teal);
  border: 1px solid var(--teal);
}
.contact-form__feedback.error {
  display: block;
  background: #FEF0EE;
  color: #c0392b;
  border: 1px solid #e74c3c;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .hero {
    padding: 60px 24px 80px;
    grid-template-columns: 1fr;
  }
  .hero__headline { font-size: 40px; }
  .showcase { padding: 60px 24px; }
  .showcase__grid { grid-template-columns: repeat(2, 1fr); }
  .services { padding: 60px 24px; }
  .services__grid { grid-template-columns: 1fr; }
  .services__why { grid-template-columns: repeat(2, 1fr); }
  .process { padding: 60px 24px; }
  .process__steps { flex-wrap: wrap; gap: 40px; }
  .step { max-width: 100%; }
  .step__connector { display: none; }
  .pricing { padding: 60px 24px; }
  .pricing__cards { grid-template-columns: 1fr; }
  .closing { padding: 60px 24px; }
  .contact { padding: 60px 24px; }
  .contact-form { padding: 32px 24px; }
  .contact-form__row { grid-template-columns: 1fr; }
  .footer { padding: 32px 24px; flex-direction: column; gap: 16px; align-items: flex-start; }
}
@media (max-width: 600px) {
  .showcase__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .services__why { grid-template-columns: 1fr; padding: 24px; }
  .hero__tags { gap: 8px; }
}