* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #281b17;
  --bg-soft: #34251f;
  --panel: #3e2d25;
  --text: #fff6ea;
  --muted: #d3bdab;
  --copper: #d99a5f;
  --rose: #c7837d;
  --gold: #e6c896;
  --cream: #fff6ea;
  --ink: #fff6ea;
  --line: rgba(255, 246, 234, 0.12);
  --line-light: rgba(255, 246, 234, 0.18);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
}

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.045;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 246, 234, 0.28) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(217, 154, 95, 0.14) 0 1px, transparent 1px);
  background-size: 8px 8px, 13px 13px;
}

.page-stitch {
  position: absolute;
  inset: 0 0 auto;
  z-index: 3;
  height: 100%;
  min-height: 3900px;
  overflow: hidden;
  pointer-events: none;
}

.page-stitch__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-stitch__guide {
  fill: none;
  stroke: transparent;
}

.page-stitch__marks {
  overflow: visible;
}

.page-stitch__mark {
  fill: none;
  stroke: var(--copper);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0.72) translateY(4px);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.page-stitch__mark::selection {
  background: transparent;
}

.page-stitch__mark.is-visible {
  opacity: 0.86;
  transform: scale(1) translateY(0);
}

.page-stitch__mark--shadow {
  stroke: rgba(0, 0, 0, 0.22);
  stroke-width: 9;
  transform: translateY(5px);
  opacity: 0;
}

.page-stitch__mark--shadow.is-visible {
  opacity: 0.5;
}

.page-stitch__needle {
  position: absolute;
  left: var(--needle-x, 0px);
  top: var(--needle-y, 0px);
  z-index: 1;
  width: 74px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff6ea, #a87950 45%, #fff6ea);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translate(-50%, -50%) rotate(var(--needle-rotation, -10deg));
}

.page-stitch__needle span {
  position: absolute;
  right: 8px;
  top: 50%;
  width: 12px;
  height: 3px;
  border-radius: 999px;
  background: rgba(40, 27, 23, 0.58);
  transform: translateY(-50%);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(40, 27, 23, 0.72);
  color: var(--text);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: grid;
  gap: 2px;
  flex: 0 0 auto;
}

.brand-top {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 3.3vw, 42px);
  font-weight: 700;
  line-height: 0.9;
}

.brand-bottom {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  color: rgba(255, 246, 234, 0.8);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a,
.footer-links a {
  transition: color 0.2s ease;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--gold);
}

.header-button,
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-button {
  padding: 0 22px;
  background: rgba(255, 246, 234, 0.07);
  border: 1px solid rgba(255, 246, 234, 0.18);
  color: var(--text);
}

.btn {
  padding: 0 28px;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--copper), #e3ad72);
  color: #fff;
  box-shadow: 0 22px 48px rgba(217, 154, 95, 0.26);
}

.btn-secondary {
  background: rgba(255, 246, 234, 0.06);
  border: 1px solid rgba(255, 246, 234, 0.16);
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 96vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 132px 0 86px;
  background:
    linear-gradient(90deg, rgba(40, 27, 23, 0.98) 0%, rgba(40, 27, 23, 0.88) 48%, rgba(40, 27, 23, 0.34) 100%),
    radial-gradient(circle at 14% 18%, rgba(217, 154, 95, 0.28), transparent 34%),
    radial-gradient(circle at 82% 35%, rgba(199, 131, 125, 0.24), transparent 32%),
    linear-gradient(135deg, #33211b 0%, #281b17 58%, #1f1411 100%);
  color: var(--text);
}

.hero,
.story-section,
.process-section,
.showcase-section,
.quote-section,
.cta-section,
.site-footer {
  position: relative;
}

.hero-inner,
.story-grid,
.process-inner,
.showcase-section > .container,
.quote-section > .container,
.cta-inner,
.footer-inner {
  position: relative;
  z-index: 4;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--bg-soft));
  pointer-events: none;
  z-index: 3;
}

.hero-collage-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.hero-collage-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(40, 27, 23, 0.42), transparent 54%),
    radial-gradient(circle at 78% 44%, rgba(230, 200, 150, 0.12), transparent 32%);
  pointer-events: none;
  z-index: 2;
}

.hero-collage {
  position: absolute;
  top: -110px;
  right: clamp(18px, 4vw, 64px);
  width: min(720px, 52vw);
  height: calc(100% + 220px);
  display: flex;
  gap: 20px;
  transform: rotate(-5deg) translateX(3%);
  opacity: 0.86;
}

.collage-column {
  overflow: hidden;
}

.collage-track,
.collage-sequence {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.collage-track {
  gap: 0;
  animation: drift 30s linear infinite;
  will-change: transform;
}

.collage-sequence {
  padding-bottom: 20px;
}

.column-2 {
  margin-top: 120px;
}

.column-2 .collage-track {
  animation-duration: 38s;
}

.collage-column img,
.collage-fallback {
  width: clamp(210px, 18vw, 278px);
  height: clamp(270px, 24vw, 350px);
  flex: 0 0 auto;
  object-fit: cover;
  border: 1px solid rgba(255, 246, 234, 0.16);
  border-radius: 8px;
  box-shadow: 0 32px 74px rgba(0, 0, 0, 0.34);
}

.collage-column img {
  background: rgba(255, 246, 234, 0.92);
  padding: 10px 10px 28px;
  filter: sepia(0.08) saturate(0.96) brightness(0.98);
}

.collage-panel {
  position: relative;
}

.collage-panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 1;
  border: 1px dashed rgba(230, 200, 150, 0.42);
  border-radius: 4px;
  pointer-events: none;
}

.collage-panel--swatch {
  transform: translateX(8px);
}

.collage-panel--swatch img {
  background:
    linear-gradient(135deg, rgba(255, 246, 234, 0.95), rgba(230, 200, 150, 0.78));
  padding: 14px;
  border-color: rgba(230, 200, 150, 0.26);
}

.collage-panel--memory {
  transform: translateX(-10px);
}

.collage-panel--photo img {
  padding-bottom: 34px;
  background: rgba(255, 246, 234, 0.96);
}

.collage-panel--rose img {
  border-color: rgba(199, 131, 125, 0.34);
  box-shadow: 0 34px 76px rgba(199, 131, 125, 0.16), 0 28px 60px rgba(0, 0, 0, 0.28);
}

.collage-fallback {
  position: relative;
  display: grid;
  place-items: end start;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(62, 45, 37, 0.96), rgba(52, 37, 31, 0.92)),
    repeating-linear-gradient(45deg, rgba(217, 154, 95, 0.14) 0 8px, rgba(199, 131, 125, 0.12) 8px 16px);
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  line-height: 1;
}

.collage-fallback::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(230, 200, 150, 0.58);
  border-radius: 4px;
  pointer-events: none;
}

@keyframes drift {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

.hero-inner {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  min-height: calc(96vh - 218px);
}

.hero-content {
  max-width: 710px;
  padding-bottom: 20px;
}

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
}

h1 {
  max-width: 780px;
  font-size: clamp(60px, 7.6vw, 108px);
  font-weight: 700;
}

.hero-description {
  max-width: 590px;
  margin-top: 26px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.75;
}

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

.hero-reassurance {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255, 246, 234, 0.78);
  font-size: 0.98rem;
  line-height: 1.6;
}

.hero-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 650px;
  margin-top: 42px;
}

.detail-box {
  min-height: 128px;
  padding: 20px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: rgba(255, 246, 234, 0.07);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.15);
}

.detail-box span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
}

.detail-box p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.story-section,
.process-section,
.showcase-section,
.cta-section {
  padding: clamp(82px, 10vw, 132px) 0;
}

.story-section {
  background:
    radial-gradient(circle at 16% 35%, rgba(217, 154, 95, 0.14), transparent 30%),
    var(--bg-soft);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 100px);
  align-items: center;
}

.story-media {
  position: relative;
  min-height: 560px;
}

.story-media-main,
.story-media-small,
.showcase-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.story-media-main {
  position: absolute;
  inset: 34px auto auto 0;
  width: 74%;
}

.story-media-small {
  position: absolute;
  inset: auto 0 24px auto;
  width: 47%;
}

.story-media img {
  width: 100%;
  object-fit: cover;
}

.story-media-main img {
  height: 520px;
}

.story-media-small img {
  height: 300px;
}

.story-content {
  max-width: 630px;
}

.story-content h2,
.section-heading h2,
.cta-inner h2 {
  font-size: clamp(44px, 6.5vw, 82px);
}

.story-content p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.process-section {
  background: #2f201b;
}

.process-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(34px, 7vw, 80px);
}

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

.process-list {
  display: grid;
  gap: 16px;
}

.process-list article {
  padding: 26px;
  border-left: 4px solid var(--copper);
  border-radius: 8px;
  background: rgba(255, 246, 234, 0.06);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.process-list span,
.quote-box span {
  color: var(--rose);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.process-list h3 {
  margin-top: 12px;
  font-size: clamp(30px, 4vw, 42px);
}

.process-list p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
}

.showcase-section {
  background: var(--bg-soft);
}

.finished-preview-section,
.home-helpful-section,
.home-message-section {
  padding: clamp(64px, 8vw, 104px) 0;
  background: #2f201b;
}

.finished-preview-section {
  background: var(--bg-soft);
}

.finished-preview-section .section-heading {
  margin-bottom: 30px;
}

.finished-preview-section .section-heading p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

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

.finished-preview-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(62, 45, 37, 0.72);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.finished-preview-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.finished-preview-action {
  margin-top: 24px;
}

.home-helpful-section .section-heading {
  margin-bottom: 30px;
}

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

.home-helpful-grid a {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 246, 234, 0.06);
  color: var(--text);
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.home-helpful-grid a:hover {
  border-color: rgba(217, 154, 95, 0.52);
  color: var(--gold);
}

.showcase-section .section-heading {
  margin-bottom: 46px;
}

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

.showcase-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.3);
}

.showcase-image {
  aspect-ratio: 4 / 3;
  background: #241815;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.showcase-card:hover img {
  transform: scale(1.04);
}

.showcase-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.showcase-content h3 {
  font-size: clamp(32px, 3.5vw, 42px);
}

.showcase-content p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.showcase-content a {
  margin-top: auto;
  padding-top: 24px;
  color: var(--gold);
  font-weight: 800;
}

.quote-section {
  isolation: isolate;
  overflow: hidden;
  padding: clamp(64px, 8vw, 96px) 0;
  background:
    linear-gradient(rgba(40, 27, 23, 0.66), rgba(40, 27, 23, 0.66)),
    url("/images/review-bg.jpg");
  background-size: cover;
  background-position: center;
  color: var(--cream);
}

.quote-box {
  width: min(820px, 100%);
  margin: 0 auto;
}

.quote-stars {
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}

.quote-box blockquote {
  margin: 14px 0 0;
  overflow-wrap: anywhere;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.04;
}

.quote-attribution {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  margin-top: 22px;
}

.quote-label {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
}

.quote-attribution cite {
  color: var(--muted);
  font-style: normal;
}

.cta-section {
  background:
    radial-gradient(circle at 82% 24%, rgba(199, 131, 125, 0.2), transparent 28%),
    var(--bg);
}

.cta-inner {
  max-width: 940px;
  text-align: center;
}

.cta-inner h2 {
  margin-bottom: 34px;
}

.site-footer {
  padding: 46px 0;
  background: #1f1411;
  color: var(--text);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-inner h3 {
  font-size: 32px;
}

.footer-inner p,
.footer-links {
  color: rgba(255, 246, 234, 0.72);
}

.footer-links {
  display: flex;
  gap: 24px;
  font-weight: 700;
}

@media (max-width: 1050px) {
  .hero {
    background:
      linear-gradient(90deg, rgba(40, 27, 23, 0.98), rgba(40, 27, 23, 0.76)),
      linear-gradient(135deg, #33211b 0%, #281b17 100%);
  }

  .hero-collage {
    right: -150px;
    width: 660px;
    opacity: 0.26;
  }

  .hero-inner {
    min-height: calc(92vh - 160px);
  }

  .story-grid,
  .process-inner,
  .showcase-grid,
  .finished-preview-grid,
  .home-helpful-grid {
    grid-template-columns: 1fr;
  }

  .process-inner {
    gap: 34px;
  }
}

@media (min-width: 761px) and (max-width: 1050px) {
  .hero {
    min-height: 92vh;
    padding: 120px 0 76px;
  }

  .hero-content {
    max-width: 680px;
  }

  h1 {
    max-width: 720px;
    font-size: clamp(58px, 9vw, 88px);
  }

  .hero-details {
    max-width: 600px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-bottom {
    letter-spacing: 0.24em;
  }

  .header-button {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 96px 0 54px;
  }

  h1 {
    font-size: clamp(3rem, 13vw, 4.4rem);
    line-height: 0.95;
    letter-spacing: 0;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-description {
    margin-top: 18px;
    line-height: 1.58;
  }

  .hero-collage {
    top: 78px;
    right: -128px;
    width: min(440px, 92vw);
    height: 720px;
    opacity: 0.16;
  }

  .collage-column img,
  .collage-fallback {
    width: 190px;
    height: 245px;
  }

  .page-stitch {
    opacity: 0.28;
  }

  .page-stitch__needle {
    display: none;
  }

  .page-stitch__mark {
    stroke-width: 4;
  }

  .hero-actions,
  .hero-details {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 24px;
  }

  .btn,
  .detail-box {
    width: 100%;
  }

  .hero-reassurance {
    margin-top: 13px;
    font-size: 0.94rem;
  }

  .story-media {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .story-media-main,
  .story-media-small {
    position: static;
    width: 100%;
  }

  .story-media-main img,
  .story-media-small img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .showcase-content {
    padding: 24px;
  }

  .footer-inner,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(var(--container), calc(100% - 22px));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-top {
    font-size: 30px;
  }

  .brand-bottom {
    font-size: 9px;
    letter-spacing: 0.2em;
  }

  .hero {
    padding: 86px 0 48px;
  }

  h1 {
    font-size: clamp(2.75rem, 12.5vw, 3.75rem);
    line-height: 0.96;
    letter-spacing: 0;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.56;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-details {
    gap: 9px;
    margin-top: 24px;
  }

  .detail-box {
    min-height: auto;
    padding: 14px 16px;
  }

  .detail-box span {
    margin-bottom: 6px;
    font-size: 29px;
  }

  .detail-box p {
    font-size: 13px;
  }

  .hero-collage {
    top: 115px;
    right: -132px;
    width: 350px;
    height: 560px;
    opacity: 0.08;
  }

  .collage-sequence {
    gap: 14px;
    padding-bottom: 14px;
  }

  .collage-column img,
  .collage-fallback {
    width: 152px;
    height: 198px;
  }

  .story-section,
  .process-section,
  .showcase-section,
  .finished-preview-section,
  .cta-section,
  .home-helpful-section,
  .home-message-section {
    padding: 62px 0;
  }

  .story-content h2,
  .section-heading h2,
  .cta-inner h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .process-list article,
  .showcase-content {
    padding: 20px;
  }

  .quote-section {
    padding: 56px 0;
  }

  .quote-box blockquote {
    font-size: clamp(32px, 10vw, 48px);
  }

  .quote-attribution {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .page-stitch {
    display: none;
  }

  .footer-links {
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .page-stitch__needle {
    display: none;
  }

  .collage-track {
    animation: none !important;
    transform: none !important;
  }
}
