:root {
  --red: #D32B2B;
  --red-deep: #A32020;
  --burgundy: #6E1515;
  --ink: #1A1A1A;
  --charcoal: #2E2E2E;
  --stone: #5C5C5C;
  --silver: #9E9E9E;
  --divider: #D9D9D9;
  --cream: #F7F2EC;
  --beige: #EDE8E3;
  --beige-mid: #E0D9D3;
  --white: #FFFFFF;
  --success: #2E6B57;
  --success-soft: #EAF4EF;
  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1280px;
  --header-h: 68px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  --shadow-sm: 0 4px 16px rgba(26, 26, 26, 0.05);
  --shadow-md: 0 16px 44px rgba(26, 26, 26, 0.08);
  --shadow-lg: 0 32px 80px rgba(26, 26, 26, 0.12);
  --shadow-red: 0 14px 32px rgba(211, 43, 43, 0.24);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.section {
  padding: 84px 0;
}

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

.section--ink {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
}

.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: 40px;
  max-width: 800px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--stone);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
}

.section-head h1,
.section-head h2,
.section-head h3,
.display-title,
.hero-title,
.card-title,
.stat-strong,
.footer-col-title,
.brand {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.96;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.8rem, 8vw, 6.8rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 4.3rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
}

p {
  margin: 0;
}

.lead,
.section-copy,
.muted {
  color: var(--stone);
}

.red-mark {
  position: relative;
  display: inline-block;
}

.red-mark::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.05em;
  height: 0.18em;
  background: var(--red);
  z-index: -1;
  border-radius: 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--red {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.btn--red:hover {
  background: var(--red-deep);
}

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

.btn--outline-ink:hover {
  background: var(--ink);
  color: var(--white);
}

.btn--on-red {
  background: var(--white);
  color: var(--red);
}

.btn--ghost-light {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
}

.button-row,
.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled,
.site-header.on-dark.is-scrolled {
  background: rgba(247, 242, 236, 0.88);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(217, 217, 217, 0.6);
}

.site-header.on-dark .brand,
.site-header.on-dark .nav-desktop a,
.site-header.on-dark .menu-btn {
  color: var(--white);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}

.brand .dot {
  color: var(--red);
}

.nav-desktop,
.header-ctas {
  display: none;
}

.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  position: relative;
}

.nav-desktop a.is-active::after,
.nav-desktop a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--red);
}

.menu-btn,
.overlay-close {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  border: 0;
  display: grid;
  place-items: center;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--cream);
  padding: 24px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.mobile-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
}

.overlay-nav {
  margin-top: 36px;
  display: grid;
}

.overlay-nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.overlay-nav .num {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: var(--silver);
  font-weight: 700;
  letter-spacing: 0.14em;
}

.overlay-cta {
  margin-top: auto;
  padding-top: 36px;
}

.overlay-contact {
  margin-top: 24px;
  color: var(--stone);
  display: grid;
  gap: 6px;
}

.hero {
  padding: calc(var(--header-h) + 42px) 0 64px;
}

.hero-grid,
.split-grid,
.contact-grid,
.booking-grid,
.gallery-grid,
.project-grid {
  display: grid;
  gap: 28px;
}

.hero-panel,
.card,
.package-card,
.stat-card,
.contact-card,
.summary-card,
.gallery-card,
.form-card,
.pill-list,
.timeline-step,
.faq-item,
.project-card {
  background: var(--white);
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.hero-grid {
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  padding: 18px;
}

.stat-strong {
  display: block;
  font-size: 2rem;
  color: var(--ink);
}

.hero-panel {
  padding: 18px;
  overflow: hidden;
}

.hero-panel img,
.project-hero img,
.gallery-card img {
  border-radius: calc(var(--radius-lg) - 6px);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-3,
.grid-4,
.card-grid,
.project-list,
.asset-grid,
.faq-grid,
.detail-stats {
  display: grid;
  gap: 18px;
}

.card,
.package-card,
.contact-card,
.summary-card,
.project-card,
.gallery-card,
.timeline-step,
.form-card {
  padding: 24px;
}

.package-price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--red);
}

.package-meta,
.meta-line,
.label,
.pill,
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill-list {
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--burgundy);
}

.list-clean {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.list-clean li {
  padding-left: 18px;
  position: relative;
  color: var(--stone);
}

.list-clean li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.band {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px;
}

.band--red {
  background: var(--red);
}

.band h2,
.band h3 {
  color: var(--white);
}

.band .muted,
.band p {
  color: rgba(255, 255, 255, 0.82);
}

.project-cover {
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
}

.project-cover img,
.detail-photo img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.filter-chip {
  border: 1px solid var(--divider);
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--white);
  font-weight: 700;
}

.filter-chip.is-active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.project-hero {
  padding-top: calc(var(--header-h) + 28px);
}

.project-hero-card {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.1), rgba(26, 26, 26, 0.65));
  color: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.project-hero-card img {
  aspect-ratio: 16 / 10;
  min-height: 420px;
}

.project-hero-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 32px;
  display: grid;
  gap: 16px;
}

.project-hero-overlay h1,
.project-hero-overlay h2 {
  color: var(--white);
}

.detail-photo-grid {
  display: grid;
  gap: 18px;
}

.detail-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.progress-bar {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) var(--progress, 0%), transparent var(--progress, 0%));
  z-index: 120;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--divider);
  background: var(--white);
  padding: 14px 16px;
  color: var(--ink);
}

.checkbox-list {
  display: grid;
  gap: 12px;
}

.checkbox-list label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--divider);
  border-radius: 16px;
  background: var(--white);
}

.errorlist {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  color: var(--red-deep);
  font-size: 0.88rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.summary-line:last-child {
  border-bottom: 0;
}

.status-badge {
  padding: 10px 14px;
  border-radius: 999px;
}

.status-badge--paid {
  background: var(--success-soft);
  color: var(--success);
}

.status-badge--unpaid {
  background: rgba(211, 43, 43, 0.12);
  color: var(--red-deep);
}

.status-badge--processing {
  background: rgba(110, 21, 21, 0.12);
  color: var(--burgundy);
}

.flash-stack {
  padding-top: calc(var(--header-h) + 12px);
}

.flash {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(26, 26, 26, 0.08);
}

.flash--success {
  background: var(--success-soft);
  color: var(--success);
  border-color: rgba(46, 107, 87, 0.18);
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.65);
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  gap: 40px;
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-brand .brand {
  color: var(--white);
  font-size: 2.4rem;
}

.footer-col {
  display: grid;
  gap: 12px;
}

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
  padding-bottom: 12px;
  letter-spacing: 0.12em;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: var(--red);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .hero-meta,
  .grid-3,
  .asset-grid,
  .faq-grid,
  .detail-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .button-row {
    flex-wrap: nowrap;
  }
}

@media (min-width: 1024px) {
  .nav-desktop,
  .header-ctas {
    display: flex;
    align-items: center;
    gap: 28px;
  }

  .menu-btn,
  .mobile-overlay {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .contact-grid,
  .booking-grid,
  .gallery-grid,
  .project-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  }

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

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

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

  .faq-grid,
  .detail-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
