@font-face {
    font-family: InterG;
    src: url("fonts/interdisplay-regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: InterG;
    src: url("fonts/interdisplay-semibold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: InterG;
    src: url("fonts/interdisplay-bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

:root {
    --ink: #190f0aff;
    --muted: #687086;
    --choco: #7d4b33ff;
    --orange: #f7921cff;
    --pink2: #6500bbfe;
    --line: #eceef4;
    --soft: #fff5f8;
    --bg: #fff;
    --radius: 18px;
    --shadow: 0 16px 45px rgba(17, 26, 54, .08)
}

* {
    box-sizing: border-box
}

html {
    /* overflow-y: auto; */
    scroll-behavior: smooth
    
}
section[id] {
    scroll-margin-top: 105px;
}
/* #home {
    scroll-margin-top: 105px;
} */

body {
    /* overflow-y: auto; */
    margin: 0;
    font-family: InterG, Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.6
    
}

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

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

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

/* .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(236, 238, 244, .7)
} */

/* Reusable header wrapper - this must be sticky */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

/* Actual header */
.site-header {
  position: relative;
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(236, 238, 244, 0.7);

  /* Keep header animation */
  animation: navIn 0.7s ease-out both;
}

/* Header entrance animation */
@keyframes navIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav {
    height: 105px;
    display: flex;
    align-items: center;
    gap: 30px
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: auto;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    z-index: 100;
}

.brand-logo {
    pointer-events: none;
  width: 216px;
  height: auto;
  display: block;
  object-fit: contain;

  animation: logoIn 0.8s ease-out 0.1s both;
}

.brand-logo-footer{
pointer-events: none;
  width: 100px;
  height: auto;
  display: block;
  object-fit: contain;

}

@keyframes logoIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.brand span {
    pointer-events: none;
}

.brand strong {
    display: block;
    font-size: 17px;
    line-height: 1
}

.brand small {
    pointer-events: none;
    display: block;
    color: var(--muted);
    font-size: 8px;
    letter-spacing: .4px;
    margin-top: 4px
    
}

.nav-links {
    display: flex;
    gap: 27px;
    align-items: center
}

.nav-links a {
    font-size: 13px;
    font-weight: 600;
    color: #31384d;
    position: relative
}

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

.nav-links a.active:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -11px;
    height: 2px;
    background: var(--choco)
}

.btn {
    transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 8px;
    /* background: linear-gradient(135deg, #6400bbfe, #9e35ffff); */
    background: var(--choco);
    color: wheat;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(217, 42, 104, .18);
    transition: .2s
}

.btn:hover {
    box-shadow: 0 12px 28px rgba(217, 42, 104, 0.25);
    transform: translateY(-2px)
    
}

.btn-small {
    padding: 11px 17px;
    white-space: nowrap
}

.btn-outline {
    background: #fff;
    color: var(--pink);
    border: 1px solid #7d4b33ff;
    box-shadow: none
}

.btn-light {
    background: #fff;
    color: var(--ink);
    box-shadow: none
}

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    font-size: 24px
}

.hero {
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, #fff 74%, #fafafd 100%);
    padding: 82px 0 62px
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.03fr;
    align-items: center;
    gap: 50px
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--choco);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.1px
}

.onDark{
color: var(--orange);
}

.hero h1 {
    font-size: 58px;
    line-height: 1.08;
    letter-spacing: -2.4px;
    margin: 0 0 22px;
    max-width: 640px
}

.hero h1 em,
.section-heading h2 span,
.about h2 span,
.process h2 span,
.portfolio h2 span,
.cta h2 span {
    font-style: normal;
    color: var(--choco)
}

.lead {
    color: var(--muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin: 30px 0
}

.trust-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 34px
}

.trust-points>div {
    display: flex;
    gap: 10px
}

.point-icon {
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    border: 1px solid #f2aac2;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--pink);
    font-weight: 700
}

.trust-points strong {
    display: block;
    font-size: 12px
}

.trust-points small {
    display: block;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.4;
    margin-top: 4px
}

.hero-art {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: center
}

.hero-art .blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff1f6 0%, #fff 68%);
    z-index: 0
}

.hero-art > img {
    animation:
    heroImageIn 1s ease-out 0.25s both,
    gentleFloat 5s ease-in-out 1.3s infinite;
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: 50% 0;
    border-radius: 25px;
    box-shadow: var(--shadow)
}
@keyframes gentleFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.floating-card {
    position: absolute;
    z-index: 3;
    background: #fff;
    border-radius: 13px;
    padding: 13px 16px;
    box-shadow: var(--shadow);
    font-size: 11px
}

.floating-card strong {
    display: block
}

.floating-card span {
    color: var(--muted);
    font-size: 9px
}

.card-one {
    left: 2%;
    top: 20%
}

.card-two {
    right: 0;
    bottom: 18%
}

.section {
    padding: 90px 0
}

.section-heading {
    text-align: center;
    width: min(700px, calc(100% - 40px));
    margin: 0 auto 48px
}

.section-heading h2 {
    font-size: 38px;
    line-height: 1.15;
    letter-spacing: -1px;
    margin: 0 0 12px
}

.section-heading>p:last-child {
    color: var(--muted);
    font-size: 14px;
    margin: 0
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.service-card {
    transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
    padding: 32px 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-align: center;
    background: #fff;
    box-shadow: 0 8px 30px rgba(17, 26, 54, .035);
    transition: .2s
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 45px rgba(17, 26, 54, 0.10);
}

.service-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    font-size: 27px;
    font-weight: 700
}

.pink {
    background: #fff0f5;
    color: #df3971
}

.purple {
    background: #f3efff;
    color: #7049db
}

.green {
    background: #effaf2;
    color: #31a85c
}

.blue {
    background: #eef8ff;
    color: #1686bf
}

.yellow {
    background: #fff7e8;
    color: #e89b16
}

.rose {
    background: #fff0f3;
    color: #ef5674
}

.service-card h3 {
    font-size: 16px;
    margin: 0 0 9px
}

.service-card p {
    color: var(--muted);
    font-size: 12px;
    margin: 0 0 16px
}

.service-card a {
    font-size: 11px;
    color: var(--pink);
    font-weight: 700
}

.about {
    background: #fbfbfd
}

.split {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: start
}

.about h2 {
    font-size: 46px;
    line-height: 1.1;
    margin: 0
}

.about p {
    color: var(--muted);
    font-size: 15px;
    margin-top: 0
}

.pill-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px
}

.pill-row span {
    padding: 9px 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px
}

.process-step {
    text-align: center;
    position: relative
}

.process-step:not(:last-child):after {
    content: "→";
    position: absolute;
    right: -23px;
    top: 17px;
    color: #e65b87;
    font-size: 24px
}

.step-number {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin: 0 auto 18px;
    background: var(--choco);
    color: wheat;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 700
}

.process-step h3 {
    font-size: 15px;
    margin: 0 0 8px
}

.process-step p {
    color: var(--muted);
    font-size: 11px;
    margin: 0
}

.portfolio {
    padding-top: 30px
}

.portfolio-wrap {
    background: #fef4e9ff;
    border: 1px solid #f8e6ec;
    border-radius: 22px;
    padding: 35px;
    display: grid;
    grid-template-columns: .7fr 1.5fr;
    gap: 30px;
    align-items: center
}

.portfolio-copy h2 {
    font-size: 31px;
    line-height: 1.15;
    margin: 0 0 25px
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px
}

.portfolio-grid img {
    height: 145px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px
}

.cta {
    padding: 30px 0 70px
}

.cta-inner {
    background: #25160fff;
    color: #fff;
    border-radius: 22px;
    padding: 38px 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.cta {
    color: var(--choco)
}

.cta h2 {
    font-size: 34px;
    line-height: 1.15;
    margin: 0 0 8px
}

.cta p:last-child {
    color: #b9bfd0;
    margin: 0;
    font-size: 13px
}

.footer {
    padding: 0 0 20px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.1fr;
    gap: 45px;
    padding: 35px 0
}

.footer-grid h4 {
    font-size: 12px;
    margin: 0 0 13px
}

.footer-grid>div:not(.footer-brand) a,
.footer-grid>div:not(.footer-brand) span {
    display: block;
    color: var(--muted);
    font-size: 10px;
    margin: 7px 0
}

.footer-brand p {
    color: var(--muted);
    font-size: 11px;
    max-width: 230px
}

.copyright {
    border-top: 1px solid var(--line);
    padding-top: 16px;
    color: #9298a8;
    font-size: 10px;
    text-align: center
}

@media(max-width:950px) {
    .nav-links {
        display: none
    }

    .menu-toggle {
        display: block
    }

    .nav>.btn {
        display: none
    }

    .nav-links.open {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 70px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 14px;
        box-shadow: var(--shadow)
    }

    .hero-grid {
        grid-template-columns: 1fr
    }

    .hero-art {
        order: -1;
        min-height: 360px
    }

    .hero h1 {
        font-size: 48px
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .split {
        grid-template-columns: 1fr;
        gap: 25px
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .process-step:not(:last-child):after {
        display: none
    }

    .portfolio-wrap {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:620px) {
    .container {
        width: min(100% - 28px, 1160px)
    }

    .hero {
        padding: 55px 0 45px
    }

    .hero h1 {
        font-size: 39px;
        letter-spacing: -1.5px
    }

    .lead {
        font-size: 14px
    }

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

    .trust-points {
        grid-template-columns: 1fr
    }

    .hero-art {
        min-height: 270px
    }

    .floating-card {
        display: none
    }

    .section {
        padding: 65px 0
    }

    .section-heading h2 {
        font-size: 31px
    }

    .cards-grid,
    .process-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .portfolio-wrap {
        padding: 22px
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .portfolio-grid img {
        height: 125px
    }

    .cta-inner {
        padding: 30px 24px;
        align-items: flex-start;
        flex-direction: column
    }

    .cta h2 {
        font-size: 29px
    }

    .footer-grid {
        gap: 25px
    }
}


/* =========================================
   PAGE LOAD ANIMATIONS
   ========================================= */

/* Whole page gently fades in */
body {
  animation: pageFadeIn 0.8s ease-out both;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


/* Hero text comes up gently */
.hero-copy {
  animation: heroTextIn 0.9s ease-out 0.15s both;
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Hero image comes in from the right */
.hero-art {
  animation: heroImageIn 1s ease-out 0.25s both;
}

@keyframes heroImageIn {
  from {
    opacity: 0;
    transform: translateX(35px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}


/* Navigation gently appears */
.site-header {
  animation: navIn 0.7s ease-out both;
}

@keyframes navIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Service cards appear one after another */
.service-card {
  animation: cardIn 0.7s ease-out both;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}

.service-card:nth-child(2) {
  animation-delay: 0.18s;
}

.service-card:nth-child(3) {
  animation-delay: 0.26s;
}

.service-card:nth-child(4) {
  animation-delay: 0.34s;
}

.service-card:nth-child(5) {
  animation-delay: 0.42s;
}

.service-card:nth-child(6) {
  animation-delay: 0.50s;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

section[id] {
    scroll-margin-top: 105px
}

/* .brand-logo {
    pointer-events: none;
    width: 82px;
    height: 82px;
    display: block;
    object-fit: contain
} */

.portfolio-page {
    background: linear-gradient(180deg, #fff 0%, #fff8fa 45%, #fff 100%);
}

.portfolio-hero {
    padding: 82px 0 48px;
    text-align: center
}

.portfolio-hero h1 {
    font-size: 52px;
    line-height: 1.08;
    letter-spacing: -2px;
    margin: 0 auto 16px;
    max-width: 760px
}

.portfolio-hero h1 span {
    color: var(--pink)
}

.portfolio-hero p:last-child {
    color: var(--muted);
    font-size: 15px;
    max-width: 650px;
    margin: 0 auto
}

.portfolio-gallery-section {
    padding: 30px 0 90px
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.portfolio-item {
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(17, 26, 54, .06)
}

.portfolio-thumb {
    height: auto;
    overflow: hidden;
    background: #f7f7fa
}

.portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit:contain;
    transition: transform .45s ease, filter .45s ease
}

.portfolio-item:hover .portfolio-thumb img {
    transform: scale(1.08);
    filter: saturate(1.04)
}

.portfolio-caption {
    padding: 16px 18px 18px
}

.portfolio-caption strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px
}

.portfolio-caption span {
    display: block;
    color: var(--muted);
    font-size: 11px
}

.portfolio-note {
    margin: 34px auto 0;
    text-align: center;
    color: var(--muted);
    font-size: 11px
}

.portfolio-back {
    display: flex;
    justify-content: center;
    margin-top: 35px
}

@media(max-width:950px) {
    .portfolio-gallery {
        grid-template-columns: repeat(2, 1fr)
    }

    /* .portfolio-thumb {
        height: 270px
    } */

    .portfolio-hero h1 {
        font-size: 44px
    }
}


@media(max-width:620px) {
    .portfolio-hero {
        padding: 58px 0 35px
    }

    .portfolio-hero h1 {
        font-size: 37px;
        letter-spacing: -1.2px
    }

    .portfolio-hero p:last-child {
        font-size: 13px
    }

    .portfolio-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    }

    .portfolio-thumb {
        height: auto;
        /* overflow: hidden; */
    }

    .portfolio-gallery-section {
        padding-bottom: 65px
    }
}

/* =========================================================
   PORTFOLIO RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

  .portfolio-category {
    padding: 85px 0;
  }

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

  .portfolio-category .portfolio-thumb img {
    height: auto;
  }

  #invitation-design .portfolio-thumb img {
    height: auto;
  }
}


@media (max-width: 600px) {

  .portfolio-category {
    padding: 70px 0;
  }

  .portfolio-category-heading {
    margin-bottom: 38px;
  }

  .portfolio-category-heading h2 {
    font-size: 2.3rem;
  }

  .portfolio-category-heading > p:last-child {
    font-size: 0.98rem;
  }

  .portfolio-category .portfolio-gallery {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .portfolio-category .portfolio-thumb img,
  #invitation-design .portfolio-thumb img {
    height: auto;
    max-height: none;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .portfolio-cta {
    padding: 85px 0;
  }

}

/* =========================================================
   PORTFOLIO PAGE — CATEGORY SECTIONS
   ========================================================= */

.portfolio-category {
  padding: 110px 0;
}

.portfolio-category:nth-child(even) {
    background: #FFF9F2;
}

.portfolio-category-heading {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.portfolio-category-heading h2 {
  margin: 10px 0 16px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.portfolio-category-heading > p:last-child {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.72;
}


/* Gallery */

.portfolio-category .portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}


/* Individual portfolio item */

.portfolio-category .portfolio-item {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
}


/* Image container */

.portfolio-category .portfolio-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #f5f5f5;
}


/* Images */

.portfolio-category .portfolio-thumb img {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;

  transition:
    transform 0.6s cubic-bezier(.2,.7,.2,1),
    filter 0.6s ease;
}


/* Smooth hover enlargement */

.portfolio-category .portfolio-item:hover .portfolio-thumb img {
  transform: scale(1.08);
}


/* Invitation / portrait-style work can use a taller image */

#invitation-design .portfolio-thumb img {
    width: 100%;
  height: auto;
  object-fit: contain;
}


/* CTA */

.portfolio-cta {
  padding: 120px 0;
  text-align: center;
}

.portfolio-cta h2 {
  margin: 12px 0 30px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.portfolio-cta .btn {
  display: inline-flex;
}

/* Mobile portfolio gallery */
@media (max-width: 600px) {
  .portfolio-category .portfolio-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

/* Portfolio desktop gallery layout
@media (min-width: 901px) {
  .portfolio-category .portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
} */