/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
background:#f7f4ee;
font-family:'Poppins',sans-serif;
color:#222;
line-height:1.8;
overflow-x:hidden;
}


/* HERO */

.hero{

background:
linear-gradient(
90deg,
#140c04,
#5f3a05
);

padding:130px 20px;

text-align:center;

color:white;

}

.hero-overlay{
max-width:1000px;
margin:auto;
}

.hero-tag{

letter-spacing:5px;

font-size:12px;

text-transform:uppercase;

color:#d4af37;

margin-bottom:20px;

}

.hero h1{

font-family:'Cormorant Garamond',serif;

font-size:90px;

font-weight:700;

line-height:1;

margin-bottom:20px;

}

.hero h1 span{
color:#e3bf64;
}

.hero-line{

width:70px;

height:2px;

background:#d4af37;

margin:25px auto;

}

.hero-subtitle{

font-size:22px;

font-weight:300;

opacity:.95;

}


/* CONTENT */

.content-section{

max-width:1200px;

margin:auto;

padding:90px 25px;

}

.section-tag{

font-size:12px;

letter-spacing:6px;

text-transform:uppercase;

color:#c89b3c;

margin-bottom:18px;

}

.content-section h2{

font-family:'Cormorant Garamond',serif;

font-size:62px;

line-height:1.1;

margin-bottom:35px;

color:#111;

}

.content-section p{

font-size:18px;

margin-bottom:25px;

color:#444;

}


/* QUOTE */

.quote-box{

background:#1b1209;

color:#fff;

padding:35px;

border-radius:18px;

margin-top:35px;

font-size:18px;

font-style:italic;

border-left:5px solid #d4af37;

box-shadow:
0 15px 40px rgba(0,0,0,.15);

}


/* TABLE */

.table-wrapper{
overflow-x:auto;
margin-top:35px;
}

table{

width:100%;

border-collapse:collapse;

background:white;

border-radius:16px;

overflow:hidden;

box-shadow:
0 10px 30px rgba(0,0,0,.08);

}

th{

background:#1b1209;

color:#d4af37;

padding:22px;

font-size:17px;

text-align:left;

}

td{

padding:20px;

border-bottom:1px solid #eee;

font-size:16px;

}

tr:nth-child(even){
background:#fbf8f2;
}

.good{

color:#2f7d32;

font-weight:600;

}

.bad{

color:#d64541;

font-weight:600;

}


/* PROCESS */

.process-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));

gap:25px;

margin-top:40px;

}

.process-card{

background:white;

padding:35px;

border-radius:18px;

text-align:center;

box-shadow:
0 10px 30px rgba(0,0,0,.08);

transition:.35s;

}

.process-card:hover{

transform:translateY(-8px);

}

.number{

width:70px;

height:70px;

border-radius:50%;

background:#d4af37;

color:white;

display:flex;

align-items:center;

justify-content:center;

font-size:26px;

font-weight:700;

margin:auto;

margin-bottom:20px;

}

.process-card h3{

margin-bottom:12px;

font-size:22px;

}

.process-card p{

font-size:15px;

margin:0;

}


/* BENEFITS */

.benefits-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));

gap:25px;

margin-top:40px;

}

.benefit-card{

background:white;

padding:35px;

border-radius:18px;

text-align:center;

font-size:40px;

box-shadow:
0 10px 30px rgba(0,0,0,.08);

transition:.35s;

}

.benefit-card:hover{

transform:translateY(-8px);

}

.benefit-card h3{

font-size:22px;

margin-top:15px;

margin-bottom:12px;

}

.benefit-card p{

font-size:15px;

margin:0;

}


/* WHY HILBORN */

.feature-list{

list-style:none;

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(300px,1fr));

gap:20px;

margin-top:35px;

}

.feature-list li{

background:white;

padding:18px 22px;

border-radius:12px;

box-shadow:
0 5px 15px rgba(0,0,0,.05);

font-weight:500;

}


/* FAQ */

.faq{

margin-top:35px;

display:flex;

flex-direction:column;

gap:18px;

}

.faq-item{

background:white;

padding:25px;

border-radius:16px;

box-shadow:
0 5px 20px rgba(0,0,0,.06);

}

.faq-item h3{

font-size:22px;

margin-bottom:10px;

}

.faq-item p{
margin:0;
}


/* CTA */

.cta{

padding:120px 20px;

text-align:center;

background:
linear-gradient(
90deg,
#140c04,
#5f3a05
);

color:white;

margin-top:60px;

}

.cta h2{

font-family:'Cormorant Garamond',serif;

font-size:70px;

margin-bottom:15px;

}

.cta p{

font-size:18px;

margin-bottom:30px;

}

.shop-btn{

display:inline-block;

padding:18px 42px;

background:#d4af37;

color:white;

text-decoration:none;

border-radius:12px;

font-size:18px;

font-weight:600;

transition:.3s;

}

.shop-btn:hover{

transform:translateY(-4px);

background:#c89b3c;

}


/* BOTTOM NAV */

.bottom-nav{

text-align:center;

padding:50px 20px;

}

.bottom-nav a{

text-decoration:none;

color:#111;

font-weight:600;

font-size:18px;

}

.bottom-nav a:hover{
color:#c89b3c;
}


/* MOBILE */

@media(max-width:992px){

.hero h1{
font-size:65px;
}

.content-section h2{
font-size:48px;
}

.cta h2{
font-size:52px;
}

}


@media(max-width:768px){

.hero{
padding:90px 20px;
}

.hero h1{
font-size:50px;
}

.hero-subtitle{
font-size:18px;
}

.content-section{
padding:70px 20px;
}

.content-section h2{
font-size:38px;
}

.content-section p{
font-size:16px;
}

th,
td{
padding:14px;
font-size:14px;
}

.cta{
padding:90px 20px;
}

.cta h2{
font-size:42px;
}

.shop-btn{
width:100%;
max-width:320px;
}

}


@media(max-width:480px){

.hero h1{
font-size:40px;
}

.content-section h2{
font-size:32px;
}

.hero-subtitle{
font-size:16px;
}

.section-tag{
letter-spacing:3px;
}

}