:root {
  --bg: #0a0a0a;
  --bg-soft: #141414;
  --panel: rgba(22, 22, 22, 0.9);
  --text: #f2f2f0;
  --muted: #b9b9bd;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #d8d8dc;
  --accent-strong: #f4f4f6;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.07), transparent 28%),
    linear-gradient(180deg, #0a0a0a 0%, #111111 55%, #090909 100%);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(10, 10, 10, 0.75);
  border-bottom: 1px solid var(--line);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 88px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand img {
  width: 56px;
  height: 56px;
  padding: 0;
  object-fit: cover;
  background: #090909;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  font-size: 0.95rem;
  letter-spacing: 0.42rem;
  font-weight: 600;
}

.brand-copy span {
  color: var(--muted);
  letter-spacing: 0.4rem;
  font-size: 0.72rem;
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu a {
  color: var(--muted);
  font-size: 0.95rem;
}

.menu a:hover,
.menu a.active {
  color: var(--accent-strong);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: 180ms ease;
}

.button.primary {
  background: linear-gradient(135deg, #fbfbfc, #bdbdc2);
  color: #0a0a0a;
}

.button.secondary {
  border-color: var(--line);
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.04);
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: stretch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  text-transform: uppercase;
  letter-spacing: 0.16rem;
  font-size: 0.7rem;
}

.hero-card,
.section-panel,
.contact-card,
.service-tile,
.gallery-card,
.story-card,
.metric {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(2rem, 4vw, 3.5rem);
}

.hero-copy h1,
.page-intro h1,
.section-heading h2 {
  margin: 1rem 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.hero-copy p,
.page-intro p,
.section-heading p {
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-highlights .metric {
  padding: 1rem;
}

.metric strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-showcase {
  display: grid;
  grid-template-rows: 1.2fr 0.8fr;
  gap: 1rem;
}

.hero-image,
.gallery-card img,
.service-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-wrap {
  min-height: 540px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stacked-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.stacked-images .gallery-card {
  min-height: 180px;
  overflow: hidden;
}

section {
  padding: 2rem 0 4rem;
}

.section-heading {
  margin-bottom: 1.5rem;
}

.badge-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.badge {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--accent);
}

.story-grid,
.contact-grid,
.service-grid,
.gallery-grid,
.footer-grid {
  display: grid;
  gap: 1.25rem;
}

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

.story-card,
.section-panel,
.contact-card {
  padding: 1.5rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.checklist li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--accent);
}

.checklist li:last-child {
  border-bottom: 0;
}

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

.service-tile {
  overflow: hidden;
}

.service-copy {
  padding: 1.4rem;
}

.service-copy h3 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-family: "Cormorant Garamond", serif;
}

.service-copy p {
  margin: 0;
  color: var(--muted);
}

.service-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
  min-height: 280px;
}

.service-image-grid img {
  min-height: 280px;
}

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

.gallery-card {
  overflow: hidden;
  min-height: 260px;
}

.split-band {
  padding: 2rem 0;
}

.band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
}

.band p {
  color: var(--muted);
  margin: 0.4rem 0 0;
}

.page-intro {
  padding: 5rem 0 2rem;
}

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

form {
  display: grid;
  gap: 1rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.92rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

textarea {
  min-height: 170px;
  resize: vertical;
}

.site-footer {
  padding: 3rem 0 2.5rem;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.45);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  align-items: start;
}

.footer-meta,
.footer-links,
.footer-contact {
  color: var(--muted);
}

.footer-links a,
.footer-contact a {
  display: block;
  margin-bottom: 0.65rem;
}

.small {
  font-size: 0.92rem;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .story-grid,
  .contact-grid,
  .footer-grid,
  .band {
    grid-template-columns: 1fr;
  }

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

  .hero-highlights,
  .field-row {
    grid-template-columns: 1fr;
  }

  .menu {
    gap: 0.8rem;
  }
}

@media (max-width: 640px) {
  .nav-bar {
    padding: 1rem 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-copy h1,
  .page-intro h1,
  .section-heading h2 {
    font-size: clamp(2.4rem, 13vw, 3.5rem);
  }

  .brand-copy strong {
    letter-spacing: 0.28rem;
    font-size: 0.85rem;
  }

  .brand-copy span {
    letter-spacing: 0.26rem;
  }
}
