:root {
  --bg: #f4ede2;
  --bg-deep: #e3d5c2;
  --surface: rgba(255, 248, 239, 0.68);
  --surface-strong: rgba(55, 39, 29, 0.9);
  --text: #2b2119;
  --muted: #6f5c4a;
  --line: rgba(73, 51, 36, 0.15);
  --accent: #8f6e50;
  --accent-soft: #d4bc9c;
  --shadow: 0 24px 60px rgba(53, 36, 24, 0.12);
  --radius: 28px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top, rgba(255, 251, 246, 0.94), transparent 30%),
    linear-gradient(180deg, #f7f0e7 0%, var(--bg) 38%, #efe2d0 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.26), transparent 30%),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22), transparent 24%);
  opacity: 0.7;
}

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

.site-header,
.section,
.site-footer,
.trust-strip {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand-note,
.site-nav a,
.eyebrow,
.trust-strip p,
.detail-items p,
.faq-list p,
.text-link,
.button,
.feature-list,
.trust-points {
  font-size: 0.95rem;
}

.brand-note,
.site-nav a,
.trust-strip p,
.section-lead,
.faq-list p,
.panel p,
.detail-items p,
.consultation p,
.site-footer p,
.hero-text,
.feature-list,
.quotes blockquote {
  color: var(--muted);
}

.site-nav {
  display: flex;
  gap: 1.3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  background: var(--text);
  color: #f9f3eb;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  background: #3b2c20;
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(43, 33, 25, 0.18);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 249, 242, 0.7);
}

.hero {
  width: min(calc(100% - 2rem), 1320px);
  margin: 0 auto;
  min-height: calc(100svh - 5rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  padding: 2rem 0 4rem;
  align-items: center;
}

.page-hero {
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  gap: 1.5rem;
  align-items: start;
}

.page-hero-card,
.pricing-card,
.order-form-shell,
.order-summary {
  border: 1px solid rgba(73, 51, 36, 0.12);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.page-hero-card,
.pricing-card,
.order-summary {
  border-radius: 1.8rem;
  padding: 1.6rem;
}

.page-hero-card {
  align-self: stretch;
}

.hero-copy {
  max-width: 38rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin: 0 0 1rem;
}

h1,
h2,
h3,
.quotes blockquote {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.95;
  margin: 0;
}

h1 {
  font-size: clamp(3.3rem, 6vw, 6.3rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  max-width: 12ch;
}

h3 {
  font-size: 1.8rem;
}

.hero-text,
.section-lead,
.panel p,
.consultation p,
.testimonials .quotes blockquote,
.faq-list p {
  line-height: 1.75;
}

.hero-text {
  font-size: 1.08rem;
  max-width: 35rem;
  margin: 1.4rem 0 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.trust-points {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  color: var(--muted);
}

.trust-points li::before,
.feature-list li::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.55rem;
}

.hero-media {
  position: relative;
  min-height: 42rem;
  display: grid;
  place-items: center;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.hero-orb-one {
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(224, 199, 169, 0.92), rgba(224, 199, 169, 0.06) 72%);
  top: 2rem;
  right: 1rem;
}

.hero-orb-two {
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(116, 86, 58, 0.22), rgba(116, 86, 58, 0.04) 72%);
  bottom: 5rem;
  left: 0;
}

.hero-panel {
  position: relative;
  width: min(100%, 34rem);
  aspect-ratio: 0.92;
  border-radius: 3rem;
  background:
    linear-gradient(155deg, rgba(255, 249, 240, 0.84), rgba(206, 183, 155, 0.58)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(73, 49, 34, 0.08));
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent 35%),
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.38), transparent 18%);
}

.urn-silhouette {
  position: absolute;
  inset: 16% 19% 12%;
  border-radius: 45% 45% 26% 26% / 36% 36% 20% 20%;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 246, 233, 0.78), transparent 28%),
    linear-gradient(180deg, #8c6646 0%, #c99f74 28%, #f1dcc1 54%, #a67853 100%);
  box-shadow:
    inset 0 16px 28px rgba(255, 255, 255, 0.38),
    inset 0 -28px 34px rgba(69, 43, 27, 0.28);
}

.urn-silhouette::before {
  content: "";
  position: absolute;
  inset: 16% 18% 24%;
  border-radius: 50% 50% 44% 44%;
  background:
    radial-gradient(circle at 50% 30%, rgba(71, 49, 32, 0.8), transparent 38%),
    radial-gradient(circle at 52% 64%, rgba(245, 223, 195, 0.75), transparent 34%);
  opacity: 0.75;
  mix-blend-mode: multiply;
}

.hero-detail-card {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem 1.1rem;
  max-width: 13rem;
  border-radius: 1.2rem;
  background: rgba(41, 28, 20, 0.84);
  color: #f7eee2;
  box-shadow: 0 10px 30px rgba(25, 16, 11, 0.2);
}

.hero-detail-card span {
  font-size: 0.8rem;
  color: rgba(247, 238, 226, 0.76);
}

.hero-detail-card strong {
  line-height: 1.35;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.1rem 0 1.6rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip p {
  margin: 0;
}

.section {
  padding: 6.5rem 0;
}

.section-heading {
  display: grid;
  gap: 0.9rem;
}

.intro,
.display-section,
.impact-section,
.consultation {
  display: grid;
  gap: 1.5rem;
}

.section-lead {
  font-size: 1.1rem;
  max-width: 52rem;
  margin: 0;
}

.steps,
.detail-items,
.quotes,
.faq-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.order-section,
.pricing-section {
  border-top: 1px solid var(--line);
}

.pricing-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.pricing-label {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  color: var(--accent);
}

.pricing-amount {
  margin: 1rem 0;
  font-size: 1.8rem;
  color: var(--text);
  font-weight: 700;
}

.order-steps article,
.pricing-section .detail-items article {
  background: rgba(255, 250, 244, 0.78);
}

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

.steps article,
.detail-items article,
.quotes blockquote,
.faq-list details,
.panel,
.phone-frame {
  border: 1px solid rgba(73, 51, 36, 0.12);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.steps article,
.detail-items article,
.panel,
.faq-list details {
  border-radius: 1.6rem;
  padding: 1.5rem;
}

.steps article span {
  display: inline-flex;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.steps article p,
.detail-items article p {
  line-height: 1.7;
  margin-bottom: 0;
}

.dual-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.panel {
  min-height: 24rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(180deg, rgba(255, 251, 246, 0.18), rgba(74, 46, 28, 0.04)),
    var(--surface);
}

.panel h2 {
  max-width: 9ch;
}

.panel a,
.text-link {
  color: var(--text);
  width: fit-content;
  border-bottom: 1px solid rgba(43, 33, 25, 0.35);
  padding-bottom: 0.1rem;
}

.memorial-layer {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.memorial-visual {
  display: grid;
  place-items: center;
}

.phone-frame {
  border-radius: 2.8rem;
  padding: 0.9rem;
  width: min(100%, 22rem);
}

.phone-screen {
  min-height: 32rem;
  border-radius: 2.1rem;
  padding: 2rem 1.5rem;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.26), transparent 26%),
    linear-gradient(180deg, #2e2119 0%, #534031 55%, #a07f5e 100%);
  color: #f8efe2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.phone-screen p {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: rgba(248, 239, 226, 0.72);
}

.phone-screen strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  line-height: 0.95;
}

.screen-stack {
  display: grid;
  gap: 0.8rem;
}

.screen-stack span {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 248, 241, 0.12);
  border: 1px solid rgba(255, 248, 241, 0.14);
}

.detail-items {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.impact-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.quotes blockquote {
  margin: 0;
  padding: 1.8rem;
  border-radius: 1.6rem;
  font-size: 1.8rem;
  line-height: 1.1;
  color: var(--text);
}

.faq-list details {
  transition: background 180ms ease;
}

.faq-list details[open] {
  background: rgba(255, 250, 244, 0.92);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 0.9rem 0 0;
}

.consultation {
  text-align: center;
  justify-items: center;
}

.consultation h2 {
  max-width: 11ch;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 0 3rem;
}

.footer-links {
  display: grid;
  gap: 0.8rem;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.order-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.5rem;
  align-items: start;
}

.order-form-shell {
  border-radius: 2rem;
  padding: 2rem;
}

.order-form {
  margin-top: 2rem;
  display: grid;
  gap: 1.4rem;
}

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

.order-form label,
.full-width {
  display: grid;
  gap: 0.55rem;
}

.order-form label span,
.upload-title,
.summary-list span,
.summary-total span {
  font-size: 0.9rem;
  color: var(--muted);
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(73, 51, 36, 0.14);
  background: rgba(255, 252, 248, 0.84);
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
}

.order-form textarea {
  resize: vertical;
}

.upload-panel {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 1.4rem;
  background: rgba(255, 250, 244, 0.7);
  border: 1px solid rgba(73, 51, 36, 0.08);
}

.upload-title {
  margin: 0 0 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.upload-copy,
.summary-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.upload-dropzone {
  position: relative;
  min-height: 10rem;
  border-radius: 1.4rem;
  border: 1px dashed rgba(73, 51, 36, 0.24);
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.5rem;
  background: rgba(255, 252, 249, 0.76);
  cursor: pointer;
}

.upload-dropzone input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-dropzone strong {
  font-size: 1.05rem;
}

.upload-dropzone span {
  color: var(--muted);
}

.upload-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
}

.upload-preview p {
  margin: 0;
  color: var(--muted);
}

.upload-thumb {
  border-radius: 1rem;
  padding: 0.9rem;
  background: rgba(255, 252, 248, 0.86);
  border: 1px solid rgba(73, 51, 36, 0.08);
}

.upload-thumb strong,
.summary-list strong,
.summary-total strong {
  display: block;
  color: var(--text);
}

.upload-thumb span {
  color: var(--muted);
  font-size: 0.85rem;
}

.checkout-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.order-summary {
  position: sticky;
  top: 6rem;
}

.summary-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.summary-list div,
.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(73, 51, 36, 0.1);
}

.summary-total {
  align-items: end;
  margin-bottom: 1rem;
}

@media (max-width: 1100px) {
  .site-header,
  .hero,
  .memorial-layer,
  .detail-items,
  .steps,
  .quotes,
  .dual-panels,
  .site-footer,
  .pricing-grid,
  .order-layout,
  .page-hero,
  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .site-header {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .hero,
  .memorial-layer,
  .order-layout,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 1rem;
  }

  .hero-media {
    order: -1;
    min-height: 32rem;
  }

  .trust-strip,
  .steps,
  .detail-items,
  .quotes,
  .dual-panels,
  .site-footer,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-header,
  .section,
  .site-footer,
  .trust-strip,
  .hero,
  .page-hero {
    width: min(calc(100% - 1.25rem), 100%);
  }

  .site-nav {
    gap: 0.8rem 1rem;
  }

  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.6rem;
  }

  .trust-strip,
  .steps,
  .detail-items,
  .quotes,
  .dual-panels,
  .site-footer,
  .pricing-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    border-radius: 2rem;
  }

  .hero-media {
    min-height: 24rem;
  }

  .urn-silhouette {
    inset: 14% 16% 14%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .checkout-actions .button {
    width: 100%;
  }

  .phone-screen {
    min-height: 28rem;
  }

  .section {
    padding: 4.5rem 0;
  }

  .site-footer {
    text-align: left;
  }

  .footer-links {
    text-align: left;
  }
}
