@font-face {
  font-family: "Prompt";
  src: url("Font/Prompt/Prompt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Prompt";
  src: url("Font/Prompt/Prompt-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Prompt";
  src: url("Font/Prompt/Prompt-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #fffaf7;
  --surface: #ffffff;
  --surface-strong: #f7ede9;
  --ink: #191615;
  --muted: #756b67;
  --stamp: #b61f2c;
  --stamp-deep: #841622;
  --line-green: #1fa463;
  --line-green-deep: #147b49;
  --pink: #f3b8c7;
  --gold: #b58a48;
  --line: #eaded8;
  --shadow: 0 24px 70px rgba(53, 30, 24, 0.14);
  --soft-shadow: 0 14px 34px rgba(53, 30, 24, 0.1);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(243, 184, 199, 0.28), transparent 34rem),
    linear-gradient(180deg, #fffdfb 0%, var(--paper) 42%, #ffffff 100%);
  color: var(--ink);
  font-family: "Prompt", Arial, sans-serif;
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 32px, var(--max));
  margin: 14px auto 0;
  padding: 12px 14px 12px 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(234, 222, 216, 0.86);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(25, 22, 21, 0.06);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: var(--soft-shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(53, 30, 24, 0.08);
}

.brand-mark img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.76rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #4b423f;
  font-size: 0.94rem;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--stamp);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 600;
}

.nav-cta {
  background: var(--ink);
  color: #fff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 92px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - 82px);
  padding-top: 70px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--stamp);
  font-size: 0.9rem;
  font-weight: 700;
}

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

h1 {
  max-width: 730px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 6vw, 5.6rem);
  line-height: 1.04;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 4vw, 3.35rem);
  line-height: 1.15;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.35;
}

.hero-lead,
.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-lead {
  max-width: 650px;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn.primary {
  background: var(--stamp);
  color: #fff;
  box-shadow: 0 16px 30px rgba(182, 31, 44, 0.2);
}

.btn.primary:hover {
  background: var(--stamp-deep);
}

.btn.secondary {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}

.btn.line {
  background: var(--line-green);
  color: #fff;
  box-shadow: 0 16px 30px rgba(31, 164, 99, 0.18);
}

.btn.line:hover {
  background: var(--line-green-deep);
}

.trust-row {
  color: var(--muted);
  font-size: 0.94rem;
}

.trust-row span {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-visual {
  position: relative;
}

.stamp-board {
  position: relative;
  overflow: hidden;
  padding: 18px;
  background: linear-gradient(145deg, #ffffff, #f7ece8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}

.stamp-preview {
  position: absolute;
  right: 28px;
  bottom: 34px;
  display: grid;
  place-items: center;
  width: 172px;
  height: 172px;
  color: var(--stamp);
  background: rgba(255, 255, 255, 0.75);
  border: 5px double var(--stamp);
  border-radius: 50%;
  transform: rotate(-12deg);
  text-align: center;
  box-shadow: 0 18px 40px rgba(132, 22, 34, 0.16);
}

.stamp-preview span {
  font-size: 0.74rem;
  font-weight: 700;
}

.stamp-preview strong {
  font-size: 1.7rem;
}

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

.split-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 42px;
  align-items: start;
}

.split-section .section-heading {
  margin-bottom: 0;
}

.rich-copy {
  padding: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.rich-copy p:last-child {
  margin-bottom: 0;
}

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

.feature-card,
.package-card,
.process-step,
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(53, 30, 24, 0.06);
}

.feature-card {
  min-height: 255px;
  padding: 24px;
}

.card-number {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--gold);
  font-weight: 700;
}

.feature-card p,
.package-card p,
.process-step p,
.faq-answer p {
  color: var(--muted);
}

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

.portfolio-item {
  overflow: hidden;
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.portfolio-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--surface-strong);
}

.portfolio-item figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-actions {
  display: flex;
  margin-top: 22px;
}

.package-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 20px;
  align-items: stretch;
}

.package-image {
  overflow: hidden;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

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

.package-list {
  display: grid;
  gap: 14px;
}

.package-card {
  padding: 26px;
}

.process-step {
  padding: 24px;
}

.process-step span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 20px;
  background: var(--surface-strong);
  color: var(--stamp);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  padding: 20px 22px;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 600;
  text-align: left;
}

.faq-item button::after {
  content: "+";
  float: right;
  color: var(--stamp);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item.is-open button::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 64px;
  padding: 44px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.final-cta .eyebrow {
  color: var(--pink);
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 12px;
}

.final-cta p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.cta-stack {
  display: grid;
  min-width: 260px;
  gap: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 26px 0 34px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer div {
  display: flex;
  gap: 18px;
}

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

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

@media (max-width: 920px) {
  .site-nav {
    gap: 14px;
    font-size: 0.88rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    max-width: 560px;
  }

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

  .portfolio-grid,
  .split-section,
  .package-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--soft-shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 8px;
  }

  .nav-cta {
    margin-top: 4px;
  }

  .section {
    padding: 70px 0;
  }

  .hero {
    padding-top: 54px;
  }
}

@media (max-width: 560px) {
  .site-header,
  .section,
  .site-footer {
    width: min(100% - 22px, var(--max));
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-actions,
  .final-cta,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .feature-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .portfolio-item img {
    aspect-ratio: 4 / 3;
  }

  .package-image img {
    min-height: 300px;
  }

  .stamp-preview {
    right: 18px;
    bottom: 24px;
    width: 126px;
    height: 126px;
  }

  .stamp-preview strong {
    font-size: 1.18rem;
  }

  .final-cta {
    padding: 28px;
  }

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

  .cta-stack {
    min-width: 0;
  }
}
