*,
*::before,
*::after{
margin:0;
padding:0;
box-sizing:border-box;
}
html{
scroll-behavior:smooth;
}
body{
font-family:var(--font-body);
font-size:16px;
line-height:1.7;
color:#3f3a36;
background:var(--background);
-webkit-font-smoothing:antialiased; overflow-wrap:break-word; overflow-x:clip;
}
img{
max-width:100%;
display:block;
height:auto;
}
a{
text-decoration:none;
color:inherit;
}
ul{
list-style:none;
}
button{
border:none;
background:none;
cursor:pointer;
font-family:inherit;
}  :root{ --primary:#b88b46; --gold-soft:#d8c3a5; --gold-ring:#d4b07c; --accent:#d9b4af; --accent-dark:#cda19b; --rose-deep:#b47270; --terracotta:#b87d66;  --text:#36322f;
--text-light:#666666;
--text-on-accent:#3f302d; --background:#faf8f4; --surface:#ffffff; --surface-tint:#fbf8f4; --rose-tint:#f7efe9; --white:#ffffff; --border:#ece6df;
--border-tint:#efe8de;
--border-light:#efebe5; --font-heading:"Cormorant Garamond",serif;
--font-body:"Inter",sans-serif;
--font-script:"Montez",cursive;
--fs-h1-hero:46px; --fs-h3-card:22px; --fs-body:15px;
--fs-meta:14px;
--fs-dense:13.5px; --fs-eyebrow:13px; --icon-lg:58px; --icon-md:44px; --icon-sm:34px;  --sp-sm:20px;
--sp-md:32px;
--sp-lg:48px;
--gap-grid:22px;  --container:1200px;
--header-max:1400px;
--transition:.35s ease;
--transition-border:border-color .25s ease;
}  :focus-visible{
outline:2px solid var(--primary);
outline-offset:3px;
}
.screen-reader-text{
position:absolute !important;
width:1px;
height:1px;
padding:0;
margin:-1px;
overflow:hidden;
clip-path:inset(50%);
white-space:nowrap;
border:0;
} .screen-reader-text:focus{
width:auto;
height:auto;
margin:0;
overflow:visible;
clip-path:none;
white-space:normal;
}
.skip-link:focus{
left:16px;
top:16px;
z-index:9999;
padding:12px 20px;
background:var(--white);
color:var(--text);
font-size:14px;
font-weight:600;
line-height:1;
text-decoration:underline;
box-shadow:0 4px 16px rgba(0,0,0,.15);
} @media(prefers-reduced-motion:reduce){
html{
scroll-behavior:auto;
}
*,
*::before,
*::after{
animation-duration:.01ms !important;
animation-iteration-count:1 !important;
transition-duration:.01ms !important;
scroll-behavior:auto !important;
}
} .container{
width:min(92%,var(--container));
margin:0 auto;
} .section,
:where(.site-main) > section{
padding:55px 0;
}
.section-tight  { padding:40px 0; }
.section-normal { padding:55px 0; }
.section-large  { padding:70px 0; }
.section-divider{
width:52px;
height:2px;
background:var(--primary);
margin:5px 0;
} h1,
h2,
h3,
h4{
font-family:var(--font-heading);
font-weight:400;
color:var(--text);
} h1{
font-size:46px;
line-height:1.08;
letter-spacing:-0.5px;
margin-bottom:12px;
}
h2{
font-size:33px;
line-height:1.2;
}
h3{
font-size:24px;
line-height:1.3;
}
p{
color:var(--text-light);
font-size:15px;
line-height:1.7;
margin-bottom:12px;
} .site-header{
position:sticky;
top:0;
left:0;
width:100%;
background:var(--white);
z-index:999;
border-bottom:1px solid var(--border-light);
}
.header-container{
display:flex;
align-items:center;
justify-content:space-between;
max-width:var(--header-max);
margin:auto;
padding:18px 50px;
}
.site-logo{
flex-shrink:0;
margin-right:30px;
}
.site-logo img{
max-height:58px;
width:auto;
}
.logo-text{
font-family:var(--font-script);
font-size:42px;
line-height:1;
color:#F00976;
display:flex;
align-items:center;
gap:8px;
}
.header-logo-svg{
height:40px;
width:auto;
} .main-navigation{
flex:1;
display:flex;
justify-content:center;
}
.primary-menu{
display:flex;
align-items:center;
flex-wrap:nowrap;
gap:26px;
margin:0;
padding:0;
list-style:none;
}
.primary-menu li{
position:relative;
white-space:nowrap;
}
.primary-menu a{
font-size:12px;
text-transform:uppercase;
letter-spacing:1.3px;
font-weight:600;
color:#3d3935;
transition:var(--transition);
}
.primary-menu a:hover{
color:var(--primary);
}
.current-menu-item a{
color:var(--primary);
}
.header-actions{
width:120px;
display:flex;
justify-content:flex-end;
} .menu-toggle{
display:none;
flex-direction:column;
justify-content:center;
align-items:center;
gap:5px;
width:44px;
height:44px;
padding:0;
border:none;
background:none;
cursor:pointer;
flex:none;
}
.menu-toggle-bar{
display:block;
width:22px;
height:2px;
background:var(--text);
transition:transform .25s ease, opacity .25s ease;
}
.menu-toggle:hover .menu-toggle-bar{
background:var(--primary);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1){
transform:translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2){
opacity:0;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3){
transform:translateY(-7px) rotate(-45deg);
}
@media(prefers-reduced-motion:reduce){
.menu-toggle-bar{
transition:none;
}
} .btn-primary,
.btn-outline{
display:inline-block;
font-weight:600;
text-transform:uppercase;
transition:var(--transition);
}
.btn-primary{
padding:14px 28px;
margin-top:16px;
background:var(--accent);
color:#3f302d;
font-size:12px;
letter-spacing:2px;
}
.btn-primary:hover{
background:var(--accent-dark);
}
.btn-outline{
padding:16px 36px;
border:1px solid #8d7c73;
background:var(--white);
color:#3b312d;
font-size:13px;
letter-spacing:1.8px;
}
.btn-outline:hover{
background:#3b312d;
color:var(--white);
border-color:#3b312d;
} .btn-rose{
display:inline-block;
margin-top:18px;
padding:14px 28px;
background:#c07f7d;
color:var(--white);
font-size:12px;
font-weight:600;
letter-spacing:2px;
text-transform:uppercase;
transition:var(--transition);
}
.btn-rose:hover{
background:#a4615f;
}  .section-heading{
text-align:center;
margin-bottom:5px;
}
.section-heading h2{
margin-bottom:7px;
}
.section-heading .section-divider{
margin:0 auto;
} .section-title{
text-align:center;
margin-bottom:60px;
}
.section-title h2{
margin-bottom:20px;
}
.section-title .section-divider{
margin:14px auto 0;
} .eyebrow{
display:block;
font-size:var(--fs-eyebrow);
font-weight:600;
letter-spacing:2px;
text-transform:uppercase;
color:var(--terracotta);
margin-bottom:18px;
}
.eyebrow-rose{
color:var(--rose-deep);
}
.eyebrow-gold{
color:var(--primary);
} .eyebrow-script{
display:block;
font-family:var(--font-heading);
font-style:italic;
font-size:17px;
color:#b08c74;
margin-bottom:6px;
}
.text-center{
text-align:center;
} .icon-card,
.service-card,
.planning-card,
.connect-card,
.appointment-card{
background:var(--surface);
border:1px solid var(--border); padding:var(--card-padding,10px);
text-align:center;
transition:var(--transition-border);
}
.icon-card:hover,
.icon-card:focus-within,
.service-card:hover,
.service-card:focus-within,
.planning-card:hover,
.planning-card:focus-within,
.connect-card:hover,
.connect-card:focus-within{
border-color:var(--gold-soft);
} .icon-card--tint,
.appointment-card{
background:var(--surface-tint);
border-color:var(--border-tint);
}
.icon-card img,
.service-card img,
.appointment-card img{
width:var(--icon-lg);
height:var(--icon-lg);
margin:0 auto 25px;
}
.icon-card h3,
.service-card h3,
.planning-card h3,
.appointment-card h3{
font-size:var(--fs-h3-card);
line-height:1.3;
margin-bottom:18px;
}
.icon-card p,
.service-card p{
margin:0;
line-height:1.8;
color:var(--text-light);
} .feature-strip{
display:grid;
grid-template-columns:repeat(var(--strip-cols,5),minmax(0,1fr));
} .feature-item,
.philosophy-item,
.designers-step,
.designers-why-item,
.founder-why-item,
.journey-step,
.showroom-feature,
.report-benefit,
.report-step,
.expect-item,
.edit-why-item{
text-align:center;
padding:0 22px;
} .feature-item,
.philosophy-item,
.designers-step,
.designers-why-item,
.founder-why-item,
.showroom-feature,
.report-benefit,
.report-step,
.policy-card,
.policies-help-channel,
.edit-why-item{
border-right:1px solid var(--border);
}
.feature-item:last-child,
.philosophy-item:last-child,
.designers-step:last-child,
.designers-why-item:last-child,
.founder-why-item:last-child,
.showroom-feature:last-child,
.report-benefit:last-child,
.report-step:last-child,
.policy-card:last-child,
.policies-help-channel:last-child,
.edit-why-item:last-child{
border-right:none;
}
.feature-item img,
.philosophy-item img,
.designers-step img,
.designers-why-item img,
.founder-why-item img,
.journey-step img,
.showroom-feature img,
.report-benefit img,
.report-step-icon,
.edit-why-item img{
width:var(--icon-md);
height:var(--icon-md);
margin:0 auto 18px;
}
.feature-item h3,
.designers-step h3,
.designers-why-item h3,
.founder-why-item h3,
.journey-step h3,
.showroom-feature h3,
.edit-why-item h3{
font-size:20px;
margin-bottom:12px;
}
.feature-item p,
.philosophy-item p,
.designers-step p,
.designers-why-item p,
.founder-why-item p,
.journey-step p,
.showroom-feature p,
.report-benefit p,
.report-step p,
.edit-why-item p{
margin:0;
font-size:var(--fs-dense);
line-height:1.8;
color:var(--text-light);
}  .badge-circle,
.closing-icon,
.policy-badge,
.policies-help-badge,
.report-gift-badge,
.promise-badge{
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
flex-shrink:0;
}
.badge-circle,
.closing-icon{
width:82px;
height:82px;
border:2px solid var(--gold-ring);
}
.badge-circle img,
.closing-icon img{
width:40px;
height:40px;
} .check-circle{
display:flex;
align-items:center;
justify-content:center;
width:18px;
height:18px;
flex-shrink:0;
border:1px solid #d7b68b;
border-radius:50%;
color:#c69b62;
font-size:14px;
}
.benefits-list{
list-style:none;
padding:0;
margin:0;
}
.benefits-list li{
display:flex;
align-items:flex-start;
gap:16px;
margin-bottom:var(--sp-sm);
font-size:var(--fs-meta);
} .panel,
.closing-panel{
border:1px solid var(--border);
background:var(--surface);
} .showroom-hero-text,
.founder-hero-text,
.policies-hero-text,
.report-hero-text,
.designers-hero-text,
.collections-hero-text{
padding:70px 55px 70px max(40px, calc((100vw - 1200px) / 2 + 20px));
}
.showroom-hero-text p,
.founder-hero-text p,
.policies-hero-text p,
.report-hero-text p,
.designers-hero-text p,
.collections-hero-text p{
font-size:14px;
line-height:1.9;
}
.showroom-hero-image img,
.founder-hero-image img,
.policies-hero-image img,
.report-hero-image img,
.designers-hero-image img,
.collections-hero-image img{
width:100%;
height:100%;
object-fit:cover;
} .showroom-hero-image::before,
.founder-hero-image::before,
.founder-drives-image::before,
.policies-hero-image::before{
content:"";
position:absolute;
inset:0 auto 0 0;
background:linear-gradient(to right, var(--rose-tint), transparent);
z-index:2;
} .designers-cta-band,
.report-cta-band,
.founder-hello-band{
position:relative;
display:grid;
align-items:center;
gap:40px;
background:var(--rose-tint);
overflow:hidden;
}
.designers-cta-image img,
.report-cta-image img,
.founder-hello-image img{
width:100%;
height:250px;
object-fit:cover;
}
.designers-cta-text,
.report-cta-text,
.founder-hello-text{
padding:28px 40px 28px 0;
}
.designers-cta-text h3,
.report-cta-text h3,
.founder-hello-text h3{
font-size:29px;
margin-bottom:12px;
}
.designers-cta-text p,
.report-cta-text p,
.founder-hello-text p{
font-size:13.5px;
line-height:1.8;
margin-bottom:6px;
}
.designers-cta-actions,
.report-cta-actions{
display:flex;
align-items:center;
gap:16px;
flex-wrap:wrap;
}
.designers-cta-leaf,
.report-cta-leaf{
position:absolute;
top:50%;
transform:translateY(-50%);
opacity:.17;
pointer-events:none;
}
@media(max-width:992px){
.designers-cta-band,
.report-cta-band,
.founder-hello-band{
grid-template-columns:1fr;
gap:0;
}
.designers-cta-text,
.report-cta-text,
.founder-hello-text{
padding:0 24px 30px;
text-align:center;
}
.designers-cta-actions,
.report-cta-actions{
justify-content:center;
}
.designers-cta-leaf,
.report-cta-leaf{
display:none;
}
} .faq-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:26px;
}
.faq-column{
display:flex;
flex-direction:column;
gap:14px;
}
.faq-item{
border:1px solid var(--border);
background:var(--white);
}
.faq-question{
width:100%;
padding:18px 24px;
display:flex;
justify-content:space-between;
align-items:center;
gap:16px;
font-size:17px;
font-weight:600;
color:#3d3935;
text-align:left;
}
.faq-icon{
font-size:24px;
line-height:1;
color:#8f847b;
flex-shrink:0;
transition:transform .3s ease;
} .faq-answer{
display:grid;
grid-template-rows:0fr;
transition:grid-template-rows .35s ease;
}
.faq-answer-inner{
overflow:hidden;
min-height:0;
}
.faq-answer p{
padding:0 24px 22px;
margin:0;
line-height:1.8;
}
.faq-item.active .faq-answer{
grid-template-rows:1fr;
}
.faq-item.active .faq-icon{
transform:rotate(45deg);
} .site-footer{
background:var(--white);
padding:50px 0 20px;
border-top:1px solid #ece7df;
}
.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1.4fr 1.8fr;
gap:35px;
}
.footer-col{
padding-right:20px;
border-right:1px solid #ece7df;
}
.footer-col:last-child{
border-right:none;
}
.footer-col h4{
font-family:var(--font-body);
font-size:14px;
font-weight:700;
letter-spacing:1px;
text-transform:uppercase;
margin-bottom:15px;
}
.footer-logo{
width:75px;
margin-bottom:10px;
}
.footer-logo img{
height:72px;
}
.footer-about{
margin-bottom:20px;
}
.footer-menu li{
margin-bottom:12px;
}
.footer-menu a{
color:#444;
font-size:14px;
transition:var(--transition);
}
.footer-menu a:hover{
color:var(--primary);
}
.footer-social{
display:flex;
gap:18px;
}
.footer-social a{
display:flex;
align-items:center;
justify-content:center;
width:38px;
height:38px;
border:1px solid #ece7df;
border-radius:50%;
transition:var(--transition);
}
.footer-social a:hover{
border-color:var(--primary);
}
.footer-social img{
width:20px;
height:20px;
}
.footer-col:nth-child(3) p{
font-size:13.5px;
line-height:1.65;
}
.footer-contact li{
display:flex;
align-items:flex-start;
gap:12px;
margin-bottom:12px;
font-size:13.5px;
line-height:1.65;
color:#444;
}
.footer-contact img{
width:20px;
height:20px;
flex-shrink:0;
margin-top:2px;
}
.newsletter{
display:flex;
margin:30px 0;
}
.newsletter input{
flex:1;
border:1px solid #e4ddd5;
padding:14px;
font-size:15px;
}
.newsletter button{
width:60px;
background:#ddb3ae;
color:var(--white);
font-size:22px;
}
.footer-bottom{
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;
flex-wrap:wrap;
margin-top:40px;
padding-top:22px;
border-top:1px solid #ece7df;
}
.footer-bottom p{
margin:0;
font-size:13px;
}
.footer-legal{
display:flex;
align-items:center;
gap:10px;
}
.footer-legal a{
color:#444;
transition:var(--transition);
}
.footer-legal a:hover{
color:var(--primary);
}
.footer-legal span{
color:#c9c2b8;
}
.copyright{
margin-top:0;
font-size:14px;
} @media(max-width:1200px){
.primary-menu{
gap:20px;
}
.header-container{
padding:18px 30px;
}
.showroom-hero-text,
.founder-hero-text,
.policies-hero-text,
.report-hero-text,
.designers-hero-text,
.collections-hero-text{
padding:60px 40px;
}
}
@media(max-width:992px){
.header-container{
flex-wrap:wrap;
height:auto;
padding:20px 0;
} .main-navigation{
display:none;
flex:0 0 100%;
order:3;
margin-top:20px;
justify-content:center;
}
.main-navigation.is-open{
display:flex;
}
.menu-toggle{
display:flex;
}
.primary-menu{
flex-wrap:wrap;
gap:18px;
}
.logo-text{
font-size:34px;
}
h2{
font-size:30px;
}
.faq-grid{
grid-template-columns:1fr;
}
.footer-grid{
grid-template-columns:1fr 1fr;
}
.footer-col{
border-right:none;
padding-right:0;
} .showroom-hero-image::before,
.founder-hero-image::before,
.policies-hero-image::before{
display:none;
}
}
@media(max-width:768px){
.section,
:where(.site-main) > section{
padding:44px 0;
}
.primary-menu{
flex-direction:column;
gap:15px;
}
.header-actions{
display:none;
}
h2{
font-size:28px;
margin-bottom:12px;
} .footer-grid{
grid-template-columns:1fr;
gap:40px;
}
.footer-social{
justify-content:flex-start;
}
.showroom-hero-text,
.founder-hero-text,
.policies-hero-text,
.report-hero-text,
.designers-hero-text,
.collections-hero-text{
padding:45px 20px;
}
}.designers-hero{
padding:0;
background:var(--rose-tint);
}
.designers-hero-inner{
display:grid;
grid-template-columns:1fr 1.3fr;
align-items:center;
min-height:540px;
}
.designers-hero-text h1{
margin-top:10px;
}
.designers-hero-text p{
margin-top:18px;
margin-bottom:24px;
}
.designers-hero-actions{
display:flex;
gap:16px;
align-items:center;
}
.designers-hero-actions .btn-rose,
.designers-hero-actions .btn-outline{
display:inline-block;
}
.designers-hero-image{
height:100%;
min-height:540px;
} .designers-partnership{
padding:55px 0 45px;
}
.designers-partnership .section-heading{
text-align:center;
margin-bottom:40px;
}
.designers-partnership .section-heading h2{
font-size:34px;
margin-bottom:10px;
}
.designers-partnership .section-divider{
margin:0 auto;
}
.designers-partnership-grid{
display:grid;
grid-template-columns:repeat(5, 1fr);
gap:24px;
}
.designers-benefit{
text-align:center;
padding:24px;
}
.designers-benefit img{
width:56px;
height:56px;
margin:0 auto 16px;
display:block;
}
.designers-benefit h3{
font-size:18px;
font-weight:600;
margin-bottom:12px;
}
.designers-benefit p{
font-size:13px;
line-height:1.7;
color:var(--text-light);
} .designers-categories{
padding:50px 0;
background:#fafafa;
}
.designers-categories .section-heading{
text-align:center;
margin-bottom:40px;
}
.designers-categories .section-heading h2{
font-size:34px;
margin-bottom:10px;
}
.designers-categories-grid{
display:grid;
grid-template-columns:repeat(3, 1fr);
gap:28px;
}
.category-card{
background:white;
border-radius:8px;
overflow:hidden;
box-shadow:0 2px 8px rgba(0,0,0,0.08);
transition:var(--transition);
}
.category-card:hover{
box-shadow:0 4px 12px rgba(0,0,0,0.12);
}
.category-image{
overflow:hidden;
}
.category-image img{
width:100%;
height:auto;
object-fit:contain;
display:block;
}
.category-content{
padding:20px;
}
.category-content h3{
font-size:18px;
font-weight:600;
margin-bottom:12px;
}
.category-content ul{
list-style:none;
padding:0;
margin:0;
}
.category-content li{
font-size:13px;
line-height:1.8;
color:var(--text-light);
margin-bottom:6px;
}
.categories-note{
grid-column:span 2;
position:relative;
display:grid;
grid-template-columns:38% 62%;
align-items:center;
min-height:500px;
border-radius:8px;
overflow:hidden;
background-size:cover;
background-position:center;
background-repeat:no-repeat;
box-shadow:0 2px 8px rgba(0,0,0,0.08);
}
.categories-note::before{
content:"";
position:absolute;
inset:0;
background:rgba(250,246,240,0.72);
z-index:1;
}
.invite-left{
position:relative;
z-index:2;
padding:40px 30px 40px 44px;
transform:rotate(-2deg);
}
.invite-headline{
font-family:"Caveat",cursive;
font-weight:700;
font-size:34px;
line-height:1.15;
margin-bottom:14px;
}
.invite-navy{
color:#2d3348;
}
.invite-maroon{
color:var(--rose-deep);
}
.invite-count{
display:flex;
align-items:baseline;
gap:10px;
padding-bottom:10px;
margin-bottom:14px;
border-bottom:2px solid var(--primary);
}
.invite-count-number{
font-family:var(--font-heading);
font-weight:700;
font-size:44px;
color:var(--rose-deep);
}
.invite-count-label{
font-family:"Caveat",cursive;
font-weight:600;
font-size:24px;
color:#2d3348;
}
.invite-sub{
font-family:"Caveat",cursive;
font-weight:600;
font-size:19px;
line-height:1.4;
color:#2d3348;
max-width:230px;
}
.invite-right{
position:relative;
z-index:2;
padding:40px 40px 40px 20px;
}
.invite-eyebrow{
color:#2d3348;
margin-bottom:16px;
}
.invite-text{
font-size:14px;
line-height:1.8;
color:var(--text);
max-width:420px;
margin-bottom:14px;
}
.invite-tagline{
font-family:"Caveat",cursive;
font-weight:600;
font-size:22px;
color:var(--rose-deep);
margin-bottom:2px;
}
.invite-signature{
font-family:"Caveat",cursive;
font-weight:700;
font-size:28px;
color:var(--rose-deep);
line-height:1.1;
}
.invite-signature-role{
font-size:11px;
font-weight:600;
letter-spacing:1.5px;
text-transform:uppercase;
color:var(--text-light);
}
.invite-signature-block{
position:absolute;
z-index:2;
right:40px;
bottom:28px;
text-align:right;
}
.invite-signature-block .invite-signature{
margin-bottom:2px;
} .designers-audience{
padding:50px 0;
}
.audience-inner{
display:grid;
grid-template-columns:1fr 1.2fr;
align-items:center;
gap:50px;
}
.audience-image{
border-radius:12px;
overflow:hidden;
}
.audience-image img{
width:100%;
height:auto;
display:block;
}
.audience-content h2{
font-size:32px;
margin-bottom:8px;
}
.audience-subtitle{
font-size:20px;
color:var(--primary);
margin-bottom:16px;
font-weight:500;
}
.audience-content p{
font-size:14px;
line-height:1.8;
margin-bottom:24px;
color:var(--text);
}
.audience-segments{
display:grid;
grid-template-columns:repeat(2, 1fr);
gap:16px;
}
.audience-segment{
display:flex;
align-items:center;
gap:12px;
padding:12px;
background:#f5f5f5;
border-radius:6px;
}
.audience-segment img{
width:40px;
height:40px;
flex-shrink:0;
}
.audience-segment span{
font-size:13px;
font-weight:500;
color:var(--text);
} .designers-collab-criteria{
padding:50px 0;
background:#fafafa;
}
.designers-collab-criteria .section-heading{
text-align:center;
margin-bottom:40px;
}
.designers-collab-criteria .section-heading h2{
font-size:34px;
margin-bottom:10px;
}
.criteria-intro{
font-size:14px;
color:var(--text-light);
margin-top:12px;
}
.collab-criteria-grid{
display:grid;
grid-template-columns:repeat(5, 1fr);
gap:24px;
}
.criteria-card{
text-align:center;
padding:24px;
}
.criteria-card img{
width:56px;
height:56px;
margin:0 auto 16px;
display:block;
}
.criteria-card h3{
font-size:16px;
font-weight:600;
margin-bottom:12px;
}
.criteria-card p{
font-size:13px;
line-height:1.7;
color:var(--text-light);
} .designers-models{
padding:50px 0;
}
.designers-models .section-heading{
text-align:center;
margin-bottom:40px;
}
.designers-models .section-heading h2{
font-size:34px;
margin-bottom:10px;
}
.models-intro{
font-size:14px;
color:var(--text-light);
margin-top:12px;
}
.models-grid{
display:grid;
grid-template-columns:repeat(2, 1fr);
gap:24px;
}
.model-card{
background:white;
border:1px solid var(--border);
border-radius:16px;
padding:36px 32px;
text-align:center;
transition:var(--transition);
position:relative;
}
.model-card:hover{
border-color:var(--gold-soft);
transform:translateY(-4px);
}
.model-icon{
margin-bottom:20px;
}
.model-icon img{
width:72px;
height:72px;
display:inline-block;
}
.model-card h3{
font-size:26px;
font-weight:600;
margin-bottom:14px;
color:var(--text);
}
.model-card p{
font-size:15px;
line-height:1.7;
color:var(--text);
margin-bottom:24px;
}
.model-link{
display:inline-block;
color:var(--text-on-accent);
background:#e6ddc9;
text-decoration:none;
font-size:14px;
font-weight:600;
padding:12px 24px;
border-radius:6px;
transition:var(--transition);
}
.model-link:hover{
background:var(--gold-ring);
text-decoration:none;
} .designers-process{
padding:30px 0;
background:#fafafa;
}
.designers-process .section-heading{
text-align:center;
margin-bottom:28px;
}
.designers-process .section-heading h2{
font-size:34px;
margin-bottom:10px;
}
.process-steps{
display:grid;
grid-template-columns:repeat(5, 1fr);
gap:24px;
}
.process-step{
text-align:center;
}
.step-number{
width:60px;
height:60px;
background:#e6ddc9;
color:var(--text-on-accent);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:20px;
font-weight:600;
margin:0 auto 16px;
}
.process-step h3{
font-size:16px;
font-weight:600;
margin-bottom:12px;
}
.process-step p{
font-size:13px;
line-height:1.7;
color:var(--text-light);
} .designers-closing-cta{
padding:70px 0;
background:var(--rose-tint);
text-align:center;
}
.closing-cta-content{
max-width:600px;
margin:0 auto;
}
.closing-cta-content h2{
font-size:48px;
font-weight:600;
line-height:1.2;
margin-bottom:16px;
}
.closing-cta-content p:first-of-type{
font-size:24px;
color:var(--primary);
margin-bottom:16px;
line-height:1.4;
}
.cta-description{
font-size:14px;
line-height:1.8;
color:var(--text);
margin-bottom:32px !important;
}
.closing-cta-content .btn-rose{
display:inline-block;
} @media(max-width:1200px){
.designers-partnership-grid,
.collab-criteria-grid{
grid-template-columns:repeat(3, 1fr);
gap:20px;
}
.designers-categories-grid{
grid-template-columns:repeat(2, 1fr);
}
.process-steps{
grid-template-columns:repeat(3, 1fr);
gap:20px;
}
.models-grid{
grid-template-columns:1fr;
}
}
@media(max-width:992px){
.designers-hero-inner{
grid-template-columns:1fr;
gap:0;
}
.designers-hero-image{
min-height:340px;
order:-1;
}
.audience-inner{
grid-template-columns:1fr;
gap:30px;
}
.designers-hero-actions{
flex-wrap:wrap;
}
}
@media(max-width:768px){
.designers-partnership-grid,
.collab-criteria-grid{
grid-template-columns:repeat(2, 1fr);
gap:16px;
}
.designers-categories-grid{
grid-template-columns:1fr;
}
.categories-note{
grid-template-columns:1fr;
min-height:0;
}
.invite-left{
transform:none;
padding:34px 30px 24px;
}
.invite-sub{
max-width:none;
}
.invite-right{
padding:24px 30px 34px;
}
.invite-signature-block{
position:static;
text-align:right;
padding:0 30px 24px;
}
.process-steps{
grid-template-columns:repeat(2, 1fr);
gap:16px;
}
.designers-benefit,
.criteria-card,
.process-step{
padding:16px;
}
.closing-cta-content h2{
font-size:32px;
}
.closing-cta-content p:first-of-type{
font-size:20px;
}
}
@media(max-width:480px){
.designers-partnership-grid,
.collab-criteria-grid,
.process-steps{
grid-template-columns:1fr;
}
.audience-segments{
grid-template-columns:1fr;
}
.designers-hero-actions{
flex-direction:column;
width:100%;
}
.designers-hero-actions a{
width:100%;
text-align:center;
}
}