:root {
  --pink: #f32678;
  --pink-dark: #d91765;
  --navy: #071f4d;
  --cobalt: #0458c9;
  --aqua: #51c8d2;
  --lavender: #b998da;
  --yellow: #ffd326;
  --cream: #fffaf1;
  --paper: #fffdf8;
  --ink: #0c224c;
  --muted: #596177;
  --line: #eee6d8;
  --green: #19bc68;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Avenir, "Avenir Next", Montserrat, "Helvetica Neue", Arial, sans-serif;
  --script: "Brush Script MT", "Segoe Script", cursive;
  --shadow: 0 16px 50px rgba(9, 31, 71, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 20%, rgba(243, 38, 120, .035), transparent 20%),
    radial-gradient(circle at 85% 55%, rgba(255, 211, 38, .045), transparent 22%),
    var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: .16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 999;
  padding: 12px 18px;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
  transition: top .2s ease;
}
.skip-link:focus { top: 18px; }

.section-shell {
  width: min(1280px, calc(100% - 56px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 100;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  width: min(1300px, calc(100% - 32px));
  min-height: 74px;
  padding: 8px 18px 8px 28px;
  background: rgba(255, 255, 255, .93);
  border: 1px solid rgba(7, 31, 77, .08);
  border-radius: 32px;
  box-shadow: 0 10px 32px rgba(7, 31, 77, .14);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand { position: relative; z-index: 2; align-self: stretch; }
.brand-badge,
.footer-brand,
.brand-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--pink);
  font-family: var(--script);
  line-height: .8;
  text-align: center;
  border-radius: 44% 56% 47% 53% / 52% 44% 56% 48%;
  transform: rotate(-3deg);
}

.brand-badge {
  position: absolute;
  top: -16px;
  left: 0;
  width: 94px;
  height: 94px;
  filter: drop-shadow(0 8px 10px rgba(243, 38, 120, .18));
}
.brand-badge::before,
.brand-badge::after,
.footer-brand::before,
.footer-brand::after,
.brand-mobile::before,
.brand-mobile::after {
  position: absolute;
  z-index: -1;
  width: 94%;
  height: 94%;
  content: "";
  background: inherit;
  border-radius: 44% 56% 47% 53% / 52% 44% 56% 48%;
}
.brand-badge::before,
.footer-brand::before,
.brand-mobile::before { transform: rotate(28deg); }
.brand-badge::after,
.footer-brand::after,
.brand-mobile::after { transform: rotate(58deg); }
.brand-badge span,
.footer-brand span,
.brand-mobile span { font-size: 22px; transform: rotate(-2deg); }
.brand-badge strong,
.footer-brand strong,
.brand-mobile strong { font-size: 25px; font-weight: 600; white-space: nowrap; }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3.4vw, 58px);
  padding-inline: 18px;
  font-size: 14px;
  font-weight: 750;
}
.site-nav a,
.footer-nav a { position: relative; transition: color .2s ease; }
.site-nav a::after,
.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--pink);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.site-nav a:hover,
.site-nav a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible { color: var(--pink); }
.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after { transform: scaleX(1); }

.menu-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 26px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.button:hover,
.button:focus-visible { transform: translateY(-3px); }
.button:focus-visible,
a:focus-visible,
button:focus-visible { outline: 3px solid rgba(4, 88, 201, .38); outline-offset: 4px; }
.button-primary { color: #fff; background: var(--pink); box-shadow: 0 10px 24px rgba(243, 38, 120, .23); }
.button-primary:hover,
.button-primary:focus-visible { background: var(--pink-dark); box-shadow: 0 14px 28px rgba(243, 38, 120, .3); }
.button-outline { color: var(--pink); border-color: var(--pink); background: rgba(255, 255, 255, .54); }
.button-outline:hover,
.button-outline:focus-visible { color: #fff; background: var(--pink); }
.button-light { color: var(--pink); background: #fff; }
.button-light:hover,
.button-light:focus-visible { color: #fff; background: var(--navy); }
.button-inverse { color: #fff; border-color: rgba(255,255,255,.9); background: transparent; }
.button-inverse:hover,
.button-inverse:focus-visible { color: var(--pink); background: #fff; }
.button svg { width: 21px; height: 21px; margin-right: 9px; fill: currentColor; }
.header-cta { min-height: 48px; padding-inline: 24px; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  align-items: center;
  min-height: 850px;
  padding-top: 126px;
  padding-bottom: 48px;
}
.hero-copy { position: relative; z-index: 2; padding: 46px 0 18px 34px; }
.hero h1,
.services h2,
.about h2,
.capsule h2,
.guide h2,
.favourites h2,
.social h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: .98;
}
.hero h1 { max-width: 650px; font-size: clamp(70px, 7.4vw, 106px); }
.pink-word { position: relative; color: var(--pink); }
.pink-word::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 12px;
  content: "";
  background: url("data:image/svg+xml,%3Csvg width='140' height='12' viewBox='0 0 140 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 7c7-8 13 8 20 0s13 8 20 0 13 8 20 0 13 8 20 0 13 8 20 0 13 8 20 0' fill='none' stroke='%23f32678' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x center / 140px 12px;
}
.paint-word { position: relative; z-index: 1; display: inline-block; }
.paint-word::before {
  position: absolute;
  z-index: -1;
  right: -13px;
  bottom: 0;
  left: -10px;
  height: 54%;
  content: "";
  background: var(--yellow);
  border-radius: 9% 16% 11% 8%;
  transform: rotate(-1.5deg);
  clip-path: polygon(1% 18%, 98% 4%, 100% 78%, 93% 84%, 75% 100%, 48% 86%, 23% 98%, 2% 78%);
}
.hero-intro { max-width: 510px; margin: 35px 0 0; font-size: clamp(18px, 1.7vw, 23px); font-weight: 620; line-height: 1.45; }
.hero-intro em { position: relative; color: var(--pink); font-family: var(--serif); font-size: 1.25em; font-style: normal; font-weight: 800; }
.award-chip { display: flex; align-items: center; gap: 14px; margin-top: 42px; font-size: 14px; font-weight: 650; line-height: 1.35; }
.award-rosette { display: grid; place-items: center; width: 53px; height: 53px; color: #fff; background: var(--lavender); border: 7px dotted rgba(255,255,255,.55); border-radius: 50%; font-size: 24px; }

.brand-mobile { display: none; }
.hero-visual { position: relative; min-height: 680px; }
.hero-image-wrap {
  position: absolute;
  inset: 6px 66px 0 10px;
  overflow: hidden;
  background: #dcc3ae;
  border-radius: 48% 48% 40% 50% / 30% 28% 24% 30%;
  box-shadow: 0 26px 60px rgba(7, 31, 77, .18);
}
.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.3);
  pointer-events: none;
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.sticker-script {
  position: absolute;
  top: 50px;
  right: -10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 138px;
  height: 138px;
  color: #fff;
  background: var(--pink);
  border-radius: 44% 56% 47% 53% / 52% 44% 56% 48%;
  font-family: var(--script);
  font-size: 29px;
  line-height: .76;
  text-align: center;
  transform: rotate(6deg);
  box-shadow: 0 14px 28px rgba(243, 38, 120, .24);
}
.sticker-script::before,
.sticker-script::after { position: absolute; z-index: -1; width: 94%; height: 94%; content: ""; background: inherit; border-radius: inherit; }
.sticker-script::before { transform: rotate(27deg); }
.sticker-script::after { transform: rotate(58deg); }
.colour-dots { position: absolute; top: 280px; right: 10px; z-index: 2; display: flex; flex-direction: column; gap: 13px; }
.colour-dots i { width: 31px; height: 31px; border: 3px solid rgba(255,255,255,.8); border-radius: 50%; box-shadow: 0 3px 8px rgba(7,31,77,.1); }
.colour-dots i:nth-child(1) { background: var(--pink); }
.colour-dots i:nth-child(2) { background: var(--cobalt); }
.colour-dots i:nth-child(3) { background: var(--aqua); }
.colour-dots i:nth-child(4) { background: var(--yellow); }
.colour-dots i:nth-child(5) { background: var(--lavender); }
.checker,
.footer-checker {
  background-color: transparent;
  background-image: linear-gradient(45deg, currentColor 25%, transparent 25%), linear-gradient(-45deg, currentColor 25%, transparent 25%), linear-gradient(45deg, transparent 75%, currentColor 75%), linear-gradient(-45deg, transparent 75%, currentColor 75%);
  background-position: 0 0, 0 13px, 13px -13px, -13px 0;
  background-size: 26px 26px;
}
.checker { position: absolute; left: -10px; bottom: 18px; z-index: 3; width: 93px; height: 70px; color: #111; transform: rotate(8deg); }

.marquee { overflow: hidden; color: #fff; background: var(--pink); border-block: 2px solid rgba(255,255,255,.3); }
.marquee-track { display: flex; width: max-content; padding-block: 14px; animation: marquee 22s linear infinite; }
.marquee-track span { padding-inline: 30px; font-size: 12px; font-weight: 850; letter-spacing: .055em; white-space: nowrap; }
.marquee-track b { font-size: 15px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.services { padding-top: 88px; padding-bottom: 82px; }
.services h2,
.favourites h2,
.social h2 { font-size: clamp(48px, 5vw, 75px); text-align: center; }
.services h2 span,
.about h2 { position: relative; }
.services h2 span::after,
.about h2::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 10px;
  content: "";
  background: url("data:image/svg+xml,%3Csvg width='120' height='10' viewBox='0 0 120 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 6c6-7 11 7 17 0s11 7 17 0 11 7 17 0 11 7 17 0 11 7 17 0 11 7 17 0' fill='none' stroke='%23f32678' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") repeat-x center / 120px 10px;
}
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 57px; }
.service-card { overflow: hidden; min-width: 0; border-radius: 32px; box-shadow: 0 18px 36px rgba(7,31,77,.09); transition: transform .28s ease, box-shadow .28s ease; }
.service-card:hover { transform: translateY(-9px) rotate(-.3deg); box-shadow: 0 24px 45px rgba(7,31,77,.16); }
.service-card:nth-child(2):hover { transform: translateY(-9px) rotate(.3deg); }
.service-photo { height: 300px; background-image: url("assets/services-triptych.png"); background-repeat: no-repeat; background-size: 300% 100%; }
.service-photo-colour { background-position: left center; }
.service-photo-style { background-position: center center; }
.service-photo-rack { background-position: right center; }
.service-content { min-height: 220px; padding: 27px 31px 30px; }
.colour-card .service-content { background: var(--aqua); }
.style-card .service-content { background: var(--lavender); }
.capsule-card .service-content { background: var(--yellow); }
.service-content h3 { max-width: 310px; margin: 0 0 14px; font-family: var(--serif); font-size: clamp(27px, 2.3vw, 36px); line-height: 1.02; }
.service-content p { max-width: 300px; margin: 0 0 22px; font-size: 17px; font-weight: 580; line-height: 1.4; }
.mini-chip { display: inline-flex; padding: 7px 13px; color: var(--navy); background: #fff; border-radius: 99px; font-size: 12px; font-weight: 800; }
.text-link { display: inline-flex; gap: 8px; align-items: center; font-size: 13px; font-weight: 850; }
.text-link span { display: grid; place-items: center; width: 25px; height: 25px; color: #fff; background: var(--pink); border-radius: 50%; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.about { display: grid; grid-template-columns: minmax(320px, .85fr) 1.15fr; align-items: center; gap: clamp(60px, 8vw, 130px); padding-top: 70px; padding-bottom: 125px; }
.about-photo-wrap { position: relative; justify-self: end; width: min(480px, 100%); aspect-ratio: 1 / .9; }
.about-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: 50% center; border: 11px solid #fff; box-shadow: var(--shadow); transform: rotate(-3deg); }
.tape { position: absolute; top: -24px; left: 10px; width: 130px; height: 42px; background: rgba(81,200,210,.82); transform: rotate(-13deg); }
.pink-bloom { position: absolute; left: -48px; bottom: 42px; z-index: -1; width: 120px; height: 120px; background: var(--pink); border-radius: 42% 58% 47% 53% / 52% 44% 56% 48%; opacity: .83; }
.scribble { position: absolute; right: -42px; bottom: -28px; font-family: var(--script); font-size: 90px; font-weight: 900; transform: rotate(-20deg); }
.about-copy { max-width: 610px; }
.eyebrow { margin: 0 0 14px; color: var(--pink); font-size: 12px; font-weight: 900; letter-spacing: .16em; }
.about h2 { display: inline-block; font-size: clamp(58px, 5.6vw, 82px); }
.about-lead { margin-top: 36px; font-size: clamp(20px, 2vw, 28px); line-height: 1.42; }
.about-copy > p:not(.eyebrow):not(.about-lead) { max-width: 590px; color: var(--muted); font-size: 17px; }
.credential { display: inline-flex; align-items: center; gap: 10px; margin-top: 14px; font-size: 14px; font-weight: 800; }
.credential span { display: grid; place-items: center; width: 41px; height: 41px; color: #fff; background: var(--lavender); border-radius: 50%; }

.capsule {
  position: relative;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: 40px;
  min-height: 560px;
  padding: 62px 64px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(125deg, #0655bd, var(--cobalt) 58%, #074aaa);
  border-radius: 55px 38px 48px 34px;
  box-shadow: 0 24px 55px rgba(4,88,201,.25);
}
.capsule::before { position: absolute; inset: 18px; content: ""; border: 1px solid rgba(255,255,255,.08); border-radius: 44px 28px 40px 27px; pointer-events: none; }
.eyebrow-light { color: var(--yellow); }
.capsule h2 { position: relative; font-size: clamp(49px, 5vw, 72px); }
.capsule h2::after { position: absolute; bottom: -14px; left: 0; width: 80%; height: 5px; content: ""; background: var(--yellow); border-radius: 99px; transform: rotate(-2deg); }
.capsule-copy > p:not(.eyebrow) { max-width: 360px; margin: 31px 0; color: rgba(255,255,255,.88); font-size: 18px; }
.wardrobe-board { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px 12px; padding: 26px 0; }
.garment { position: relative; display: grid; place-items: end center; min-height: 155px; padding: 13px; color: var(--navy); background: #7ca4c0; border-radius: 22px 22px 12px 12px; box-shadow: 0 15px 25px rgba(1,24,60,.2); font-size: 10px; font-weight: 900; letter-spacing: .08em; transform: rotate(-2deg); }
.garment:nth-child(2n) { transform: rotate(2deg); }
.garment::before { position: absolute; top: -1px; left: 50%; width: 55%; height: 28px; content: ""; background: rgba(255,255,255,.13); border-radius: 0 0 50% 50%; transform: translateX(-50%); }
.garment-shirt { min-height: 135px; }
.garment-pants { min-height: 175px; clip-path: polygon(12% 0, 88% 0, 83% 100%, 55% 100%, 50% 50%, 45% 100%, 17% 100%); }
.garment-jacket { min-height: 165px; }
.garment-skirt { min-height: 165px; background: repeating-linear-gradient(95deg, #f34a7e 0 12px, #ffca47 12px 24px, #48beca 24px 36px, #fff0e9 36px 48px); clip-path: polygon(25% 0, 75% 0, 100% 100%, 0 100%); }
.garment.pink { background: #ef347c; }
.garment.white { background: #f7f3ec; }
.garment.print { background: repeating-linear-gradient(42deg, #fff 0 14px, #0e3770 14px 23px, #d2e6eb 23px 31px); }
.garment.yellow { background: #f1c92b; }
.garment.aqua { background: #61cad1; }
.garment.cream { background: #fbf1dd; }
.garment.denim { background: #6d9bb5; }
.garment.stripe { background: repeating-linear-gradient(0deg, #f7f3ec 0 12px, #17335f 12px 17px); }
.garment span { position: relative; z-index: 2; padding: 4px 7px; background: rgba(255,255,255,.7); border-radius: 99px; }
.wardrobe-arrow { position: absolute; right: 8px; bottom: 0; width: 40%; fill: none; stroke: #fff; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; opacity: .7; transform: rotate(-8deg); }

.guide {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  min-height: 560px;
  margin-top: 42px;
  padding: 68px 72px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, var(--pink) 0 47%, #fff3e3 47% 100%);
  border-radius: 38px;
  box-shadow: var(--shadow);
}
.guide-copy { max-width: 460px; }
.guide h2 { font-size: clamp(54px, 5.2vw, 76px); }
.guide-copy > p:not(.eyebrow) { max-width: 410px; margin: 27px 0 30px; font-size: 18px; }
.guide-art { position: relative; min-height: 445px; }
.phone { position: absolute; z-index: 3; left: 6%; top: 2%; width: 225px; height: 430px; padding: 12px; background: #111827; border: 2px solid #06090f; border-radius: 38px; box-shadow: 0 25px 38px rgba(7,31,77,.28); transform: rotate(8deg); }
.phone-top { position: absolute; top: 16px; left: 50%; z-index: 3; width: 72px; height: 19px; background: #111827; border-radius: 99px; transform: translateX(-50%); }
.phone-screen { position: relative; height: 100%; padding: 38px 14px 14px; overflow: hidden; color: var(--navy); background: #f3b9b8; border-radius: 29px; text-align: center; }
.phone-screen p { margin: 0; font-family: var(--serif); font-size: 20px; }
.phone-screen h3 { position: relative; z-index: 2; margin: 2px 0 6px; font-family: var(--serif); font-size: 29px; line-height: .95; }
.phone-screen img { width: 100%; height: 215px; margin: 8px auto; object-fit: cover; object-position: center 30%; border-radius: 18px; }
.phone-screen small { display: block; font-size: 9px; font-weight: 800; line-height: 1.25; }
.guide-polaroid { position: absolute; width: 260px; height: 185px; padding: 12px 12px 40px; background: #fff; box-shadow: 0 15px 26px rgba(7,31,77,.17); }
.guide-polaroid::before { display: block; width: 100%; height: 100%; content: ""; background-image: url("assets/services-triptych.png"); background-size: 300% 100%; }
.guide-polaroid span { position: absolute; bottom: 12px; left: 16px; color: var(--pink); font-family: var(--script); font-size: 23px; }
.polaroid-one { top: 46px; right: 4%; transform: rotate(7deg); }
.polaroid-one::before { background-position: right; }
.polaroid-two { right: 17%; bottom: 5px; transform: rotate(-7deg); }
.polaroid-two::before { background-position: left; }
.burst { position: absolute; z-index: 4; display: grid; place-items: center; width: 106px; height: 106px; color: var(--navy); border-radius: 44% 56% 47% 53% / 52% 44% 56% 48%; font-family: var(--script); font-size: 29px; transform: rotate(-8deg); }
.burst-yellow { right: 1%; bottom: 13%; background: var(--yellow); }
.burst-pink { top: 4%; left: 44%; color: #fff; background: var(--pink); }

.favourites { padding-top: 100px; padding-bottom: 38px; }
.section-heading { text-align: center; }
.section-heading .eyebrow { margin-bottom: 11px; }
.favourites-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 42px; }
.favourite-card { padding: 12px; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 12px 27px rgba(7,31,77,.07); transition: transform .25s ease, box-shadow .25s ease; }
.favourite-card:hover { transform: translateY(-7px); box-shadow: 0 20px 35px rgba(7,31,77,.13); }
.favourite-image { height: 220px; border-radius: 16px; background-image: url("assets/services-triptych.png"); background-repeat: no-repeat; background-size: 300% 100%; }
.favourite-yaga { background-position: center; }
.favourite-artipoppe { background-image: url("assets/hero-thia.png"); background-size: cover; background-position: 50% 48%; }
.favourite-hair { background-position: left; filter: hue-rotate(284deg) saturate(.55) brightness(1.14); }
.favourite-card > div:last-child { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 18px 8px 7px; }
.favourite-card h3 { margin: 0; font-family: var(--serif); font-size: 25px; }
.favourite-card span { display: grid; place-items: center; width: 38px; height: 38px; color: #fff; background: var(--pink); border-radius: 50%; font-size: 22px; }

.sarie { display: grid; grid-template-columns: auto 1fr 170px 70px; align-items: center; gap: 28px; min-height: 170px; margin-top: 32px; padding: 20px 30px 20px 38px; overflow: hidden; background: #fff; border: 2px solid #d4a347; border-radius: 28px; box-shadow: 0 13px 30px rgba(111,75,9,.08); }
.sarie-word { color: #d0a14c; font-family: var(--serif); font-size: clamp(56px, 6.3vw, 91px); line-height: 1; }
.sarie-copy { padding-left: 30px; border-left: 1px solid rgba(208,161,76,.45); font-size: clamp(17px, 2.2vw, 29px); font-weight: 650; letter-spacing: .08em; line-height: 1.32; }
.sarie-portrait { align-self: end; height: 150px; overflow: hidden; }
.sarie-portrait img { width: 100%; height: 190%; object-fit: cover; object-position: center 16%; }
.stars { color: #d0a14c; font-family: var(--serif); font-size: 34px; line-height: .75; text-align: center; transform: rotate(7deg); }

.social { display: grid; grid-template-columns: .42fr .58fr; align-items: center; gap: 50px; padding-top: 92px; padding-bottom: 78px; }
.social h2 { text-align: left; }
.social-handle { display: block; margin: 10px 0 29px; color: var(--pink); font-size: 26px; font-weight: 900; }
.social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.social-grid a { display: block; aspect-ratio: 1; overflow: hidden; border-radius: 14px; box-shadow: 0 8px 18px rgba(7,31,77,.1); transition: transform .2s ease; }
.social-grid a:hover { transform: scale(1.04) rotate(1deg); }
.social-tile { display: block; width: 100%; height: 100%; background-image: url("assets/instagram-feed.png"); background-repeat: no-repeat; background-size: 400% auto; }
.tile-1 { background-position: 0 0; }
.tile-2 { background-position: 33.33% 0; }
.tile-3 { background-position: 66.66% 0; }
.tile-4 { background-position: 100% 0; }
.tile-5 { background-position: 0 17%; }
.tile-6 { background-position: 33.33% 17%; }
.tile-7 { background-position: 66.66% 17%; }
.tile-8 { background-position: 100% 17%; }

.final-cta { position: relative; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 48px; min-height: 190px; padding: 35px 70px; overflow: hidden; color: #fff; background: var(--pink); border-radius: 36px 36px 0 0; }
.final-cta::before,
.final-cta::after { position: absolute; top: 0; bottom: 0; width: 77px; content: ""; opacity: .4; background-image: linear-gradient(45deg, #fff 25%, transparent 25%), linear-gradient(-45deg, #fff 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #fff 75%), linear-gradient(-45deg, transparent 75%, #fff 75%); background-position: 0 0, 0 14px, 14px -14px, -14px 0; background-size: 28px 28px; }
.final-cta::before { left: 0; }
.final-cta::after { right: 0; }
.final-cta h2 { font-size: clamp(40px, 4vw, 61px); text-align: center; }
.heart-doodle { justify-self: center; font-family: var(--script); font-size: 72px; transform: rotate(-18deg); }
.right-heart { transform: rotate(20deg); }

.footer { position: relative; margin-top: 0; padding: 55px 0 24px; color: #fff; background: var(--navy); }
.footer::before { position: absolute; top: -23px; left: -2%; width: 104%; height: 40px; content: ""; background: var(--navy); border-radius: 50% 50% 0 0; }
.footer-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 150px 1fr 190px; align-items: start; gap: 55px; }
.footer-brand { position: relative; width: 125px; height: 125px; filter: drop-shadow(0 10px 15px rgba(0,0,0,.2)); }
.footer-brand span { font-size: 29px; }
.footer-brand strong { font-size: 31px; }
.footer-nav-wrap { padding-top: 12px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 22px 34px; font-size: 13px; font-weight: 800; }
.footer-social { display: inline-block; margin: 25px 0 4px; color: var(--pink); font-weight: 850; }
.footer-nav-wrap p { margin: 8px 0 0; color: rgba(255,255,255,.68); font-size: 12px; }
.footer-checker { justify-self: end; width: 170px; height: 96px; color: rgba(59,97,154,.52); }
.copyright { margin-top: 35px; padding-top: 20px; color: rgba(255,255,255,.62); border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; text-align: center; }

.floating-whatsapp { position: fixed; right: 24px; bottom: 24px; z-index: 90; display: grid; place-items: center; width: 68px; height: 68px; color: #fff; background: var(--green); border: 5px solid #fff; border-radius: 50%; box-shadow: 0 13px 30px rgba(0,75,40,.3); transition: transform .2s ease, box-shadow .2s ease; }
.floating-whatsapp:hover,
.floating-whatsapp:focus-visible { transform: translateY(-5px) scale(1.04); box-shadow: 0 18px 38px rgba(0,75,40,.36); }
.floating-whatsapp svg { width: 36px; height: 36px; fill: currentColor; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 94px 1fr auto; padding-left: 18px; }
  .brand-badge { top: -9px; width: 80px; height: 80px; }
  .brand-badge span { font-size: 18px; }
  .brand-badge strong { font-size: 21px; }
  .site-nav { gap: 22px; padding-inline: 10px; font-size: 12px; }
  .hero { grid-template-columns: .9fr 1.1fr; min-height: 760px; }
  .hero-copy { padding-left: 10px; }
  .hero h1 { font-size: clamp(61px, 7.4vw, 82px); }
  .hero-visual { min-height: 585px; }
  .hero-image-wrap { right: 45px; }
  .sticker-script { width: 110px; height: 110px; font-size: 25px; }
  .capsule { padding-inline: 42px; }
  .wardrobe-board { gap: 15px 8px; }
  .garment { min-height: 132px; }
  .garment-pants { min-height: 150px; }
  .guide { padding-inline: 45px; }
  .guide-polaroid { width: 210px; height: 155px; }
}

@media (max-width: 860px) {
  .section-shell { width: min(100% - 36px, 700px); }
  .site-header { display: flex; justify-content: space-between; min-height: 66px; padding: 9px 12px 9px 20px; border-radius: 25px; }
  .brand { width: 74px; }
  .brand-badge { top: -10px; left: -3px; width: 76px; height: 76px; }
  .menu-toggle { position: relative; z-index: 4; display: flex; flex-direction: column; gap: 5px; align-items: center; justify-content: center; width: 46px; height: 46px; padding: 0; background: transparent; border: 0; border-radius: 50%; }
  .menu-toggle span:not(.sr-only) { display: block; width: 23px; height: 2px; background: var(--navy); border-radius: 99px; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: absolute; top: 77px; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px 17px; border-bottom: 1px solid var(--line); font-size: 15px; }
  .site-nav a:last-child { border-bottom: 0; }
  .header-cta { margin-left: auto; margin-right: 5px; padding-inline: 18px; font-size: 12px; }

  .hero { grid-template-columns: 1fr; padding-top: 118px; padding-bottom: 42px; }
  .hero-copy { padding: 30px 10px 0; }
  .hero h1 { font-size: clamp(57px, 12vw, 82px); }
  .hero-intro { max-width: 550px; }
  .hero-visual { order: -1; min-height: 480px; }
  .hero-image-wrap { inset: 0 55px 0 35px; border-radius: 43% 49% 38% 50% / 33% 28% 25% 30%; }
  .sticker-script { top: 28px; right: 10px; }
  .colour-dots { top: 220px; right: 10px; }
  .checker { left: 15px; bottom: 10px; }
  .award-chip { margin-top: 28px; }
  .services { padding-top: 65px; }
  .service-grid { grid-template-columns: 1fr; gap: 22px; }
  .service-card { display: grid; grid-template-columns: .92fr 1.08fr; }
  .service-photo { height: 100%; min-height: 285px; }
  .service-content { min-height: 285px; }
  .about { grid-template-columns: 1fr; gap: 58px; padding-bottom: 88px; }
  .about-photo-wrap { justify-self: center; width: min(520px, 90%); }
  .about-copy { max-width: 620px; margin-inline: auto; }
  .capsule { grid-template-columns: 1fr; padding: 52px 38px; border-radius: 42px; }
  .wardrobe-board { grid-template-columns: repeat(5, 1fr); }
  .guide { grid-template-columns: 1fr; padding: 52px 38px; background: linear-gradient(180deg, var(--pink) 0 48%, #fff3e3 48% 100%); }
  .guide-art { min-height: 480px; margin-top: 58px; }
  .phone { left: 6%; }
  .polaroid-one { right: 4%; }
  .polaroid-two { right: 11%; }
  .favourites-grid { grid-template-columns: 1fr; }
  .favourite-card { display: grid; grid-template-columns: .55fr .45fr; align-items: center; }
  .favourite-image { height: 180px; }
  .sarie { grid-template-columns: auto 1fr 100px; gap: 17px; }
  .sarie-portrait { height: 120px; }
  .stars { display: none; }
  .social { grid-template-columns: 1fr; }
  .social-copy { text-align: center; }
  .social h2 { text-align: center; }
  .social-grid { max-width: 660px; margin-inline: auto; }
  .final-cta { grid-template-columns: 1fr; gap: 24px; padding-block: 45px; }
  .heart-doodle { display: none; }
  .footer-inner { grid-template-columns: 125px 1fr; }
  .footer-checker { display: none; }
}

@media (max-width: 600px) {
  body { font-size: 15px; }
  .section-shell { width: min(100% - 24px, 520px); }
  .site-header { top: 10px; width: calc(100% - 20px); }
  .brand { width: 67px; }
  .brand-badge { top: -6px; width: 67px; height: 67px; }
  .brand-badge span { font-size: 14px; }
  .brand-badge strong { font-size: 18px; }
  .header-cta { min-height: 42px; padding: 11px 15px; }
  .hero { padding-top: 98px; }
  .hero-visual { min-height: 390px; }
  .hero-image-wrap { inset: 0 26px 0 10px; }
  .sticker-script { top: 15px; right: -5px; width: 82px; height: 82px; font-size: 20px; }
  .colour-dots { top: 176px; right: -3px; gap: 8px; }
  .colour-dots i { width: 23px; height: 23px; border-width: 2px; }
  .checker { left: 0; width: 67px; height: 50px; background-size: 20px 20px; }
  .hero-copy { padding-top: 27px; }
  .hero h1 { font-size: clamp(47px, 14.6vw, 66px); }
  .hero-intro { margin-top: 27px; font-size: 17px; }
  .button-row { align-items: stretch; margin-top: 25px; }
  .button-row .button { width: 100%; }
  .award-chip { margin-top: 25px; }
  .marquee-track { padding-block: 12px; }
  .marquee-track span { padding-inline: 20px; }
  .services h2,
  .favourites h2,
  .social h2 { font-size: 43px; }
  .service-grid { margin-top: 43px; }
  .service-card { display: block; }
  .service-photo { height: 240px; min-height: 0; }
  .service-content { min-height: 0; padding: 24px; }
  .about { padding-top: 40px; }
  .about-photo-wrap { width: 92%; }
  .about h2 { font-size: 55px; }
  .about-lead { font-size: 20px; }
  .capsule { width: calc(100% - 16px); padding: 45px 23px; }
  .capsule h2 { font-size: 47px; }
  .wardrobe-board { grid-template-columns: repeat(5, 1fr); gap: 9px 5px; }
  .garment { min-height: 90px; padding: 5px; border-radius: 10px; }
  .garment-shirt { min-height: 80px; }
  .garment-pants,
  .garment-jacket,
  .garment-skirt { min-height: 105px; }
  .garment span { padding: 2px 3px; font-size: 6px; }
  .guide { width: calc(100% - 16px); padding: 45px 23px; }
  .guide h2 { font-size: 51px; }
  .guide-art { min-height: 410px; }
  .phone { left: 1%; width: 188px; height: 370px; }
  .phone-screen img { height: 170px; }
  .guide-polaroid { width: 165px; height: 126px; }
  .polaroid-one { top: 54px; right: -1%; }
  .polaroid-two { right: 4%; bottom: 8px; }
  .burst { width: 77px; height: 77px; font-size: 22px; }
  .burst-pink { left: auto; right: 17%; }
  .sarie { grid-template-columns: 1fr; padding: 26px; text-align: center; }
  .sarie-word { font-size: 68px; }
  .sarie-copy { padding: 18px 0 0; border-top: 1px solid rgba(208,161,76,.45); border-left: 0; }
  .sarie-portrait { display: none; }
  .social { padding-top: 65px; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta { width: calc(100% - 16px); padding: 42px 28px; }
  .final-cta h2 { font-size: 39px; }
  .footer { padding-top: 45px; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; gap: 30px; text-align: center; }
  .footer-nav { justify-content: center; }
  .footer-brand { width: 105px; height: 105px; }
  .floating-whatsapp { right: 15px; bottom: 15px; width: 60px; height: 60px; border-width: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Approved mock-up fidelity pass */
body {
  background:
    radial-gradient(circle at 16% 14%, rgba(243, 38, 120, .025), transparent 23%),
    radial-gradient(circle at 86% 64%, rgba(255, 211, 38, .03), transparent 24%),
    #fffaf2;
}

.section-shell {
  width: min(1420px, calc(100% - 44px));
}

.site-header {
  position: sticky;
  top: 14px;
  left: auto;
  width: min(1440px, calc(100% - 28px));
  min-height: 76px;
  margin: 14px auto 0;
  padding: 8px 24px 8px 30px;
  border-radius: 26px;
  transform: none;
}

.brand {
  width: 112px;
  min-height: 58px;
}

.brand-logo {
  position: absolute;
  top: -18px;
  left: -3px;
  width: 104px;
  height: 104px;
  object-fit: contain;
  filter: drop-shadow(0 7px 11px rgba(243, 38, 120, .16));
}

.site-nav {
  gap: clamp(34px, 5vw, 74px);
  font-size: 14px;
}

.header-cta {
  min-height: 47px;
  padding-inline: 27px;
}

.hero {
  grid-template-columns: minmax(470px, .95fr) minmax(560px, 1.05fr);
  min-height: 780px;
  padding: 36px 46px 26px;
}

.hero-copy {
  align-self: center;
  padding: 20px 0 15px 24px;
}

.hero h1 {
  max-width: 670px;
  font-size: clamp(72px, 7vw, 101px);
  line-height: 1.02;
}

.hero-intro {
  max-width: 500px;
  margin-top: 31px;
  font-size: clamp(19px, 1.75vw, 24px);
}

.button-row {
  gap: 17px;
  margin-top: 31px;
}

.award-chip {
  margin-top: 34px;
  font-size: 15px;
}

.award-rosette {
  width: 58px;
  height: 58px;
}

.hero-visual {
  min-height: 680px;
}

.hero-image-wrap {
  inset: 4px 70px 0 10px;
  border-radius: 47% 49% 39% 50% / 27% 27% 24% 29%;
}

.hero-image-wrap img {
  object-position: 52% 47%;
}

.sticker-script {
  top: 54px;
  right: 0;
  width: 132px;
  height: 132px;
  font-size: 27px;
}

.colour-dots {
  top: 288px;
  right: 11px;
}

.checker {
  left: -4px;
  bottom: 22px;
  width: 96px;
  height: 72px;
}

.marquee-track {
  padding-block: 14px;
}

.marquee-track span {
  padding-inline: 34px;
  font-size: 13px;
}

.services {
  padding-top: 65px;
  padding-bottom: 42px;
}

.services h2,
.favourites h2,
.social h2 {
  font-size: clamp(52px, 5vw, 72px);
}

.service-grid {
  gap: 27px;
  margin-top: 48px;
}

.service-card {
  border-radius: 28px;
  box-shadow: 0 15px 32px rgba(7, 31, 77, .09);
}

.service-photo {
  height: 315px;
}

.service-content {
  min-height: 190px;
  padding: 24px 29px 27px;
}

.service-content h3 {
  margin-bottom: 11px;
  font-size: clamp(27px, 2.4vw, 35px);
}

.service-content p {
  margin-bottom: 17px;
  font-size: 16px;
}

.about {
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(55px, 8vw, 125px);
  min-height: 500px;
  padding-top: 28px;
  padding-bottom: 62px;
}

.about-photo-wrap {
  width: min(450px, 84%);
  aspect-ratio: .96 / 1;
}

.about-photo-wrap img {
  border-width: 10px;
  object-position: center;
}

.about-copy {
  max-width: 600px;
}

.about h2 {
  font-size: clamp(60px, 5.3vw, 80px);
}

.about-lead {
  max-width: 570px;
  margin: 32px 0 0;
  font-size: clamp(20px, 1.8vw, 25px);
  line-height: 1.45;
}

.credential {
  margin-top: 21px;
}

.capsule {
  grid-template-columns: .66fr 1.34fr;
  gap: 28px;
  min-height: 465px;
  padding: 52px 64px;
  border-radius: 45px 34px 42px 31px;
}

.capsule h2 {
  font-size: clamp(50px, 4.9vw, 70px);
}

.capsule-copy > p:not(.eyebrow) {
  max-width: 340px;
  margin: 28px 0;
  font-size: 17px;
}

.wardrobe-board {
  display: block;
  min-height: 350px;
  padding: 18px 0;
}

.wardrobe-board > img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 335px;
  object-fit: contain;
  filter: drop-shadow(0 16px 16px rgba(0, 25, 64, .19));
}

.wardrobe-arrow {
  right: 1%;
  bottom: 0;
  width: 34%;
}

.capsule-heart {
  position: absolute;
  top: 8px;
  right: -5px;
  color: #fff;
  font-family: var(--script);
  font-size: 78px;
  line-height: 1;
  transform: rotate(-12deg);
}

.guide {
  grid-template-columns: .82fr 1.18fr;
  min-height: 500px;
  margin-top: 34px;
  padding: 52px 58px;
  background: linear-gradient(108deg, var(--pink) 0 50%, #fff3e3 50% 100%);
  border-radius: 32px;
}

.guide h2 {
  font-size: clamp(54px, 5.2vw, 73px);
}

.guide-copy > p:not(.eyebrow) {
  max-width: 380px;
  margin: 24px 0 28px;
  font-size: 17px;
}

.guide-art {
  min-height: 390px;
}

.guide-composite {
  position: absolute;
  inset: -18px -14px -20px 5%;
  width: 97%;
  height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 18px 25px rgba(7, 31, 77, .18));
  mix-blend-mode: multiply;
}

.favourites {
  padding-top: 64px;
  padding-bottom: 26px;
}

.favourites-grid {
  gap: 25px;
  margin-top: 35px;
}

.favourites-subtitle {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.favourite-card {
  padding: 10px;
  border-radius: 19px;
}

.favourite-image {
  height: 210px;
  border-radius: 14px;
  background-image: url("assets/favourites-triptych.png");
  background-size: 300% 100%;
}

.favourite-yaga { background-position: left center; }
.favourite-artipoppe {
  background-image: url("assets/favourites-triptych.png");
  background-size: 300% 100%;
  background-position: center center;
}
.favourite-hair {
  background-position: right center;
  filter: none;
}

.favourite-card > div:last-child {
  padding: 15px 6px 5px;
}

.favourite-card h3 {
  font-size: 24px;
}

.sarie {
  grid-template-columns: auto 1fr 168px 60px;
  min-height: 158px;
  margin-top: 25px;
  padding: 15px 28px 15px 36px;
  border-radius: 22px;
}

.sarie-copy {
  font-size: clamp(18px, 2.15vw, 28px);
}

.sarie-portrait {
  height: 142px;
}

.sarie-portrait img {
  height: 100%;
  object-position: center 16%;
}

.social {
  grid-template-columns: .34fr .66fr;
  gap: 45px;
  padding-top: 61px;
  padding-bottom: 42px;
}

.social h2 {
  text-align: left;
  font-size: clamp(48px, 4.5vw, 68px);
}

.social-handle {
  margin: 6px 0 23px;
  font-size: 24px;
}

.social-grid {
  gap: 9px;
}

.social-grid a {
  border-radius: 10px;
}

.final-cta {
  min-height: 160px;
  padding: 25px 67px;
  border-radius: 30px 30px 0 0;
}

.final-cta h2 {
  font-size: clamp(39px, 4vw, 57px);
}

.footer {
  padding: 43px 0 20px;
}

.footer-inner {
  grid-template-columns: 132px 1fr 180px;
  gap: 42px;
}

.footer-brand {
  width: 112px;
  height: 112px;
  background: transparent;
  filter: none;
  transform: none;
}

.footer-brand::before,
.footer-brand::after {
  display: none;
}

.footer-brand img {
  width: 112px;
  height: 112px;
  object-fit: contain;
}

.copyright {
  margin-top: 26px;
  padding-top: 16px;
}

@media (min-width: 861px) and (max-width: 1160px) {
  .section-shell { width: calc(100% - 32px); }
  .site-header { width: calc(100% - 22px); }
  .site-nav { gap: 26px; font-size: 12px; }
  .hero { grid-template-columns: minmax(390px, .92fr) minmax(470px, 1.08fr); min-height: 680px; padding-inline: 26px; }
  .hero h1 { font-size: clamp(61px, 6.8vw, 79px); }
  .hero-visual { min-height: 590px; }
  .hero-image-wrap { right: 54px; }
  .service-photo { height: 270px; }
  .service-content { min-height: 188px; padding-inline: 22px; }
  .about { gap: 50px; }
  .capsule { padding-inline: 42px; }
  .guide { padding-inline: 42px; }
}

@media (max-width: 860px) {
  .section-shell { width: min(100% - 24px, 700px); }
  .site-header { position: sticky; top: 8px; width: calc(100% - 16px); margin-top: 8px; }
  .brand { width: 76px; }
  .brand-logo { top: -7px; left: -5px; width: 76px; height: 76px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 32px 10px 36px; }
  .hero-visual { order: -1; min-height: 500px; }
  .hero-image-wrap { inset: 0 44px 0 22px; }
  .hero-copy { padding: 28px 8px 0; }
  .hero h1 { font-size: clamp(54px, 12vw, 76px); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { display: grid; grid-template-columns: .96fr 1.04fr; }
  .service-photo { min-height: 290px; height: 100%; }
  .service-content { min-height: 290px; }
  .about { grid-template-columns: 1fr; gap: 56px; }
  .about-photo-wrap { justify-self: center; width: min(470px, 88%); }
  .capsule { grid-template-columns: 1fr; padding: 45px 30px; }
  .wardrobe-board > img { height: auto; }
  .guide { grid-template-columns: 1fr; padding: 44px 30px; background: linear-gradient(180deg, var(--pink) 0 47%, #fff3e3 47% 100%); }
  .guide-art { min-height: 430px; margin-top: 55px; }
  .guide-composite { inset: 0; width: 100%; height: 420px; }
  .favourites-grid { grid-template-columns: 1fr; }
  .favourite-card { display: grid; grid-template-columns: .58fr .42fr; }
  .favourite-image { height: 190px; }
  .social { grid-template-columns: 1fr; }
  .social-copy { text-align: center; }
  .social h2 { text-align: center; }
  .sarie { grid-template-columns: auto 1fr 105px; }
  .stars { display: none; }
  .final-cta { grid-template-columns: 1fr; gap: 20px; padding-block: 38px; }
  .heart-doodle { display: none; }
  .footer-inner { grid-template-columns: 115px 1fr; }
  .footer-checker { display: none; }
}

@media (max-width: 600px) {
  .section-shell { width: min(100% - 18px, 520px); }
  .header-cta { min-height: 41px; padding-inline: 14px; }
  .hero-visual { min-height: 390px; }
  .hero-image-wrap { inset: 0 23px 0 4px; }
  .sticker-script { width: 83px; height: 83px; font-size: 19px; }
  .hero h1 { font-size: clamp(47px, 14vw, 63px); }
  .button-row .button { width: 100%; }
  .services { padding-top: 50px; }
  .services h2,
  .favourites h2,
  .social h2 { font-size: 42px; }
  .service-card { display: block; }
  .service-photo { height: 235px; min-height: 0; }
  .service-content { min-height: 0; }
  .about { padding-bottom: 50px; }
  .capsule { width: calc(100% - 8px); padding: 40px 22px; }
  .capsule h2 { font-size: 46px; }
  .wardrobe-board { min-height: auto; }
  .wardrobe-board > img { height: auto; }
  .guide { width: calc(100% - 8px); padding: 40px 22px; }
  .guide h2 { font-size: 49px; }
  .guide-art { min-height: 340px; }
  .guide-composite { height: 340px; }
  .favourite-card { display: block; }
  .favourite-image { height: 205px; }
  .sarie { grid-template-columns: 1fr; text-align: center; }
  .sarie-copy { padding: 16px 0 0; border-top: 1px solid rgba(208, 161, 76, .45); border-left: 0; }
  .sarie-portrait { display: none; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta { width: calc(100% - 8px); }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-nav { justify-content: center; }
}
