
:root{
  --bg:#f7f3eb;
  --paper:#fffdf8;
  --ink:#1d231e;
  --muted:#5f675f;
  --line:#e3dccd;
  --olive:#6f744d;
  --olive-dark:#4f5639;
  --gold:#c9aa62;
  --cream:#f5edda;
  --shadow:0 16px 42px rgba(53,45,31,.08);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:linear-gradient(180deg,#faf7f1 0%,#f4efe5 100%);
  color:var(--ink);
  font-family:Inter,Arial,Helvetica,sans-serif;
  line-height:1.65;
}
img{max-width:100%;display:block}
a{color:inherit}
.acp-shell{width:min(1180px,calc(100% - 32px));margin:0 auto}
.acp-section{padding:28px 0}
.acp-center{text-align:center}
.acp-eyebrow{
  margin:0 0 8px;
  color:#7b7048;
  font-size:13px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.acp-title{
  margin:0 auto 14px;
  max-width:900px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(2.4rem,5vw,4.6rem);
  line-height:1;
  letter-spacing:-.02em;
}
.acp-lead{
  margin:0 auto;
  max-width:850px;
  color:#4f574f;
  font-size:18px;
  line-height:1.8;
}

/* hero visual */
.acp-hero{padding:30px 0 18px}
.acp-hero-visual{
  width:100%;
  overflow:hidden;
  border-radius:30px;
  border:1px solid rgba(213,200,168,.7);
  box-shadow:0 26px 70px rgba(42,35,23,.16);
  background:#1e1b16;
}
.acp-hero-visual img{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
}
.acp-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  margin-top:18px;
}
.acp-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  transition:.18s ease;
}
.acp-btn:hover{transform:translateY(-1px)}
.acp-btn.primary{background:var(--olive);color:#fff}
.acp-btn.secondary{background:#fff;border:1px solid var(--line);color:#283029}

/* cards */
.acp-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:24px;
  padding:28px;
  box-shadow:var(--shadow);
}
.acp-card h2,.acp-card h3{
  margin:0 0 12px;
  font-family:Georgia,"Times New Roman",serif;
  line-height:1.08;
}
.acp-card h2{font-size:34px}
.acp-card h3{font-size:25px}
.acp-card p{margin:0;color:#434b44}
.acp-card ul{margin:0;padding:0;list-style:none}
.acp-card li{
  position:relative;
  margin:0 0 10px;
  padding-left:28px;
  color:#3f473f;
}
.acp-card li::before{
  content:"";
  position:absolute;
  left:5px;
  top:.72em;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--gold);
}
.acp-card.soft{background:linear-gradient(180deg,#fffdf8,#f8f0dd)}
.acp-card.dark{
  background:linear-gradient(140deg,#292a23,#625640);
  color:#fff;
  border:0;
}
.acp-card.dark h2,.acp-card.dark h3,.acp-card.dark p,.acp-card.dark li{color:#fff}

/* centered grids */
.acp-grid-3{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
  margin-top:22px;
}
.acp-grid-2{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
  margin-top:22px;
}
.acp-icon{
  width:54px;height:54px;
  border-radius:18px;
  margin:0 auto 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg,#858b63,#656b48);
  color:white;
  font-size:26px;
}
.acp-grid-3 .acp-card{text-align:center}
.acp-grid-3 .acp-card p{max-width:320px;margin:0 auto}

.acp-checks{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  margin-top:18px;
}
.acp-check{
  display:flex;
  gap:11px;
  align-items:flex-start;
  padding:15px 16px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fbf9f3;
}
.acp-check::before{
  content:"✓";
  flex:0 0 25px;
  width:25px;height:25px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--olive);
  color:white;
  font-weight:800;
  font-size:13px;
}
.acp-steps{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  margin-top:20px;
  counter-reset:step;
}
.acp-step{
  position:relative;
  padding:22px 22px 22px 64px;
  border-radius:18px;
  background:#fbf9f3;
  border:1px solid var(--line);
  text-align:left;
}
.acp-step::before{
  counter-increment:step;
  content:counter(step);
  position:absolute;
  left:18px; top:20px;
  width:32px;height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--olive);
  color:white;
  font-weight:800;
}
.acp-step strong{display:block;margin-bottom:4px;color:#212721}
.acp-step span{color:#505851}

.acp-quote{
  margin-top:18px;
  padding:20px 24px;
  text-align:center;
  background:linear-gradient(180deg,#f8f0dd,#f0e4c8);
  border:1px solid #e3d4ac;
  border-radius:20px;
  color:#4f4c40;
  font-family:Georgia,"Times New Roman",serif;
  font-size:21px;
}

.acp-cta{
  margin-top:16px;
  padding:34px 30px;
  background:linear-gradient(115deg,#2b2c24 0%,#5f543f 56%,#8e7345 100%);
  color:white;
  border-radius:26px;
  box-shadow:0 20px 55px rgba(45,37,25,.15);
  text-align:center;
}
.acp-cta h2{
  margin:0 0 12px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:38px;
}
.acp-cta p{
  margin:0 auto;
  max-width:760px;
  color:#efe8db;
}
.acp-cta .acp-hero-actions{margin-top:22px}
.acp-note{
  margin-top:12px;
  font-size:14px;
  color:#6a7169;
  text-align:center;
}
@media(max-width:920px){
  .acp-grid-3,.acp-grid-2,.acp-checks,.acp-steps{grid-template-columns:1fr}
}
@media(max-width:640px){
  .acp-shell{width:min(100% - 20px,1180px)}
  .acp-card{padding:22px}
  .acp-title{font-size:2.5rem}
  .acp-lead{font-size:16px}
  .acp-hero-visual{border-radius:20px}
}
