/* ============ Tokens ============ */
:root {
  --cream: #f6f0e8;
  --cream-2: #efe6d8;
  --burgundy: #631028;
  --burgundy-2: #4a0c1e;
  --coral: #e57056;
  --coral-dark: #cf5b42;
  --olive: #a69f4d;
  --pink: #e28ac0;
  --pink-light: #f2cedd;
  --peach-light: #fbe3d3;
  --ink: var(--burgundy);

  --font-display: "Fraunces", serif;
  --font-body: "DM Sans", sans-serif;
  --font-script: "Caveat", cursive;

  --container: 1160px;
  --radius: 16px;
  --radius-sm: 10px;
  --line: 1.5px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  margin: 0;
  color: var(--burgundy);
}

.script {
  font-family: var(--font-script);
  font-weight: 600;
  color: var(--coral-dark);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--pink-light);
  color: var(--burgundy);
  padding: 7px 16px;
  border-radius: var(--radius-sm);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-solid {
  background: var(--coral);
  color: var(--cream);
}

.btn-solid:hover {
  background: var(--coral-dark);
}

.btn-outline {
  background: var(--pink-light);
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--burgundy);
  color: var(--cream);
}

.btn-light {
  background: var(--cream);
  color: var(--burgundy);
}

/* ============ Announcement bar ============ */
.announce {
  background: var(--burgundy);
  color: var(--pink-light);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 9px 16px;
}

/* ============ Header ============ */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1.5px solid var(--ink);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--burgundy);
  letter-spacing: -0.01em;
}

.logo em {
  font-style: italic;
  color: var(--coral);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.nav-links a:hover {
  color: var(--coral-dark);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.burger span {
  width: 24px;
  height: 3px;
  background: var(--burgundy);
  border-radius: 2px;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 60px;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.55;
  z-index: 1;
  animation: floatSlow 9s ease-in-out infinite;
}

.blob-1 {
  width: 380px;
  height: 380px;
  background: var(--pink-light);
  top: -120px;
  right: 10%;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: var(--olive);
  opacity: 0.28;
  bottom: -80px;
  left: -60px;
  animation-delay: -3s;
}

.blob-3 {
  width: 140px;
  height: 140px;
  background: var(--coral);
  opacity: 0.35;
  top: 30%;
  left: 6%;
  animation-delay: -5s;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 18px;
}

.squiggle {
  display: block;
  width: 220px;
  max-width: 60%;
  height: 18px;
  margin-top: -6px;
  color: var(--coral);
}

.hero p.lead {
  font-size: 19px;
  color: var(--ink);
  max-width: 480px;
  margin: 22px 0 30px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.dash {
  border: none;
  border-top: 3px dashed var(--burgundy);
  width: 90px;
  margin: 18px 0 0;
  opacity: 0.4;
}

/* Hero collage */
.collage {
  position: relative;
  height: 420px;
}

.collage-shape {
  position: absolute;
  width: 78%;
  height: 78%;
  top: 10%;
  left: 10%;
  z-index: 1;
  color: var(--pink-light);
  animation: spinSlow 60s linear infinite;
}

.collage-shape-2 {
  position: absolute;
  width: 50%;
  height: 50%;
  bottom: -6%;
  right: -4%;
  z-index: 0;
  color: var(--olive);
  opacity: 0.55;
}

.collage img {
  position: absolute;
  border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(74, 12, 30, 0.18);
  border: 4px solid var(--cream);
  object-fit: cover;
  z-index: 2;
}

.collage img.c1 {
  width: 58%;
  top: 2%;
  left: 20%;
  transform: rotate(-4deg);
}

.collage img.c2 {
  width: 46%;
  bottom: 4%;
  left: 0;
  transform: rotate(6deg);
  z-index: 3;
}

.collage img.c3 {
  width: 42%;
  bottom: 0;
  right: 0;
  transform: rotate(-7deg);
  z-index: 3;
}

.sticker {
  position: absolute;
  background: var(--olive);
  color: var(--cream);
  font-family: var(--font-script);
  font-size: 26px;
  font-weight: 700;
  padding: 8px 20px 12px;
  border-radius: var(--radius);
  --r: -6deg;
  transform: rotate(-6deg);
  top: 6%;
  right: -6%;
  z-index: 4;
  box-shadow: 0 8px 18px rgba(74, 12, 30, 0.15);
  animation: float 4.5s ease-in-out infinite;
}

.sticker-2 {
  position: absolute;
  bottom: 2%;
  left: -8%;
  background: var(--pink);
  color: var(--cream);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 18px rgba(74, 12, 30, 0.15);
  animation: float 5.5s ease-in-out infinite;
  animation-delay: -2s;
  z-index: 4;
}

.arrow-doodle {
  position: absolute;
  top: -30px;
  left: 42%;
  width: 90px;
  color: var(--burgundy);
  animation: float 4s ease-in-out infinite;
  z-index: 2;
}

/* ============ Marquee strip ============ */
.marquee-strip {
  background: var(--burgundy);
  padding: 18px 0;
  overflow: hidden;
}

.marquee-strip p.label {
  text-align: center;
  color: var(--pink-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 12px;
  opacity: 0.8;
}

.marquee {
  display: flex;
  width: max-content;
  animation: scroll 26s linear infinite;
}

.marquee span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  color: var(--pink-light);
  padding: 0 34px;
  white-space: nowrap;
  border-right: 2px solid rgba(242, 206, 221, 0.35);
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ Section basics ============ */
section {
  padding: 90px 0;
}

.section-head {
  max-width: 620px;
  margin: 0 0 50px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 42px);
  margin-top: 16px;
}

.section-head p {
  margin-top: 16px;
  font-size: 17px;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ============ About ============ */
.about {
  background: var(--peach-light);
}

.about .wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.about-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50% 50% 45% 55% / 55% 50% 50% 45%;
  background: linear-gradient(135deg, var(--pink) 0%, var(--coral) 55%, var(--olive) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(74, 12, 30, 0.2);
}

.about-visual span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 120px;
  color: var(--cream);
}

.about-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-weight: 700;
  font-size: 14px;
  color: var(--burgundy);
  box-shadow: 0 8px 18px rgba(74, 12, 30, 0.15);
  transform: rotate(-3deg);
}

.about-copy p {
  font-size: 17px;
  margin: 18px 0;
}

.about-copy ul {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}

.about-copy li {
  display: flex;
  gap: 10px;
  font-weight: 700;
  color: var(--burgundy);
}

/* ============ Services ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  border-radius: var(--radius);
  padding: 30px 26px 34px;
  border: none;
  box-shadow: none;
  transition: transform 0.2s ease;
}

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

.service-card .tag {
  display: inline-block;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.service-card .icon {
  font-size: 34px;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.service-card p {
  margin: 0;
  font-size: 15.5px;
}

.service-1 { background: var(--pink-light); }
.service-2 { background: #f4e2c6; }
.service-3 { background: #dfe3c4; }

.service-1 h3, .service-2 h3, .service-3 h3 { color: var(--burgundy); }

/* ============ Portfolio ============ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.p-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: none;
  aspect-ratio: 4 / 5;
  box-shadow: none;
}

.p-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.p-card:hover img {
  transform: scale(1.06);
}

.p-card .p-label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: var(--cream);
  color: var(--burgundy);
  font-weight: 700;
  font-size: 14px;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 14px rgba(74, 12, 30, 0.18);
}

.p-card.text-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--cream);
}

.p-card.text-card h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 34px;
  margin: 0;
}

.p-card.text-card span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.pc-1 { background: var(--coral); }
.pc-2 { background: var(--burgundy); color: var(--pink-light); }
.pc-3 { background: var(--olive); }

.portfolio-cta {
  text-align: center;
  margin-top: 44px;
}

/* ============ Process / stripes divider ============ */
.stripes {
  height: 26px;
  background-color: var(--pink-light);
  background-image:
    linear-gradient(45deg, var(--coral) 25%, transparent 25%, transparent 75%, var(--coral) 75%),
    linear-gradient(45deg, var(--coral) 25%, transparent 25%, transparent 75%, var(--coral) 75%);
  background-size: 26px 26px;
  background-position: 0 0, 13px 13px;
}

/* ============ CTA banner ============ */
.cta-banner {
  background: var(--burgundy);
  color: var(--pink-light);
  text-align: center;
  padding: 100px 0;
}

.cta-banner h2 {
  color: var(--pink-light);
  font-size: clamp(32px, 5vw, 50px);
}

.cta-banner p {
  max-width: 520px;
  margin: 20px auto 34px;
  font-size: 18px;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ Footer ============ */
footer {
  background: var(--ink);
  color: var(--pink-light);
  padding: 60px 0 28px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(242, 206, 221, 0.2);
}

.footer-cols {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col h5 {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0 0 14px;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: 15px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.footer-col a:hover {
  color: var(--coral);
}

.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(52px, 11vw, 130px);
  line-height: 0.9;
  color: var(--pink-light);
  margin: 40px 0 20px;
  letter-spacing: -0.01em;
}

.footer-wordmark em {
  font-style: italic;
  color: var(--coral);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 10px;
}

/* ============ Motion & reveal ============ */
@keyframes float {
  0%   { transform: translateY(0) rotate(var(--r, 0deg)); }
  50%  { transform: translateY(-16px) rotate(var(--r, 0deg)); }
  100% { transform: translateY(0) rotate(var(--r, 0deg)); }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-22px) scale(1.04); }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg) translateY(-2px); }
  25% { transform: rotate(-3deg) translateY(-2px); }
  75% { transform: rotate(3deg) translateY(-2px); }
}

@keyframes popIn {
  0% { transform: scale(0.6) rotate(-8deg); opacity: 0; }
  100% { transform: scale(1) rotate(var(--r, -6deg)); opacity: 1; }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.3,1), transform 0.7s cubic-bezier(.2,.7,.3,1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal="pop"] {
  transform: scale(0.85) translateY(20px);
}

[data-reveal="pop"].is-visible {
  transform: scale(1) translateY(0);
}


/* ============ Cloud / scallop shapes ============ */
.cloud {
  position: absolute;
  z-index: 0;
}

/* ============ Doodles ============ */
.doodle {
  position: absolute;
  font-size: 30px;
  animation: float 5s ease-in-out infinite;
  z-index: 3;
  user-select: none;
}

/* ============ Ribbon marquee (diagonal statement band) ============ */
.ribbon-wrap {
  overflow: hidden;
  margin: 0;
  transform: rotate(-1.6deg) scale(1.03);
}

.ribbon {
  background: var(--burgundy);
  overflow: hidden;
  padding: 14px 0;
}

.ribbon .marquee {
  animation-duration: 22s;
}

.ribbon .marquee span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  color: var(--pink-light);
  padding: 0 24px;
  border-right: none;
}

.ribbon .marquee span::after {
  content: "✦";
  margin-left: 24px;
  color: var(--coral);
  font-style: normal;
}

/* ============ Reverse marquee row ============ */
.marquee-strip.alt {
  background: var(--pink-light);
  border-color: var(--burgundy);
}

.marquee-strip.alt .marquee {
  animation-direction: reverse;
  animation-duration: 32s;
}

.marquee-strip.alt .marquee span {
  color: var(--burgundy);
  border-right-color: rgba(99, 16, 40, 0.2);
  -webkit-text-stroke: 1.4px var(--burgundy);
  color: transparent;
}

/* ============ Wave dividers ============ */
.wave {
  display: block;
  width: 100%;
  line-height: 0;
  margin-top: -2px;
}

.wave svg {
  width: 100%;
  height: 70px;
  display: block;
}

/* ============ Dot grid background ============ */
.dot-grid {
  position: relative;
}


/* ============ Corner tag on cards ============ */
.corner-tag {
  position: absolute;
  top: -16px;
  left: 20px;
  background: var(--burgundy);
  color: var(--pink-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 18px 9px;
  border-radius: var(--radius-sm);
  transform: rotate(-4deg);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
  z-index: 2;
}

.service-card {
  position: relative;
  overflow: visible !important;
}

.service-card:hover .icon {
  animation: wiggle 0.5s ease;
  display: inline-block;
}

/* Featured sticker on portfolio */
.p-card {
  position: relative;
}

.featured-sticker {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--coral);
  color: var(--cream);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 14px 8px;
  border-radius: var(--radius-sm);
  transform: rotate(6deg);
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.p-card:hover {
  transform: rotate(-1deg) translateY(-4px);
  transition: transform 0.25s ease;
}

/* ============ Vertical stripe band (pre-footer) ============ */
.stripe-band {
  display: flex;
  height: 64px;
  overflow: hidden;
}

.stripe-band span {
  flex: 1;
}

/* ============ Responsive ============ */
@media (max-width: 900px) {
  .hero .wrap {
    grid-template-columns: 1fr;
  }
  .collage {
    height: 320px;
    order: -1;
  }
  .about .wrap {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 30px 24px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .burger {
    display: flex;
  }
  .nav-cta .btn-outline {
    display: none;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  section {
    padding: 60px 0;
  }
}
