@font-face {
  font-family: "Playfair Display";
  src: url("/assets/fonts/playfair-v10-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #f6f2e8;
  --muted: #b8b0a2;
  --paper: #fbf7ed;
  --paper-muted: #e8dfd0;
  --charcoal: #0b1010;
  --deep: #121715;
  --moss: #384339;
  --clay: #b46e47;
  --gold: #d1ae66;
  --line: rgba(246, 242, 232, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
  letter-spacing: 0.005em;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(11, 16, 16, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 158px;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 42px);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.035em;
  color: rgba(246, 242, 232, 0.78);
}

.nav-links a,
.header-cta {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.header-cta {
  border: 1px solid rgba(209, 174, 102, 0.6);
  padding: 10px 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 560;
  letter-spacing: 0.04em;
}

.header-cta:hover {
  background: var(--gold);
  color: var(--charcoal);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 130px clamp(20px, 5vw, 72px) 58px;
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 16, 16, 0.86), rgba(11, 16, 16, 0.56) 46%, rgba(11, 16, 16, 0.26)),
    linear-gradient(0deg, rgba(11, 16, 16, 0.92), transparent 48%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.055em;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  font-size: clamp(58px, 10vw, 132px);
}

h2 {
  font-size: clamp(38px, 6vw, 78px);
}

h3 {
  font-size: clamp(30px, 4vw, 52px);
}

.hero-lede {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(246, 242, 232, 0.82);
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  max-width: 760px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(246, 242, 232, 0.22);
  color: rgba(246, 242, 232, 0.72);
  font-size: 14px;
  letter-spacing: 0.025em;
}

.hero-signature span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.hero-signature span:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(209, 174, 102, 0.76);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 14px 22px;
  border: 1px solid rgba(246, 242, 232, 0.25);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.035em;
  cursor: pointer;
}

.btn.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #15120c;
}

.btn.ghost {
  background: rgba(246, 242, 232, 0.08);
}

.btn.full {
  width: 100%;
}

.section-band,
.services,
.proof,
.contact,
.site-footer {
  padding-inline: clamp(20px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: 140px minmax(0, 1.1fr) minmax(260px, 0.75fr);
  gap: clamp(26px, 5vw, 80px);
  align-items: center;
  padding-block: clamp(70px, 10vw, 130px);
  background: var(--paper);
  color: #18201e;
}

.intro-mark {
  display: grid;
  place-items: center;
  width: 112px;
  aspect-ratio: 1;
  border: 1px solid rgba(24, 32, 30, 0.18);
  color: var(--clay);
  font-family: var(--serif);
  font-size: 38px;
}

.intro p:last-child {
  margin: 0;
  color: #4e5550;
  font-size: 18px;
}

.services {
  padding-block: clamp(70px, 10vw, 132px);
}

.section-heading {
  max-width: 880px;
  margin: 0 auto clamp(44px, 7vw, 86px);
  text-align: center;
}

.align-left {
  margin-inline: 0;
  text-align: left;
}

.service-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: center;
  padding: clamp(34px, 6vw, 72px) 0;
  border-top: 1px solid var(--line);
}

.service-feature.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
}

.service-feature.reverse img {
  order: 2;
}

.service-feature img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.service-number {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.055em;
}

.service-feature p {
  max-width: 650px;
  color: rgba(246, 242, 232, 0.76);
  font-size: 18px;
}

.service-feature ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(246, 242, 232, 0.72);
}

.service-feature li {
  padding-left: 22px;
  position: relative;
}

.service-feature li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.standard {
  background: var(--moss);
  padding-block: clamp(70px, 9vw, 122px);
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(246, 242, 232, 0.15);
}

.standard-grid > div {
  min-height: 280px;
  padding: clamp(28px, 4vw, 46px);
  background: var(--moss);
}

.standard-grid span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.055em;
}

.standard-grid h3 {
  margin-top: 52px;
  font-size: 34px;
}

.standard-grid p {
  color: rgba(246, 242, 232, 0.76);
}

.proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: center;
  padding-block: clamp(70px, 10vw, 130px);
  background: var(--paper-muted);
  color: #18201e;
}

.proof img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
}

.proof p:last-child {
  max-width: 680px;
  color: #525a55;
  font-size: 18px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 88px);
  padding-block: clamp(70px, 10vw, 124px);
  background:
    linear-gradient(rgba(11, 16, 16, 0.84), rgba(11, 16, 16, 0.9)),
    url("/assets/contact_hero_banner.jpg") center / cover;
}

.contact-card p {
  max-width: 680px;
  color: rgba(246, 242, 232, 0.76);
  font-size: 18px;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 34px;
  color: var(--ink);
}

.contact-lines a {
  color: var(--gold);
}

.inquiry-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(246, 242, 232, 0.94);
  color: #18201e;
  align-self: start;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(24, 32, 30, 0.16);
  background: #fffaf1;
  color: #18201e;
  padding: 15px 16px;
  font: inherit;
}

.inquiry-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: #66706a;
  font-size: 14px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding-block: 28px;
  border-top: 1px solid var(--line);
  background: #070a0a;
  color: rgba(246, 242, 232, 0.58);
}

.footer-logo {
  width: 148px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

.site-footer p {
  margin: 0;
  font-size: 14px;
}

.emarketing-credit {
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(246, 242, 232, 0.7);
  font-size: 14px;
  letter-spacing: 0.025em;
}

.emarketing-credit img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.emarketing-credit strong {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .brand img {
    width: 136px;
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
  }

  .intro,
  .service-feature,
  .service-feature.reverse,
  .standard-grid,
  .proof,
  .contact {
    grid-template-columns: 1fr;
  }

  .intro-mark {
    width: 88px;
  }

  .service-feature.reverse img {
    order: 0;
  }

  .service-feature img {
    aspect-ratio: 16 / 11;
  }

  .proof img {
    min-height: 320px;
  }

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

@media (max-width: 520px) {
  .header-cta {
    padding-inline: 12px;
    font-size: 12px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-signature {
    display: grid;
    gap: 8px;
  }

  .hero-signature span::after {
    display: none;
  }

  h1 {
    font-size: 52px;
  }
}
