/* ===========================================================
   TWILIGHT CREATIVE — SHARED STYLESHEET
   Linen white, ink black, sage accent, dusty pink (details only)
   Fraunces (titles) + Inter (body), light weights throughout
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500&family=Inter:wght@300;400;500&display=swap');

:root {
  --linen: #FAF8F4;
  --ink: #1C1C1A;
  --ink-soft: #5F5E5A;
  --ink-faint: #8A8983;
  --sage: #8FA382;
  --sage-dark: #77896C;
  --pink: #E3CFC9;
  --divider: rgba(28, 28, 26, 0.08);
  --divider-strong: rgba(28, 28, 26, 0.14);
  --shadow-soft: 0 12px 40px rgba(28, 28, 26, 0.06);

  --font-title: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;

  --max-width: 1180px;
  --section-pad: clamp(4rem, 8vw, 7rem);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--linen);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.5rem); }

p { font-weight: 300; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.lede {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 46ch;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9375rem;
  padding: 0.95rem 2rem;
  border-radius: 3px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
}

.btn-sage {
  background: var(--sage);
  color: var(--linen);
}

.btn-sage:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--divider-strong);
}

.btn-outline:hover {
  border-color: var(--ink);
}

/* ---------- Header / Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--divider);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  font-size: 0.9375rem;
}

.nav-links a {
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-cta {
  font-size: 0.875rem;
  padding: 0.65rem 1.5rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Divider ---------- */

.divider {
  height: 1px;
  background: var(--divider);
  border: none;
  width: 100%;
}

.divider-narrow {
  max-width: 240px;
  margin: 0 auto;
}

/* ---------- Sections ---------- */

section {
  padding: var(--section-pad) 0;
}

.section-header {
  max-width: 640px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-header .eyebrow {
  display: block;
  margin-bottom: 1rem;
}

/* ---------- Accent dot (dusty pink — small details only) ---------- */

.accent-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--divider);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-inner img {
  height: 40px;
  width: auto;
  opacity: 0.85;
}

.footer-meta {
  font-size: 0.8125rem;
  color: var(--ink-faint);
  display: flex;
  gap: 1.5rem;
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--linen);
    padding: 2rem;
    border-bottom: 1px solid var(--divider);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-toggle { display: block; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

/* ===========================================================
   HOMEPAGE
   =========================================================== */

.hero {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: var(--section-pad);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.hero-image img {
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

/* Soft depth shape behind the portrait */
.hero-image {
  position: relative;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -6%;
  right: -10%;
  width: 78%;
  height: 78%;
  background: var(--sage);
  opacity: 0.16;
  border-radius: 50%;
  filter: blur(2px);
  z-index: 0;
}

.hero-image::after {
  content: '';
  position: absolute;
  bottom: -8%;
  left: -8%;
  width: 46%;
  height: 46%;
  background: var(--pink);
  opacity: 0.22;
  border-radius: 50%;
  z-index: 0;
}

.hero-image img {
  position: relative;
  z-index: 1;
}

/* Staggered load-in */
.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .lede,
.hero-copy .btn,
.hero-image {
  opacity: 0;
  transform: translateY(16px);
  animation: hero-rise 0.7s ease forwards;
}

.hero-copy .eyebrow  { animation-delay: 0.05s; }
.hero-copy h1        { animation-delay: 0.18s; }
.hero-copy .lede      { animation-delay: 0.32s; }
.hero-copy .btn      { animation-delay: 0.46s; }
.hero-image          { animation-delay: 0.28s; }

@keyframes hero-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy .lede,
  .hero-copy .btn,
  .hero-image {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .hero-image img {
    transform: none !important;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-image {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }
  .hero-image::before,
  .hero-image::after {
    opacity: 0.1;
  }
}

/* ---------- Services grid ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.service-card {
  padding-top: 0.25rem;
}

.service-card .accent-dot {
  margin-bottom: 1.25rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
  }
}

@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Portfolio taste grid ---------- */

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

.portfolio-item {
  display: block;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-4px);
}

.portfolio-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
}

.portfolio-label {
  display: block;
  font-family: var(--font-title);
  font-size: 1rem;
  padding: 1.25rem 0 0;
  color: var(--ink);
}

@media (max-width: 860px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Testimonials ---------- */

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

.testimonial-card {
  padding: 2rem;
  border: 1px solid var(--divider);
  border-radius: 4px;
}

.testimonial-card p {
  font-family: var(--font-title);
  font-size: 1.0625rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
}

.testimonial-card cite {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

@media (max-width: 860px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Closing CTA ---------- */

.closing-cta {
  text-align: center;
  background: rgba(143, 163, 130, 0.06);
}

.closing-cta-inner {
  max-width: 560px;
}

.closing-cta-inner .lede {
  margin-left: auto;
  margin-right: auto;
}

/* ===========================================================
   SERVICES PAGE
   =========================================================== */

.service-block {
  padding: var(--section-pad) 0;
}

.service-block-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
}

.service-block-label {
  padding-top: 0.3rem;
}

.service-block-label .eyebrow {
  display: block;
}

.service-block-content p {
  max-width: 60ch;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.service-block-content p:last-child {
  margin-bottom: 0;
}

.service-block-content h2 {
  margin-bottom: 1.5rem;
}

@media (max-width: 780px) {
  .service-block-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* How It Works steps */

.steps-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
}

.step-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--divider);
}

.step-row:last-child {
  border-bottom: 1px solid var(--divider);
}

.step-number {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--sage-dark);
}

.step-content h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.4rem;
}

.step-content p {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  margin: 0;
  max-width: 56ch;
}

/* Proof samples embedded in service sections */

.proof-strip {
  margin-top: 2.5rem;
}

.proof-strip-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 560px;
}

.proof-strip-images a {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}

.proof-strip-images a:hover {
  transform: translateY(-3px);
}

.proof-strip-images img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.proof-strip-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--sage-dark);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.proof-strip-link:hover {
  border-bottom-color: var(--sage-dark);
}

@media (max-width: 480px) {
  .proof-strip-images {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
  }
}

/* ===========================================================
   PORTFOLIO PAGE
   =========================================================== */

.page-hero {
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.page-hero .eyebrow {
  display: block;
  margin-bottom: 1rem;
}

.page-hero .lede {
  margin: 1.25rem auto 0;
}

.portfolio-section {
  padding: var(--section-pad) 0;
}

.portfolio-section-header {
  margin-bottom: 1.5rem;
}

.portfolio-section-intro {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  max-width: 60ch;
  margin-bottom: 2.5rem;
}

.full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem 2rem;
}

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

.portfolio-item-meta {
  padding-top: 1rem;
}

.portfolio-item-meta h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.4rem;
}

.portfolio-item-meta p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.portfolio-item-link {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.8125rem;
  color: var(--sage-dark);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.portfolio-item-link:hover {
  border-bottom-color: var(--sage-dark);
}

.portfolio-item-tag {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.75rem;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Email and graphics grids: not device mockups, plain rectangular images */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.media-grid .portfolio-item img {
  aspect-ratio: 9 / 16;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.graphics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.graphics-grid .portfolio-item img {
  aspect-ratio: 1 / 1;
  object-position: center;
  background: #fff;
}

.graphics-subgroup {
  margin-bottom: 3rem;
}

.graphics-subgroup:last-child {
  margin-bottom: 0;
}

.graphics-subgroup-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.6rem;
}

.graphics-subgroup-intro {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  max-width: 58ch;
  margin-bottom: 1.5rem;
}

/* Closing process note on portfolio page */
.portfolio-process-note {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* ===========================================================
   ABOUT PAGE
   =========================================================== */

.about-hero {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: var(--section-pad);
}

.about-hero-banner {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-hero-banner img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 6% 5%;
  background: linear-gradient(
    100deg,
    rgba(250, 248, 244, 0.55) 0%,
    rgba(250, 248, 244, 0.28) 38%,
    rgba(250, 248, 244, 0) 62%
  );
}

.about-hero-overlay .eyebrow {
  display: block;
  margin-bottom: 1.25rem;
}

.about-hero-overlay h1 {
  font-size: clamp(1.625rem, 3vw, 2.75rem);
  max-width: 15ch;
  line-height: 1.25;
}

@media (max-width: 720px) {
  .about-hero-banner {
    border-radius: 4px;
  }
  .about-hero-overlay {
    position: static;
    background: none;
    padding: 1.75rem 0 0;
  }
  .about-hero-overlay h1 {
    max-width: none;
  }
}

.about-body {
  padding-bottom: var(--section-pad);
}

.about-body-inner {
  max-width: 640px;
  margin: 0 auto;
}

.about-body-inner p {
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-pull {
  font-family: var(--font-title);
  font-weight: 300;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ink);
  line-height: 1.4;
  margin: 2.5rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--pink);
}

.about-signoff {
  text-align: center;
  padding: 2rem 0 0;
}

/* ===========================================================
   CONTACT PAGE
   =========================================================== */

.contact-section {
  padding: clamp(3rem, 6vw, 4.5rem) 0 var(--section-pad);
}

.contact-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner .lede {
  margin: 1.25rem auto 0;
}

.contact-form {
  margin-top: 3rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--divider-strong);
  padding: 0.6rem 0;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--sage-dark);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-honeypot {
  position: absolute;
  left: -9999px;
}

.contact-submit {
  align-self: flex-start;
  margin-top: 0.5rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.contact-direct {
  margin-top: 3rem;
  font-size: 0.9375rem;
  color: var(--ink-faint);
}

.contact-direct a {
  color: var(--sage-dark);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.contact-direct a:hover {
  border-bottom-color: var(--sage-dark);
}

@media (max-width: 1100px) {
  .full-grid { grid-template-columns: repeat(3, 1fr); }
  .graphics-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 780px) {
  .full-grid { grid-template-columns: repeat(2, 1fr); }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .graphics-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .full-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .graphics-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   SITEWIDE POLISH
   Reveal-on-scroll, hover micro-interactions, echoed signature shapes
   =========================================================== */

/* ---------- Reveal on scroll ---------- */

.service-card,
.portfolio-grid .portfolio-item,
.testimonial-card,
.step-row,
.proof-strip,
.about-body-inner p,
.about-pull,
.graphics-subgroup,
.portfolio-item-wrap,
.contact-form,
.contact-direct {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.is-visible,
.portfolio-grid .portfolio-item.is-visible,
.testimonial-card.is-visible,
.step-row.is-visible,
.proof-strip.is-visible,
.about-body-inner p.is-visible,
.about-pull.is-visible,
.graphics-subgroup.is-visible,
.portfolio-item-wrap.is-visible,
.contact-form.is-visible,
.contact-direct.is-visible {
  opacity: 1;
  transform: none;
}

.divider {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.8s ease;
}

.divider.is-visible {
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .service-card,
  .portfolio-grid .portfolio-item,
  .testimonial-card,
  .step-row,
  .proof-strip,
  .about-body-inner p,
  .about-pull,
  .graphics-subgroup,
  .portfolio-item-wrap,
  .contact-form,
  .contact-direct,
  .divider {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Card hover polish ---------- */

.service-card {
  transition: opacity 0.6s ease, transform 0.25s ease;
}

.service-card:hover {
  transform: translateY(-3px);
}

.service-card:hover .accent-dot {
  background: var(--sage);
}

.accent-dot {
  transition: background 0.25s ease;
}

.testimonial-card {
  transition: opacity 0.6s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: var(--divider-strong);
}

.step-number {
  display: inline-block;
  transition: transform 0.25s ease;
}

.step-row:hover .step-number {
  transform: scale(1.15);
}

/* ---------- Nav underline ---------- */

.nav-links a:not(.nav-cta) {
  position: relative;
  padding-bottom: 2px;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: var(--sage-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after {
  transform: scaleX(1);
}

/* ---------- Contact form focus polish ---------- */

.contact-form > div {
  transition: color 0.2s ease;
}

.contact-form > div:focus-within label {
  color: var(--sage-dark);
}

/* ---------- Echoed signature shapes on page heroes ---------- */

.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -4%;
  width: 220px;
  height: 220px;
  background: var(--sage);
  opacity: 0.1;
  border-radius: 50%;
  z-index: -1;
}

.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -8%;
  left: -8%;
  width: 200px;
  height: 200px;
  background: var(--pink);
  opacity: 0.18;
  border-radius: 50%;
  z-index: -1;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: -12%;
  right: -6%;
  width: 260px;
  height: 260px;
  background: var(--sage);
  opacity: 0.1;
  border-radius: 50%;
  z-index: -1;
}


