:root{
  --ink:#202226;
  --muted:#666a70;
  --cream:#fffdfb;
  --pink:#f5d8e3;
  --pink-deep:#d98eaa;
  --aqua:#b8e7e4;
  --aqua-deep:#58b8b4;
  --gold:#d6b66c;
  --line:rgba(32,34,38,.1);
  --shadow:0 24px 70px rgba(53,44,46,.1)
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:
    radial-gradient(circle at 7% 4%,rgba(245,216,227,.5),transparent 27rem),
    radial-gradient(circle at 93% 7%,rgba(184,231,228,.46),transparent 30rem),
    var(--cream);
  font-family:Lato,system-ui,sans-serif;
  line-height:1.6
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
.noise{
  position:fixed;inset:0;pointer-events:none;z-index:100;
  opacity:.025;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E")
}
.header{
  width:min(1180px,calc(100% - 40px));
  min-height:104px;margin:auto;
  display:flex;align-items:center;justify-content:space-between;
  position:relative;z-index:20
}
.logo-link img{width:190px}
.nav{display:flex;align-items:center;gap:29px;font-size:.9rem;font-weight:700}
.nav-cta{padding:13px 20px;border-radius:999px;background:var(--ink);color:white}
.menu-button{display:none;border:0;background:none;padding:6px}
.menu-button span{display:block;width:25px;height:2px;background:var(--ink);margin:5px 0}

.hero{
  width:min(1180px,calc(100% - 40px));
  min-height:720px;margin:auto;
  display:grid;grid-template-columns:1.08fr .92fr;gap:70px;
  align-items:center;padding:70px 0 95px;position:relative
}
.orb{position:absolute;border-radius:50%;filter:blur(8px);pointer-events:none}
.orb-pink{width:300px;height:300px;background:rgba(245,216,227,.55);left:-220px;top:80px}
.orb-aqua{width:280px;height:280px;background:rgba(184,231,228,.55);right:-210px;bottom:30px}
.eyebrow{margin:0 0 15px;letter-spacing:.18em;text-transform:uppercase;font-size:.72rem;font-weight:800;color:var(--aqua-deep)}
h1,h2,h3{font-family:"Cormorant Garamond",Georgia,serif;line-height:.98;margin-top:0}
h1{font-size:clamp(4rem,7vw,6.7rem);letter-spacing:-.055em;margin-bottom:28px}
h1 span{background:linear-gradient(90deg,#cc7998,#62bebb);-webkit-background-clip:text;color:transparent}
.hero-lead{max-width:650px;font-size:1.1rem;color:var(--muted);margin:0 0 30px}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap}
.button{display:inline-flex;align-items:center;justify-content:center;min-height:54px;padding:0 25px;border-radius:999px;font-weight:800;transition:.2s}
.button:hover{transform:translateY(-2px)}
.primary{background:var(--ink);color:white;box-shadow:0 14px 30px rgba(32,34,38,.18)}
.secondary{border:1px solid var(--line);background:rgba(255,255,255,.76)}
.hero-points{display:flex;gap:24px;flex-wrap:wrap;margin-top:30px;font-size:.82rem;font-weight:700;color:var(--muted)}
.hero-points span:before{content:"✦";color:var(--gold);margin-right:8px}
.hero-art{min-height:560px;display:grid;place-items:center;position:relative}
.hero-panel{
  width:min(430px,88%);aspect-ratio:.82;border-radius:44px;padding:38px;
  background:linear-gradient(145deg,rgba(255,255,255,.91),rgba(255,255,255,.58)),linear-gradient(135deg,var(--pink),var(--aqua));
  border:1px solid rgba(255,255,255,.85);box-shadow:var(--shadow);position:relative;overflow:hidden
}
.hero-panel:before{content:"";position:absolute;width:280px;height:280px;border-radius:50%;background:rgba(245,216,227,.8);right:-90px;top:-90px}
.hero-panel:after{content:"";position:absolute;width:230px;height:230px;border-radius:50%;background:rgba(184,231,228,.85);left:-100px;bottom:-90px}
.panel-kicker{position:relative;z-index:2;font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;font-weight:800}
.panel-title{position:absolute;left:40px;bottom:48px;z-index:2;font-family:"Cormorant Garamond",Georgia,serif;font-size:clamp(3.8rem,7vw,5.5rem);line-height:.78;letter-spacing:-.06em}
.gold-ring{position:absolute;border:1px solid rgba(214,182,108,.75);border-radius:50%;z-index:1}
.ring-one{width:150px;height:150px;right:25px;top:95px}
.ring-two{width:82px;height:82px;right:59px;top:129px}
.float-chip{
  position:absolute;background:rgba(255,255,255,.87);border:1px solid white;border-radius:999px;padding:13px 18px;
  box-shadow:0 14px 32px rgba(32,34,38,.12);font-size:.8rem;font-weight:800;animation:float 5s ease-in-out infinite
}
.chip-one{left:-5px;top:120px}
.chip-two{right:-15px;top:260px;animation-delay:-1.4s}
.chip-three{left:25px;bottom:45px;animation-delay:-2.7s}
.float-chip i{width:8px;height:8px;border-radius:50%;display:inline-block;margin-right:8px}
.pink-dot{background:var(--pink-deep)}
.aqua-dot{background:var(--aqua-deep)}
.gold-dot{background:var(--gold)}
.brand-strip{
  min-height:72px;border-top:1px solid var(--line);border-bottom:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;gap:15px;flex-wrap:wrap;padding:14px;
  text-transform:uppercase;letter-spacing:.12em;font-size:.7rem;color:var(--muted);background:rgba(255,255,255,.58)
}
.brand-strip b{color:var(--gold)}
.section{width:min(1180px,calc(100% - 40px));margin:auto;padding:125px 0}
.section-heading{max-width:735px;margin-bottom:52px}
.section-heading h2,.brands-intro h2,.about-copy h2,.contact-inner h2{font-size:clamp(3rem,5vw,5rem);letter-spacing:-.04em;margin-bottom:18px}
.section-heading>p:last-child,.brands-intro>p:last-child,.about-copy p,.contact-inner p{color:var(--muted)}
.service-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.service-card{
  min-height:445px;border:1px solid var(--line);border-radius:25px;padding:26px;background:rgba(255,255,255,.74);
  box-shadow:0 18px 50px rgba(32,34,38,.05);transition:.25s
}
.service-card:hover{transform:translateY(-8px);box-shadow:0 28px 70px rgba(32,34,38,.1)}
.service-index{display:block;color:#a0a4aa;font-size:.7rem;letter-spacing:.12em;margin-bottom:55px}
.service-icon{width:54px;height:54px;border-radius:16px;display:grid;place-items:center;font-weight:900;margin-bottom:22px}
.icon-pink{background:var(--pink)}
.icon-aqua{background:var(--aqua)}
.icon-gold{background:#f1e4bd}
.icon-dark{background:#ececef}
.service-card h3{font-size:2.15rem;margin-bottom:14px}
.service-card p{font-size:.9rem;color:var(--muted)}
.service-card ul{list-style:none;padding:0;margin:22px 0 0;font-size:.84rem;font-weight:700}
.service-card li{margin:9px 0}
.service-card li:before{content:"—";margin-right:8px;color:var(--aqua-deep)}

.portfolio-section{background:#202226;color:white}
.portfolio-section .inner{padding-left:0;padding-right:0}
.light-heading .eyebrow{color:var(--aqua)}
.light-heading>p:last-child{color:rgba(255,255,255,.68)}
.portfolio-grid{display:grid;grid-template-columns:1.3fr 1fr 1fr;gap:18px}
.portfolio-card{border-radius:34px;padding:28px;min-height:550px;display:flex;flex-direction:column;justify-content:flex-end;color:var(--ink);overflow:hidden}
.portfolio-pink{background:linear-gradient(145deg,#f9dbe6,#fff3f7)}
.portfolio-aqua{background:linear-gradient(145deg,#c8ece9,#effcfb)}
.portfolio-gold{background:linear-gradient(145deg,#eadfbe,#fffaf0)}
.portfolio-tag{align-self:flex-start;margin-bottom:auto;padding:9px 13px;background:rgba(255,255,255,.7);border-radius:999px;font-size:.7rem;font-weight:800}
.books-art{height:245px;position:relative}
.book{position:absolute;width:145px;height:210px;border-radius:8px 16px 16px 8px;padding:22px 15px;font-family:"Cormorant Garamond",Georgia,serif;font-weight:700;box-shadow:0 20px 40px rgba(32,34,38,.16)}
.book-a{background:white;transform:rotate(-10deg);left:8%;top:30px}
.book-b{background:var(--aqua);transform:rotate(4deg);left:34%;top:8px}
.book-c{background:#f1c2d3;transform:rotate(12deg);left:59%;top:25px}
.document-art{width:82%;height:225px;margin:10px auto;background:white;border-radius:18px;box-shadow:0 20px 50px rgba(32,34,38,.13);padding:45px 28px}
.doc-line{height:8px;border-radius:999px;background:#d9dce1;margin-bottom:18px}
.line-long{width:95%}.line-mid{width:72%}.line-short{width:54%}
.iso-badge{width:72px;height:72px;border-radius:50%;background:var(--ink);color:white;display:grid;place-items:center;margin:28px auto 0;font-weight:900}
.music-art{height:245px;position:relative;display:grid;place-items:center}
.record{width:205px;height:205px;border-radius:50%;background:radial-gradient(circle at center,#e5cc8d 0 12%,#26282c 13% 22%,#111 23% 100%);box-shadow:0 22px 45px rgba(32,34,38,.18)}
.music-line{position:absolute;width:240px;height:80px;border:2px solid var(--pink-deep);border-color:var(--pink-deep) transparent transparent transparent;border-radius:50%}
.music-one{transform:rotate(14deg)}
.music-two{transform:rotate(-8deg) scale(.78);border-top-color:var(--aqua-deep)}
.portfolio-card h3{font-size:2.45rem;margin:25px 0 10px}
.portfolio-card p{font-size:.88rem;color:rgba(32,34,38,.7);margin:0}

.brands-section{display:grid;grid-template-columns:.9fr 1.1fr;gap:75px}
.brand-cards{display:grid;gap:14px}
.brand-card{border:1px solid var(--line);border-radius:24px;padding:25px;display:grid;grid-template-columns:72px 1fr;gap:22px;align-items:center;background:rgba(255,255,255,.7)}
.monogram{width:72px;height:72px;border-radius:20px;display:grid;place-items:center;font-family:"Cormorant Garamond",Georgia,serif;font-size:1.35rem;font-weight:800}
.mono-pink{background:var(--pink)}
.mono-aqua{background:var(--aqua)}
.mono-gold{background:#f0e1b7}
.mono-dark{background:var(--ink);color:white}
.brand-card h3{font-size:1.8rem;margin-bottom:5px}
.brand-card p{margin:0;color:var(--muted);font-size:.86rem}

.about-panel{
  border:1px solid var(--line);border-radius:34px;padding:clamp(34px,7vw,88px);
  background:radial-gradient(circle at 12% 20%,rgba(245,216,227,.8),transparent 26rem),radial-gradient(circle at 90% 90%,rgba(184,231,228,.72),transparent 28rem),white;
  display:grid;grid-template-columns:.68fr 1.32fr;gap:60px;align-items:center
}
.about-mark{width:min(310px,100%);aspect-ratio:1;border-radius:50%;display:grid;place-items:center;font-family:"Cormorant Garamond",Georgia,serif;font-size:clamp(4rem,9vw,7.2rem);letter-spacing:-.08em;border:1px solid rgba(214,182,108,.85);box-shadow:inset 0 0 0 18px rgba(255,255,255,.38)}
.contact-section{
  width:min(1180px,calc(100% - 40px));margin:0 auto 50px;padding:105px 30px;border-radius:34px;text-align:center;color:white;
  background:radial-gradient(circle at 10% 20%,rgba(245,216,227,.34),transparent 28rem),radial-gradient(circle at 90% 80%,rgba(184,231,228,.32),transparent 28rem),var(--ink)
}
.contact-inner{max-width:760px;margin:auto}
.contact-inner .eyebrow{color:var(--aqua)}
.contact-inner p{color:rgba(255,255,255,.72);margin:0 auto 30px}
.contact-actions{display:flex;align-items:center;justify-content:center;gap:18px;flex-wrap:wrap}
.light-button{background:white;color:var(--ink)}
.email-link{font-weight:700;color:var(--aqua)}
.footer{width:min(1180px,calc(100% - 40px));margin:auto;padding:44px 0 35px;border-top:1px solid var(--line);display:grid;grid-template-columns:1fr auto;gap:25px}
.footer-logo{width:170px;margin-bottom:12px}
.footer p{color:var(--muted);font-size:.8rem}
.footer-links{display:flex;gap:22px;font-size:.82rem;font-weight:800}
.copyright{grid-column:1/-1}

.reveal{opacity:0;transform:translateY(22px);transition:.7s}
.reveal.show{opacity:1;transform:none}
.delay-1{transition-delay:.08s}.delay-2{transition-delay:.16s}.delay-3{transition-delay:.24s}
@keyframes float{50%{transform:translateY(-10px)}}

@media(max-width:980px){
  .nav{position:absolute;top:85px;left:0;right:0;padding:24px;border:1px solid var(--line);border-radius:18px;background:white;box-shadow:var(--shadow);flex-direction:column;align-items:stretch;display:none}
  .nav.open{display:flex}
  .menu-button{display:block}
  .hero{grid-template-columns:1fr}
  .service-grid{grid-template-columns:repeat(2,1fr)}
  .portfolio-grid{grid-template-columns:1fr}
  .brands-section{grid-template-columns:1fr}
  .about-panel{grid-template-columns:1fr}
  .about-mark{margin:auto}
}
@media(max-width:640px){
  .header,.hero,.section,.contact-section,.footer{width:min(100% - 24px,1180px)}
  .header{min-height:88px}
  .logo-link img{width:155px}
  h1{font-size:3.65rem}
  .hero{gap:20px;padding-top:50px}
  .hero-actions{flex-direction:column}
  .button{width:100%}
  .hero-art{min-height:430px}
  .hero-panel{width:90%;border-radius:32px}
  .panel-title{left:28px;bottom:40px;font-size:3.7rem}
  .chip-one{left:0}.chip-two{right:0}.chip-three{left:4px}
  .service-grid{grid-template-columns:1fr}
  .service-card{min-height:auto}
  .portfolio-card{min-height:500px}
  .book-a{left:0}.book-b{left:26%}.book-c{left:52%}
  .brand-card{grid-template-columns:58px 1fr;padding:20px}
  .monogram{width:58px;height:58px;border-radius:16px;font-size:1rem}
  .about-panel{padding:34px 22px}
  .contact-section{padding:76px 22px}
  .footer{grid-template-columns:1fr}
  .footer-links{flex-wrap:wrap}
}


/* Creative Circle mailing-list placeholder */
.mailing-section{
  width:min(1180px,calc(100% - 40px));
  margin:0 auto;
  padding:20px 0 125px;
}
.mailing-shell{
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:70px;
  align-items:center;
  padding:clamp(36px,7vw,82px);
  border:1px solid var(--line);
  border-radius:38px;
  background:
    radial-gradient(circle at 8% 16%,rgba(245,216,227,.88),transparent 23rem),
    radial-gradient(circle at 93% 88%,rgba(184,231,228,.78),transparent 26rem),
    rgba(255,255,255,.82);
  box-shadow:var(--shadow);
}
.mailing-shell:after{
  content:"";
  position:absolute;
  width:180px;height:180px;
  border:1px solid rgba(214,182,108,.7);
  border-radius:50%;
  right:-65px;top:-70px;
}
.freebie-preview{
  min-height:430px;
  position:relative;
  display:grid;
  place-items:center;
}
.freebie-page{
  position:absolute;
  width:min(290px,72%);
  aspect-ratio:.76;
  border-radius:18px;
  border:1px solid rgba(32,34,38,.09);
  box-shadow:0 25px 55px rgba(32,34,38,.14);
}
.freebie-back{
  background:var(--aqua);
  transform:translate(-50px,15px) rotate(-10deg);
  display:grid;
  place-items:center;
  color:rgba(32,34,38,.35);
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:4rem;
  font-weight:700;
}
.freebie-middle{
  background:white;
  transform:translate(46px,12px) rotate(9deg);
  padding:54px 38px;
}
.mini-shape{position:absolute;border:2px solid var(--pink-deep)}
.mini-heart{width:60px;height:54px;left:35px;top:60px;border-radius:28px 28px 30px 30px;transform:rotate(-10deg)}
.mini-star{width:44px;height:44px;right:40px;top:95px;border-color:var(--gold);border-radius:50%}
.mini-line{height:7px;border-radius:999px;background:#dedfe2;width:72%;margin:135px auto 15px}
.mini-line.short{width:48%;margin-top:0}
.freebie-front{
  background:linear-gradient(160deg,#fff,#fff7fa);
  transform:rotate(-1deg);
  padding:42px 32px;
  z-index:3;
}
.freebie-kicker{
  margin:0 0 26px;
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.64rem;
  font-weight:900;
  color:var(--aqua-deep);
}
.freebie-front h3{
  font-size:3.15rem;
  margin-bottom:20px;
  letter-spacing:-.04em;
}
.freebie-front>p:last-of-type{
  font-size:.82rem;
  line-height:1.55;
}
.freebie-stamp{
  position:absolute;
  right:24px;bottom:25px;
  width:64px;height:64px;
  display:grid;place-items:center;
  border-radius:50%;
  background:var(--gold);
  color:white;
  font-size:.72rem;
  font-weight:900;
  transform:rotate(8deg);
}
.mailing-copy{position:relative;z-index:2}
.mailing-copy h2{
  font-size:clamp(3rem,5vw,4.8rem);
  letter-spacing:-.04em;
  margin-bottom:20px;
}
.mailing-copy>p{max-width:640px}
.mailing-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:30px;
}
.mailing-form label span{
  display:block;
  margin:0 0 7px 4px;
  color:var(--ink);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.04em;
}
.mailing-form input{
  width:100%;
  height:56px;
  border:1px solid rgba(32,34,38,.14);
  border-radius:16px;
  background:rgba(255,255,255,.88);
  padding:0 17px;
  color:var(--ink);
  outline:none;
  font:inherit;
}
.mailing-form input:focus{
  border-color:var(--aqua-deep);
  box-shadow:0 0 0 4px rgba(88,184,180,.12);
}
.mailing-button{
  grid-column:1/-1;
  border:0;
  background:linear-gradient(90deg,var(--pink-deep),var(--aqua-deep));
  color:white;
  cursor:pointer;
  box-shadow:0 14px 28px rgba(88,184,180,.17);
}
.consent-copy{
  margin-top:14px;
  font-size:.69rem;
  line-height:1.5;
  color:#7b7f85!important;
}
.form-status{
  min-height:24px;
  margin:12px 0 0;
  font-weight:700;
  color:var(--aqua-deep)!important;
}
@media(max-width:980px){
  .mailing-shell{grid-template-columns:1fr;gap:20px}
  .freebie-preview{min-height:390px}
}
@media(max-width:640px){
  .mailing-section{width:min(100% - 24px,1180px);padding-bottom:88px}
  .mailing-shell{padding:42px 22px;border-radius:30px}
  .freebie-preview{min-height:330px}
  .freebie-page{width:210px}
  .freebie-front{padding:30px 23px}
  .freebie-front h3{font-size:2.45rem}
  .mailing-form{grid-template-columns:1fr}
  .mailing-button{grid-column:auto}
}


/* Project Lighthouse v3: featured creators, advertising and journal */
.featured-creators-section{
  width:min(1180px,calc(100% - 40px));
  margin:0 auto;
  padding:125px 0;
}
.featured-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.creator-card{
  min-height:520px;
  border-radius:30px;
  overflow:hidden;
  border:1px solid var(--line);
  background:white;
  box-shadow:0 18px 50px rgba(32,34,38,.06);
}
.creator-pink{background:linear-gradient(180deg,#fff,#fff5f8)}
.creator-aqua{background:linear-gradient(180deg,#fff,#f2fbfa)}
.creator-gold{background:linear-gradient(180deg,#fff,#fffaf0)}
.creator-image{
  height:225px;
  display:grid;
  place-items:center;
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:2.05rem;
}
.creator-pink .creator-image{background:var(--pink)}
.creator-aqua .creator-image{background:var(--aqua)}
.creator-gold .creator-image{background:#f0e1b7}
.creator-placeholder span{
  width:72%;
  padding:22px;
  text-align:center;
  border:1px solid rgba(255,255,255,.8);
  border-radius:20px;
  background:rgba(255,255,255,.38);
}
.creator-card-copy{padding:27px}
.creator-type{
  color:var(--aqua-deep)!important;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:.68rem!important;
  font-weight:900;
}
.creator-card h3{font-size:2.2rem;margin-bottom:13px}
.creator-card-copy>a,.text-link{
  display:inline-block;
  margin-top:12px;
  font-weight:900;
  color:var(--ink);
}
.advertise-section{
  width:min(1180px,calc(100% - 40px));
  margin:0 auto;
  padding:35px 0 125px;
}
.advertise-inner{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:55px;
  align-items:center;
  padding:clamp(38px,7vw,76px);
  border-radius:36px;
  background:
    radial-gradient(circle at 5% 0%,rgba(245,216,227,.56),transparent 22rem),
    radial-gradient(circle at 95% 100%,rgba(184,231,228,.54),transparent 24rem),
    #202226;
  color:white;
}
.advertise-inner h2{
  font-size:clamp(3rem,5vw,4.8rem);
  margin-bottom:18px;
}
.advertise-inner>div>p:not(.eyebrow){color:rgba(255,255,255,.72)}
.advertise-actions{display:flex;gap:13px;flex-wrap:wrap;margin-top:27px}
.advertise-inner .secondary{color:white;border-color:rgba(255,255,255,.28);background:rgba(255,255,255,.07)}
.ad-space-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.ad-space{
  min-height:145px;
  padding:20px;
  border:1px dashed rgba(255,255,255,.34);
  border-radius:22px;
  background:rgba(255,255,255,.06);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.ad-space-large{grid-column:1/-1;min-height:185px}
.ad-space span{font-size:.75rem;text-transform:uppercase;letter-spacing:.12em;color:rgba(255,255,255,.65)}
.ad-space strong{font-family:"Cormorant Garamond",Georgia,serif;font-size:2rem;color:var(--aqua)}
.journal-preview{padding-top:45px}
.journal-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.journal-card{
  min-height:290px;
  padding:28px;
  border:1px solid var(--line);
  border-radius:25px;
  background:rgba(255,255,255,.76);
}
.journal-card span{
  color:var(--pink-deep);
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:.67rem;
  font-weight:900;
}
.journal-card h3{font-size:2.05rem;margin:45px 0 13px}
.page-hero{
  width:min(1180px,calc(100% - 40px));
  margin:0 auto;
  padding:95px 0 80px;
}
.page-hero h1{
  font-size:clamp(4rem,7vw,6.5rem);
  letter-spacing:-.055em;
}
.page-hero h1 span{
  background:linear-gradient(90deg,#cc7998,#62bebb);
  -webkit-background-clip:text;
  color:transparent;
}
.page-hero>p:last-child{max-width:760px;font-size:1.08rem}
.feature-offer-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.feature-offer{
  min-height:440px;
  padding:30px;
  border-radius:27px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.78);
}
.feature-offer h2{font-size:2.75rem}
.feature-offer ul{padding-left:18px;color:var(--muted)}
@media(max-width:980px){
  .featured-grid,.journal-grid,.feature-offer-grid{grid-template-columns:1fr}
  .advertise-inner{grid-template-columns:1fr}
}
@media(max-width:640px){
  .featured-creators-section,.advertise-section{width:min(100% - 24px,1180px);padding-bottom:88px}
  .advertise-inner{padding:42px 22px;border-radius:30px}
  .ad-space-grid{grid-template-columns:1fr}
  .ad-space-large{grid-column:auto}
}


/* Project Lighthouse v3.2 — Store */
.store-preview{padding-top:45px}
.store-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.product-card{
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  background:rgba(255,255,255,.78);
  box-shadow:0 18px 50px rgba(32,34,38,.06)
}
.product-image{
  height:210px;
  display:grid;
  place-items:center;
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:2rem;
  font-weight:700
}
.product-pink{background:var(--pink)}
.product-aqua{background:var(--aqua)}
.product-gold{background:#f0e1b7}
.product-copy{padding:27px}
.product-type{
  color:var(--aqua-deep)!important;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:.67rem!important;
  font-weight:900
}
.product-card h3{font-size:2.15rem;margin-bottom:12px}
.product-copy>a{font-weight:900}
.store-actions{display:flex;align-items:center;gap:18px;flex-wrap:wrap;margin-top:28px}
.store-note{font-size:.78rem;color:var(--muted)}
.store-category-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.store-category{
  min-height:330px;
  padding:30px;
  border:1px solid var(--line);
  border-radius:28px;
  background:rgba(255,255,255,.78)
}
.category-icon{
  width:58px;height:58px;
  display:grid;place-items:center;
  border-radius:17px;
  font-weight:900;
  margin-bottom:45px
}
.store-category h2{font-size:2.7rem;margin-bottom:14px}
.store-category>span{
  display:inline-block;
  margin-top:18px;
  color:var(--aqua-deep);
  font-size:.72rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em
}
@media(max-width:980px){
  .store-grid,.store-category-grid{grid-template-columns:1fr}
}
