/* ============================================================
   Sections — per-section layout & styling
   ============================================================ */

/* ================= HEADER / NAV ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 251, 248, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(231, 138, 137, 0.10);
  transition: box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(190, 132, 140, 0.12); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 78px;
}

/* logo */
.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo__mark { width: 46px; height: 46px; flex: none; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name { font-family: var(--font-script); font-size: 1.85rem; font-weight: 700; color: var(--rose-deep); }
.logo__sub  { font-family: var(--font-sans); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.5em; color: var(--ink-2); padding-left: 0.3em; }

/* nav links */
.nav__links { display: flex; align-items: center; gap: clamp(0.7rem, 1.6vw, 1.7rem); }
.nav__link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink-2);
  padding: 0.35em 0;
  transition: color var(--dur) var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--rose);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav__link:hover { color: var(--rose-deep); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--rose-deep); font-weight: 500; }

.nav__actions { display: flex; align-items: center; gap: 0.4rem; }
.nav__actions .btn { margin-left: 0.5rem; }

/* hamburger */
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 50%; place-items: center; color: var(--ink); }
.nav__toggle svg { width: 24px; height: 24px; }

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto;
  width: min(340px, 82vw);
  background: var(--cream);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  padding: 6rem 2rem 2rem;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.mobile-menu.is-open { transform: none; }
.mobile-menu a { font-size: 1.15rem; color: var(--ink); padding: 0.7rem 0; border-bottom: 1px solid rgba(190,132,140,0.12); }
.mobile-menu a.is-active { color: var(--rose-deep); }
.mobile-menu .btn { margin-top: 1.2rem; }
.mobile-menu__close { position: absolute; top: 1.4rem; right: 1.4rem; width: 44px; height: 44px; display: grid; place-items: center; color: var(--ink); }
.mobile-menu__close svg { width: 26px; height: 26px; }
.backdrop {
  position: fixed; inset: 0; background: rgba(75,58,58,0.35);
  backdrop-filter: blur(2px); z-index: 150; opacity: 0; visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}
.backdrop.is-open { opacity: 1; visibility: visible; }

/* ================= HERO ================= */
.hero { position: relative; background: var(--grad-cream); overflow: hidden; }
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-block: clamp(2rem, 4vw, 3.5rem) clamp(3rem, 5vw, 4.5rem);
}
.hero__content { position: relative; z-index: 3; }
.hero__title { font-size: var(--fs-hero); margin: 1.2rem 0 1.3rem; }
.hero__title .line-1 { display: block; color: var(--ink); font-weight: 700; }
.hero__title .line-2 {
  display: block;
  font-family: var(--font-script);
  font-weight: 700;
  color: var(--rose);
  font-size: 1.02em;
  margin-top: 0.1em;
  letter-spacing: 0.01em;
}
.hero__text { max-width: 34ch; font-size: 1.02rem; margin-bottom: 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.2rem; }
.hero__proof { display: flex; align-items: center; gap: 1rem; }
.hero__proof-text { font-size: 0.9rem; }
.hero__proof-text strong { color: var(--ink); font-weight: 600; }

/* hero media */
.hero__media { position: relative; z-index: 2; }
.hero__media-frame {
  position: relative;
  border-radius: 190px 28px 28px 190px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.15;
}
.hero__media-frame img { width: 100%; height: 100%; object-fit: cover; }

.hero__caption {
  position: absolute;
  left: -6%;
  bottom: 8%;
  z-index: 4;
  display: flex; align-items: center; gap: 0.9rem;
  background: rgba(255,251,248,0.9);
  backdrop-filter: blur(6px);
  padding: 0.9rem 1.2rem;
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
  max-width: 250px;
}
.hero__caption p { font-size: 0.85rem; color: var(--ink-2); line-height: 1.45; }
.hero__caption .icon-circle { width: 38px; height: 38px; flex: none; }

/* hero decorations */
.hero .botanical--tl { top: 4%; left: 1%; width: 120px; }
.hero .blob--1 { width: 260px; height: 260px; left: -90px; top: 30%; background: radial-gradient(circle, #f6cfc8, transparent 70%); }
.hero .blob--2 { width: 180px; height: 180px; left: 30%; bottom: -40px; background: radial-gradient(circle, #ecd7ef, transparent 70%); }

/* ================= SERVICES ================= */
.services { background: var(--cream); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  margin-top: clamp(2.2rem, 4vw, 3.4rem);
}
.service { text-align: center; padding: 0 0.4rem; }
.service__icon { width: 84px; height: 84px; margin: 0 auto 1.2rem; }
.service__title { font-size: var(--fs-h4); font-weight: 600; margin-bottom: 0.5rem; }
.service__desc { font-size: 0.86rem; line-height: 1.55; color: var(--text); max-width: 22ch; margin-inline: auto; }

/* ================= SHOP BY SPACE ================= */
.spaces { background: var(--blush-bg); position: relative; }
.spaces__layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: clamp(1.4rem, 2.5vw, 2.4rem);
  align-items: center;
}
.spaces__intro { max-width: 260px; }
.spaces__intro .h { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.spaces__intro h2 { font-size: var(--fs-h3); }
.spaces__intro p { font-size: 0.95rem; margin-bottom: 1.6rem; }

.spaces__cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(0.7rem, 1.2vw, 1.1rem);
}
.space-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.space-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.space-card__img { aspect-ratio: 3 / 4; overflow: hidden; }
.space-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.space-card:hover .space-card__img img { transform: scale(1.07); }
.space-card__label {
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
  padding: 0.85rem 0.7rem 0.85rem 1rem;
}
.space-card__label span { font-family: var(--font-serif); font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.space-card:hover .pill-arrow { background: var(--rose); color: #fff; transform: translateX(3px); }

/* ================= PORTFOLIO ================= */
.portfolio { background: var(--lavender-bg); position: relative; }
.portfolio__layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: clamp(1.4rem, 2.5vw, 2.6rem);
  align-items: center;
}
.portfolio__intro h2 { font-size: var(--fs-h2); color: var(--ink); margin: 1rem 0 1rem; }
.portfolio__intro p { font-size: 0.95rem; margin-bottom: 1.7rem; color: var(--ink-2); }
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.7rem, 1.2vw, 1.1rem);
}
.portfolio__item {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 3 / 3.7;
  box-shadow: var(--shadow);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.portfolio__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.portfolio__item:hover { transform: translateY(-8px) scale(1.01); }
.portfolio__item:hover img { transform: scale(1.08); }

/* ================= ABOUT ================= */
.about { background: var(--cream); position: relative; overflow: hidden; }
/* Full-bleed layout: side images touch the page edges, text stays centered. */
.about__layout {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(300px, 620px) minmax(240px, 1fr);
  gap: clamp(1.4rem, 3vw, 3rem);
  align-items: center;
}
.about__photo { position: relative; }
.about__photo > img { border-radius: 0 var(--r-xl) var(--r-xl) 0; box-shadow: var(--shadow); width: 100%; height: clamp(330px, 33vw, 460px); object-fit: cover; }

.sticky-note {
  position: absolute;
  right: -6%;
  bottom: 10%;
  width: 165px;
  background: linear-gradient(160deg, #fdeee7, #f9e2d9);
  border-radius: 6px 14px 10px 14px;
  padding: 1.4rem 1.1rem 1.1rem;
  box-shadow: var(--shadow);
  transform: rotate(4deg);
  z-index: 3;
}
.sticky-note::before {
  content: "";
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  width: 22px; height: 22px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f0a6a2, #dd7a80);
  box-shadow: 0 3px 6px rgba(170,90,90,0.35);
}
.sticky-note p { font-family: var(--font-hand); font-size: 1.15rem; line-height: 1.35; color: var(--ink-2); }
.sticky-note .heart-doodle { display: block; margin-top: 0.5rem; color: var(--rose); }

.about__body .eyebrow { margin-bottom: 1rem; }
.about__body h2 { font-size: var(--fs-h2); color: var(--ink); margin-bottom: 1.2rem; }
.about__body p { margin-bottom: 1.6rem; }
.about__sign { font-family: var(--font-script); font-size: 1.7rem; color: var(--rose-deep); line-height: 1; }
.about__role { font-size: 0.82rem; letter-spacing: 0.05em; color: var(--text-light); margin-top: 0.3rem; }
.about__body .botanical { position: static; display: inline-block; width: 60px; margin-top: 1rem; opacity: 0.55; }

.about__frame { position: relative; }
.about__frame > img { border-radius: var(--r-xl) 0 0 var(--r-xl); box-shadow: var(--shadow); width: 100%; height: clamp(330px, 33vw, 460px); object-fit: cover; }
.about__quote-frame {
  position: absolute; top: 18%; left: 8%;
  background: var(--white);
  border: 5px solid #fff;
  outline: 1px solid #efdfd7;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 1.1rem 1.3rem;
  text-align: center;
  transform: rotate(-2deg);
}
.about__quote-frame span { display: block; font-family: var(--font-serif); color: var(--ink); line-height: 1.25; }
.about__quote-frame .l1 { font-size: 1.05rem; }
.about__quote-frame .l2 { font-family: var(--font-hand); color: var(--rose); font-size: 0.95rem; }
.about__quote-frame .l3 { font-size: 1.05rem; }

/* ================= PROCESS + TESTIMONIAL ================= */
.work { background: var(--grad-cream); }
.work__layout {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: clamp(1.6rem, 3vw, 3.2rem);
  align-items: center;
}
.process__head { display: flex; align-items: center; gap: 0.6rem; margin: 0.8rem 0 2.6rem; }
.process__head h2 { font-size: var(--fs-h2); }
.process__steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.process__line {
  position: absolute; top: 62px; left: 8%; right: 8%; height: 2px;
  background-image: linear-gradient(90deg, var(--lavender-100) 0 60%, transparent 0);
  background-size: 14px 2px; background-repeat: repeat-x;
  z-index: 0;
}
.step { position: relative; text-align: center; z-index: 1; }
.step__num { font-family: var(--font-serif); font-size: 0.85rem; font-weight: 700; color: var(--lavender-deep); background: var(--lavender-soft); width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 0.9rem; }
.step__icon { width: 66px; height: 66px; margin: 0 auto 1rem; border: 1px solid rgba(169,140,182,0.25); background: var(--white); }
.step__icon.icon-circle--lav { background: radial-gradient(circle at 35% 30%, #f0e8f5, #e3d5ec); }
.step__title { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.4rem; }
.step__desc { font-size: 0.8rem; line-height: 1.5; max-width: 20ch; margin-inline: auto; }

/* testimonial card */
.testimonial {
  position: relative;
  background: linear-gradient(150deg, #f8ddd0 0%, #f5cfc0 55%, #f3c8bf 100%);
  border-radius: var(--r-xl);
  padding: 2.4rem 2.2rem 2.4rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 300px;
}
.testimonial__quote-mark { font-family: var(--font-serif); font-size: 4.5rem; line-height: 0.5; color: var(--rose-light); height: 34px; display: block; }
.testimonial h3 { font-size: var(--fs-h3); text-align: center; margin-bottom: 1.3rem; }
.testimonial__text { text-align: center; color: var(--ink-2); font-size: 0.98rem; line-height: 1.6; max-width: 30ch; margin: 0 auto 1.4rem; }
.testimonial__author { text-align: center; font-weight: 600; color: var(--ink); font-size: 0.9rem; }
.testimonial__dots { display: flex; gap: 7px; justify-content: center; margin-top: 1.4rem; }
.testimonial__dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--rose-light); opacity: 0.5; transition: all var(--dur) var(--ease); cursor: pointer; }
.testimonial__dots span.is-active { opacity: 1; width: 22px; border-radius: 5px; background: var(--rose-deep); }
.testimonial__vase { position: absolute; right: -6px; bottom: -6px; width: 132px; z-index: 1; filter: drop-shadow(0 8px 14px rgba(170,110,110,0.25)); }
.testimonial__vase img { border-radius: 0 0 var(--r-xl) 0; }
.testimonial__content { position: relative; z-index: 2; }

/* ================= CTA BANNER ================= */
.cta-banner { position: relative; background: var(--grad-cta); overflow: hidden; isolation: isolate; }
.cta-banner__img { position: absolute; top: 0; bottom: 0; width: 34%; z-index: 0; }
.cta-banner__img img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner__img--left { left: 0; -webkit-mask-image: linear-gradient(90deg, #000 40%, transparent 100%); mask-image: linear-gradient(90deg, #000 40%, transparent 100%); }
.cta-banner__img--right { right: 0; -webkit-mask-image: linear-gradient(270deg, #000 40%, transparent 100%); mask-image: linear-gradient(270deg, #000 40%, transparent 100%); }
.cta-banner__content { position: relative; z-index: 2; text-align: center; padding-block: clamp(2.6rem, 5vw, 4rem); max-width: 640px; margin-inline: auto; }
.cta-banner__content h2 { font-family: var(--font-serif); color: #fff; font-size: clamp(1.7rem, 4vw, 2.9rem); text-shadow: 0 2px 14px rgba(150,80,80,0.25); margin-bottom: 0.7rem; }
.cta-banner__content p { color: rgba(255,255,255,0.92); font-size: 1rem; margin-bottom: 1.8rem; }
.cta-banner .botanical { color: rgba(255,255,255,0.5); opacity: 0.7; }
.cta-banner .botanical--l { left: 30%; top: 30%; width: 90px; }
.cta-banner .botanical--r { right: 26%; top: 22%; width: 90px; }

/* ================= FOOTER ================= */
.footer { background: var(--cream-2); position: relative; overflow: hidden; }
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr 1.4fr;
  gap: clamp(1.4rem, 2.5vw, 2.4rem);
  padding-block: clamp(3rem, 5vw, 4.5rem) 2.4rem;
}
.footer__brand .logo { margin-bottom: 1.1rem; }
.footer__brand p { font-size: 0.9rem; max-width: 30ch; margin-bottom: 1.4rem; }
.footer__social { display: flex; gap: 0.6rem; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--white); color: var(--rose-deep);
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.footer__social a:hover { background: var(--grad-coral); color: #fff; transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }

.footer__col h4 { font-family: var(--font-serif); font-size: 1.05rem; color: var(--ink); margin-bottom: 1.1rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__col a { font-size: 0.9rem; color: var(--text); transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease); }
.footer__col a:hover { color: var(--rose-deep); padding-left: 4px; }

.footer__contact li { display: flex; align-items: center; gap: 0.7rem; font-size: 0.9rem; margin-bottom: 0.8rem; color: var(--text); }
.footer__contact svg { width: 17px; height: 17px; color: var(--rose-deep); flex: none; }
.footer__news p { font-size: 0.9rem; margin-bottom: 1rem; max-width: 26ch; }

.footer__bottom {
  border-top: 1px solid rgba(190,132,140,0.15);
  padding-block: 1.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.footer__bottom small { font-size: 0.82rem; color: var(--text-light); }
.footer__tag { font-family: var(--font-hand); font-size: 1.25rem; color: var(--rose-deep); display: inline-flex; align-items: center; gap: 0.4rem; }
.footer .botanical--fr { right: 0; bottom: 0; width: 200px; opacity: 0.35; }
