:root {
  --ink: #172029;
  --ink-soft: #263542;
  --muted: #667582;
  --paper: #f4f7f9;
  --surface: #ffffff;
  --line: #d9e1e7;
  --blue: #2f82bd;
  --blue-dark: #155b8f;
  --blue-deep: #0f354f;
  --sage: #7f927f;
  --stone: #e8edf1;
  --warm: #c9a46f;
  --shadow: 0 20px 60px rgba(16, 37, 53, 0.12);
  --shadow-strong: 0 34px 100px rgba(11, 30, 44, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(217, 225, 231, 0.82);
  display: flex;
  height: 78px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(18px, 5vw, 72px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: flex;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  height: 58px;
  width: min(290px, 58vw);
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  color: rgba(23, 32, 41, 0.82);
}

.site-nav a:hover {
  color: var(--blue);
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 44px;
  padding: 0;
  width: 44px;
}

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

.hero {
  align-items: end;
  display: grid;
  min-height: calc(88svh - 78px);
  overflow: hidden;
  padding: clamp(68px, 9vw, 112px) clamp(18px, 6vw, 86px) clamp(34px, 5vw, 58px);
  position: relative;
}

.hero-bg,
.hero-shade {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-bg {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 20, 29, 0.84) 0%, rgba(9, 20, 29, 0.62) 44%, rgba(9, 20, 29, 0.24) 72%),
    linear-gradient(0deg, rgba(9, 20, 29, 0.44), transparent 46%);
}

.hero-copy {
  color: #fff;
  max-width: 780px;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-label {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9ed3f5;
}

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

h1 {
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.94;
  margin-bottom: 24px;
  max-width: 880px;
  overflow-wrap: anywhere;
}

h2 {
  font-size: clamp(32px, 4.1vw, 58px);
  line-height: 1.04;
  margin-bottom: 0;
  overflow-wrap: anywhere;
}

h3 {
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.12;
  margin-bottom: 14px;
}

.hero-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 1.65vw, 23px);
  max-width: 680px;
}

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

.button {
  align-items: center;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 900;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

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

.primary {
  background: var(--blue);
  box-shadow: 0 18px 38px rgba(47, 130, 189, 0.26);
  color: #fff;
}

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

.secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
}

.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-highlights span {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 900;
  padding: 9px 12px;
}

.hero-project-note {
  background: rgba(255, 255, 255, 0.92);
  bottom: clamp(24px, 5vw, 58px);
  box-shadow: var(--shadow-strong);
  color: var(--ink);
  display: grid;
  gap: 4px;
  max-width: 330px;
  padding: 20px;
  position: absolute;
  right: clamp(18px, 6vw, 86px);
  z-index: 3;
}

.hero-project-note span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-project-note strong {
  font-size: 22px;
}

.hero-project-note small {
  color: var(--muted);
  font-size: 14px;
}

.quick-info {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.quick-info div {
  border-right: 1px solid var(--line);
  padding: 30px clamp(18px, 5vw, 72px);
}

.quick-info strong {
  color: var(--blue-deep);
  display: block;
  font-size: clamp(25px, 2.3vw, 34px);
  line-height: 1.1;
}

.quick-info span {
  color: var(--muted);
  display: block;
  margin-top: 7px;
}

.section {
  padding: clamp(76px, 10vw, 132px) clamp(18px, 6vw, 86px);
}

.split,
.section-heading {
  display: grid;
  gap: clamp(28px, 6vw, 78px);
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
}

.split > div:first-child,
.section-heading > div:first-child {
  min-width: 0;
}

.split h2 {
  font-size: clamp(32px, 3.25vw, 58px);
  max-width: 780px;
}

.text-block p {
  color: var(--muted);
  font-size: 18px;
  max-width: 820px;
}

.text-block p + p {
  margin-top: 22px;
}

.about-signature {
  border-left: 4px solid var(--blue);
  margin-top: 34px;
  max-width: 370px;
  padding: 14px 0 14px 18px;
}

.about-signature span {
  color: var(--blue);
  display: block;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 7px;
}

.about-signature p {
  color: var(--muted);
  margin: 0;
}

.featured-band {
  background: var(--ink);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 clamp(18px, 6vw, 86px);
}

.featured-band div {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding: 34px clamp(18px, 3vw, 34px);
}

.featured-band span {
  color: var(--warm);
  display: block;
  font-weight: 900;
  margin-bottom: 14px;
}

.featured-band strong {
  display: block;
  font-size: 22px;
  margin-bottom: 10px;
}

.featured-band p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.services {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fa 100%);
}

.cards {
  display: grid;
  gap: 18px;
  margin-top: 46px;
}

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(28, 45, 58, 0.06);
  min-height: 330px;
  padding: 30px;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.card::before {
  background: var(--blue);
  content: "";
  height: 4px;
  left: 30px;
  position: absolute;
  right: 30px;
  top: 0;
}

.card:hover {
  border-color: rgba(47, 130, 189, 0.32);
  box-shadow: 0 22px 52px rgba(28, 45, 58, 0.12);
  transform: translateY(-3px);
}

.card-icon {
  align-items: center;
  background: var(--blue-deep);
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  height: 46px;
  justify-content: center;
  margin-bottom: 30px;
  width: 46px;
}

.card-number {
  color: rgba(47, 130, 189, 0.16);
  display: block;
  font-size: 58px;
  font-weight: 900;
  line-height: 1;
  position: absolute;
  right: 24px;
  top: 24px;
}

.card p,
.project-content p {
  color: var(--muted);
}

.projects {
  background: #eef3f6;
}

.section-intro {
  align-self: end;
  color: var(--muted);
  font-size: 18px;
  margin: 0;
  max-width: 650px;
}

.project-list {
  display: grid;
  gap: 26px;
  margin-top: 48px;
}

.project-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  min-height: 430px;
  overflow: hidden;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.project-card:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-2px);
}

.project-card:nth-child(even) .project-image {
  order: 2;
}

.project-image,
.photo-tile {
  min-height: 430px;
}

.photo-frame,
.photo-tile,
.gallery-photo {
  background: #dfe8ee;
  overflow: hidden;
  position: relative;
}

.photo-frame img,
.photo-tile img,
.gallery-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.photo-tile::after {
  background: linear-gradient(180deg, transparent 48%, rgba(8, 17, 24, 0.22));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.project-content {
  align-self: center;
  padding: clamp(30px, 5vw, 56px);
}

.status {
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 16px;
  padding: 8px 11px;
  text-transform: uppercase;
}

.done {
  background: #e6f2ec;
  color: #236947;
}

.build {
  background: #e5f2fb;
  color: var(--blue-dark);
}

.sale {
  background: #f4eee4;
  color: #8d6334;
}

dl {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin: 30px 0;
}

dl div {
  background: #f6f9fb;
  border: 1px solid var(--line);
  padding: 13px;
}

dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  color: var(--ink);
  font-weight: 900;
  margin: 3px 0 0;
}

.text-link {
  color: var(--blue);
  display: inline-flex;
  font-weight: 900;
  gap: 8px;
}

.text-link::after {
  content: ">";
}

.gallery-section {
  background: #fff;
}

.detail-hero {
  background: #eef3f6;
  display: grid;
  gap: clamp(28px, 6vw, 76px);
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  padding: clamp(64px, 9vw, 116px) clamp(18px, 6vw, 86px);
}

.detail-copy {
  align-self: center;
}

.detail-copy h1 {
  color: var(--ink);
  font-size: clamp(44px, 5.8vw, 78px);
  margin-bottom: 26px;
}

.detail-copy p:not(.section-label) {
  color: var(--muted);
  font-size: 18px;
  max-width: 720px;
}

.detail-copy p + p {
  margin-top: 20px;
}

.detail-media {
  align-self: center;
  box-shadow: var(--shadow-strong);
  min-height: 520px;
  margin: 0;
  overflow: hidden;
}

.detail-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  margin-top: 44px;
}

.gallery-grid .image-placeholder {
  min-height: 260px;
}

.gallery-photo {
  border: 1px solid var(--line);
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
  margin: 0;
  min-height: 320px;
}

.gallery-photo img {
  min-height: 260px;
}

.gallery-photo figcaption {
  background: #fff;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 900;
  padding: 13px 15px;
}

.image-placeholder {
  align-items: center;
  background: linear-gradient(135deg, #e7eef3, #ccd9e2);
  border: 1px dashed #9db3c2;
  color: var(--blue-deep);
  display: flex;
  justify-content: center;
  min-height: 260px;
  overflow: hidden;
  text-align: center;
}

.image-placeholder span {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  font-weight: 900;
  padding: 10px 14px;
}

.contact {
  background: linear-gradient(135deg, var(--ink) 0%, var(--blue-deep) 100%);
  color: #fff;
  display: grid;
  gap: clamp(28px, 6vw, 72px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  padding: clamp(76px, 10vw, 132px) clamp(18px, 6vw, 86px);
}

.contact .section-label {
  color: #96d0f4;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.contact-info ul {
  color: rgba(255, 255, 255, 0.86);
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}

.contact-info li + li {
  margin-top: 9px;
}

.muted {
  color: rgba(255, 255, 255, 0.62);
}

.contact-form {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-strong);
  color: var(--ink);
  display: grid;
  gap: 15px;
  padding: 30px;
}

label {
  color: var(--muted);
  display: grid;
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
}

.honeypot {
  display: none;
}

input,
select,
textarea {
  background: #fbfdfe;
  border: 1px solid var(--line);
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 11px 12px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(47, 130, 189, 0.12);
  outline: none;
}

textarea {
  resize: vertical;
}

.form-note {
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 900;
  margin: 0;
  min-height: 22px;
}

.site-footer {
  align-items: center;
  background: #0c1116;
  color: rgba(255, 255, 255, 0.74);
  display: flex;
  justify-content: space-between;
  padding: 27px clamp(18px, 6vw, 86px);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 20px;
}

@media (max-width: 1040px) {
  .hero-project-note {
    bottom: 24px;
    left: clamp(18px, 6vw, 86px);
    right: auto;
  }

  .project-card,
  .hero,
  .split,
  .section-heading,
  .detail-hero,
  .contact {
    grid-template-columns: 1fr;
  }

  .project-card:nth-child(even) .project-image {
    order: 0;
  }

  .three,
  .featured-band {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }
}

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

  .brand-logo {
    height: 48px;
    width: min(235px, 62vw);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    background: #fff;
    border-bottom: 1px solid var(--line);
    display: none;
    left: 0;
    padding: 12px 18px 18px;
    position: absolute;
    right: 0;
    top: 70px;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .hero {
    min-height: 82svh;
    padding-bottom: 140px;
  }

  .hero-project-note {
    max-width: calc(100% - 36px);
  }

  .button {
    width: 100%;
  }

  .quick-info,
  dl {
    grid-template-columns: 1fr;
  }

  .quick-info div {
    border-right: 0;
  }

  .project-image,
  .photo-tile,
  .detail-media {
    min-height: 310px;
  }

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

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}
