@font-face {
  font-family: "Pretendard Local";
  src: local("Pretendard");
}

:root{
  --cream:#F6F1E8;
  --paper:#FFFDF8;
  --ink:#111111;
  --muted:#736E66;
  --line:rgba(17,17,17,.16);
  --lavender:#B9A2F2;
  --lavender-deep:#8B6EDB;
  --lime:#E4F46B;
  --orange:#FF5B2D;
  --pad:clamp(20px,4.6vw,76px);
  --max:1500px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:var(--cream);
  font-family:"Pretendard","Pretendard Local",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:inherit;text-decoration:none}
button{font:inherit}
img{display:block;max-width:100%}

.header{
  position:fixed;
  z-index:100;
  inset:0 0 auto;
  height:88px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  padding:0 var(--pad);
  border-bottom:1px solid transparent;
  transition:
    height .28s ease,
    background .28s ease,
    border-color .28s ease,
    box-shadow .28s ease;
}
.header.scrolled{
  height:76px;
  background:var(--cream);
  border-bottom-color:var(--line);
  box-shadow:none;
}

.wordmark img{
  width:30px;
  height:auto;
  display:block;
  transition:transform .2s ease;
}

.wordmark:hover img{
  transform:rotate(4deg) scale(1.04);
}

@media (max-width:760px){
  .wordmark img{
    width:27px;
  }
}

/* brand lockup */
.wordmark{
  justify-self:start;
  display:inline-flex;
  align-items:center;
  gap:11px;
  min-width:max-content;
}
.brand-copy{
  display:flex;
  flex-direction:column;
  gap:3px;
}
.brand-copy strong{
  font-size:14px;
  line-height:1;
  font-weight:760;
  letter-spacing:.055em;
}
.brand-copy small{
  color:var(--lavender-deep);
  font-size:7px;
  line-height:1;
  font-weight:750;
  letter-spacing:.17em;
}
.header-mark{
  position:relative;
  display:block;
  width:25px;
  height:25px;
  color:var(--lavender-deep);
  transform:rotate(7deg);
  transition:transform .35s cubic-bezier(.2,.8,.2,1),color .2s ease;
}
.wordmark:hover .header-mark{
  transform:rotate(37deg);
  color:var(--orange);
}
.header-mark i{
  position:absolute;
  left:50%;
  top:50%;
  width:4px;
  height:14px;
  border-radius:999px;
  background:currentColor;
  transform-origin:50% 0;
}
.header-mark i:nth-child(1){transform:rotate(0deg) translate(-50%,-2px)}
.header-mark i:nth-child(2){transform:rotate(60deg) translate(-50%,-2px)}
.header-mark i:nth-child(3){transform:rotate(120deg) translate(-50%,-2px)}
.header-mark i:nth-child(4){transform:rotate(180deg) translate(-50%,-2px)}
.header-mark i:nth-child(5){transform:rotate(240deg) translate(-50%,-2px)}
.header-mark i:nth-child(6){transform:rotate(300deg) translate(-50%,-2px)}

/* navigation with little lime number tags */
.nav{
  display:flex;
  align-items:center;
  gap:32px;
  height:100%;
  font-size:10px;
  font-weight:720;
  letter-spacing:.13em;
}
.nav a{
  position:relative;
  display:flex;
  align-items:center;
  height:100%;
  padding-top:2px;
  transition:transform .2s ease;
}
.nav a::before{
  content:attr(data-index);
  position:absolute;
  left:50%;
  top:11px;
  min-width:24px;
  padding:4px 6px 3px;
  background:var(--lime);
  color:var(--ink);
  font-size:7px;
  line-height:1;
  font-weight:800;
  letter-spacing:.08em;
  text-align:center;
  border-radius:999px;
  opacity:0;
  transform:translate(-50%,7px) rotate(-5deg) scale(.82);
  transition:
    opacity .2s ease,
    transform .25s cubic-bezier(.2,.8,.2,1);
}
.nav a::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:20px;
  width:0;
  height:3px;
  border-radius:999px;
  background:var(--lavender-deep);
  transform:translateX(-50%);
  transition:width .25s ease;
}
.nav a:hover{
  transform:translateY(2px);
}
.nav a:hover::before{
  opacity:1;
  transform:translate(-50%,0) rotate(-5deg) scale(1);
}
.nav a:hover::after{
  width:18px;
}

/* right side */
.header-right{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:15px;
}
.availability{
  display:flex;
  align-items:center;
  gap:8px;
  color:#4F4A44;
  font-size:8px;
  line-height:1;
  font-weight:760;
  letter-spacing:.12em;
  white-space:nowrap;
}
.availability-dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--lime);
  box-shadow:0 0 0 0 rgba(228,244,107,.72);
  animation:availabilityPulse 2.25s ease-out infinite;
}
@keyframes availabilityPulse{
  0%{box-shadow:0 0 0 0 rgba(228,244,107,.75)}
  55%{box-shadow:0 0 0 7px rgba(228,244,107,0)}
  100%{box-shadow:0 0 0 0 rgba(228,244,107,0)}
}

.header-contact{
  min-width:126px;
  min-height:46px;
  display:grid;
  grid-template-columns:1fr 40px;
  align-items:stretch;
  padding:0;
  overflow:hidden;
  background:var(--cream);
  border:1px solid var(--lavender-deep);
  border-radius:6px;
  font-size:11px;
  font-weight:750;
  transition:transform .22s ease;
}
.contact-label{
  display:flex;
  align-items:center;
  padding:0 13px;
  transition:background .22s ease,color .22s ease;
}
.contact-arrow{
  display:grid;
  place-items:center;
  background:var(--orange);
  color:#fff;
  border-left:1px solid rgba(139,110,219,.55);
  font-size:16px;
  transition:background .22s ease,color .22s ease;
}
.contact-arrow-icon{
  display:inline-block;
  transition:transform .22s ease;
}
.header-contact:hover{
  transform:translateY(-1px);
}
.header-contact:hover .contact-label{
  background:var(--lavender-deep);
  color:#fff;
}
.header-contact:hover .contact-arrow{
  background:#E24A21;
}
.header-contact:hover .contact-arrow-icon{
  transform:translateX(2px);
}

.kakao-float{
  display:none;
}

@media (max-width:760px){
  .kakao-float{
    position:fixed;
    left:42px;
    right:42px;
    bottom:calc(32px + env(safe-area-inset-bottom, 0px));
    z-index:90;
    display:grid;
    grid-template-columns:1fr 58px;
    align-items:stretch;
    min-height:58px;
    padding:0;
    overflow:hidden;
    background:var(--orange);
    border:1px solid var(--ink);
    border-radius:0;
    font-size:13px;
    font-weight:740;
    color:#fff;
    transition:transform .22s ease,opacity .22s ease;
  }
  .kakao-float-label{
    display:flex;
    align-items:center;
    padding:0 18px;
    white-space:nowrap;
  }
  .kakao-float-arrow{
    display:grid;
    place-items:center;
    background:var(--lime);
    color:var(--ink);
    border-left:1px solid var(--ink);
    font-size:19px;
  }
  .kakao-float-arrow-icon{
    display:inline-block;
    transition:transform .22s ease;
  }
  .kakao-float:active{
    transform:translateY(-1px);
  }
  .kakao-float:active .kakao-float-arrow-icon{
    transform:translateX(2px);
  }
  .kakao-float.is-hidden{
    opacity:0;
    transform:translateY(12px);
    pointer-events:none;
  }
}

.menu-toggle{display:none}

.hero{
  min-height:100svh;
  padding:150px var(--pad) 30px;
  display:grid;
  place-items:center;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.hero-flower{
  position:absolute;
  z-index:1;
  left:calc(48% - 345px);
  top:14%;
  width:clamp(200px,25vw,380px);
  height:auto;
  transform:rotate(-6deg);
  pointer-events:none;
}
.hero-copy{
  align-self:center;
  max-width:760px;
  margin:0 auto;
  position:relative;
  z-index:2;
}
.hero-kicker{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-bottom:34px;
  color:var(--lavender-deep);
  font-size:10px;
  font-weight:700;
  letter-spacing:.13em;
}
.hero h1{
  margin:0;
  font-size:clamp(50px,6vw,96px);
  line-height:1.12;
  letter-spacing:-.06em;
  font-weight:650;
}
.hero h1 strong{
  font-weight:650;
  background:var(--orange);
  color:#fff;
  line-height:1;
  padding:0 .04em;
  box-decoration-break:clone;
  -webkit-box-decoration-break:clone;
}
.hero-sub{
  margin:37px 0 0;
  font-size:clamp(18px,1.9vw,27px);
  line-height:1.45;
  letter-spacing:-.03em;
  font-weight:550;
}
.hero-body{
  max-width:540px;
  margin:18px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.8;
  letter-spacing:-.015em;
}
.hero-actions{
  margin-top:38px;
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:center;
}
.btn{
  min-height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  padding:0 20px;
  border:1px solid transparent;
  font-size:12px;
  font-weight:600;
  transition:transform .2s ease,background .2s ease,color .2s ease;
}
.btn span{font-size:16px}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  background:var(--lavender-deep);
  color:#fff;
  border-radius:2px;
}
.btn-primary:hover{background:#7356CC}
.btn-ghost{
  border-color:rgba(17,17,17,.5);
  border-radius:2px;
}

.hero-art{
  min-height:560px;
  align-self:center;
  position:relative;
  z-index:1;
}
.lavender-field{
  position:absolute;
  width:120%;
  height:125%;
  left:8%;
  top:-12%;
  background:var(--lavender);
  border-radius:52% 0 0 52% / 64% 0 0 64%;
  transform:rotate(-8deg);
}
.hero-art::before{
  content:"";
  position:absolute;
  z-index:2;
  width:44%;
  height:62%;
  left:2%;
  bottom:-6%;
  background:var(--cream);
  border-radius:0 68% 30% 0 / 0 50% 50% 0;
  transform:rotate(18deg);
}
.hero-note{
  position:absolute;
  z-index:5;
  right:5%;
  bottom:7%;
  width:220px;
  padding:19px 20px 21px;
  background:var(--paper);
  border:1px solid rgba(17,17,17,.12);
  box-shadow:0 18px 55px rgba(36,24,11,.08);
}
.hero-note span{
  display:block;
  margin-bottom:18px;
  color:var(--lavender-deep);
  font-size:9px;
  font-weight:700;
  letter-spacing:.14em;
}
.hero-note p{
  margin:0;
  font-size:14px;
  line-height:1.55;
  font-weight:550;
}
.hero-index{
  position:absolute;
  z-index:5;
  right:6%;
  top:8%;
  font-size:9px;
  font-weight:600;
  letter-spacing:.12em;
}
.hero-strip{
  grid-column:1/-1;
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding-top:24px;
  border-top:1px solid var(--line);
  font-size:10px;
  letter-spacing:.04em;
}
.motif{
  width:18px;height:18px;
  display:inline-block;
  position:relative;
}
.motif i{
  position:absolute;
  left:50%;top:50%;
  width:3px;height:15px;
  border-radius:999px;
  background:currentColor;
  transform-origin:50% 0%;
}
.motif i:nth-child(1){transform:rotate(0deg) translate(-50%,-7px)}
.motif i:nth-child(2){transform:rotate(60deg) translate(-50%,-7px)}
.motif i:nth-child(3){transform:rotate(120deg) translate(-50%,-7px)}
.motif i:nth-child(4){transform:rotate(180deg) translate(-50%,-7px)}
.motif i:nth-child(5){transform:rotate(240deg) translate(-50%,-7px)}
.motif i:nth-child(6){transform:rotate(300deg) translate(-50%,-7px)}
.motif-small{color:var(--lavender-deep)}
.motif-purple{color:var(--lavender-deep);margin-top:34px}

.lime-flower{
  position:absolute;
  z-index:4;
  width:245px;height:245px;
  left:40%;top:24%;
}
.lime-flower i{
  position:absolute;
  left:50%;top:50%;
  width:52px;height:130px;
  background:var(--lime);
  border-radius:60% 60% 48% 48%;
  transform-origin:50% 0;
  box-shadow:inset -10px -6px 25px rgba(198,217,68,.22);
}
.lime-flower i:nth-child(1){transform:rotate(0deg) translate(-50%,-6px)}
.lime-flower i:nth-child(2){transform:rotate(51deg) translate(-50%,-6px)}
.lime-flower i:nth-child(3){transform:rotate(103deg) translate(-50%,-6px)}
.lime-flower i:nth-child(4){transform:rotate(154deg) translate(-50%,-6px)}
.lime-flower i:nth-child(5){transform:rotate(206deg) translate(-50%,-6px)}
.lime-flower i:nth-child(6){transform:rotate(257deg) translate(-50%,-6px)}
.lime-flower i:nth-child(7){transform:rotate(309deg) translate(-50%,-6px)}

.section{
  padding:120px var(--pad);
}
.section-kicker{
  margin:0 0 24px;
  color:var(--lavender-deep);
  font-size:9px;
  font-weight:700;
  letter-spacing:.14em;
}
.why{
  display:grid;
  grid-template-columns:2.63fr 340px 5vw minmax(300px,560px) 1fr;
  background:var(--paper);
}
.why .section-side{
  display:flex;
  flex-direction:column;
  justify-content:center;
  grid-column:2;
}
.why-list{
  grid-column:4;
}
.section-side h2,.pricing-side h2{
  margin:0;
  font-size:clamp(38px,4.7vw,68px);
  line-height:1.14;
  letter-spacing:-.055em;
  font-weight:650;
}
.section-side h2 strong{
  font-weight:650;
  background:var(--lavender-deep);
  color:#fff;
  line-height:1;
  padding:0 .04em;
  box-decoration-break:clone;
  -webkit-box-decoration-break:clone;
}
.pricing-side h2 strong{
  font-weight:650;
  background:var(--orange);
  color:#fff;
  line-height:1;
  padding:0 .04em;
  box-decoration-break:clone;
  -webkit-box-decoration-break:clone;
}
.why-item{
  display:grid;
  grid-template-columns:60px 1fr;
  gap:24px;
  padding:19px 0;
  align-items:center;
}
.why-no{
  color:var(--lavender-deep);
  font-size:10px;
  font-weight:700;
  letter-spacing:.08em;
}
.why-item h3{
  margin:0;
  font-size:20px;
  line-height:1.35;
  letter-spacing:-.03em;
  font-weight:650;
}
.why-item p{
  margin:1px 0 0;
  color:var(--muted);
  font-size:13px;
  line-height:1.75;
}

@media (min-width:1051px){
  .why{
    display:block;
  }
  .why .section-side{
    display:block;
    grid-column:auto;
    text-align:center;
    max-width:640px;
    margin:0 auto 76px;
  }
  .why .section-side p.section-kicker{
    margin-left:auto;
    margin-right:auto;
  }
  .why-list{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    grid-column:auto;
    gap:36px 32px;
    max-width:none;
  }
  .why-item{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
    padding:0;
  }
  .why-item h3{
    white-space:normal;
    font-size:18px;
    line-height:1.4;
  }
}

.section-work{
  background:#101010;
  color:#F8F5EF;
}
.work-head{
  display:grid;
  grid-template-columns:1fr .6fr;
  align-items:end;
  gap:7vw;
  margin-bottom:90px;
}
.work-head h2{
  margin:0;
  font-size:clamp(56px,7.2vw,108px);
  line-height:1.04;
  letter-spacing:-.07em;
  font-weight:620;
}
.work-head h2 span{
  background:var(--lime);
  color:var(--ink);
  line-height:1;
  padding:0 .04em;
  box-decoration-break:clone;
  -webkit-box-decoration-break:clone;
}
.work-head>p{
  margin:0 0 8px;
  max-width:430px;
  color:#A7A39B;
  font-size:13px;
  line-height:1.8;
}
.project-wide{
  display:grid;
  grid-template-columns:.72fr .28fr;
  gap:4vw;
  padding:34px 0 100px;
}
.project-visual{
  min-height:540px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:32px;
  overflow:hidden;
  position:relative;
  border:1px solid rgba(255,255,255,.14);
  transition:transform .35s cubic-bezier(.2,.7,.2,1);
}
.project-visual:hover{transform:translateY(-5px)}
.visual-sydney{
  background:
    linear-gradient(rgba(0,0,0,.05),rgba(0,0,0,.05)),
    #C8B6A3;
}
.visual-sydney::before{
  content:"";
  position:absolute;
  inset:18% 8% 8% 44%;
  background:#E9DFD2;
  border-radius:44% 2% 2% 2%;
  box-shadow:-140px 60px 0 #6C8A98;
  opacity:.75;
}
.visual-humming{
  background:#C8D0B7;
  color:#182016;
}
.visual-humming::before{
  content:"";
  position:absolute;
  width:52%;
  height:74%;
  right:-6%;
  bottom:-10%;
  background:#EFE7D8;
  border-radius:60% 0 0 0;
}
.visual-gravity{
  background:
    radial-gradient(circle at 72% 45%,rgba(255,255,255,.12),transparent 18%),
    linear-gradient(125deg,#171717 0%,#2A2A2A 55%,#0D0D0D 100%);
}
.screen-nav,.screen-foot{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:space-between;
  gap:15px;
  font-size:8px;
  font-weight:600;
  letter-spacing:.14em;
}
.screen-foot{
  justify-content:flex-start;
  gap:24px;
}
.screen-copy{
  position:relative;
  z-index:2;
  padding-left:7%;
}
.screen-copy small{
  display:block;
  margin-bottom:16px;
  font-size:8px;
  font-weight:600;
  letter-spacing:.16em;
}
.screen-copy strong{
  display:block;
  font-size:clamp(56px,6.4vw,98px);
  line-height:.82;
  letter-spacing:-.07em;
  font-weight:560;
}
.screen-copy p{
  margin:20px 0 0;
  font-size:10px;
  line-height:1.6;
}
.project-copy{
  padding-top:6px;
}
.project-no{
  display:block;
  margin-bottom:30px;
  color:#908D87;
  font-size:9px;
  font-weight:650;
  letter-spacing:.12em;
}
.project-copy h3{
  margin:0 0 18px;
  font-size:32px;
  font-weight:620;
  letter-spacing:-.035em;
}
.project-copy p{
  margin:0 0 30px;
  color:#AAA69E;
  font-size:13px;
  line-height:1.75;
}
.project-copy a{
  display:inline-block;
  padding-bottom:3px;
  border-bottom:1px solid #696660;
  font-size:11px;
}
.project-pair{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3vw;
  padding-top:35px;
}
.project-card-offset{margin-top:120px}
.project-card .project-visual{min-height:440px}
.project-copy.compact{padding:24px 0 0}
.project-copy.compact h3{font-size:26px}
.project-copy.compact .project-no{margin-bottom:14px}

.process{
  position:relative;
  overflow:hidden;
  padding-top:90px;
  padding-bottom:90px;
  background:#EFE8FB;
}
.process::after{
  content:"";
  position:absolute;
  width:360px;height:360px;
  right:-120px;top:-130px;
  background:var(--lime);
  border-radius:50%;
  opacity:.45;
}
.process-intro{
  position:relative;
  z-index:2;
  max-width:750px;
}
.process-intro h2{
  margin:0;
  font-size:clamp(46px,5.4vw,82px);
  line-height:1.1;
  letter-spacing:-.06em;
  font-weight:650;
}
.process-intro h2 span{
  background:var(--lavender-deep);
  color:#fff;
  line-height:1;
  padding:0 .04em;
  box-decoration-break:clone;
  -webkit-box-decoration-break:clone;
}
.process-track{
  margin-top:62px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:24px;
  position:relative;
  z-index:2;
}
.process-line{
  position:absolute;
  left:0;right:0;
  top:23px;
  height:1px;
  background:rgba(139,110,219,.45);
}
.step{position:relative}
.step-dot{
  width:46px;height:46px;
  display:grid;
  place-items:center;
  margin-bottom:24px;
  background:var(--lavender-deep);
  color:#fff;
  border-radius:50%;
  font-size:10px;
  font-weight:700;
  position:relative;
  z-index:2;
}
.step h3{
  margin:0 0 10px;
  font-size:15px;
  font-weight:650;
}
.step p{
  margin:0;
  color:#6E6876;
  font-size:11px;
  line-height:1.65;
  max-width:190px;
}

.pricing{
  display:grid;
  grid-template-columns:.28fr .72fr;
  gap:5vw;
  position:relative;
  overflow:hidden;
}
.pricing-side{position:relative;z-index:2}
.pricing-note{
  margin:26px 0 0;
  max-width:250px;
  color:var(--muted);
  font-size:11px;
  line-height:1.7;
}
.plans{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.plan{
  min-height:630px;
  display:flex;
  flex-direction:column;
  padding:30px;
  background:rgba(255,253,248,.72);
  border:1px solid rgba(17,17,17,.25);
  position:relative;
}
.plan-featured{
  border:1.5px solid var(--orange);
  background:#FFF8F3;
}
.best-label{
  position:absolute;
  top:-1px;
  right:26px;
  padding:8px 14px;
  background:var(--orange);
  color:#fff;
  font-size:9px;
  font-weight:700;
  letter-spacing:.08em;
}
.plan-head{
  display:grid;
  grid-template-columns:1fr auto;
  gap:20px;
  padding-bottom:28px;
}
.plan-label{
  display:block;
  margin-bottom:34px;
  font-size:12px;
  font-weight:750;
  letter-spacing:.08em;
}
.plan h3{
  margin:0;
  font-size:18px;
  line-height:1.4;
  letter-spacing:-.03em;
  font-weight:620;
}
.plan-price{
  align-self:end;
  display:flex;
  align-items:flex-end;
  gap:5px;
}
.plan-price strong{
  font-size:76px;
  line-height:.78;
  letter-spacing:-.07em;
  font-weight:650;
}
.plan-price span{
  padding-bottom:5px;
  font-size:11px;
}
.plan ul{
  list-style:none;
  padding:0;
  margin:28px 0 38px;
}
.plan li{
  display:grid;
  grid-template-columns:28px 1fr;
  gap:10px;
  padding:11px 0;
  font-size:12px;
}
.plan li span{
  color:var(--lavender-deep);
  font-size:9px;
  font-weight:700;
  padding-top:2px;
}
.plan-featured li span{color:var(--orange)}
.plan-link{
  margin-top:auto;
  min-height:52px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 17px;
  border:1px solid var(--lavender-deep);
  color:var(--lavender-deep);
  font-size:11px;
  font-weight:650;
}
.plan-link-filled{
  background:var(--orange);
  border-color:var(--orange);
  color:#fff;
}

.final{
  min-height:650px;
  padding:110px var(--pad);
  background:var(--lavender-deep);
  color:#fff;
  display:grid;
  grid-template-columns:.7fr .3fr;
  align-items:center;
  position:relative;
  overflow:hidden;
}
.final-copy{
  position:relative;
  z-index:4;
}
.final-copy>p{
  margin:0 0 25px;
  color:var(--lime);
  font-size:10px;
  font-weight:750;
  letter-spacing:.13em;
}
.final h2{
  margin:0;
  max-width:900px;
  font-size:clamp(56px,7vw,104px);
  line-height:.92;
  letter-spacing:-.065em;
  font-weight:620;
}
.final-actions{
  margin-top:42px;
  display:flex;
  gap:12px;
}
.btn-lime{background:var(--lime);color:var(--ink)}
.btn-on-dark{
  border-color:rgba(255,255,255,.55);
  color:#fff;
}
.final-art{position:absolute;inset:0;z-index:1}
.final-flower{
  position:absolute;
  width:42vw;height:42vw;
  min-width:540px;min-height:540px;
  right:-10vw;bottom:-22vw;
  transform:rotate(18deg);
}
.lavender-blob{
  position:absolute;
  width:32vw;height:32vw;
  right:7vw;top:-14vw;
  background:#C9B8F4;
  border-radius:50%;
}
.lime-flower-small{
  width:150px;height:150px;
  left:auto;right:11%;
  top:34%;
}
.lime-flower-small i{
  width:32px;height:78px;
}

.footer{
  padding:38px var(--pad) 24px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:26px;
  background:var(--cream);
}
.footer strong{font-size:12px;letter-spacing:.08em}
.footer p{
  margin:7px 0 0;
  color:var(--muted);
  font-size:10px;
}
.footer-meta{
  display:flex;
  gap:25px;
  font-size:9px;
  font-weight:650;
  letter-spacing:.08em;
}
.footer small{
  grid-column:1/-1;
  padding-top:24px;
  color:#868178;
  font-size:9px;
  letter-spacing:.05em;
}

.reveal{
  opacity:0;
  transform:translateY(20px);
  transition:opacity .7s ease,transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible{
  opacity:1;
  transform:none;
}

@media (max-width:1050px){
  .availability{display:none}
  .header-right{gap:0}
  .hero{
    grid-template-columns:1fr;
    gap:65px;
    padding-top:125px;
  }
  .hero-art{min-height:480px}
  .hero-strip{grid-column:auto}
  .why,.pricing{grid-template-columns:1fr;gap:70px}
  .why .section-side,.why-list{grid-column:auto}
  .project-wide{grid-template-columns:1fr}
  .project-copy{max-width:560px}
  .process-track{grid-template-columns:repeat(3,1fr);row-gap:50px}
  .process-line{display:none}
  .final{grid-template-columns:1fr}
}

@media (max-width:760px){
  :root{--pad:20px}
  .header{
    grid-template-columns:1fr auto;
    height:72px;
  }
  .header.scrolled{height:68px}
  .brand-copy strong{font-size:13px}
  .brand-copy small{font-size:6.5px}
  .header-mark{width:23px;height:23px}
  .nav,.header-right{display:none}

  .menu-toggle{
    justify-self:end;
    width:44px;
    height:44px;
    border:1px solid rgba(17,17,17,.72);
    border-radius:50%;
    background:var(--lime);
    display:grid;
    align-content:center;
    gap:6px;
    padding:11px;
    transition:transform .2s ease,background .2s ease;
  }
  .menu-toggle:hover{
    background:var(--lavender);
  }
  .menu-toggle span{
    display:block;
    height:1.5px;
    background:var(--ink);
    transition:transform .25s ease;
  }

  .hero{
    min-height:100svh;
    padding-top:108px;
    padding-bottom:24px;
    gap:48px;
  }
  .hero-flower{
    width:165px;
    left:6%;
    top:26%;
  }
  .hero h1{
    font-size:clamp(44px,12vw,64px);
    line-height:1.02;
  }
  .hero-sub{font-size:18px}
  .hero-body{font-size:13px}
  .hero-actions{flex-direction:column;align-items:stretch}
  .btn{width:100%}
  .hero-art{min-height:390px}
  .lavender-field{
    width:112%;
    height:105%;
    left:10%;
    top:0;
    border-radius:52% 0 0 52% / 58% 0 0 58%;
  }
  .hero-art::before{
    width:48%;height:55%;
    left:0;bottom:-8%;
  }
  .lime-flower{
    width:170px;height:170px;
    left:41%;top:23%;
  }
  .lime-flower i{
    width:36px;height:90px;
  }
  .hero-note{
    width:168px;
    right:0;
    bottom:4%;
  }
  .hero-index{right:3%;top:7%}
  .hero-strip{
    justify-content:flex-start;
    flex-wrap:wrap;
    gap:12px 18px;
    font-size:9px;
  }

  .section{padding:88px var(--pad)}
  .why{gap:55px}
  .section-side h2,.pricing-side h2{font-size:44px}
  .why-item{
    grid-template-columns:35px 1fr;
    gap:10px 14px;
    padding:23px 0;
  }
  .why-item h3{font-size:18px}
  .why-item p{
    grid-column:2;
    font-size:12px;
  }

  .work-head{grid-template-columns:1fr;gap:28px;margin-bottom:65px}
  .work-head h2{font-size:58px}
  .project-wide{padding-bottom:70px}
  .project-visual{min-height:390px;padding:21px}
  .screen-copy{padding-left:2%}
  .screen-copy strong{font-size:52px}
  .project-copy h3{font-size:28px}
  .project-pair{grid-template-columns:1fr;gap:70px}
  .project-card-offset{margin-top:0}
  .project-card .project-visual{min-height:360px}

  .process-track{
    grid-template-columns:1fr 1fr;
    margin-top:65px;
  }
  .process-intro h2{font-size:48px}
  .step p{max-width:none}

  .plans{grid-template-columns:1fr}
  .plan{min-height:auto;padding:24px}
  .plan-price strong{font-size:58px}
  .plan-head{grid-template-columns:1fr auto}
  .best-label{right:18px}

  .final{
    min-height:630px;
    padding-top:90px;
    padding-bottom:90px;
  }
  .final h2{font-size:58px}
  .final-actions{flex-direction:column;align-items:stretch}
  .final-flower{
    min-width:430px;min-height:430px;
    right:-230px;bottom:-220px;
  }
  .lavender-blob{
    width:300px;height:300px;
    right:-140px;top:-100px;
  }
  .lime-flower-small{
    right:2%;
    top:55%;
    width:105px;height:105px;
  }
  .lime-flower-small i{
    width:24px;height:58px;
  }

  .footer{grid-template-columns:1fr}
  .footer-meta{justify-content:space-between}
  .footer small{grid-column:auto}
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .reveal{opacity:1;transform:none;transition:none}
  .btn,.project-visual{transition:none}
}

/* =======================================================
   MOBILE MENU — simple / bold / solid
======================================================= */
@media (max-width:760px){
  body.menu-lock{
    overflow:hidden;
  }

  .menu-toggle{
    position:relative;
    z-index:210;
    cursor:pointer;
    pointer-events:auto;
    touch-action:manipulation;
  }

  .header.menu-open{
    position:fixed;
    inset:0;
    z-index:200;
    width:100%;
    height:100svh;
    min-height:100svh;
    height:100dvh;
    min-height:100dvh;
    padding:14px var(--pad) calc(40px + env(safe-area-inset-bottom, 0px));
    display:grid;
    grid-template-columns:1fr auto;
    grid-template-rows:auto 1fr auto;
    align-items:start;
    background:var(--lavender);
    border:0;
    box-shadow:none;
    overflow:hidden;
  }

  .header.menu-open .wordmark{
    position:relative;
    z-index:211;
    align-self:center;
  }

  .header.menu-open .header-mark{
    color:var(--ink);
  }

  .header.menu-open .brand-copy small{
    color:rgba(17,17,17,.58);
  }

  .header.menu-open .menu-toggle{
    align-self:center;
    background:var(--lime);
    box-shadow:none;
  }

  .header.menu-open .menu-toggle:hover{
    transform:none;
    box-shadow:none;
  }

  .header.menu-open .menu-toggle span:first-child{
    transform:translateY(3.75px) rotate(45deg);
  }

  .header.menu-open .menu-toggle span:last-child{
    transform:translateY(-3.75px) rotate(-45deg);
  }

  .header.menu-open .nav{
    position:relative;
    z-index:211;
    grid-column:1/-1;
    align-self:center;
    width:100%;
    display:flex;
    flex-direction:column;
    gap:0;
    height:auto;
    padding:18px 0;
  }

  .header.menu-open .nav a{
    position:relative;
    width:100%;
    height:auto;
    min-height:72px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:13px 0;
    font-size:clamp(29px,9.36vw,45px);
    line-height:.9;
    font-weight:760;
    letter-spacing:-.06em;
    transform:none;
  }

  .header.menu-open .nav a::before{
    content:attr(data-index);
    position:static;
    min-width:0;
    margin-right:16px;
    padding:0;
    background:none;
    color:rgba(17,17,17,.48);
    font-size:9px;
    line-height:1;
    font-weight:760;
    letter-spacing:.12em;
    border-radius:0;
    opacity:1;
    transform:none;
  }

  .header.menu-open .nav a::after{
    content:"↗";
    position:static;
    width:auto;
    height:auto;
    margin-left:auto;
    padding-left:12px;
    background:none;
    color:var(--ink);
    font-size:18px;
    line-height:1;
    transform:none;
  }

  .header.menu-open .nav a:hover{
    transform:none;
  }

  .header.menu-open .header-right{
    position:relative;
    z-index:211;
    grid-column:1/-1;
    align-self:end;
    display:block;
    width:100%;
  }

  .header.menu-open .availability{
    display:none;
  }

  .header.menu-open .header-contact{
    width:calc(100% - 44px);
    margin:0 22px;
    min-width:0;
    min-height:58px;
    display:grid;
    grid-template-columns:1fr 58px;
    border:1px solid var(--ink);
    border-radius:0;
    background:var(--orange);
    color:#fff;
    box-shadow:none;
    transform:none;
  }

  .header.menu-open .header-contact:hover{
    transform:none;
    box-shadow:none;
    background:var(--orange);
  }

  .header.menu-open .contact-label{
    display:flex;
    align-items:center;
    padding:0 18px;
    font-size:13px;
    font-weight:740;
  }

  .header.menu-open .contact-arrow{
    display:grid;
    place-items:center;
    background:var(--lime);
    color:var(--ink);
    border-left:1px solid var(--ink);
    font-size:19px;
  }
}

/* =========================================================
   FINAL 4 FIXES — keep all other design/layout unchanged
========================================================= */

/* 1. Quieter header */
.wordmark{
  gap:0;
}

.brand-copy{
  display:block;
}

.brand-copy strong{
  font-size:14px;
  line-height:1;
  font-weight:760;
  letter-spacing:.055em;
}

.header-mark,
.brand-copy small,
.availability{
  display:none !important;
}

.header-right{
  gap:0;
}

/* 3. Decorative flower only in HERO + FINAL CTA */
.motif-purple{
  display:none !important;
}

/* 4. Actual project imagery; preserve existing portfolio layout/type */
.visual-sydney{
  background:
    linear-gradient(rgba(10,10,10,.18), rgba(10,10,10,.18)),
    url("./assets/sydney-seoul.webp") center / cover no-repeat;
  color:#fff;
}

.visual-sydney::before{
  display:none;
}

.visual-humming{
  background:
    linear-gradient(rgba(250,246,237,.08), rgba(250,246,237,.08)),
    url("./assets/humming.webp") center 42% / cover no-repeat;
  color:#111;
}

.visual-humming::before{
  display:none;
}

.visual-gravity{
  background:
    linear-gradient(rgba(0,0,0,.22), rgba(0,0,0,.22)),
    url("./assets/gravity.webp") center / cover no-repeat;
  color:#fff;
}

/* 2. Mobile readability only — titles/layout remain unchanged */
@media (max-width:760px){
  .why-item p{
    font-size:13px;
    line-height:1.75;
  }

  .project-copy p{
    font-size:14px;
    line-height:1.75;
  }

  .step p{
    font-size:13px;
    line-height:1.7;
  }
}

/* =========================================================
   PAGE ATELIER WORDMARK + BUSINESS FOOTER
========================================================= */

/* Header wordmark */
.wordmark img,
.brand-copy,
.header-mark{
  display:none !important;
}

.wordmark{
  justify-self:start;
  display:inline-flex;
  align-items:center;
  gap:0;
  min-width:max-content;
}

.wordmark-text{
  display:block;
  font-family:"Bowlby One SC","Arial Black",sans-serif;
  font-size:18px;
  line-height:1;
  font-weight:400;
  letter-spacing:.01em;
  color:var(--ink);
  white-space:nowrap;
  transition:color .2s ease, transform .2s ease;
}

@media (hover:hover){
  .wordmark:hover .wordmark-text{
    color:var(--lavender-deep);
    transform:translateY(-1px);
  }
}
.wordmark:active .wordmark-text{
  color:var(--lavender-deep);
  transform:translateY(-1px);
}

/* Footer */
.footer{
  padding:56px var(--pad) 26px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:12px 56px;
  align-items:start;
  background:var(--cream);
  color:var(--ink);
}
.footer-brand{grid-column:1;grid-row:1}
.footer-meta{grid-column:2;grid-row:1}
.footer-business{
  grid-column:1/-1;
  grid-row:2;
  margin-top:24px;
  text-align:center;
}

.footer-brand strong{
  display:block;
  font-family:"Bowlby One SC","Arial Black",sans-serif;
  font-size:clamp(28px,3.4vw,40px);
  line-height:1;
  font-weight:400;
  letter-spacing:.01em;
  color:var(--ink);
}

.footer-brand p{
  margin:14px 0 0;
  max-width:280px;
  color:rgba(17,17,17,.65);
  font-size:12px;
  line-height:1.6;
}

.footer-business{
  margin:0;
  color:rgba(17,17,17,.65);
  font-style:normal;
  font-size:10px;
  line-height:1.8;
}

.footer-business-lines{
  margin:0;
}

.footer-business-lines-mobile{
  display:none;
}

.footer-business a{
  color:var(--ink);
  border-bottom:1px solid rgba(17,17,17,.35);
  padding-bottom:1px;
}

.footer-business a:hover{
  border-bottom-color:var(--lavender-deep);
  color:var(--lavender-deep);
}

.footer-meta{
  display:flex;
  gap:24px;
  justify-content:flex-end;
  white-space:nowrap;
}

.footer-icon-link{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:9px;
  color:var(--ink);
  font-size:9px;
  font-weight:650;
  letter-spacing:.08em;
  transition:transform .2s ease;
}

.footer-icon-link:hover{
  transform:translateY(-3px);
}

.footer-icon{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  border-radius:50%;
}

.footer-icon-instagram{
  background:var(--lavender-deep);
  color:#fff;
}

.footer-icon-top{
  border:1.5px solid rgba(17,17,17,.4);
  color:var(--ink);
  font-size:19px;
}

.footer small{
  grid-column:1/-1;
  padding-top:24px;
  color:rgba(17,17,17,.55);
  font-size:9px;
  letter-spacing:.05em;
}

@media (max-width:760px){
  .wordmark-text{
    font-size:15px;
  }

  .footer{
    grid-template-columns:1fr;
    gap:28px;
    padding-top:36px;
  }

  .footer-brand,
  .footer-meta,
  .footer-business{
    grid-column:auto;
    grid-row:auto;
  }

  .footer-meta{
    justify-content:space-between;
  }

  .footer-business{
    margin-top:0;
    text-align:right;
  }

  .footer-business-lines-desktop{
    display:none;
  }

  .footer-business-lines-mobile{
    display:block;
  }

  .footer small{
    grid-column:auto;
  }
}



@media (max-width: 760px){
  .header,
  .header.scrolled{
    background: transparent !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /* 메뉴 펼쳤을 때는 기존 라벤더 배경 유지 */
  .header.menu-open{
    background: var(--lavender) !important;
  }
}.wordmark-text{
  transition: opacity .25s ease, transform .25s ease;
}

.header.scrolled .wordmark-text{
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

.header.menu-open .wordmark-text{
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

@media (min-width: 761px){
  .header{
    transition:
      transform .3s ease,
      height .28s ease,
      background .28s ease,
      border-color .28s ease;
  }

  .header.scrolled{
    transform: translateY(-100%);
  }
}

@media (min-width: 761px){
  .header,
  .header.scrolled{
    background: transparent !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

/* 모바일 process 가독성 */
@media (max-width:760px){
  .step p{
    font-size:13px;
    line-height:1.75;
  }

  .process-track{
    grid-template-columns:1fr;
    row-gap:34px;
  }

  .step{
    max-width:78%;
    transition-delay:calc(var(--step-index, 0) * .08s);
  }

  .step:nth-child(2){--step-index:1}
  .step:nth-child(3){--step-index:2}
  .step:nth-child(4){--step-index:3}
  .step:nth-child(5){--step-index:4}
  .step:nth-child(6){--step-index:5}

  .step:nth-child(odd){
    margin-right:auto;
  }

  .step:nth-child(even){
    margin-left:auto;
    text-align:right;
  }

  .step:nth-child(even) .step-dot{
    margin-left:auto;
  }

  .step:nth-child(even) p{
    margin-left:auto;
  }
}

/* footer 사업자 정보 */
.footer-business{
  font-size:11px;
  line-height:1.7;
}

/* =========================================================
   TYPOGRAPHY BALANCE — 2026-08-19
   큰 제목은 살짝 줄이고 line-height를 여유롭게,
   작은 정보 텍스트는 한 단계 키워 가독성을 맞춤.
========================================================= */

.wordmark-text{
  font-size:24px;
  line-height:1.15;
}

.nav{
  font-size:18px;
  line-height:1.4;
}

.header-contact{
  font-size:12px;
}

.hero-kicker,
.section-kicker{
  font-size:11px;
  line-height:1.5;
}

.hero h1{
  font-size:clamp(44px,5.2vw,82px);
  line-height:1.08;
  letter-spacing:-.055em;
}

.hero-sub{
  font-size:clamp(18px,1.65vw,24px);
  line-height:1.6;
}

.section-side h2,
.pricing-side h2{
  font-size:clamp(36px,4vw,58px);
  line-height:1.1;
}

.why-no{
  font-size:11px;
}

.why-item h3{
  font-size:20px;
  line-height:1.5;
  white-space:nowrap;
}

.why-item p{
  font-size:14px;
  line-height:1.85;
}

.work-head h2{
  font-size:clamp(42px,5vw,74px);
  line-height:1.07;
}

.work-head>p{
  font-size:14px;
  line-height:1.85;
}

.project-no{
  font-size:10px;
  line-height:1.4;
}

.project-copy h3{
  line-height:1.25;
}

.project-copy p{
  font-size:14px;
  line-height:1.85;
}

.project-copy a{
  font-size:12px;
  line-height:1.5;
}

.process-intro h2{
  font-size:clamp(42px,4.8vw,70px);
  line-height:1.07;
}

.step h3{
  font-size:16px;
  line-height:1.4;
}

.step p{
  font-size:13px;
  line-height:1.8;
}

.pricing-note{
  font-size:13px;
  line-height:1.8;
}

.plan-label{
  font-size:13px;
}

.plan h3{
  font-size:18px;
  line-height:1.5;
}

.plan li{
  font-size:13px;
  line-height:1.5;
}

.plan-link{
  font-size:12px;
}

.final-copy>p{
  font-size:11px;
  line-height:1.5;
}

.final h2{
  font-size:clamp(50px,6vw,88px);
  line-height:1.03;
}

.footer-business{
  font-size:11px;
  line-height:1.75;
}

.footer-meta{
  font-size:10px;
  line-height:1.5;
}

.footer small{
  font-size:10px;
  line-height:1.5;
}

@media (max-width:760px){
  .wordmark-text{
    font-size:15px;
    line-height:1.2;
  }

  .hero-kicker,
  .section-kicker{
    font-size:10px;
    line-height:1.5;
  }

  .hero h1{
    font-size:clamp(38px,10.8vw,50px);
    line-height:1.1;
    letter-spacing:-.05em;
  }

  .hero-sub{
    font-size:18px;
    line-height:1.65;
  }

  .section-side h2,
  .pricing-side h2{
    font-size:40px;
    line-height:1.1;
  }

  .why-item h3{
    font-size:19px;
    line-height:1.5;
    white-space:normal;
  }

  .why-item p{
    font-size:14px;
    line-height:1.85;
  }

  .work-head h2{
    font-size:42px;
    line-height:1.1;
  }

  .project-copy h3{
    font-size:27px;
    line-height:1.25;
  }

  .project-copy p{
    font-size:14px;
    line-height:1.85;
  }

  .process-intro h2{
    font-size:42px;
    line-height:1.08;
  }

  .step p{
    font-size:13px;
    line-height:1.8;
  }

  .final h2{
    font-size:50px;
    line-height:1.05;
  }

  .footer-brand p,
  .footer-business{
    font-size:11px;
    line-height:1.75;
  }
}



/* =========================================================
   PAYMENT READY + POST-PAYMENT BRIEF — 2026-08-19
========================================================= */
.purchase-note{
  grid-column:2;
  margin-top:20px;
  padding:20px 22px;
  border-top:1px solid rgba(17,17,17,.18);
}
.purchase-note strong{
  display:block;
  margin-bottom:7px;
  font-size:13px;
}
.purchase-note p{
  margin:0;
  max-width:720px;
  color:var(--muted);
  font-size:12px;
  line-height:1.75;
}
.checkout-link{cursor:pointer}

.brief-overlay{
  position:fixed;
  z-index:1000;
  inset:0;
  display:none;
  overflow:auto;
  background:var(--cream);
}
.brief-overlay.is-open{display:block}
body.brief-lock{overflow:hidden}

.brief-shell{
  min-height:100svh;
  padding:0 var(--pad) 70px;
}
.brief-topbar{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brief-brand{
  font-family:"Bowlby One SC","Arial Black",sans-serif;
  font-size:15px;
  letter-spacing:.01em;
}
.brief-close{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border:1px solid rgba(17,17,17,.72);
  border-radius:50%;
  background:var(--lime);
  color:var(--ink);
  cursor:pointer;
  font-size:22px;
  line-height:1;
  transition:background .2s ease,transform .2s ease;
}
.brief-close:hover{
  background:var(--lavender);
  transform:translate(-1px,-1px);
}
.brief-layout{
  max-width:1280px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(280px,.38fr) minmax(0,.62fr);
  gap:clamp(55px,8vw,120px);
  padding-top:72px;
}
.brief-intro{
  position:sticky;
  top:40px;
  align-self:start;
}
.brief-kicker{
  margin:0 0 20px;
  color:var(--lavender-deep);
  font-size:10px;
  font-weight:750;
  letter-spacing:.14em;
}
.brief-intro h2{
  margin:0;
  font-size:clamp(46px,5vw,72px);
  line-height:1.02;
  letter-spacing:-.06em;
  font-weight:650;
}
.brief-lead{
  max-width:380px;
  margin:25px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.8;
}
.brief-order{
  margin-top:40px;
  padding:20px 0;
  border-top:1px solid var(--ink);
  border-bottom:1px solid var(--line);
}
.brief-order span,
.brief-order small{
  display:block;
  color:var(--muted);
  font-size:9px;
  letter-spacing:.08em;
}
.brief-order strong{
  display:block;
  margin:8px 0 10px;
  font-size:22px;
  letter-spacing:-.03em;
}
.brief-help{
  margin-top:28px;
  padding:18px;
  background:#EFE8FB;
  border-left:4px solid var(--lavender-deep);
}
.brief-help strong{font-size:12px}
.brief-help p{
  margin:7px 0 0;
  color:#625C69;
  font-size:11px;
  line-height:1.7;
}
.brief-form-wrap{
  min-width:0;
}
.brief-form{
  display:grid;
  gap:52px;
}
.brief-form[hidden]{
  display:none;
}
.brief-section{
  display:grid;
  gap:19px;
}
.brief-section-head{
  display:grid;
  grid-template-columns:34px 1fr;
  gap:14px;
  align-items:start;
  padding-bottom:18px;
  border-bottom:1px solid var(--ink);
}
.brief-section-head>span{
  padding-top:4px;
  color:var(--lavender-deep);
  font-size:10px;
  font-weight:750;
}
.brief-section-head h3{
  margin:0;
  font-size:20px;
  letter-spacing:-.03em;
  font-weight:650;
}
.brief-section-head p{
  margin:6px 0 0;
  color:var(--muted);
  font-size:11px;
  line-height:1.6;
}
.field-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.field{
  display:grid;
  gap:8px;
}
.field>span{
  font-size:11px;
  font-weight:650;
}
.field>span b{color:var(--orange)}
.field input,
.field select,
.field textarea{
  width:100%;
  border:1px solid rgba(17,17,17,.24);
  border-radius:0;
  outline:0;
  background:var(--paper);
  color:var(--ink);
  font:inherit;
  font-size:13px;
  transition:border-color .18s ease,box-shadow .18s ease;
}
.field input,
.field select{
  min-height:50px;
  padding:0 14px;
}
.field select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  padding-right:42px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23111111' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='5 8 10 13 15 8'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 16px center;
  background-size:14px;
}
.field textarea{
  min-height:130px;
  resize:vertical;
  padding:14px;
  line-height:1.65;
}
.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color:var(--lavender-deep);
  box-shadow:0 0 0 2px rgba(139,110,219,.11);
}
.field input::placeholder,
.field textarea::placeholder{color:#A29D95}
.field-file input{
  position:absolute;
  width:1px;
  height:1px;
  opacity:0;
  pointer-events:none;
}
.field-file em{
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 16px;
  border:1px dashed rgba(17,17,17,.36);
  background:rgba(255,253,248,.55);
  cursor:pointer;
  font-style:normal;
  font-size:12px;
}
.field-file em small{
  color:var(--muted);
  font-size:10px;
}
.brief-agreements{
  display:grid;
  gap:12px;
  padding-top:4px;
}
.check-row{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#57524C;
  font-size:11px;
  line-height:1.55;
  cursor:pointer;
}
.check-row input{
  flex:0 0 auto;
  width:16px;
  height:16px;
  margin-top:1px;
  accent-color:var(--lavender-deep);
}
.check-row b{color:var(--ink)}
.brief-submit{
  min-height:58px;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 18px;
  border:0;
  background:var(--orange);
  color:#fff;
  cursor:pointer;
  font-size:13px;
  font-weight:700;
}
.brief-submit span{font-size:18px}
.brief-submit-note{
  margin:-38px 0 0;
  color:var(--muted);
  font-size:9px;
  line-height:1.6;
}
.brief-done{
  min-height:520px;
  padding:48px;
  background:#EFE8FB;
  border:1px solid rgba(139,110,219,.28);
}
.brief-done p{
  margin:0 0 28px;
  color:var(--lavender-deep);
  font-size:10px;
  font-weight:750;
  letter-spacing:.14em;
}
.brief-done h3{
  margin:0;
  font-size:clamp(44px,5vw,68px);
  line-height:1.02;
  letter-spacing:-.055em;
}
.brief-done>span{
  display:block;
  max-width:480px;
  margin-top:24px;
  color:#625C69;
  font-size:13px;
  line-height:1.8;
}
.brief-done button{
  margin-top:38px;
  min-height:50px;
  padding:0 18px;
  border:1px solid var(--ink);
  background:transparent;
  cursor:pointer;
  font-size:11px;
  font-weight:650;
}
.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea{
  border-color:var(--orange);
}

@media (max-width:1050px){
  .purchase-note{grid-column:auto}
  .brief-layout{grid-template-columns:1fr;gap:52px}
  .brief-intro{position:static}
  .brief-intro h2 br{display:none}
  .brief-lead{max-width:620px}
}

@media (max-width:760px){
  .purchase-note{padding:18px 0 0;margin-top:4px}
  .brief-shell{padding-bottom:46px}
  .brief-topbar{min-height:66px}
  .brief-brand{font-size:13px}
  .brief-layout{padding-top:42px;gap:42px}
  .brief-intro h2{font-size:44px}
  .brief-lead{font-size:13px}
  .brief-order{margin-top:28px}
  .brief-form{gap:42px}
  .field-grid{grid-template-columns:1fr}
  .brief-done{min-height:auto;padding:32px 22px}
}

/* =========================================================
   FREE PREVIEW CTA — 2026-08-19
========================================================= */
.preview-link{
  cursor:pointer;
}

.purchase-note{
  grid-column:2;
  margin-top:22px;
  padding:20px 22px;
  border-left:3px solid var(--lime);
  background:rgba(255,253,248,.58);
}
.purchase-note strong{
  display:block;
  margin-bottom:6px;
  font-size:13px;
  line-height:1.5;
}
.purchase-note p{
  margin:0;
  color:var(--muted);
  font-size:12px;
  line-height:1.75;
}

@media (max-width:1050px){
  .purchase-note{grid-column:auto}
}


/* Web3Forms spam trap */
.web3forms-botcheck{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  opacity:0 !important;
  pointer-events:none !important;
  overflow:hidden !important;
}

.brief-submit:disabled{
  opacity:.58;
  cursor:wait;
  transform:none !important;
}


/* =========================================================
   CLIENT REVIEWS — real message proof
========================================================= */
.reviews{
  position:relative;
  overflow:hidden;
  background:var(--cream);
}

.reviews::before{
  content:"";
  position:absolute;
  width:210px;
  height:210px;
  right:-76px;
  top:58px;
  border-radius:50%;
  background:var(--lavender);
  opacity:.16;
  pointer-events:none;
}

.reviews-head{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr .48fr;
  gap:7vw;
  align-items:end;
  margin-bottom:72px;
}

.reviews-head h2{
  margin:0;
  font-size:clamp(42px,5vw,74px);
  line-height:1.06;
  letter-spacing:-.06em;
  font-weight:650;
}

.reviews-head h2 span{
  background:var(--lavender-deep);
  color:#fff;
  padding:0 .05em;
  line-height:1;
  box-decoration-break:clone;
  -webkit-box-decoration-break:clone;
}

.reviews-intro{
  margin:0 0 7px;
  max-width:470px;
  color:var(--muted);
  font-size:14px;
  line-height:1.85;
}

.review-proof-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(28px,4vw,64px);
  align-items:start;
  max-width:1240px;
  margin:0 auto;
}

.review-proof{
  margin:0;
  min-width:0;
}

.review-proof-tax{
  margin-top:90px;
}

.review-proof-image{
  position:relative;
  padding:22px;
  background:#DCE8F2;
  border:0;
  border-radius:18px;
  box-shadow:none;
  overflow:visible;
}

.review-proof-image img{
  width:100%;
  height:auto;
  display:block;
  border-radius:12px;
}

.review-proof-sticker{
  position:absolute;
  right:-18px;
  top:-18px;
  width:72px;
  height:72px;
  display:grid;
  place-items:center;
  border:1px solid var(--ink);
  border-radius:50%;
  color:var(--ink);
  font-family:"Bowlby One SC","Arial Black",sans-serif;
  font-size:8px;
  line-height:1.05;
  letter-spacing:.02em;
  text-align:center;
  transform:rotate(8deg);
}

.review-proof-sticker-lime{
  background:var(--lime);
}

.review-proof-sticker-orange{
  background:var(--orange);
  color:#fff;
  transform:rotate(-7deg);
}

.review-proof-caption{
  display:grid;
  grid-template-columns:42px 1fr;
  gap:14px;
  align-items:start;
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid rgba(17,17,17,.22);
}

.review-proof-no{
  padding-top:2px;
  color:var(--lavender-deep);
  font-size:10px;
  line-height:1.4;
  font-weight:800;
  letter-spacing:.12em;
}

.review-proof-caption strong{
  display:block;
  margin-bottom:7px;
  font-size:15px;
  line-height:1.4;
  font-weight:720;
}

.review-proof-caption p{
  margin:0;
  max-width:470px;
  color:var(--muted);
  font-size:13px;
  line-height:1.75;
}

.reviews-source{
  position:relative;
  z-index:2;
  margin:54px 0 0;
  color:#8A847B;
  font-size:10px;
  line-height:1.6;
  letter-spacing:.02em;
  text-align:center;
}

@media (max-width:1050px){
  .reviews-head{
    grid-template-columns:1fr;
    gap:26px;
  }

  .reviews-intro{
    max-width:650px;
  }

  .review-proof-tax{
    margin-top:56px;
  }
}

@media (max-width:760px){
  .reviews::before{
    width:145px;
    height:145px;
    right:-68px;
    top:108px;
  }

  .reviews-head{
    margin-bottom:46px;
  }

  .reviews-head h2{
    font-size:42px;
    line-height:1.08;
  }

  .reviews-intro{
    font-size:13px;
    line-height:1.75;
  }

  .review-proof-grid{
    grid-template-columns:1fr;
    gap:58px;
  }

  .review-proof-image{
    padding:14px;
    border-radius:14px;
  }

  .review-proof-image img{
    border-radius:10px;
  }

  .review-proof-tax{
    margin-top:0;
  }

  .review-proof-sticker{
    width:58px;
    height:58px;
    right:-7px;
    top:-15px;
    font-size:6.5px;
  }

  .review-proof-caption{
    grid-template-columns:34px 1fr;
    gap:10px;
    margin-top:14px;
    padding-top:14px;
  }

  .review-proof-caption strong{
    font-size:14px;
  }

  .review-proof-caption p{
    font-size:12px;
    line-height:1.7;
  }

  .reviews-source{
    margin-top:38px;
    font-size:9px;
  }
}


.mobile-br {
  display: none;
}

@media (max-width: 768px) {
  .mobile-br {
    display: block;
  }
}

