:root {
  --accent: #33224E;
  --accent-light: #4D3279;
  --ink: #1a1525;
  --bg: #fbfafc;
  --paper: #ffffff;
  --tint: #f0edf5;
  --line: rgba(51, 34, 78, 0.15);
  --serif: "Fraunces", serif;
  --sans: "Inter", system-ui, sans-serif;
  --container: 1200px;
  --r: 0px;
  --shadow: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  color: var(--accent);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.brand--logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.brand__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand__logo {
  display: block;
  width: auto;
  height: 42px;
}

.brand__sub {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin-left: auto;
}

.nav__link {
  color: var(--ink);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--accent-light);
}

.nav__link--show {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  padding: 12px 18px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--paper) !important;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.nav__link--show:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--paper) !important;
}

.navbtn {
  display: none;
  border: 0;
  background: none;
  color: var(--accent);
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* HERO */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 80vh;
  overflow: hidden;
  background: var(--tint);
}

.hero__bg {
  position: absolute;
  inset: 0 0 0 auto;
  width: 50%;
  background-image: url("assets/MORE_PROJECTS/atc_model_room/atc_model_room_header.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: translate3d(0, 0, 0);
  will-change: transform, background-position;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: flex;
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  padding-right: 64px;
}

.hero__kicker,
.eyebrow {
  color: var(--accent-light);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__kicker {
  margin-bottom: 24px;
}

.eyebrow {
  margin-bottom: 16px;
}

.hero__title {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.1;
  color: var(--accent);
}

.hero__lead,
.p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.8;
}

.hero__lead {
  max-width: 480px;
  margin-bottom: 40px;
}

.p {
  max-width: 600px;
}

.hero__actions,
.services-hero__actions,
.show-hero__actions,
.contract-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__actions {
  flex-wrap: nowrap;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn--primary {
  background: var(--accent);
  color: var(--paper);
}

.btn--primary:hover {
  background: var(--accent-light);
}

.btn--outline {
  border-color: var(--accent);
  background: transparent;
  color: var(--accent);
}

.btn--outline:hover {
  background: var(--accent);
  color: var(--paper);
}

/* SECTIONS */

.section {
  padding: 120px 0;
}

.section--tint {
  background: var(--tint);
}

.section__head {
  margin-bottom: 64px;
}

.h2 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 48px;
  color: var(--accent);
}

/* COLLECTIONS */

.collections {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.collection {
  display: block;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.collection:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.collection__media {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.collection__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.collection:hover .collection__img {
  transform: scale(1.05);
}

.collection__body {
  padding: 24px;
}

.collection__title {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--accent);
}

.collection__meta {
  color: var(--ink);
  font-size: 13px;
  opacity: 0.7;
}

/* SPLIT LAYOUTS */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.split__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* SERVICES */

.serviceRow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.service {
  padding: 40px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.service__title {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--accent);
}

.service__line {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.6;
}

/* FORMS */

.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.form__title {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--accent);
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__label {
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form__input,
.form__textarea {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  transition: border-color 0.2s;
}

.form__input:focus,
.form__textarea:focus {
  border-color: var(--accent);
}

/* UTILITIES */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* FOOTER */

.site-footer {
  padding: 80px 0 40px;
  background: var(--accent);
  color: var(--paper);
}

.footer-brand {
  display: block;
  margin-bottom: 64px;
  font-family: var(--serif);
  font-size: 32px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.footer-title {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: var(--paper);
  font-size: 14px;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-divider {
  height: 1px;
  margin: 64px 0 32px;
  background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.footer-contact a,
.footer-bottom a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact a:hover,
.footer-bottom a:hover {
  color: rgb(226, 177, 43);
}

.footer-bottom a {
  color: rgb(226, 177, 43);
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* NEWSLETTER FORM */

.footer-newsletter-text {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
}

.footer-newsletter__row {
  display: flex;
  gap: 0;
}

.footer-newsletter__input {
  flex: 1;
  min-width: 0;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-right: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.footer-newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.footer-newsletter__input:focus {
  border-color: rgba(255, 255, 255, 0.55);
}

.footer-newsletter__button {
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s;
}

.footer-newsletter__button:hover {
  background: rgba(255, 255, 255, 0.25);
}

.footer-socials,
.show-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.show-socials {
  justify-content: center;
  gap: 14px;
}

.footer-socials a,
.show-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-size: 15px;
}

.footer-socials a:hover {
  background: rgb(226, 177, 43);
  color: #33224E;
  border-color: rgb(226, 177, 43);
}

.show-socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(51, 34, 78, 0.25);
  color: #33224E;
  font-size: 16px;
}

.show-socials a:hover {
  background: #33224E;
  color: #ffffff;
  border-color: #33224E;
}

/* PROJECT DETAIL PAGE */

.project-detail-hero {
  padding-bottom: 80px;
}

.project-detail-section {
  padding-top: 80px;
}

.project-back-link {
  display: inline-block;
  margin-bottom: 40px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-back-link:hover {
  color: var(--accent-light);
}

.project-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.project-detail-photo {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
}

.project-detail-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.project-error {
  padding: 48px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.project-error h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 36px;
  color: var(--accent);
}

.project-error p {
  margin: 0 0 32px;
  line-height: 1.7;
}

.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 32px;
  background: rgba(26, 21, 37, 0.92);
}

.project-lightbox img {
  max-width: min(1100px, 86vw);
  max-height: 86vh;
  object-fit: contain;
}

.project-lightbox__close,
.project-lightbox__prev,
.project-lightbox__next {
  position: fixed;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
}

.project-lightbox__close {
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  font-size: 32px;
  line-height: 1;
}

.project-lightbox__prev,
.project-lightbox__next {
  top: 50%;
  width: 52px;
  height: 72px;
  font-size: 48px;
  line-height: 1;
  transform: translateY(-50%);
}

.project-lightbox__prev {
  left: 24px;
}

.project-lightbox__next {
  right: 24px;
}

.project-lightbox__close:hover,
.project-lightbox__prev:hover,
.project-lightbox__next:hover {
  background: rgba(255, 255, 255, 0.2);
}

.no-scroll {
  overflow: hidden;
}

/* CONTACT CONTRACT BUILDER */

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.contact-info-label {
  margin-bottom: 8px;
  color: var(--accent-light);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-info-link {
  color: var(--ink);
  font-size: 18px;
}

.contact-info-text {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

.market-note {
  margin-top: 40px;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.market-note__title {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--accent);
}

.market-note p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

.contract-form {
  position: sticky;
  top: 112px;
}

.contract-actions {
  margin-top: 16px;
}

.contract-actions .btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.contract-helper {
  margin: 8px 0 0;
  color: rgba(26, 21, 37, 0.7);
  font-size: 13px;
  line-height: 1.6;
}

.contract-preview-section {
  padding-top: 80px;
  background: var(--bg);
}

.print-contract {
  padding: 56px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.print-contract__header {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.print-contract__brand {
  font-family: var(--serif);
  font-size: 34px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.print-contract__sub {
  margin-top: 8px;
  color: var(--accent-light);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.print-contract__store {
  text-align: right;
  font-size: 13px;
  line-height: 1.7;
}

.print-contract__intro {
  padding: 40px 0 24px;
}

.print-contract__intro h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 40px;
  color: var(--accent);
}

.print-contract__intro p,
.print-contract__agreement p {
  margin: 0;
  line-height: 1.8;
}

.print-contract__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.print-contract__full {
  grid-column: 1 / -1;
}

.print-label {
  margin-bottom: 8px;
  color: var(--accent-light);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.print-value {
  min-height: 24px;
  font-size: 15px;
  line-height: 1.7;
}

.print-value--notes {
  white-space: pre-wrap;
}

.print-contract__agreement {
  padding: 32px 0;
}

.print-contract__agreement h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 28px;
  color: var(--accent);
}

.print-contract__agreement p {
  margin-bottom: 16px;
}

.print-contract__signature {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding-top: 40px;
}

.signature-line {
  height: 1px;
  margin-bottom: 12px;
  background: var(--ink);
}

.print-contract__footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: rgba(26, 21, 37, 0.7);
  font-size: 13px;
  line-height: 1.7;
}

/* SERVICES PAGE CONTRACT FLOW */

.services-hero {
  padding-bottom: 96px;
}

.services-hero__grid,
.show-hero__grid {
  display: grid;
  gap: 64px;
  align-items: center;
}

.services-hero__grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.services-hero__actions,
.show-hero__actions {
  margin-top: 40px;
}

.services-summary-card,
.show-logo-card,
.show-info-card,
.show-feature__box,
.market-feature__box,
.process-card,
.legal-block,
.faq-sidebar,
.faq-item,
.contract-service-card {
  border: 1px solid var(--line);
  background: var(--paper);
}

.services-summary-card {
  padding: 40px;
}

.services-summary-card__title {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: 30px;
  color: var(--accent);
}

.services-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.services-step span {
  color: var(--accent-light);
  font-family: var(--serif);
  font-size: 28px;
}

.services-step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

.services-centered-head {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.services-centered-head .p {
  margin-right: auto;
  margin-left: auto;
}

.services-contract-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.contract-service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 40px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.contract-service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.contract-service-card--featured {
  border-color: rgba(51, 34, 78, 0.35);
  background: linear-gradient(180deg, #ffffff 0%, #f6f2fb 100%);
}

.contract-service-card__label {
  margin-bottom: 16px;
  color: var(--accent-light);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contract-service-card h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.15;
  color: var(--accent);
}

.contract-service-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

.contract-service-card__details {
  margin: 32px 0;
  border-top: 1px solid var(--line);
}

.contract-service-card__details div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contract-service-card__details span {
  color: rgba(26, 21, 37, 0.65);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contract-service-card__details strong {
  color: var(--accent);
  font-size: 14px;
  text-align: right;
}

.contract-service-card__note {
  margin-bottom: 32px !important;
  color: rgba(26, 21, 37, 0.75);
}

.contract-service-card .btn {
  width: 100%;
  margin-top: auto;
}

.market-feature {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 64px;
  align-items: center;
}

.market-feature .p + .p {
  margin-top: 20px;
}

.market-feature__box {
  padding: 48px;
}

.market-feature__number {
  margin-bottom: 20px;
  color: var(--accent-light);
  font-family: var(--serif);
  font-size: 54px;
}

.market-feature__box h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 30px;
  color: var(--accent);
}

.market-feature__box p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card {
  padding: 32px;
}

.process-card__number {
  margin-bottom: 24px;
  color: var(--accent-light);
  font-family: var(--serif);
  font-size: 42px;
}

.process-card h3 {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 500;
}

.process-card p {
  margin: 0;
  color: rgba(26, 21, 37, 0.75);
  font-size: 14px;
  line-height: 1.7;
}

.services-final-cta {
  margin-top: 80px;
  padding: 56px;
  background: var(--accent);
  color: var(--paper);
  text-align: center;
}

.services-final-cta h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 42px;
}

.services-final-cta p {
  max-width: 700px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.8;
}

.services-final-cta .btn--primary {
  background: var(--paper);
  color: var(--accent);
}

.services-final-cta .btn--primary:hover {
  background: rgba(255, 255, 255, 0.85);
}

/* FAQ + LEGAL PAGES */

.faq-layout {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 64px;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 112px;
  padding: 40px;
}

.faq-sidebar__title {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 30px;
  color: var(--accent);
}

.faq-sidebar p {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.8;
}

.faq-sidebar .btn {
  width: 100%;
  margin-top: 12px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  padding: 0;
}

.faq-item summary {
  padding: 24px 28px;
  color: var(--accent);
  cursor: pointer;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 24px;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent-light);
  font-family: var(--sans);
  font-size: 20px;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 28px 28px;
  color: rgba(26, 21, 37, 0.78);
  font-size: 15px;
  line-height: 1.8;
}

.faq-cta {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  align-items: center;
}

.faq-cta .p {
  max-width: 680px;
}

.legal-page {
  max-width: 920px;
}

.legal-updated {
  margin: 0 0 40px;
  color: var(--accent-light);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-block {
  margin-bottom: 24px;
  padding: 40px;
}

.legal-block h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 30px;
  color: var(--accent);
}

.legal-block p {
  margin: 0;
  color: rgba(26, 21, 37, 0.82);
  font-size: 15px;
  line-height: 1.8;
}

.legal-block p + p {
  margin-top: 18px;
}

.legal-block a {
  color: var(--accent);
  text-decoration: underline;
}

/* SIGNATURE MIKE SHOW PAGE */

.show-hero {
  padding-bottom: 96px;
}

.show-hero__grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.show-logo-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  padding: 48px;
}

.show-logo-card img {
  width: 100%;
  max-height: 220px;
  margin: 0 auto;
  object-fit: contain;
}

.show-logo-card__caption {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--accent-light);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.show-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.show-info-card {
  padding: 40px;
}

.show-info-card__label {
  margin-bottom: 20px;
  color: var(--accent-light);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.show-info-card h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 32px;
  line-height: 1.15;
  color: var(--accent);
}

.show-info-card p {
  margin: 0;
  color: rgba(26, 21, 37, 0.75);
  font-size: 15px;
  line-height: 1.8;
}

.show-text-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.show-text-link:hover {
  color: var(--accent-light);
}

.show-feature {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 64px;
  align-items: center;
}

.show-feature--reverse {
  direction: rtl;
}

.show-feature--reverse > * {
  direction: ltr;
}

.show-feature__box {
  padding: 40px;
}

.show-feature__box h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 32px;
  color: var(--accent);
}

.show-feature__box p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.8;
}

.show-feature__box code {
  display: block;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--tint);
  font-size: 13px;
  line-height: 1.6;
  word-break: break-all;
}

.show-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.show-gallery__item {
  grid-column: span 6;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.show-gallery__item:nth-child(1) {
  grid-column: span 7;
}

.show-gallery__item:nth-child(2) {
  grid-column: span 5;
}

.show-gallery__item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.show-gallery__item:hover img {
  transform: scale(1.04);
}

.show-youtube-section {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  align-items: center;
}

.show-youtube-section .p {
  max-width: 680px;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .services-hero__grid,
  .market-feature {
    grid-template-columns: 1fr;
  }

  .services-contract-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 980px) {
  .hero__bg {
    width: 100%;
    opacity: 0.15;
    background-attachment: scroll;
    transform: none;
  }

  .hero__left {
    width: 100%;
    padding-right: 0;
  }

  .split,
  .faq-layout,
  .services-hero__grid,
  .market-feature,
  .show-hero__grid,
  .show-feature {
    grid-template-columns: 1fr;
  }

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

  .contract-form,
  .faq-sidebar {
    position: static;
  }

  .print-contract__header,
  .print-contract__signature {
    display: grid;
    grid-template-columns: 1fr;
  }

  .print-contract__store {
    text-align: left;
  }

  .show-info-grid {
    grid-template-columns: 1fr;
  }

  .show-youtube-section,
  .faq-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .header {
    z-index: 1000;
  }

  .header__inner {
    position: relative;
    padding: 22px 0;
  }

  .brand__name {
    font-size: 22px;
  }

  .navbtn {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: -24px;
    left: -24px;
    z-index: 999;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 28px 24px 32px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
  }

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

  .nav__link {
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .nav__link--show {
    width: auto;
    margin-top: 4px;
    margin-left: 0;
    padding: 13px 22px;
    text-align: center;
  }

  .section {
    padding: 80px 0;
  }

  .h2 {
    font-size: 36px;
  }

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

@media (max-width: 680px) {
  .project-detail-section {
    padding-top: 56px;
  }

  .project-detail-grid {
    gap: 24px;
  }

  .project-detail-photo {
    display: block;
    width: 100%;
    margin-bottom: 24px;
  }

  .project-error {
    padding: 32px 24px;
  }

  .project-lightbox {
    padding: 16px;
  }

  .project-lightbox__prev,
  .project-lightbox__next {
    width: 42px;
    height: 58px;
    font-size: 36px;
  }

  .print-contract {
    padding: 32px 24px;
  }

  .print-contract__grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .print-contract__brand {
    font-size: 26px;
  }

  .print-contract__intro h2,
  .services-final-cta h2 {
    font-size: 32px;
  }

  .services-hero__actions,
  .show-hero__actions {
    flex-direction: column;
  }

  .services-hero__actions .btn,
  .show-hero__actions .btn,
  .show-youtube-section .btn,
  .contract-service-card .btn {
    width: 100%;
  }

  .contract-service-card,
  .services-summary-card,
  .market-feature__box,
  .services-final-cta,
  .show-logo-card,
  .show-feature__box,
  .show-info-card,
  .faq-sidebar,
  .legal-block {
    padding: 32px 24px;
  }

  .faq-item summary {
    padding: 22px 24px;
    font-size: 22px;
  }

  .faq-item p {
    padding: 0 24px 24px;
  }

  .show-gallery {
    display: block;
  }

  .show-gallery__item {
    margin-bottom: 24px;
  }

  .show-gallery__item img {
    height: 300px;
  }
}

/* PRINT SETTINGS */

@media print {
  body * {
    visibility: hidden !important;
  }

  .print-contract,
  .print-contract * {
    visibility: visible !important;
  }

  .print-contract {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.5in;
    border: 0;
  }

  .site-footer,
  .header,
  .contract-preview-section .section__head,
  .project-back-link {
    display: none !important;
  }

  @page {
    margin: 0.5in;
  }
}
/* =========================================
   PRESS PAGE
========================================= */

.press-tv-hero {
  padding-bottom: 96px;
}

.press-tv-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  margin-top: 32px;
}

.press-tv-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.press-tv-card {
  padding: 40px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.press-tv-meta {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.press-tv-meta__row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}

.press-tv-meta__row i {
  color: var(--accent-light);
  width: 16px;
  flex-shrink: 0;
}

/* Newsletter archive grid */

.newsletter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.newsletter-card {
  display: block;
  border: 1px solid var(--line);
  background: var(--paper);
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.newsletter-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.newsletter-card__thumb {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.newsletter-card__thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.newsletter-card:hover .newsletter-card__thumb img {
  transform: scale(1.04);
}

.newsletter-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.newsletter-card__body {
  padding: 24px;
}

.newsletter-card__month {
  margin-bottom: 8px;
  color: var(--accent-light);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.newsletter-card__title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1.3;
  margin-bottom: 12px;
}

.newsletter-card__cta {
  font-size: 13px;
  color: var(--accent-light);
  font-weight: 500;
}

/* Press signup section */

.press-signup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.press-signup__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.press-signup__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.press-signup__row {
  display: flex;
  gap: 0;
}

.press-signup__input {
  flex: 1;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-right: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.press-signup__input:focus {
  border-color: var(--accent);
}

.press-signup__button {
  white-space: nowrap;
  padding: 16px 28px;
}

.press-signup__note {
  margin: 0;
  color: rgba(26, 21, 37, 0.5);
  font-size: 12px;
  line-height: 1.6;
}

/* =========================================
   NEWSLETTER DETAIL PAGE
========================================= */

.nl-hero {
  padding-bottom: 80px;
}

.nl-hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: start;
  margin-top: 8px;
}

.nl-hero__meta {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--paper);
  min-width: 200px;
}

.nl-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.nl-hero__stat:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.nl-hero__num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

.nl-hero__label {
  color: rgba(26, 21, 37, 0.55);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nl-hero__yt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 0.2s;
}

.nl-hero__yt:hover {
  color: var(--accent-light);
}

.nl-hero__yt i {
  font-size: 20px;
  color: #FF0000;
}

/* Newsletter highlights grid */

.nl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.nl-card {
  border: 1px solid var(--line);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.nl-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.nl-card__thumb-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.nl-card__thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.nl-card:hover .nl-card__thumb {
  transform: scale(1.04);
}

.nl-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.nl-card__play i {
  font-size: 52px;
  color: #ffffff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.nl-card:hover .nl-card__play {
  opacity: 1;
}

.nl-card__ep {
  position: absolute;
  bottom: 10px;
  left: 12px;
  padding: 4px 10px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nl-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.nl-card__tag {
  margin-bottom: 10px;
  color: var(--accent-light);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nl-card__title {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  color: var(--accent);
  line-height: 1.25;
}

.nl-card__desc {
  margin: 0 0 20px;
  color: rgba(26, 21, 37, 0.75);
  font-size: 14px;
  line-height: 1.8;
  flex: 1;
}

.nl-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: auto;
  transition: color 0.2s;
}

.nl-card__link i {
  color: #FF0000;
  font-size: 15px;
}

.nl-card__link:hover {
  color: var(--accent-light);
}

.nl-footer-cta {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  align-items: center;
  margin-top: 80px;
  padding: 56px;
  background: var(--tint);
}

/* Responsive — press & newsletter */

@media (max-width: 980px) {
  .press-tv-grid,
  .press-signup {
    grid-template-columns: 1fr;
  }

  .nl-hero__inner {
    grid-template-columns: 1fr;
  }

  .nl-hero__meta {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: auto;
  }

  .nl-hero__stat {
    flex: 1;
    min-width: 120px;
    padding-bottom: 0;
    border-bottom: none;
    padding-right: 20px;
    border-right: 1px solid var(--line);
  }

  .nl-hero__stat:last-child {
    border-right: none;
  }

  .nl-footer-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .nl-grid {
    grid-template-columns: 1fr;
  }

  .nl-footer-cta {
    padding: 32px 24px;
  }

  .press-tv-card,
  .press-signup__input {
    padding: 24px;
  }
}

/* =========================================
   Signature Mike Show - Dual Square Slideshow
========================================= */

.show-gallery-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(51, 34, 78, 0.08), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f8f5f0 100%);
}

.show-gallery-showcase__head {
  max-width: 860px;
}

.show-gallery-showcase__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

.show-stack {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #1d1429;
  box-shadow: 0 24px 70px rgba(26, 17, 40, 0.16);
  isolation: isolate;
}

.show-stack::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.02));
  pointer-events: none;
}

.show-stack__frame {
  position: absolute;
  inset: 1rem;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.28);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease, inset 0.35s ease;
}

.show-stack:hover .show-stack__frame {
  inset: 0.75rem;
  opacity: 1;
}

.show-stack__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.show-stack__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.show-stack__slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 5s ease;
}

.show-stack__slide.is-active img {
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .show-gallery-showcase__grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .show-stack {
    aspect-ratio: 1 / 1;
  }

  .show-stack__frame {
    inset: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .show-stack__slide {
    transition: none;
  }

  .show-stack__slide img {
    transition: none;
    transform: none;
  }

  .show-stack__slide.is-active img {
    transform: none;
  }
}