:root {
  --color-paper: #fbfbfb;
  --color-white: #fdfdfd;
  --color-cream: #f4f3f2;
  --color-evergreen: #04281b;
  --color-green: #1c3d2b;
  --color-muted: #b0b0a3;
  --color-gold: #c8840a;
  --color-gold-light: #e0a321;
  --color-border: #dfddd8;
  --font-heading: "DM Serif Display", Georgia, serif;
  --font-body: "Lato", Arial, sans-serif;
  --shadow-soft: 0 14px 34px rgba(4, 40, 27, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow-x: hidden;
  color: var(--color-evergreen);
  background: var(--color-paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-gold-light);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.12;
}

h2 {
  margin-bottom: 36px;
  font-size: clamp(2rem, 3.1vw, 2.5rem);
  text-align: center;
}

h3 {
  font-size: 1.2rem;
}

.container {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 24px;
  border: 1px solid var(--color-evergreen);
  border-radius: 7px;
  color: var(--color-white);
  background: var(--color-evergreen);
  box-shadow: 0 7px 15px rgba(4, 40, 27, 0.18);
  font-size: 15px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--color-green);
  box-shadow: 0 10px 22px rgba(4, 40, 27, 0.22);
}

.button svg {
  width: 19px;
  height: 19px;
}

.button-small {
  min-height: 44px;
  padding: 10px 20px;
}

.button-gold {
  border-color: var(--color-gold);
  background: var(--color-gold);
}

.button-gold:hover {
  background: #a96d04;
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid #e8e6e2;
  background: rgba(253, 253, 253, 0.98);
}

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

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 255px;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.4vw, 32px);
  font-size: 15px;
  font-weight: 600;
}

.primary-nav > a:not(.button) {
  position: relative;
  padding-block: 28px;
  white-space: nowrap;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a.active::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 40%, rgba(200, 132, 10, 0.08), transparent 18%),
    linear-gradient(115deg, #ffffff 0%, #fbfbfa 60%, #f4f3f2 100%);
}

.hero-grid {
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.25fr);
  align-items: center;
  gap: 48px;
  padding-block: 42px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  padding: 5px 12px;
  border: 1px solid #8a9b91;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.eyebrow svg {
  width: 14px;
  height: 14px;
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--color-evergreen);
  font-size: clamp(2.75rem, 4.7vw, 4rem);
}

.hero h1 span,
.connected h2 span {
  color: var(--color-gold);
}

.hero-intro {
  max-width: 640px;
  margin-bottom: 28px;
  color: #26372f;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}

.tour-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
}

.play-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-green);
  border-radius: 50%;
}

.play-icon svg {
  width: 17px;
  height: 17px;
}

.hero-product {
  position: relative;
}

.hero-product::before {
  position: absolute;
  inset: 8% -5% -8% 8%;
  z-index: -1;
  border-radius: 50%;
  content: "";
  background: rgba(28, 61, 43, 0.08);
  filter: blur(30px);
}

.hero-product img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.workflow {
  padding: 72px 0 66px;
  border-top: 1px solid #ebe9e5;
  background: var(--color-white);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}

.workflow-item {
  position: relative;
  text-align: center;
}

.workflow-item:not(:last-child)::after {
  position: absolute;
  top: 50px;
  left: calc(50% + 42px);
  width: calc(100% - 60px);
  border-top: 1px dashed #547064;
  content: "";
}

.step {
  position: relative;
  z-index: 2;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  margin: 0 auto -8px;
  border-radius: 50%;
  color: white;
  background: var(--color-evergreen);
  font-size: 13px;
  font-weight: 700;
}

.workflow-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border: 1px solid #ded8cd;
  border-radius: 50%;
  background: white;
}

.workflow-icon img {
  width: 42px;
  max-height: 42px;
  object-fit: contain;
}

.workflow-item h3 {
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
}

.workflow-item p {
  margin-bottom: 0;
  color: #435249;
  font-size: 14px;
  line-height: 1.45;
}

.modules {
  padding: 26px 0 78px;
  background: var(--color-white);
}

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

.module-card {
  min-height: 205px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 28px 18px 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.module-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  color: var(--color-evergreen);
}

.module-icon img,
.module-icon svg {
  max-width: 44px;
  max-height: 44px;
}

.module-card h3 {
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
}

.module-card p {
  margin-bottom: 0;
  color: #4c5952;
  font-size: 14px;
}

.results {
  position: relative;
  overflow: hidden;
  padding: 62px 0;
  color: white;
  background:
    radial-gradient(circle at 5% 18%, rgba(224, 163, 33, 0.65) 0 2px, transparent 3px),
    radial-gradient(circle at 91% 23%, rgba(224, 163, 33, 0.8) 0 2px, transparent 3px),
    radial-gradient(circle at 20% 85%, rgba(224, 163, 33, 0.7) 0 1px, transparent 3px),
    linear-gradient(110deg, #063f2c, #003524 70%, #064331);
  background-size: 180px 160px, 220px 190px, 250px 220px, auto;
}

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

.result-card {
  min-width: 0;
  padding: 0 34px;
  text-align: center;
}

.result-card + .result-card {
  border-left: 1px solid rgba(224, 163, 33, 0.65);
}

.result-number {
  margin-bottom: 4px;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1;
}

.result-label {
  max-width: 190px;
  min-height: 48px;
  margin: 0 auto 10px;
  font-size: 15px;
  line-height: 1.35;
}

.rating {
  width: 82px;
  margin: 0 auto 14px;
}

.result-card blockquote {
  margin-bottom: 7px;
  font-size: 14px;
  line-height: 1.45;
}

.result-card cite {
  color: #e4e7e5;
  font-size: 13px;
  font-style: normal;
}

.connected {
  padding: 76px 0 70px;
  background: var(--color-white);
}

.connected-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.35fr;
  align-items: center;
  gap: 60px;
}

.connected h2 {
  margin-bottom: 14px;
  text-align: left;
}

.connected-copy > p {
  margin-bottom: 22px;
  color: #46554d;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.check-list svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  margin-top: 2px;
}

.network {
  display: grid;
  grid-template-columns: 145px 1fr 142px 1fr 160px;
  align-items: center;
  gap: 8px;
}

.network-column {
  display: grid;
  gap: 12px;
}

.network-column span {
  padding: 8px 12px;
  border: 1px solid #d8d8d2;
  border-radius: 999px;
  background: white;
  box-shadow: 0 3px 8px rgba(4, 40, 27, 0.05);
  font-size: 13px;
  text-align: center;
}

.network-lines {
  height: 145px;
  background: repeating-linear-gradient(to bottom, transparent 0 17px, #7f958b 18px 19px, transparent 20px 36px);
  clip-path: polygon(0 0, 100% 27%, 100% 73%, 0 100%);
  opacity: 0.8;
}

.network-lines.reverse {
  transform: scaleX(-1);
}

.network-badge {
  width: 142px;
  filter: drop-shadow(0 10px 12px rgba(4, 40, 27, 0.2));
}

.platform-action {
  padding: 0 0 72px;
  background: var(--color-white);
}

.platform-action h2 {
  margin-bottom: 24px;
}

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

.action-grid figure {
  margin-bottom: 0;
}

.action-grid img {
  width: 100%;
  aspect-ratio: 2.55 / 1;
  object-fit: cover;
  border: 1px solid #d7dbd8;
  border-radius: 7px;
  box-shadow: 0 6px 12px rgba(4, 40, 27, 0.14);
}

.action-grid figcaption {
  padding-top: 10px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.case-study {
  padding: 46px 0;
  border-top: 1px solid #e6e3de;
  background: linear-gradient(110deg, #fbfaf8, #fff);
}

.case-study-inner {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 170px;
  align-items: center;
  gap: 34px;
}

.portrait {
  width: 150px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}

.customer-quote {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.quote-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  color: var(--color-gold);
  fill: currentColor;
  stroke: none;
}

.customer-quote blockquote {
  margin-bottom: 7px;
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.45;
}

.customer-quote cite {
  font-size: 13px;
  font-style: normal;
}

.customer-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.customer-logo {
  width: 160px;
  justify-self: end;
}

.closing-cta {
  padding: 28px 0;
  color: white;
  background: linear-gradient(105deg, #00452f, #003423);
}

.cta-inner {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.cta-inner > img {
  width: 56px;
}

.cta-copy h2 {
  margin-bottom: 4px;
  color: white;
  font-size: 28px;
  text-align: left;
}

.cta-copy p,
.cta-action p {
  margin-bottom: 0;
}

.cta-copy p {
  max-width: 600px;
  color: #e0e9e4;
  font-size: 14px;
}

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

.cta-action p {
  margin-top: 7px;
  color: #dfe7e3;
  font-size: 13px;
}

.site-footer {
  color: #dbe3df;
  background: #022b1e;
}

.footer-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 10px;
  font-size: 13px;
}

.footer-inner a {
  color: white;
  font-family: var(--font-heading);
  font-size: 17px;
}

.footer-inner p {
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 1100px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 14px;
  }

  .primary-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px 22px;
  }

  .primary-nav > a:not(.button) {
    padding-block: 8px;
  }

  .primary-nav > a:not(.button)::after {
    bottom: 2px;
  }

  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
  }

  .workflow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 24px;
  }

  .workflow-item::after {
    visibility: hidden;
  }

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

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

  .network {
    max-width: 760px;
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 850px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding-block: 64px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-product {
    width: 100%;
  }

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

  .result-card {
    padding: 28px;
  }

  .result-card + .result-card {
    border-left: 0;
  }

  .result-card:nth-child(even) {
    border-left: 1px solid rgba(224, 163, 33, 0.65);
  }

  .result-card:nth-child(n + 3) {
    border-top: 1px solid rgba(224, 163, 33, 0.65);
  }

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

  .case-study-inner {
    grid-template-columns: 120px 1fr;
  }

  .portrait {
    width: 120px;
  }

  .customer-logo {
    grid-column: 2;
    justify-self: start;
  }

  .cta-inner {
    grid-template-columns: 56px 1fr;
  }

  .cta-action {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  h2 {
    margin-bottom: 28px;
    font-size: 2rem;
  }

  .brand img {
    width: 220px;
  }

  .primary-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .primary-nav .button {
    grid-column: 1 / -1;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 52px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.35rem);
  }

  .hero-intro {
    font-size: 16px;
  }

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

  .tour-link {
    justify-content: center;
  }

  .workflow {
    padding-block: 58px;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .workflow-item p {
    max-width: 330px;
    margin-inline: auto;
  }

  .modules {
    padding-bottom: 58px;
  }

  .module-grid,
  .results-grid,
  .action-grid {
    grid-template-columns: 1fr;
  }

  .module-card {
    min-height: 0;
  }

  .result-card:nth-child(even) {
    border-left: 0;
  }

  .result-card + .result-card {
    border-top: 1px solid rgba(224, 163, 33, 0.65);
  }

  .connected {
    padding-block: 58px;
  }

  .network {
    grid-template-columns: 1fr 108px 1fr;
    gap: 12px;
  }

  .network-lines {
    display: none;
  }

  .network-badge {
    width: 108px;
  }

  .network-column span {
    padding: 7px 6px;
    font-size: 11px;
  }

  .platform-action {
    padding-bottom: 58px;
  }

  .case-study-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .portrait,
  .customer-logo {
    justify-self: center;
  }

  .customer-logo {
    grid-column: auto;
  }

  .customer-quote {
    flex-direction: column;
    align-items: center;
  }

  .customer-stats {
    justify-content: center;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-inner > img,
  .cta-action {
    grid-column: auto;
    justify-self: center;
  }

  .cta-copy h2 {
    text-align: center;
  }

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

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
.postcards-page {
  background: var(--color-paper);
}

.postcards-hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(90deg, #fff 0%, #fff 48%, #eee7dd 48%, #d7b788 100%);
}

.postcards-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.97) 46%, rgba(255,255,255,.4) 58%, transparent 76%);
}

.postcards-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 430px;
  display: flex;
  align-items: center;
  padding-block: 40px;
}

.postcards-hero-copy {
  width: 62%;
  max-width: 640px;
}

.postcards-hero h1 {
  margin-bottom: 20px;
  color: var(--color-evergreen);
  font-size: clamp(2.3rem, 3.5vw, 2.85rem);
  white-space: nowrap;
}

.postcards-hero h1 span {
  color: var(--color-gold);
}

.postcards-hero-copy > p {
  max-width: 470px;
  margin-bottom: 24px;
  color: #2d3c34;
  font-size: 16px;
}

.postcards-hero-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 470px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.postcards-hero-points li {
  min-width: 0;
  padding: 0 14px;
  border-right: 1px solid var(--color-border);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.postcards-hero-points li:first-child {
  padding-left: 0;
}

.postcards-hero-points li:last-child {
  padding-right: 0;
  border-right: 0;
}

.postcards-hero-points img {
  width: 34px;
  height: 34px;
  margin: 0 auto 10px;
  object-fit: contain;
}

.postcards-chart-icon {
  stroke-width: 2;
  color: var(--color-evergreen);
}

.postcards-chart-icon-gold {
  color: var(--color-gold);
}

.postcards-hero-points .postcards-chart-icon {
  width: 30px;
  height: 30px;
  margin: 0 auto 10px;
}

.postcards-process-icon .postcards-chart-icon {
  width: 38px;
  height: 38px;
}

.postcards-value-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
}

.postcards-hero-actions,
.postcards-closing-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.postcards-tour-link,
.postcards-closing-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.postcards-tour-link span,
.postcards-closing-link span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.postcards-tour-link svg,
.postcards-closing-link svg {
  width: 15px;
  height: 15px;
}

.postcards-hero-art {
  position: absolute;
  inset: 0 0 0 42%;
  z-index: 1;
  overflow: hidden;
  background:
    repeating-linear-gradient(2deg, rgba(75,45,18,.07) 0 1px, transparent 1px 26px),
    linear-gradient(120deg, #c79b68, #dcbb8c 45%, #b98a55);
}

.postcards-hero-art::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.55) 8%, transparent 22%);
}

.postcards-hero-glow {
  position: absolute;
  width: 560px;
  height: 400px;
  left: 12%;
  top: 4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,186,53,.22), transparent 66%);
  filter: blur(6px);
}

.postcards-hero-card {
  position: absolute;
  width: min(30vw, 340px);
  border-radius: 6px;
  box-shadow: 0 24px 42px rgba(36, 25, 14, .35);
}

.postcards-hero-card-front {
  top: 46px;
  left: 3%;
  z-index: 3;
  transform: rotate(-7deg);
}

.postcards-hero-card-back {
  width: min(27vw, 310px);
  left: 42%;
  top: 22px;
  z-index: 2;
  transform: rotate(4deg);
}

.postcards-hero-decoration {
  position: absolute;
  z-index: 4;
  left: 2%;
  bottom: 14%;
  width: min(38vw, 400px);
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(40, 26, 8, 0.28));
}

.postcards-benefit-band {
  padding: 24px 0;
  background: var(--color-white);
}

.postcards-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.postcards-benefit-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 20px rgba(4,40,27,.07);
}

.postcards-benefit-card img {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  object-fit: contain;
}

.postcards-benefit-card h3 {
  margin-bottom: 3px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
}

.postcards-benefit-card p {
  margin: 0;
  color: #45544c;
  font-size: 14px;
}

.postcards-process {
  padding: 34px 0 36px;
  background: var(--color-white);
}

.postcards-process h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.postcards-process h2::before,
.postcards-process h2::after {
  width: 34px;
  height: 2px;
  content: "";
  background: var(--color-gold);
}

.postcards-process-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}

.postcards-process-card {
  position: relative;
  padding: 0;
  border: 0;
  background: none;
  text-align: center;
}

.postcards-process-card:not(:last-child)::after {
  position: absolute;
  top: 48px;
  left: calc(50% + 40px);
  width: calc(100% - 56px);
  border-top: 1px dashed #9aa79f;
  content: "";
}

.postcards-step {
  position: absolute;
  top: -6px;
  left: calc(50% + 20px);
  z-index: 3;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--color-evergreen);
  font-size: 12px;
  font-weight: 700;
}

.postcards-process-icon {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border: 1px solid #d9d2c6;
  border-radius: 50%;
  background: #fff;
}

.postcards-process-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.postcards-process-card h3 {
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
}

.postcards-process-card p {
  margin: 0 auto;
  max-width: 150px;
  color: #4b5851;
  font-size: 13px;
  line-height: 1.45;
}

.postcards-designs {
  padding: 34px 0 38px;
  border-block: 1px solid #e7e3dc;
  background: var(--color-white);
}

.postcards-designs h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 26px;
}

.postcards-designs h2::before,
.postcards-designs h2::after {
  width: 34px;
  height: 2px;
  content: "";
  background: var(--color-gold);
}

.postcards-section-heading-action {
  position: relative;
}

.postcards-section-heading-action > a {
  position: absolute;
  top: 10px;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
}

.postcards-section-heading-action > a svg {
  width: 16px;
  height: 16px;
}

.postcards-design-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.postcards-design-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(4,40,27,.1);
}

.postcards-design-card img {
  width: 100%;
  aspect-ratio: 1.75 / 1;
  object-fit: cover;
}

.postcards-design-card figcaption {
  min-height: 50px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.postcards-showcase {
  padding: 40px 0;
  background: var(--color-cream);
}

.postcards-showcase-grid {
  display: grid;
  align-items: start;
  gap: 20px;
}

.postcards-showcase-grid-top {
  grid-template-columns: 1fr 1.15fr 1fr;
  margin-bottom: 20px;
}

.postcards-showcase-grid-bottom {
  grid-template-columns: .9fr 1.3fr;
}

.postcards-showcase-card {
  position: relative;
  overflow: hidden;
  padding: 22px 20px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 25px rgba(4,40,27,.07);
}

.postcards-showcase-copy {
  text-align: center;
}

.postcards-showcase-card h2 {
  margin-bottom: 6px;
  font-size: 24px;
}

.postcards-showcase-card p {
  margin-bottom: 16px;
  color: #4a5850;
  font-size: 15px;
}

.postcards-showcase-card > img {
  width: 100%;
  border: 1px solid #dfe2df;
  border-radius: 6px;
  box-shadow: 0 7px 18px rgba(4,40,27,.1);
}

.postcards-card-link {
  display: block;
  width: fit-content;
  margin: 20px 0 0 auto;
  color: var(--color-evergreen);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.postcards-value-section {
  padding: 40px 0 44px;
  background: var(--color-white);
}

.postcards-value-grid {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 1.15fr;
  gap: 20px;
}

.postcards-value-card,
.postcards-testimonial-card {
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
}

.postcards-value-card > img {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  object-fit: contain;
}

.postcards-value-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.postcards-value-card p {
  color: #4c5952;
  font-size: 15px;
}

.postcards-value-card ul {
  display: grid;
  gap: 7px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.postcards-value-card li {
  position: relative;
  padding-left: 22px;
}

.postcards-value-card li::before {
  position: absolute;
  left: 0;
  color: var(--color-evergreen);
  content: "✓";
  font-weight: 700;
}

.postcards-testimonial-card {
  background: linear-gradient(145deg, #fff, #f7f5f1);
}

.postcards-testimonial-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.postcards-testimonial-portrait {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
}

.postcards-testimonial-quote {
  width: 30px;
  margin-top: 4px;
}

.postcards-testimonial-card blockquote {
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.45;
}

.postcards-testimonial-card p {
  margin-bottom: 3px;
  color: #4b5851;
  font-size: 14px;
}

.postcards-testimonial-card .postcards-testimonial-name {
  color: var(--color-evergreen);
  font-weight: 700;
}

.postcards-testimonial-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
  font-size: 13px;
  font-weight: 700;
}

.postcards-closing {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 6% 78%, rgba(255,190,70,.30), transparent 20%),
    radial-gradient(circle at 95% 30%, rgba(255,190,70,.24), transparent 20%),
    linear-gradient(105deg, #003f2b, #002d20);
}

.postcards-closing-decoration {
  position: absolute;
  z-index: 0;
  bottom: -14px;
  width: min(16vw, 220px);
  pointer-events: none;
}

.postcards-closing-decoration-left {
  left: -10px;
}

.postcards-closing-decoration-right {
  right: -10px;
  transform: scaleX(-1);
}

.postcards-closing-inner {
  position: relative;
  z-index: 1;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding-block: 34px;
}

.postcards-closing h2 {
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.7rem);
  text-align: left;
}

.postcards-closing p {
  margin: 0;
  color: #dce7e2;
  font-size: 17px;
}

.postcards-closing-link {
  color: #fff;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .postcards-hero-copy {
    width: 62%;
  }

  .postcards-hero-art {
    inset-left: 52%;
  }

  .postcards-benefit-grid,
  .postcards-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .postcards-process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 20px;
  }

  .postcards-process-card:not(:last-child)::after {
    display: none;
  }

  .postcards-showcase-grid-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .postcards-showcase-grid-top .postcards-showcase-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 850px) {
  .postcards-hero,
  .postcards-hero-inner {
    min-height: 760px;
  }

  .postcards-hero {
    background: #fff;
  }

  .postcards-hero::after {
    background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,.98) 56%, rgba(255,255,255,.3) 78%, transparent 100%);
  }

  .postcards-hero-inner {
    align-items: flex-start;
    padding-top: 60px;
  }

  .postcards-hero-copy {
    width: 100%;
    max-width: 700px;
  }

  .postcards-hero-art {
    inset: 55% 0 0;
  }

  .postcards-hero-card-front {
    width: 390px;
    top: 35px;
    left: 12%;
  }

  .postcards-hero-card-back {
    width: 300px;
    right: 7%;
    bottom: 30px;
  }

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

  .postcards-showcase-grid-top,
  .postcards-showcase-grid-bottom {
    grid-template-columns: 1fr;
  }

  .postcards-showcase-grid-top .postcards-showcase-card:last-child {
    grid-column: auto;
  }

  .postcards-closing-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .postcards-hero,
  .postcards-hero-inner {
    min-height: 880px;
  }

  .postcards-hero h1 {
    font-size: clamp(2.65rem, 12vw, 3.45rem);
  }

  .postcards-hero h1 br {
    display: none;
  }

  .postcards-hero-copy > p {
    font-size: 16px;
  }

  .postcards-hero-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 0;
  }

  .postcards-hero-points li:nth-child(2) {
    border-right: 0;
  }

  .postcards-hero-art {
    inset-top: 64%;
  }

  .postcards-hero-card-front {
    width: 76vw;
    top: 38px;
    left: 4%;
  }

  .postcards-hero-card-back {
    width: 55vw;
    right: 1%;
    bottom: 38px;
  }

  .postcards-benefit-grid,
  .postcards-process-grid,
  .postcards-design-grid,
  .postcards-value-grid {
    grid-template-columns: 1fr;
  }

  .postcards-process,
  .postcards-designs,
  .postcards-showcase,
  .postcards-value-section {
    padding-block: 76px;
  }

  .postcards-section-heading-action > a {
    position: static;
    justify-content: center;
    margin: -18px auto 30px;
  }

  .postcards-showcase-card {
    padding: 24px 16px;
  }

  .postcards-showcase-card h2 {
    font-size: 25px;
  }

  .postcards-closing-decoration {
    width: 180px;
    opacity: .6;
  }

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

  .postcards-closing-link {
    justify-content: center;
  }
}
/* === hero consistency: match mockups (H1 ~43px + pine) === */
[class*="hero"] h1 { font-size: clamp(2.25rem, 3vw, 2.75rem) !important; line-height: 1.12 !important; }

.hero-pine-branch { position:absolute; top:30px; left:-8px; width:68px; height:auto; z-index:0; opacity:0.92; pointer-events:none; }
