:root {
  --cream: #fbf6ef;
  --paper: #fffaf4;
  --blush: #e8c7bd;
  --rose: #bd7b70;
  --wine: #5b2f34;
  --ink: #2e2424;
  --muted: #746565;
  --sage: #73806a;
  --line: rgba(91, 47, 52, 0.14);
  --shadow: 0 24px 70px rgba(91, 47, 52, 0.14);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(232, 199, 189, 0.55), transparent 34rem),
    linear-gradient(180deg, var(--cream), #fff 48%, var(--paper));
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(91, 47, 52, 0.08);
  background: rgba(251, 246, 239, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(91, 47, 52, 0.16);
}

.brand span.brand-mark {
  display: grid;
  place-items: center;
  background: var(--wine);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a:hover,
.nav a[aria-current="page"],
.header-cta:hover {
  color: var(--wine);
}

.nav a[aria-current="page"] {
  position: relative;
}

.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--rose);
}

.header-cta {
  color: var(--rose);
  font-weight: 800;
}

.mobile-nav {
  display: none;
}

.section-shell {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  min-height: calc(100svh - 78px);
  padding: 72px 0;
}

.hero-card {
  margin-top: 18px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--wine);
  line-height: 1.05;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 7vw, 5.95rem);
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.hero-text {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--wine);
  font-weight: 800;
  text-align: center;
  box-shadow: 0 10px 24px rgba(91, 47, 52, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(91, 47, 52, 0.14);
}

.button.primary {
  border-color: var(--wine);
  background: var(--wine);
  color: #fff;
}

.button.secondary {
  background: transparent;
}

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

.hero-proof span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-card,
.link-card,
.package-card,
.step-card,
.budget-card,
.process-row,
.split-panel,
.values article,
.comparison-grid article,
.contact-form,
.contact-note,
.guide-card,
.article-card,
.article-index,
details {
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.82);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.hero-card:not(.photo-card) {
  padding: 36px;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -90px -120px auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(189, 123, 112, 0.22);
}

.photo-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.photo-card-content {
  position: relative;
  padding: 28px 30px 32px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.94), rgba(255, 250, 244, 0.82));
}

.card-topline,
.package-label {
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.hero-card p,
.link-card p,
.package-card p,
.step-card p,
.budget-card p,
.page-hero p,
.about-hero p,
.process-row p,
.split-panel p,
.values p,
.comparison-grid p,
.contact-copy p,
.contact-note p,
.status-page p,
.guide-card p,
.article-shell p,
.faq p,
.intro p,
.section-heading p {
  color: var(--muted);
}

ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  margin-top: 12px;
  padding-left: 26px;
  color: var(--muted);
}

li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rose);
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: end;
  padding: 48px 0 84px;
}

.intro > p {
  margin: 0;
  font-size: 1.18rem;
}

.steps,
.home-links,
.packages,
.budget,
.process,
.comparison,
.values,
.contact-layout,
.seo-content,
.guide-list,
.faq,
.final-cta {
  padding: 72px 0;
}

.page-hero {
  max-width: 980px;
  padding: 92px 0 32px;
  text-align: center;
}

.page-hero h1 {
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
}

.page-hero p {
  max-width: 760px;
  margin: 26px auto 0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: 72px 0;
}

.about-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
}

.about-hero p {
  max-width: 700px;
  margin: 26px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.about-hero img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 10px);
  box-shadow: var(--shadow);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.steps-grid,
.home-links,
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.home-links {
  grid-template-columns: repeat(2, 1fr);
}

.link-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 42%);
  grid-template-rows: auto auto 1fr auto;
  overflow: hidden;
  min-height: 280px;
  gap: 18px;
  border-radius: 24px;
  padding: 0;
}

.link-card img {
  grid-column: 2;
  grid-row: 1 / -1;
  width: 100%;
  height: 100%;
  min-height: 280px;
  margin: 0;
  object-fit: cover;
}

.link-card > :not(img) {
  margin-right: 0;
  margin-left: 28px;
}

.link-card span {
  margin-top: 28px;
  color: var(--rose);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
}

.link-card .text-link {
  margin-bottom: 28px;
}

.featured-link {
  background: var(--wine);
}

.featured-link img {
  opacity: 0.82;
}

.featured-link h3,
.featured-link p,
.featured-link span,
.featured-link .text-link {
  color: #fff;
}

.text-link {
  color: var(--wine);
  font-weight: 900;
}

.text-link::after {
  content: " ->";
}

.step-card,
.package-card {
  border-radius: 24px;
  padding: 28px;
}

.step-card span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--rose);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
}

.package-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.package-card.featured {
  background: var(--wine);
  color: #fff;
  transform: translateY(-18px);
}

.package-card.featured h2,
.package-card.featured h3,
.package-card.featured .price,
.package-card.featured p,
.package-card.featured li,
.package-card.featured .package-label {
  color: #fff;
}

.package-card.featured .package-button {
  border-color: #fffaf4;
  background: #fffaf4;
  color: var(--wine);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.package-card.featured .package-button:hover {
  background: #fff;
}

.package-card.featured li::before {
  background: var(--blush);
}

.package-card h3 {
  margin-top: 12px;
}

.package-card h2 {
  margin-top: 12px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}

.price {
  margin-top: 20px;
  color: var(--wine);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.package-button {
  width: 100%;
  margin-top: auto;
}

.package-card ul {
  margin-bottom: 28px;
}

.budget-card {
  overflow: hidden;
  padding: clamp(30px, 6vw, 64px);
  border-radius: calc(var(--radius) + 10px);
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.9), rgba(232, 199, 189, 0.5)),
    var(--paper);
}

.budget-card p {
  max-width: 760px;
  font-size: 1.18rem;
}

.budget-card .button {
  margin-top: 16px;
}

.seo-content {
  max-width: 940px;
  text-align: center;
}

.seo-content p:last-child {
  max-width: 820px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.16rem;
}

.image-feature img {
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.image-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding: 72px 0;
}

.image-feature.reversed img {
  order: 2;
}

.image-feature img {
  height: 520px;
  border-radius: calc(var(--radius) + 8px);
}

.image-feature p {
  color: var(--muted);
  font-size: 1.12rem;
}

.process {
  display: grid;
  gap: 18px;
}

.process-row {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) 260px;
  gap: 30px;
  align-items: center;
  overflow: hidden;
  border-radius: 24px;
  padding: 0 0 0 clamp(24px, 4vw, 38px);
}

.process-row img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  align-self: stretch;
}

.process-row span {
  color: var(--rose);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 0.9;
}

.process-row h2 {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.04em;
}

.split-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: end;
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(30px, 6vw, 62px);
}

.split-panel > p {
  margin: 0;
  font-size: 1.18rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.values article {
  border-radius: 24px;
  padding: 28px;
}

.values span {
  display: inline-block;
  margin-bottom: 38px;
  color: var(--rose);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding-top: 72px;
}

.contact-copy h1,
.status-page h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
}

.contact-copy > p,
.status-page > p {
  margin: 26px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.contact-note {
  margin-top: 32px;
  padding: 28px;
  border-radius: 24px;
}

.contact-note h2 {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.45rem;
}

.instagram-card {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 250, 244, 0.78);
  box-shadow: 0 14px 34px rgba(91, 47, 52, 0.1);
}

.instagram-icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 22%;
  background: url("instagram-icon.png") center / cover no-repeat;
  box-shadow: 0 12px 24px rgba(193, 53, 132, 0.22);
}

.instagram-card .instagram-icon {
  width: 64px;
  height: 64px;
}

.instagram-card strong,
.instagram-card small,
.footer-instagram span {
  display: block;
}

.instagram-card strong {
  color: var(--wine);
  font-size: 1.05rem;
}

.instagram-card small {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(24px, 4vw, 38px);
}

.guide-list {
  padding-top: 42px;
}

.guide-card {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(26px, 5vw, 54px);
  align-items: center;
  overflow: hidden;
  border-radius: calc(var(--radius) + 8px);
}

.guide-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.guide-card div {
  padding: 34px 42px 34px 0;
}

.guide-card .button {
  margin-top: 18px;
}

.article-shell {
  max-width: 920px;
  padding: 76px 0;
}

.article-header {
  text-align: center;
}

.article-header h1 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.article-header p {
  max-width: 760px;
  margin: 26px auto 0;
  font-size: 1.2rem;
}

.article-header img {
  width: 100%;
  height: 460px;
  margin-top: 38px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
}

.article-shell section,
.article-index {
  margin-top: 42px;
}

.article-shell h2 {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  letter-spacing: -0.04em;
}

.article-shell p {
  font-size: 1.08rem;
}

.article-card,
.article-index {
  border-radius: 24px;
  padding: clamp(24px, 4vw, 34px);
}

.article-index {
  display: grid;
  gap: 10px;
}

.article-index a,
.article-shell section a:not(.button) {
  color: var(--wine);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(189, 123, 112, 0.45);
  text-underline-offset: 4px;
}

.form-field,
.check-field {
  display: grid;
  gap: 8px;
}

.full-field,
.check-field,
.form-submit {
  grid-column: 1 / -1;
}

label {
  color: var(--wine);
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
}

input,
select {
  min-height: 52px;
  padding: 0 16px;
}

textarea {
  min-height: 150px;
  padding: 14px 16px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(189, 123, 112, 0.22);
  border-color: rgba(91, 47, 52, 0.38);
}

.check-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 600;
}

.check-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.hidden-field {
  display: none;
}

.status-page {
  min-height: 70svh;
  padding: 120px 0;
}

.comparison-grid article {
  border-radius: 24px;
  padding: 26px;
}

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

details {
  border-radius: 20px;
  padding: 22px 24px;
}

summary {
  cursor: pointer;
  color: var(--wine);
  font-weight: 900;
}

summary::marker {
  color: var(--rose);
}

.final-cta {
  text-align: center;
}

.final-cta h2 {
  max-width: 760px;
  margin: 0 auto 28px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--wine);
  font-weight: 900;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--wine);
  font-weight: 900;
}

@media (max-width: 920px) {
  .site-header {
    align-items: center;
    gap: 14px;
  }

  .nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
    margin-left: auto;
    border: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
    z-index: 30;
  }

  .mobile-nav summary {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    color: var(--wine);
    cursor: pointer;
    font-weight: 900;
    list-style: none;
    box-shadow: 0 10px 24px rgba(91, 47, 52, 0.08);
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-left: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
  }

  .mobile-nav[open] summary::after {
    transform: translateY(2px) rotate(225deg);
  }

  .mobile-nav div {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: grid;
    width: min(280px, calc(100vw - 28px));
    gap: 6px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 250, 244, 0.98);
    box-shadow: var(--shadow);
  }

  .mobile-nav a {
    padding: 11px 13px;
    border-radius: 14px;
    color: var(--muted);
    font-weight: 800;
  }

  .mobile-nav a[aria-current="page"] {
    background: rgba(91, 47, 52, 0.08);
    color: var(--wine);
  }

  .mobile-nav .mobile-nav-cta {
    margin-top: 4px;
    background: var(--wine);
    color: #fff;
    text-align: center;
  }

  .hero,
  .intro,
  .about-hero,
  .contact-layout,
  .guide-card,
  .split-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 46px 0 38px;
  }

  .hero-card {
    margin-top: 0;
  }

  .photo-card img {
    height: 300px;
  }

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

  .image-feature.reversed img {
    order: 0;
  }

  .image-feature img {
    height: 360px;
  }

  .steps-grid,
  .home-links,
  .values,
  .comparison-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .link-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto 1fr auto;
    padding: 0;
    min-height: auto;
  }

  .link-card img {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: 240px;
    min-height: 0;
    margin: 0;
  }

  .link-card > :not(img) {
    margin-right: 24px;
    margin-left: 24px;
  }

  .link-card span {
    margin-top: 0;
  }

  .link-card .text-link {
    margin-bottom: 24px;
  }

  .process-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
  }

  .process-row span,
  .process-row div {
    padding: 0 28px;
  }

  .process-row span {
    padding-top: 28px;
  }

  .process-row img {
    height: 260px;
  }

  .package-card.featured {
    transform: none;
  }
}

@media (max-width: 620px) {
  body {
    background:
      radial-gradient(circle at top left, rgba(232, 199, 189, 0.5), transparent 22rem),
      linear-gradient(180deg, var(--cream), #fff 48%, var(--paper));
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand span:last-child {
    max-width: 138px;
    line-height: 1.05;
  }

  .section-shell {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-text,
  .page-hero p,
  .about-hero p,
  .contact-copy > p,
  .status-page > p,
  .intro > p,
  .split-panel > p,
  .budget-card p {
    font-size: 1.02rem;
  }

  .hero-proof span {
    flex: 1 1 auto;
    text-align: center;
  }

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

  .button {
    min-height: 56px;
    padding: 0 18px;
  }

  .hero-card,
  .link-card,
  .step-card,
  .package-card,
  .process-row,
  .values article,
  .contact-form,
  .contact-note,
  .comparison-grid article,
  details {
    border-radius: 20px;
    padding: 22px;
  }

  .photo-card {
    padding: 0;
  }

  .photo-card img {
    height: 250px;
  }

  .photo-card-content {
    padding: 22px;
  }

  .hero-card::before {
    width: 180px;
    height: 180px;
  }

  .link-card img {
    height: 190px;
  }

  .link-card > :not(img) {
    margin-right: 22px;
    margin-left: 22px;
  }

  .link-card .text-link {
    margin-bottom: 22px;
  }

  .process-row span,
  .process-row div {
    padding: 0 22px;
  }

  .process-row span {
    padding-top: 22px;
  }

  .process-row img {
    height: 220px;
  }

  .price {
    font-size: 1.75rem;
  }

  .steps,
  .home-links,
  .packages,
  .budget,
  .process,
  .comparison,
  .values,
  .contact-layout,
  .seo-content,
  .guide-list,
  .image-feature,
  .faq,
  .final-cta {
    padding: 50px 0;
  }

  .image-feature img {
    height: 300px;
  }

  .page-hero {
    padding: 46px 0 12px;
  }

  .about-hero {
    padding: 46px 0 20px;
  }

  .about-hero img {
    height: 320px;
  }

  .contact-layout {
    padding-top: 46px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .status-page {
    padding: 70px 0;
  }

  .guide-card img,
  .article-header img {
    height: 300px;
  }

  .guide-card div {
    padding: 0 22px 24px;
  }

  .article-shell {
    padding: 48px 0;
  }

  .site-footer {
    flex-direction: column;
  }
}
