:root {
  --bg: #050505;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f4f4f1;
  --muted: rgba(244, 244, 241, 0.72);
  --muted-soft: rgba(244, 244, 241, 0.55);
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --radius-sm: 20px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 20%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

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

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

.site-shell {
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0 0 auto 0;
  height: 38rem;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
  pointer-events: none;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.4));
}

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

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name,
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
}

.brand-name {
  font-size: 1.8rem;
  letter-spacing: -0.05em;
}

.brand-tag,
.eyebrow,
.site-nav a,
.button,
.service-card,
.contact-actions a:not(.button),
.feature-list li {
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.brand-tag,
.eyebrow {
  color: var(--muted-soft);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  font-size: 0.8rem;
  color: var(--muted);
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.contact-actions a:hover,
.contact-actions a:focus-visible {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--text);
  margin: 0 auto 5px;
}
.menu-toggle span:last-child {
  margin-bottom: 0;
}

.section {
  padding: 4rem 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: end;
  min-height: calc(100vh - 88px);
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.hero-copy h1 {
  margin: 0.5rem 0 0;
  font-size: clamp(3.4rem, 8vw, 6.7rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  max-width: 12ch;
}

.hero-copy .lede,
.section-note,
.about-copy,
.work-card p {
  color: var(--muted);
}

.hero-copy .lede {
  max-width: 42rem;
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.8rem;
  font-weight: 600;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-solid {
  background: #f4f4f1;
  color: #050505;
}

.button-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--text);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.hero-panel,
.work-card,
.service-card,
.contact-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 2rem;
}

.hero-panel h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.35rem 0 1.25rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 1rem 0 1rem 1.2rem;
  font-size: 0.82rem;
  color: var(--muted);
  border-top: 1px solid var(--line-soft);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.45rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-heading.stacked {
  display: block;
}

.section-heading h2,
.about-grid h2,
.contact-card h2 {
  margin: 0.35rem 0 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-note {
  max-width: 34rem;
}

.work-grid,
.services-grid,
.about-grid,
.contact-card {
  display: grid;
  gap: 1.25rem;
}

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

.work-card {
  padding: 1rem;
}

.work-visual {
  min-height: 420px;
  padding: 1.5rem;
  border-radius: calc(var(--radius) - 8px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02));
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.work-visual span {
  color: var(--muted-soft);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.work-visual h3 {
  margin: 0.5rem 0 0;
  font-size: 2.3rem;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.work-card p {
  margin: 1rem 0 0.25rem;
}

.section-band {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

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

.service-card {
  padding: 1.35rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
}

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

.about-copy {
  font-size: 1.1rem;
  margin: 0;
}

.contact-card {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  padding: 2rem;
}

.contact-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.contact-actions a:not(.button) {
  font-size: 0.82rem;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero,
  .about-grid,
  .contact-card,
  .work-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .section-note {
    margin-top: 1rem;
  }

  .contact-actions {
    justify-content: flex-start;
    margin-top: 1rem;
  }

  .work-visual {
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 1rem 0;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    width: min(18rem, calc(100vw - 2rem));
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(5, 5, 5, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .brand-tag,
  .eyebrow,
  .site-nav a,
  .button,
  .service-card,
  .contact-actions a:not(.button),
  .feature-list li {
    letter-spacing: 0.18em;
  }

  .hero-copy .lede,
  .about-copy {
    font-size: 1rem;
  }

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


.header-glow {
  position: absolute;
  inset: 0.35rem 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.16), rgba(255,255,255,0.07), rgba(255,255,255,0.16));
  filter: blur(24px);
  pointer-events: none;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.brand {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
}

.site-nav {
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(14px);
}


.work-link {
  display: block;
}

.work-visual-image {
  background-size: cover;
  background-position: center;
}


.work-visual-property {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.55);
}


.work-media-shell {
  overflow: hidden;
  border-radius: calc(var(--radius) - 8px);
  border: 1px solid var(--line);
  background: #0a0a0a;
}

.work-visual-property-photo {
  min-height: 340px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
}

.work-property-image {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: contain;
  border-radius: 14px;
  display: block;
}

.work-property-copy {
  margin-top: 1rem;
}

.work-property-copy span {
  color: var(--muted-soft);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.work-property-copy h3 {
  margin: 0.5rem 0 0;
  font-size: 2.3rem;
  line-height: 0.95;
  letter-spacing: -0.04em;
}
