:root {
  --brand-brown: #5b3f32;
  --brand-brown-dark: #3f2b23;
  --brand-cream: #f8f1e7;
  --brand-cream-soft: #fffaf3;
  --brand-tan: #d8b98c;
  --brand-muted: #76675f;
  --brand-border: rgba(91, 63, 50, 0.16);
}

.branding-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 82vh;
  padding: 5rem 7vw;
  background: linear-gradient(135deg, var(--brand-cream), #fff);
}

.branding-hero__content {
  max-width: 680px;
}

.eyebrow {
  color: var(--brand-brown);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.branding-hero h1,
.branding-section h2,
.customization-section h2,
.print-feature h2,
.sharing-section h2,
.branding-showcase h2,
.event-fit h2,
.branding-process h2,
.branding-cta h2,
.branding-intro h2 {
  color: var(--brand-brown-dark);
  font-family: "Alike", serif;
}

.branding-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.hero-copy {
  color: var(--brand-muted);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

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

.brand-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
}

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

.brand-btn-primary:hover {
  background: var(--brand-brown-dark);
  color: #fff;
  transform: translateY(-2px);
}

.brand-btn-secondary {
  border: 1px solid var(--brand-border);
  color: var(--brand-brown);
  background: rgba(255, 255, 255, 0.65);
}

.brand-btn-secondary:hover {
  background: #fff;
  color: var(--brand-brown-dark);
  transform: translateY(-2px);
}

.branding-hero__image img,
.print-feature img,
.showcase-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(63, 43, 35, 0.14);
  transition: transform 0.35s ease;
}

.branding-hero__image img {
  aspect-ratio: 1919 / 1079;
  object-fit: cover;
}

.showcase-grid img {
  aspect-ratio: 1400 / 900;
  object-fit: cover;
}

.showcase-grid figure:nth-child(1) img,
.showcase-grid figure:nth-child(2) img {
  aspect-ratio: 1919 / 1079;
}

.branding-hero__image img:hover,
.print-feature img:hover,
.showcase-grid img:hover {
  transform: scale(1.015);
}

.branding-intro {
  padding: 4rem 1rem 2rem;
}

.intro-card {
  background: var(--brand-cream-soft);
  border: 1px solid var(--brand-border);
  border-radius: 28px;
  padding: clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}

.intro-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}

.intro-card p {
  max-width: 850px;
  margin: 0 auto;
  color: var(--brand-muted);
  line-height: 1.8;
}

.branding-section,
.customization-section,
.branding-showcase,
.event-fit,
.branding-cta,
.sharing-section {
  max-width: 1400px;
}

.branding-section,
.customization-section,
.branding-showcase,
.event-fit,
.branding-cta,
.sharing-section {
  padding: 4rem 1rem;
}

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

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 0.75rem;
}

.section-heading p {
  color: var(--brand-muted);
  line-height: 1.7;
}

.branding-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.branding-card,
.customization-card,
.sharing-card,
.process-steps div {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.branding-card:hover,
.customization-card:hover,
.sharing-card:hover,
.process-steps div:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(63, 43, 35, 0.12);
  border-color: rgba(91, 63, 50, 0.25);
}

.branding-card {
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: 0 12px 30px rgba(63, 43, 35, 0.06);
}

.branding-card h3 {
  color: var(--brand-brown-dark);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.branding-card p {
  color: var(--brand-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.customization-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.customization-card {
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 12px 30px rgba(63, 43, 35, 0.06);
}

.customization-card h3 {
  color: var(--brand-brown-dark);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.customization-card p {
  color: var(--brand-muted);
  line-height: 1.7;
}

.customization-card ul {
  margin-top: 1.25rem;
  padding-left: 1.2rem;
}

.customization-card li {
  color: var(--brand-muted);
  margin-bottom: 0.55rem;
}

.print-feature {
  background: var(--brand-brown-dark);
  color: #fff;
  padding: 5rem 1rem;
}

.print-feature__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.print-feature h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.print-feature p,
.print-feature li {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.print-feature ul {
  margin-top: 1.5rem;
  padding-left: 1.25rem;
}

.print-feature .eyebrow {
  color: var(--brand-tan);
}

.print-feature img {
  aspect-ratio: 1400 / 900;
  object-fit: cover;
}

.sharing-section {
  padding: 4rem 1rem;
}

.sharing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.sharing-card {
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 12px 30px rgba(63, 43, 35, 0.06);
}

.sharing-card h2 {
  color: var(--brand-brown-dark);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
  font-family: "Alike", serif;
}

.sharing-card p {
  color: var(--brand-muted);
  line-height: 1.8;
}

.sharing-card ul {
  margin-top: 1.5rem;
  padding-left: 1.25rem;
}

.sharing-card li {
  color: var(--brand-muted);
  margin-bottom: 0.5rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.showcase-grid figure {
  margin: 0;
}

.showcase-grid .wide {
  grid-column: 1 / -1;
}

.showcase-grid figcaption {
  color: var(--brand-muted);
  font-size: 0.95rem;
  margin-top: 0.8rem;
  text-align: center;
}

.event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.event-list span {
  background: var(--brand-cream-soft);
  border: 1px solid var(--brand-border);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  color: var(--brand-brown);
  font-weight: 700;
}

.branding-process {
  background: var(--brand-cream);
  padding: 5rem 1rem;
}

.process-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
}

.process-steps {
  display: grid;
  gap: 1rem;
}

.process-steps div {
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: 24px;
  padding: 1.5rem;
}

.process-steps strong {
  color: var(--brand-tan);
  font-size: 0.9rem;
}

.process-steps h3 {
  color: var(--brand-brown-dark);
  margin: 0.4rem 0;
}

.process-steps p {
  color: var(--brand-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.cta-card {
  background: linear-gradient(135deg, var(--brand-cream-soft), #fff);
  border: 1px solid var(--brand-border);
  border-radius: 32px;
  padding: clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.cta-card h2 {
  max-width: 780px;
  margin: 0 auto 1rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.cta-card p {
  max-width: 720px;
  margin: 0 auto 2rem;
  color: var(--brand-muted);
  line-height: 1.8;
}

@media (max-width: 992px) {
  .branding-hero,
  .print-feature__inner,
  .process-inner {
    grid-template-columns: 1fr;
  }

  .branding-grid,
  .customization-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  .showcase-grid,
  .sharing-grid {
    grid-template-columns: 1fr;
  }

  .showcase-grid .wide {
    grid-column: auto;
  }

  .hero-actions {
    flex-direction: column;
  }

  .brand-btn {
    width: 100%;
  }

  .branding-section,
  .customization-section,
  .branding-showcase,
  .event-fit,
  .branding-cta,
  .sharing-section {
    padding: 3rem 1rem;
  }

  .print-feature,
  .branding-process {
    padding: 4rem 1rem;
  }
}