:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-soft: #0b0b0a;
  --panel: rgba(12, 11, 10, 0.88);
  --panel-strong: rgba(16, 13, 11, 0.96);
  --line: rgba(205, 145, 48, 0.34);
  --line-soft: rgba(255, 255, 255, 0.12);
  --gold: #d59b36;
  --gold-bright: #f4c36a;
  --wine: #a80f2d;
  --wine-deep: #3c0712;
  --paper: #fff8ec;
  --muted: #c8bbaa;
  --dim: #938779;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(213, 155, 54, 0.13), transparent 26rem),
    radial-gradient(circle at 86% 8%, rgba(168, 15, 45, 0.12), transparent 24rem),
    var(--bg);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::selection {
  background: var(--gold);
  color: #120a03;
}

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

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

svg {
  width: 1.05em;
  height: 1.05em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  min-height: 82px;
  padding: 14px clamp(22px, 6vw, 86px);
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid rgba(213, 155, 54, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(170px, 16vw, 230px);
  min-width: 0;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 34px);
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
}

.nav-links a {
  position: relative;
  padding-block: 8px;
  transition: color 180ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.2);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold-bright);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  font: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

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

.button--header {
  background: linear-gradient(135deg, #e5a64a, var(--gold));
  color: #120b04;
  box-shadow: 0 14px 38px rgba(213, 155, 54, 0.22);
}

.button--primary {
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, #b71032, #7c0a22);
  color: var(--paper);
  box-shadow: 0 18px 44px rgba(168, 15, 45, 0.28);
}

.button--primary:hover {
  background: linear-gradient(135deg, #c7193b, #90102b);
}

.button--ghost {
  border-color: var(--line);
  background: rgba(0, 0, 0, 0.26);
  color: var(--paper);
}

.button--ghost:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 760px;
  padding: 126px clamp(22px, 6vw, 86px) 64px;
  overflow: hidden;
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  z-index: -2;
}

.hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.78) 36%, rgba(5, 5, 5, 0.12) 73%, rgba(5, 5, 5, 0.26) 100%),
    linear-gradient(0deg, #050505 0%, rgba(5, 5, 5, 0) 34%, rgba(5, 5, 5, 0.34) 100%);
}

.hero__content {
  width: min(680px, 100%);
  padding-top: 28px;
}

.section-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.26em;
}

.section-kicker::after {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  content: "";
}

.hero h1,
.section-heading h2,
.moment-card h3,
.about h2,
.quote-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(3.2rem, 6.3vw, 6.8rem);
  line-height: 0.96;
}

.hero h1 span,
.quote-copy h2 span {
  display: block;
  color: var(--gold-bright);
  font-style: italic;
}

.hero__lead {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--paper);
  font-size: 1.04rem;
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.hero__actions .button {
  min-width: 220px;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__tags a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(213, 155, 54, 0.38);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.36);
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.hero__tags a:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.benefit-strip,
.moments,
.gallery,
.about,
.quote-section,
.site-footer {
  padding-right: clamp(22px, 6vw, 86px);
  padding-left: clamp(22px, 6vw, 86px);
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: min(1320px, calc(100% - 44px));
  margin: -30px auto 0;
  padding: 22px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(6, 6, 6, 0.8);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.benefit-strip article {
  display: grid;
  grid-template-columns: auto minmax(0, 440px);
  gap: 18px;
  align-content: center;
  align-items: center;
  justify-content: center;
  min-height: 134px;
  padding: 28px 30px;
}

.benefit-strip article + article {
  border-left: 1px solid rgba(213, 155, 54, 0.26);
}

.icon-ring {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
}

.benefit-strip h2 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 400;
}

.benefit-strip p,
.moment-card p,
.about p,
.quote-copy p,
.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.moments,
.gallery,
.about {
  padding-top: 78px;
  padding-bottom: 78px;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 34px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--center .section-kicker {
  justify-content: center;
}

.section-heading--center .section-kicker::before {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  content: "";
}

.section-heading h2,
.about h2,
.quote-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.06;
}

.moment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1320px, 100%);
  margin: 0 auto;
}

.moment-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.95fr) minmax(260px, 1fr);
  gap: 0;
  align-items: center;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(130deg, rgba(168, 15, 45, 0.22), transparent 48%),
    var(--panel);
}

.moment-card--dark {
  background:
    linear-gradient(130deg, rgba(213, 155, 54, 0.14), transparent 46%),
    var(--panel);
}

.moment-card img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: 50% 28%;
}

.moment-card:first-child img {
  object-position: 53% 20%;
}

.moment-card div {
  width: min(100%, 360px);
  min-width: 0;
  padding: clamp(28px, 4vw, 46px);
  justify-self: center;
}

.moment-card h3 {
  margin-bottom: 18px;
  font-size: clamp(1.72rem, 2.15vw, 2.45rem);
  line-height: 1.08;
}

.moment-card .section-kicker {
  max-width: 100%;
  margin-bottom: 14px;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
}

.moment-card .section-kicker::after {
  width: 28px;
}

.moment-card p:not(.section-kicker) {
  max-width: 31ch;
  font-size: 0.98rem;
  line-height: 1.58;
}

.gallery {
  background:
    linear-gradient(180deg, rgba(213, 155, 54, 0.06), transparent 40%),
    #060606;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(1320px, 100%);
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(213, 155, 54, 0.42);
  border-radius: 8px;
  background: #111;
}

.gallery-item:nth-child(1) img {
  object-position: 70% 50%;
}

.gallery-item:nth-child(4) img {
  object-position: 50% 28%;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 26%;
  filter: saturate(1.05) contrast(1.03);
  transition:
    transform 420ms ease,
    filter 420ms ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 48%);
  content: "";
  opacity: 0;
  transition: opacity 240ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
  filter: saturate(1.12) contrast(1.06);
}

.gallery-item:hover::after {
  opacity: 1;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(280px, 0.64fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  background:
    linear-gradient(90deg, transparent, rgba(168, 15, 45, 0.16)),
    var(--bg);
}

.about__copy {
  max-width: 720px;
}

.about__copy p:last-child {
  margin-top: 20px;
  font-size: 1.02rem;
}

.about__media {
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about__media img {
  height: 100%;
  object-fit: cover;
  object-position: 51% 24%;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.54fr) minmax(520px, 1fr);
  min-height: 560px;
  padding-top: 0;
  padding-bottom: 0;
  border-top: 1px solid rgba(213, 155, 54, 0.3);
  border-bottom: 1px solid rgba(213, 155, 54, 0.3);
  background: var(--bg-soft);
}

.quote-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 6vw, 78px) clamp(28px, 4.5vw, 58px);
  background:
    linear-gradient(130deg, rgba(168, 15, 45, 0.78), rgba(61, 7, 18, 0.86)),
    var(--wine-deep);
}

.quote-copy::after {
  position: absolute;
  right: -72px;
  bottom: -84px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(244, 195, 106, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(5, 5, 5, 0.4), transparent 62%),
    url("assets/lisselot-mar-purple-profile.png");
  background-size: cover;
  background-position: center;
  content: "";
  opacity: 0.28;
  filter: grayscale(0.3);
}

.quote-copy > * {
  position: relative;
  z-index: 1;
}

.quote-copy h2 {
  max-width: 460px;
  margin-bottom: 24px;
}

.quote-copy .section-kicker {
  max-width: 420px;
  letter-spacing: 0.16em;
}

.quote-points {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.quote-points li {
  position: relative;
  padding-left: 26px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
}

.quote-points li::before {
  position: absolute;
  top: 0.15em;
  left: 0;
  color: var(--gold-bright);
  content: ">";
}

.quote-form {
  align-self: center;
  padding: clamp(32px, 5vw, 58px);
  background:
    radial-gradient(circle at 86% 10%, rgba(213, 155, 54, 0.08), transparent 22rem),
    var(--panel-strong);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 22px;
}

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

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.94rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(213, 155, 54, 0.42);
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--paper);
  font: inherit;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.92rem;
  padding: 11px 13px;
  outline: none;
}

textarea {
  resize: vertical;
}

option {
  color: #16110c;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 248, 236, 0.46);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(213, 155, 54, 0.14);
}

.form-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 4px;
  font-size: 1.02rem;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--gold-bright);
  font-weight: 800;
}

.request-preview {
  display: none;
  max-height: 260px;
  overflow: auto;
  white-space: pre-wrap;
  margin: 14px 0 0;
  padding: 16px;
  border: 1px solid rgba(213, 155, 54, 0.26);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.84rem;
  line-height: 1.55;
}

.request-preview.is-visible {
  display: block;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 0.9fr;
  gap: 36px;
  padding-top: 48px;
  padding-bottom: 34px;
  border-top: 1px solid rgba(213, 155, 54, 0.18);
  background: #060606;
}

.brand--footer {
  width: min(260px, 100%);
  margin-bottom: 18px;
}

.site-footer h2 {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.site-footer p + p {
  margin-top: 8px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 800;
}

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

  .nav-links {
    display: none;
  }

  .button--header {
    justify-self: end;
  }

  .benefit-strip,
  .quote-section,
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .moment-grid {
    grid-template-columns: 1fr;
    max-width: 920px;
  }

  .benefit-strip article:nth-child(3) {
    border-left: 0;
  }

  .benefit-strip article:nth-child(n + 3) {
    border-top: 1px solid rgba(213, 155, 54, 0.26);
  }

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

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

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    min-height: 74px;
    gap: 16px;
  }

  .brand {
    width: clamp(138px, 40vw, 180px);
  }

  .button--header {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.9rem;
  }

  .button--header svg {
    display: none;
  }

  .hero {
    min-height: 780px;
    padding-top: 112px;
    padding-bottom: 42px;
    align-items: end;
  }

  .hero__image {
    object-position: 66% center;
  }

  .hero__shade {
    background:
      linear-gradient(0deg, #050505 0%, rgba(5, 5, 5, 0.84) 36%, rgba(5, 5, 5, 0.12) 72%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.24));
  }

  .hero__actions .button {
    width: 100%;
    min-width: 0;
  }

  .hero__tags {
    gap: 10px;
  }

  .hero__tags a {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.9rem;
  }

  .benefit-strip {
    width: calc(100% - 44px);
    margin-top: 0;
  }

  .benefit-strip,
  .moment-grid,
  .about,
  .quote-section,
  .site-footer,
  .form-row,
  .form-row--thirds {
    grid-template-columns: 1fr;
  }

  .benefit-strip article,
  .benefit-strip article + article,
  .benefit-strip article:nth-child(n + 3) {
    border-left: 0;
    border-top: 1px solid rgba(213, 155, 54, 0.26);
  }

  .benefit-strip article:first-child {
    border-top: 0;
  }

  .moment-card {
    grid-template-columns: 1fr;
  }

  .moment-card img {
    min-height: 430px;
  }

  .moment-card div {
    padding: 0 24px 28px;
  }

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

  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(8) {
    grid-column: auto;
    min-height: 300px;
  }

  .about__media {
    min-height: 480px;
  }

  .quote-section {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 18px;
  }

  .button--header {
    max-width: 132px;
    line-height: 1.1;
  }

  .section-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .hero {
    min-height: 760px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .hero h1 {
    font-size: 3.18rem;
  }

  .hero__lead {
    font-size: 0.98rem;
  }

  .benefit-strip article {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 22px;
    text-align: center;
  }

  .moments,
  .gallery,
  .about {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .moment-card img,
  .about__media {
    min-height: 420px;
  }

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

  .gallery-item {
    min-height: 410px;
  }

  .quote-copy,
  .quote-form {
    padding: 34px 22px;
  }
}
