:root {
  --ink: #111111;
  --night: #151716;
  --ivory: #fff8ee;
  --paper: #f8f1e6;
  --ruby: #9d2332;
  --brass: #c59b5f;
  --teal: #0e6f69;
  --muted: #746c62;
  --line: rgba(17, 17, 17, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
}

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

main {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 92svh;
  color: var(--ivory);
  isolation: isolate;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(20px, 4vw, 56px);
}

.brand,
.site-header nav {
  display: flex;
  align-items: center;
}

.brand {
  width: min(148px, 34vw);
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.site-header nav {
  gap: clamp(14px, 3vw, 32px);
  color: rgba(255, 248, 238, 0.8);
  font-size: 0.92rem;
}

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

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: 0;
  background-image: url("hero-live.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 11, 10, 0.92) 0%, rgba(13, 14, 13, 0.74) 38%, rgba(13, 14, 13, 0.22) 72%),
    linear-gradient(0deg, rgba(21, 23, 22, 0.94) 0%, rgba(21, 23, 22, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 92svh;
  width: min(980px, 100%);
  flex-direction: column;
  justify-content: center;
  padding: 104px clamp(20px, 4vw, 56px) 96px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brass);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--ruby);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(4.4rem, 10vw, 9.6rem);
  font-weight: 800;
  line-height: 0.86;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.5vw, 4.8rem);
  font-weight: 760;
  line-height: 0.98;
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  line-height: 1;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 248, 238, 0.84);
  font-size: clamp(1.06rem, 2vw, 1.36rem);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 0.95rem;
  font-weight: 780;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: var(--ivory);
  color: var(--ink);
}

.button.ghost {
  border-color: rgba(255, 248, 238, 0.38);
  color: var(--ivory);
}

.button.light.primary {
  background: var(--night);
  color: var(--ivory);
  cursor: pointer;
}

.button.on-dark {
  border-color: rgba(255, 248, 238, 0.28);
  color: var(--ivory);
}

.intro,
.services,
.split-section,
.qualities,
.contact {
  padding-inline: clamp(20px, 4vw, 56px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: clamp(30px, 7vw, 96px);
  padding-block: clamp(64px, 10vw, 130px);
  background: var(--paper);
}

.intro p:last-child,
.text-panel p,
.contact-copy p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--night);
  padding-block: 1px;
}

.service-card {
  min-height: 340px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--ivory);
}

.service-card p {
  margin-bottom: 52px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card span {
  color: var(--muted);
  line-height: 1.7;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 0.85fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  padding-block: clamp(72px, 10vw, 140px);
  background: var(--ivory);
}

.image-panel {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(14, 111, 105, 0.4), rgba(157, 35, 50, 0.38)),
    url("hero-live.png") center / cover;
}

.image-panel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.52));
  content: "";
}

.panel-glass {
  position: absolute;
  left: 22px;
  bottom: 24px;
  z-index: 1;
  display: grid;
  gap: 6px;
  width: min(230px, calc(100% - 44px));
  border: 1px solid rgba(255, 248, 238, 0.36);
  border-radius: 8px;
  padding: 18px;
  background: rgba(17, 17, 17, 0.44);
  color: var(--ivory);
  backdrop-filter: blur(14px);
}

.panel-glass.right {
  right: 22px;
  left: auto;
  top: 24px;
  bottom: auto;
}

.panel-glass span {
  color: rgba(255, 248, 238, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.text-panel {
  max-width: 620px;
}

.text-panel h2 {
  margin-bottom: 26px;
}

.moment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.moment-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: #ffffff;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.qualities {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 100px);
  padding-block: clamp(64px, 9vw, 120px);
}

.qualities ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.qualities li {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 720;
}

.qualities li:last-child {
  border-bottom: 1px solid var(--line);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  gap: clamp(30px, 7vw, 90px);
  align-items: center;
  padding-block: clamp(64px, 9vw, 110px);
  background: var(--night);
  color: var(--ivory);
}

.contact h2 {
  margin-bottom: 22px;
}

.contact-copy p {
  color: rgba(255, 248, 238, 0.72);
}

.contact-actions {
  margin-top: 26px;
  justify-content: flex-start;
}

.form-panel {
  border: 1px solid rgba(255, 248, 238, 0.16);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 30px);
  background: var(--ivory);
  color: var(--ink);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.26);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quick-form label {
  display: grid;
  gap: 8px;
}

.quick-form label span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-form input,
.quick-form select,
.quick-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  outline: none;
}

.quick-form input,
.quick-form select {
  min-height: 48px;
  padding: 0 13px;
}

.quick-form textarea {
  min-height: 116px;
  resize: vertical;
  padding: 13px;
}

.quick-form input:focus,
.quick-form select:focus,
.quick-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14, 111, 105, 0.12);
}

.instagram-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--teal);
  font-size: 0.92rem;
  font-weight: 760;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    padding-top: 18px;
  }

  .site-header nav {
    gap: 12px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 11, 10, 0.92) 0%, rgba(13, 14, 13, 0.68) 58%, rgba(13, 14, 13, 0.18) 100%),
      linear-gradient(0deg, rgba(21, 23, 22, 0.98) 0%, rgba(21, 23, 22, 0) 48%);
  }

  .hero-content {
    min-height: 88svh;
    justify-content: flex-end;
  }

  h1 {
    font-size: clamp(3.4rem, 17vw, 5.6rem);
  }

  .intro,
  .services,
  .split-section,
  .qualities,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .image-panel {
    min-height: 380px;
  }
}

@media (max-width: 540px) {
  .site-header nav a:first-child {
    display: none;
  }

  .brand {
    width: 118px;
  }

  .button {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .panel-glass.right {
    display: none;
  }
}
