:root {
  --ink: #1d2220;
  --muted: #5d6863;
  --paper: #fbfaf6;
  --soft: #f0eee7;
  --line: #ded9cd;
  --surface: #ffffff;
  --secondary-hover: #fff5ee;
  --glass: rgba(255, 255, 255, 0.58);
  --glass-strong: rgba(255, 255, 255, 0.72);
  --glass-line: rgba(255, 255, 255, 0.58);
  --glass-shadow: 0 28px 80px rgba(55, 45, 38, 0.16);
  --inner-glow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
  --wine: #b56568;
  --wine-dark: #8f4048;
  --wine-soft: #d68d82;
  --teal: #0f6b66;
  --gold: #d59a3a;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(34, 31, 27, 0.15);
  --display-font: "Nickainley", "Snell Roundhand", "Apple Chancery", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --body-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.dark-theme {
  --ink: #f6efe5;
  --muted: #c6b9aa;
  --paper: #151312;
  --soft: #201b19;
  --line: rgba(255, 255, 255, 0.14);
  --surface: #211d1b;
  --secondary-hover: #2a2421;
  --glass: rgba(38, 34, 32, 0.58);
  --glass-strong: rgba(48, 42, 39, 0.76);
  --glass-line: rgba(255, 255, 255, 0.16);
  --glass-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --inner-glow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  --wine: #c77f78;
  --wine-dark: #a95d62;
  --wine-soft: #e0a08e;
  --teal: #2f8e86;
  --gold: #e0b66a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(240, 238, 231, 0.38) 34%, rgba(218, 232, 229, 0.5) 68%, rgba(250, 244, 236, 0.8)),
    var(--paper);
  transition:
    background 0.35s ease,
    color 0.35s ease;
}

body.dark-theme {
  background:
    linear-gradient(135deg, rgba(31, 29, 28, 0.92), rgba(20, 18, 17, 0.82) 42%, rgba(24, 35, 34, 0.68) 72%, rgba(25, 18, 18, 0.88)),
    var(--paper);
}

section,
main {
  scroll-margin-top: 86px;
}

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 10px 14px 10px 18px;
  color: var(--white);
  background: rgba(18, 20, 18, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: blur(28px) saturate(1.35);
  backdrop-filter: blur(28px) saturate(1.35);
}

.brand,
.header-phone,
.nav a,
.theme-toggle {
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.38);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display-font);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  overflow: hidden;
}

.brand-mark img {
  width: 34px;
  height: 34px;
}

.nav {
  display: flex;
  gap: 4px;
  font-size: 14px;
}

.nav a {
  border-radius: 999px;
  padding: 10px 13px;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.nav a,
.header-phone,
.theme-toggle {
  opacity: 0.9;
  transition:
    opacity 0.2s ease,
    transform 0.3s ease;
}

.nav a:hover,
.header-phone:hover,
.theme-toggle:hover {
  opacity: 1;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.13);
}

.header-phone {
  border-radius: 999px;
  padding: 10px 13px;
  font-weight: 700;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.1);
}

.theme-toggle {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  overflow: hidden;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.theme-toggle:hover {
  transform: translateY(-2px) rotate(12deg) scale(1.06);
}

.theme-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  transition:
    transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.28s ease;
}

.theme-icon-moon {
  opacity: 0;
  transform: translateY(22px) rotate(-65deg);
}

body.dark-theme .theme-icon-sun {
  opacity: 0;
  transform: translateY(-22px) rotate(65deg);
}

body.dark-theme .theme-icon-moon {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  padding: 140px clamp(18px, 5vw, 72px) 64px;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 12, 11, 0.8), rgba(10, 12, 11, 0.34) 52%, rgba(10, 12, 11, 0.08)),
    linear-gradient(0deg, rgba(10, 12, 11, 0.74), rgba(10, 12, 11, 0.08) 46%);
}

.hero-content {
  position: relative;
  max-width: 850px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-family: var(--display-font);
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 30px;
  font-size: clamp(18px, 2.1vw, 24px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

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

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--glass-line);
  border-radius: 999px;
  padding: 0 24px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(29, 34, 32, 0.13), var(--inner-glow);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  backdrop-filter: blur(18px) saturate(1.25);
  transition:
    transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.34s ease,
    background 0.34s ease,
    color 0.34s ease,
    filter 0.34s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.26) 46%, transparent 72%);
  transform: translateX(-130%) skewX(-18deg);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.button:hover {
  transform: translateY(-4px) scale(1.035);
  box-shadow: 0 22px 46px rgba(29, 34, 32, 0.24);
  filter: saturate(1.05);
}

.button:hover::before {
  transform: translateX(130%) skewX(-18deg);
}

.button:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow: 0 12px 24px rgba(29, 34, 32, 0.16);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--wine), var(--wine-soft));
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--wine-dark), var(--wine));
}

.button-secondary {
  color: var(--ink);
  background: var(--glass-strong);
}

.button-secondary:hover {
  color: var(--wine-dark);
  background: var(--secondary-hover);
}

.button-dark {
  color: var(--white);
  background: var(--teal);
}

.button-dark:hover {
  background: #16817b;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-proof span {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  backdrop-filter: blur(18px) saturate(1.25);
  font-size: 13px;
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

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

.section-heading.wide {
  max-width: 980px;
}

h2 {
  margin-bottom: 18px;
  font-family: var(--display-font);
  font-size: clamp(32px, 4.6vw, 58px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-family: var(--display-font);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.15;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.occasion-card,
.steps li,
.testimonial-video {
  border: 1px solid var(--glass-line);
  border-radius: 26px;
  background: var(--glass);
  box-shadow: var(--glass-shadow), var(--inner-glow);
  -webkit-backdrop-filter: blur(26px) saturate(1.22);
  backdrop-filter: blur(26px) saturate(1.22);
}

.occasion-card {
  min-height: 230px;
  padding: 26px;
  transition:
    transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.32s ease,
    background 0.32s ease;
}

.occasion-card:hover,
.steps li:hover {
  transform: translateY(-6px);
  background: var(--glass-strong);
  box-shadow: 0 34px 88px rgba(55, 45, 38, 0.2), var(--inner-glow);
}

.card-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid var(--glass-line);
  box-shadow: var(--inner-glow);
  font-size: 21px;
}

.memory-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: clamp(26px, 6vw, 80px);
  align-items: center;
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 107, 102, 0.92), rgba(86, 62, 74, 0.78)),
    var(--teal);
}

.memory-band h2,
.memory-band p {
  color: var(--white);
}

.memory-text p:last-child {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 23px);
}

.memory-quote {
  border-left: 3px solid var(--gold);
  padding-left: 28px;
}

.memory-quote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--display-font);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
  line-height: 1.2;
}

.case-list {
  display: grid;
  gap: 28px;
}

.case-item {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.case-item.reverse {
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
}

.case-item.reverse .case-video {
  order: 2;
}

.case-video,
.testimonial-video {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.case-video {
  aspect-ratio: 16 / 9;
  border: 1px solid var(--glass-line);
  border-radius: 28px;
  background: #101514;
  box-shadow: var(--glass-shadow);
}

.case-video img,
.testimonial-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button,
.mini-play {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--wine), var(--wine-soft));
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(29, 34, 32, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.26);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  backdrop-filter: blur(16px) saturate(1.2);
  transition:
    transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.34s ease,
    background 0.34s ease;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.12);
  background: linear-gradient(135deg, var(--wine-dark), var(--wine));
  box-shadow: 0 24px 52px rgba(29, 34, 32, 0.3);
}

.mini-play:hover {
  transform: scale(1.12);
  background: linear-gradient(135deg, var(--wine-dark), var(--wine));
  box-shadow: 0 24px 52px rgba(29, 34, 32, 0.3);
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 72px;
  height: 72px;
  transform: translate(-50%, -50%);
  font-size: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.case-copy {
  max-width: 560px;
}

.case-copy a {
  color: var(--wine);
  font-weight: 800;
}

.process {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(222, 217, 205, 0.22)),
    var(--soft);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  min-height: 240px;
  padding: 24px;
  transition:
    transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.32s ease,
    background 0.32s ease;
}

.steps span {
  display: block;
  margin-bottom: 34px;
  color: var(--wine);
  font-weight: 900;
}

.value-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.value-image {
  overflow: hidden;
  border: 1px solid var(--glass-line);
  border-radius: 30px;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}

.value-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 700;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 14px;
  height: 2px;
  background: var(--gold);
}

.price-title {
  margin-bottom: 14px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.price-grid div {
  border: 1px solid var(--glass-line);
  border-radius: 22px;
  padding: 18px;
  background: var(--glass);
  box-shadow: var(--inner-glow);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
  backdrop-filter: blur(22px) saturate(1.18);
}

.price-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--wine);
  font-size: 22px;
}

.price-grid span {
  color: var(--muted);
  font-size: 14px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-video {
  aspect-ratio: 4 / 5;
}

.testimonial-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 12, 11, 0.78), rgba(10, 12, 11, 0.02) 58%);
}

.testimonial-video div {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 20px;
}

.mini-play {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
}

.testimonial-video p {
  margin: 0;
  color: var(--white);
  font-weight: 800;
  line-height: 1.35;
}

.deadline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(52px, 6vw, 82px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(143, 64, 72, 0.96), rgba(15, 107, 102, 0.82)),
    var(--wine-dark);
}

.deadline h2,
.deadline p {
  color: var(--white);
}

.deadline h2 {
  max-width: 760px;
}

.request-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.75fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.request-copy {
  max-width: 680px;
}

.request-note {
  display: grid;
  gap: 8px;
  margin-top: 30px;
  border-left: 3px solid var(--gold);
  border-radius: 0 18px 18px 0;
  padding-left: 18px;
  color: var(--muted);
}

.request-note strong {
  color: var(--ink);
}

.lead-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--glass-line);
  border-radius: 30px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--glass);
  box-shadow: var(--glass-shadow), var(--inner-glow);
  -webkit-backdrop-filter: blur(28px) saturate(1.22);
  backdrop-filter: blur(28px) saturate(1.22);
}

.honeypot {
  display: none;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--glass-line);
  border-radius: 16px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.38);
  font: inherit;
  box-shadow: var(--inner-glow);
}

body.dark-theme .lead-form input,
body.dark-theme .lead-form select {
  background: rgba(255, 255, 255, 0.08);
}

.lead-form input:focus,
.lead-form select:focus {
  outline: 3px solid rgba(15, 107, 102, 0.18);
  border-color: var(--teal);
}

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

.site-footer {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--ink);
}

.footer-content {
  position: relative;
  max-width: 760px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 34px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(12, 14, 13, 0.18);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(24px) saturate(1.18);
  backdrop-filter: blur(24px) saturate(1.18);
}

.footer-image,
.footer-overlay {
  position: absolute;
  inset: 0;
}

.footer-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-overlay {
  background:
    linear-gradient(90deg, rgba(10, 12, 11, 0.86), rgba(10, 12, 11, 0.58) 44%, rgba(10, 12, 11, 0.18)),
    linear-gradient(0deg, rgba(10, 12, 11, 0.76), rgba(10, 12, 11, 0.06) 58%);
}

.footer-content h2,
.footer-content p {
  color: var(--white);
}

.footer-content > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 23px);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 30px;
}

.footer-phone {
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 1050px) {
  .occasion-grid,
  .steps,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-item,
  .case-item.reverse,
  .value-section,
  .request-section {
    grid-template-columns: 1fr;
  }

  .case-item.reverse .case-video {
    order: 0;
  }

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

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 26px;
  }

  .nav,
  .header-phone {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-top: 124px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(10, 12, 11, 0.88), rgba(10, 12, 11, 0.28)),
      linear-gradient(90deg, rgba(10, 12, 11, 0.68), rgba(10, 12, 11, 0.24));
  }

  .hero-proof span {
    width: 100%;
  }

  .occasion-grid,
  .steps,
  .testimonial-grid,
  .memory-band {
    grid-template-columns: 1fr;
  }

  .occasion-card,
  .steps li {
    min-height: auto;
  }

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

  .button,
  .hero-actions,
  .deadline-actions,
  .footer-actions {
    width: 100%;
  }
}
