:root{
  --bg: #FAF9F6;
  --text: #1A1A1A;
  --muted: #636363;
  --accent: #D4A373;
  --accent-dark: #AD7A4B;
  --card: #FFFFFF;
  --white: #FFFFFF;
  --border: #EAE7E2;
  --shadow: 0 10px 24px rgba(0,0,0,0.08);
  --radius: 14px;

  --hdr-control-h: 40px;
  --hdr-radius: 10px;
  --hdr-font: 15px;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
}

p {
  color: var(--muted);
  font-size: 1rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.hero-layout,
.why-layout,
.how-layout,
.examples-layout {
  padding: 56px 20px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 18px;
}

.hero-description {
  max-width: 560px;
  font-size: 1.08rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-content,
.why-layout-container,
.how-layout-container,
.examples-container {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.hero-content {
  padding: 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hero-trust {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #8a8174;
}

.primary-btn,
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

.primary-btn {
  background: var(--accent);
  color: #fff;
}

.primary-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

.hero-focus-image {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 12px;
}

.hero-focus-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.why-layout-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 24px;
}

.why-title,
.examples-title,
.how-it-works-title {
  font-family: "Playfair Display", serif;
}

.why-title {
  font-size: 2rem;
  margin-bottom: 14px;
}

.why-description {
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 22px;
}

.why-image-style {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.how-layout-container,
.examples-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 24px;
}

.how-it-works-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

.how-it-works-description,
.examples-intro,
.trust-copy {
  max-width: 700px;
  margin: 0 auto 20px;
  color: var(--muted);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.how-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  text-align: center;
}

.how-step-card {
  display: grid;
  place-items: center;
  min-height: 180px;
}

.how-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #f2dfc7;
  color: #8a5a2f;
  font-weight: 700;
}

.how-step-card h3 {
  margin-top: 14px;
  margin-bottom: 0;
  max-width: 260px;
  font-size: 1.08rem;
}

.examples-title {
  font-size: 2rem;
  margin-bottom: 10px;
}

.custom-page {
  max-width: 1120px;
  margin: 24px auto;
  padding: 0 16px 28px;
  display: grid;
  gap: 16px;
}

.custom-intro {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.custom-intro h1 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  color: var(--accent-dark);
}

.custom-intro p {
  margin: 0;
  max-width: 760px;
}

.custom-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 20px;
}

.custom-card-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 20px;
  align-items: start;
}

.custom-example {
  display: grid;
  gap: 12px;
}

.example-title {
  margin: 0;
  font-family: "Playfair Display", serif;
  color: var(--accent-dark);
}

.example-subtext {
  margin: 0 0 4px;
}

.example-card {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 8px;
}

.example-img {
  width: 100%;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.example-caption {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.custom-form {
  min-width: 0;
}

.custom-form form {
  display: grid;
  gap: 14px;
}

.form-group {
  display: grid;
  gap: 6px;
}

.form-group > label,
.form-group > legend {
  font-weight: 700;
  color: #2f241f;
}

.form-group select,
.form-group input[type="file"],
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="number"],
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.form-group small,
.muted {
  color: var(--muted);
}

.radio-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.margin-top-8px {
  margin-top: 8px;
}

.material-disclaimer {
  border: 1px solid #ecd9bd;
  background: #fff8ec;
  color: #6a553f;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.94rem;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.submit-btn {
  border: 0;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 700;
  cursor: pointer;
}

.submit-btn:hover {
  background: var(--accent-dark);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  margin-top: 24px;
}

.footer-text {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .hero-inner,
  .why-layout-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .custom-card-grid {
    grid-template-columns: 1fr;
  }

  .hero-description,
  .why-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-content,
  .how-layout-container,
  .examples-container,
  .why-layout-container {
    padding: 20px;
  }

  .hero-focus-image img {
    height: 300px;
  }
}

@media (max-width: 640px) {
  .hero-layout,
  .why-layout,
  .how-layout,
  .examples-layout {
    padding: 34px 14px;
  }

  .custom-page {
    margin: 16px auto;
    padding: 0 12px 18px;
  }

  .custom-card,
  .custom-intro {
    padding: 14px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .primary-btn,
  .btn {
    width: 100%;
    text-align: center;
  }
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body.home-page {
  overflow-x: hidden;
  font-size: 15px;
  background: #faf6ef;
}

.home-page .page-wrapper {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 24px;
  padding: 0 16px 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.home-page .hero-layout,
.home-page .why-layout,
.home-page .how-layout,
.home-page .examples-layout,
.home-page .love-layout,
.home-page .quick-proof,
.home-page .story-layout {
  padding: 0;
}

.home-page .hero-layout,
.home-page .how-layout,
.home-page .why-layout,
.home-page .trust-layout,
.home-page .story-layout {
  grid-column: 1 / -1;
}

.home-page .quick-proof {
  grid-column: 1 / 2;
}

.home-page .love-layout {
  grid-column: 2 / 3;
}

.home-page .story-layout-container {
  border: 1px solid #e6d8c3;
  border-radius: 14px;
  background: #fff;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 22px;
  align-items: stretch;
}

.home-page .story-col {
  min-width: 0;
}

.home-page .story-col-left {
  padding: 10px 6px;
}

.home-page .story-title {
  margin: 0 0 14px;
  color: #2f241f;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.2;
  text-align: center;
}

.home-page .story-col-left .story-copy + .story-title {
  margin-top: 40px;
}

.home-page .story-copy {
  margin: 0 0 18px;
  color: #5e4f42;
  line-height: 1.65;
  font-size: 1rem;
}

.home-page .story-col-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.home-page .hero-layout.hero-banner {
  background: url("../images/cover-photo-4.png") center center / cover no-repeat;
  min-height: 420px;
  padding: 16px;
  border: 1px solid #e6d8c3;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}

.home-page .hero-inner {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
}

.home-page .hero-content {
  width: min(100%, 680px);
  padding: 22px;
  border-radius: 14px;
  border: 1px solid #e8ddcf;
  background: rgba(255, 251, 246, 0.95);
  box-shadow: 0 12px 28px rgba(34, 23, 12, 0.12);
  text-align: center;
}

.home-page .hero-title {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.12;
  margin-bottom: 10px;
  color: #2f241f;
}

.home-page .hero-description {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #5e4f42;
}

.home-page .hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.home-page .hero-buttons .primary-btn,
.home-page .hero-buttons .btn {
  width: auto;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.95rem;
}

.home-page .hero-trust {
  margin-top: 10px;
  font-size: 0.93rem;
  color: #6f5e54;
}

.home-page .hero-note {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 0.93rem;
  color: #6f6254;
}

.home-page .hero-focus-image {
  display: none;
}

.home-page .quick-proof {
  padding: 0;
}

.home-page .quick-proof p {
  max-width: 100%;
  margin: 0;
  padding: 18px;
  border: 1px solid #e6d8c3;
  border-radius: 14px;
  background: #fff;
  font-size: 1rem;
  line-height: 1.6;
  color: #4f4237;
  text-align: left;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.home-page .how-layout,
.home-page .love-layout,
.home-page .why-layout,
.home-page .examples-layout {
  padding: 0;
}

.home-page .how-layout-container,
.home-page .love-layout-container,
.home-page .why-layout-container,
.home-page .examples-container {
  max-width: 100%;
  margin: 0;
  padding: 18px;
  border: 1px solid #e6d8c3;
  border-radius: 14px;
  background: #fff;
}

.home-page .love-layout-container {
  height: 100%;
}

.home-page .how-it-works-title,
.home-page .why-title,
.home-page .examples-title {
  text-align: center;
  color: #b07a4f;
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 2.7vw, 2.2rem);
}

.home-page .how-it-works-description,
.home-page .why-description,
.home-page .examples-intro,
.home-page .trust-copy {
  text-align: center;
  color: #5e4f42;
  margin: 0 auto 14px;
  max-width: 760px;
}

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

.offer-card {
  background: #fffdf9;
  border: 1px solid #e6d8c3;
  border-radius: 12px;
  padding: 0 0 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  text-align: center;
  overflow: hidden;
}

.offer-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  display: block;
}

.offer-card h3 {
  padding: 0 12px;
  margin: 12px 0 6px;
  font-size: 1.3rem;
  font-family: "Playfair Display", serif;
  color: #2f241f;
}

.offer-card p {
  padding: 0 12px;
  margin: 0 auto 14px;
  max-width: 280px;
  color: #6f5e54;
}

.home-page .trust-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.home-page .trust-list li {
  background: #fffaf2;
  border: 1px solid #e6d8c3;
  border-radius: 10px;
  padding: 10px 12px;
  text-align: left;
  color: #3f352b;
}

.home-page .trust-list li::before {
  content: "✔ ";
  color: var(--accent-dark);
  font-weight: 700;
}

.home-page .why-layout-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: center;
}

.home-page .why-layout-container > div:first-child {
  text-align: center;
}

.home-page .why-layout-container .primary-btn {
  display: inline-block;
  margin: 0 auto;
}

.home-page .urgency {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 0.93rem;
  color: #7a6147;
  font-weight: 600;
}

@media (max-width: 960px) {
  .home-page .page-wrapper {
    grid-template-columns: 1fr;
  }

  .home-page .quick-proof,
  .home-page .love-layout {
    grid-column: 1 / -1;
  }

  .home-page .story-layout-container {
    grid-template-columns: 1fr;
  }

  .home-page .story-col-image img {
    min-height: 320px;
    max-height: 420px;
  }

  .home-page .hero-layout.hero-banner {
    padding: 12px;
    min-height: 360px;
    margin-top: -2px;
  }

  .home-page .hero-inner {
    min-height: 300px;
  }

  .home-page .hero-content {
    width: 100%;
    max-width: 620px;
    padding: 16px;
  }

  .home-page .quick-proof p {
    text-align: left;
  }

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

  .home-page .why-layout-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .home-page .page-wrapper {
    margin: 0 auto 16px;
    padding: 0 12px 16px;
    gap: 16px;
  }

  .home-page .hero-title {
    font-size: 1.75rem;
  }

  .home-page .hero-buttons .primary-btn,
  .home-page .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

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

  .offer-card img {
    height: 280px;
  }

  .home-page .quick-proof p {
    padding: 12px;
    font-size: 0.95rem;
  }
}
