@font-face{
  font-family:"Futura";
  src:local("Futura"),local("Futura PT"),local("Futura Std"),local("FuturaBT-Medium"),local("Avenir Next"),local("Avenir"),local("Century Gothic");
  font-weight:400;
  font-style:normal;
}
@font-face{
  font-family:"Futura";
  src:local("Futura"),local("Futura PT"),local("Futura Std"),local("FuturaBT-Bold"),local("Avenir Next Demi Bold"),local("Avenir Next"),local("Century Gothic");
  font-weight:700;
  font-style:normal;
}

:root{
  --bg:#E8DDD3;
  --ink:#000000;
  --paper:#ffffff;
  --radius:18px;
  --shadow:0 10px 28px rgba(0,0,0,.10);
  --shadow-soft:0 8px 20px rgba(0,0,0,.08);
  --line:rgba(0,0,0,.18);
}

*{box-sizing:border-box;}
html,body{height:100%;}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:"Futura",system-ui,-apple-system,"Segoe UI",Arial,sans-serif;
  letter-spacing:.02em;
}

.page{
  max-width:980px;
  margin:0 auto;
  padding:34px 18px 40px;
}

.header{
  text-align:center;
  padding:18px 8px 8px;
}
.brand{
  margin:0;
  font-weight:700;
  text-transform:uppercase;
  font-size:clamp(28px,4.4vw,44px);
  letter-spacing:.14em;
}
.brand-rule{
  width:min(520px,80%);
  height:1px;
  background:var(--ink);
  margin:14px auto 10px;
  opacity:.9;
}
.tagline{
  margin:0;
  font-style:italic;
  font-weight:400;
  font-size:clamp(14px,2vw,18px);
  letter-spacing:.06em;
}

.main{padding-top:18px;}

.section{padding:22px 0;}
.section-head{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:16px;
}
.section-title{
  margin:0;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:clamp(16px,2.2vw,20px);
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
}
.section-title--signature{
  text-transform:none;
  letter-spacing:.06em;
}
.section-icon{
  width:1.3em;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transform:translateY(-.5px);
}
.subnote{
  margin:0;
  font-size:clamp(13px,1.8vw,15px);
  letter-spacing:.04em;
  opacity:.9;
}

.divider{
  height:1px;
  background:var(--line);
  margin:6px 0;
}

.card{
  background:var(--paper);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
  border:1px solid rgba(0,0,0,.06);
  padding:18px 18px;
}

.card--signature{
  background:var(--ink);
  color:var(--bg);
  border:1px solid rgba(232,221,211,.22);
  box-shadow:var(--shadow);
  padding:22px 20px;
}

.card-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}

.card-title{
  display:flex;
  gap:10px;
  align-items:center;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
  opacity:.95;
}

.desc{
  margin:14px 0 10px;
  font-size:clamp(15px,2vw,17px);
  letter-spacing:.04em;
  line-height:1.55;
}

.note{
  margin:0;
  font-size:clamp(12.5px,1.8vw,14px);
  letter-spacing:.04em;
  opacity:.92;
}

.grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.service{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}

.service-name{
  font-weight:700;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:13.5px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.icon{
  width:1.15em;
  height:1.15em;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
  line-height:1;
}

.price{
  font-weight:700;
  letter-spacing:.08em;
  font-size:13.5px;
  text-transform:uppercase;
  white-space:nowrap;
}

.muted{opacity:.9; font-weight:400;}

.list{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.list-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 16px;
  background:rgba(255,255,255,.55);
  border:1px solid rgba(0,0,0,.06);
  border-radius:14px;
  box-shadow:0 8px 18px rgba(0,0,0,.06);
}

.list--cards .list-item{
  background:var(--paper);
  padding:18px 18px;
}

.cta{
  padding:28px 0 8px;
  display:flex;
  justify-content:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:min(420px,100%);
  padding:16px 18px;
  background:var(--ink);
  color:var(--bg);
  text-decoration:none;
  text-transform:uppercase;
  font-weight:700;
  letter-spacing:.18em;
  border-radius:14px;
  border:1px solid var(--ink);
  box-shadow:var(--shadow);
  transition:background-color .18s ease,color .18s ease,transform .18s ease,box-shadow .18s ease;
  font-size:14px;
}

.btn:focus{outline:none;}
.btn:focus-visible{
  box-shadow:0 0 0 4px rgba(0,0,0,.20),var(--shadow);
}

.btn:hover{
  background:var(--bg);
  color:var(--ink);
  transform:translateY(-1px);
}

.btn:active{transform:translateY(0);}

.footer{
  text-align:center;
  padding-top:22px;
}

.footer p{
  margin:0;
  font-size:12px;
  letter-spacing:.10em;
  text-transform:uppercase;
  opacity:.85;
}

@media (max-width:820px){
  .grid{grid-template-columns:1fr;}
  .page{padding:28px 16px 36px;}
  .card{padding:16px;}
  .card--signature{padding:20px 18px;}
  .service-name{white-space:normal;}
  .btn{min-width:100%; padding:18px 18px;}
}

@media (max-width:420px){
  .brand{letter-spacing:.12em;}
  .section{padding:18px 0;}
  .list-item{padding:13px 14px;}
  .price{letter-spacing:.06em;}
}
