:root{
  --bg:#f7efe5;
  --card:#fffaf4;
  --primary:#9b4209;
  --primary-2:#c96522;
  --text:#2b1b12;
  --muted:#7a675b;
  --line:#e7d6c8;
  --shadow:0 18px 45px rgba(93, 47, 15, .12);
  --radius:22px;
  --good:#116b3a;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:'Poppins',sans-serif;
  background:linear-gradient(180deg,#fffaf4 0%,var(--bg) 100%);
  color:var(--text);
}

.wrapper{
  max-width:920px;
  margin:0 auto;
  padding:18px;
}

.hero{
  background:linear-gradient(135deg,var(--primary) 0%,var(--primary-2) 100%);
  color:#fff;
  border-radius:28px;
  padding:26px;
  box-shadow:var(--shadow);
  margin-bottom:18px;
}

.hero h1{
  margin:0;
  font-size:clamp(28px,4vw,46px);
  line-height:1.05;
  text-transform:uppercase;
}

.hero p{
  margin:10px 0 0;
  max-width:760px;
  font-size:15px;
  line-height:1.7;
  color:rgba(255,255,255,.92);
}

.card{
  background:rgba(255,250,244,.96);
  border:1px solid rgba(231,214,200,.95);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.card-header{
  padding:18px 20px;
  border-bottom:1px solid var(--line);
  background:linear-gradient(180deg,rgba(155,66,9,.07),rgba(255,255,255,0));
}

.card-header h2{
  margin:0;
  font-size:22px;
  color:var(--primary);
}

.card-body{
  padding:20px;
}

form{
  display:grid;
  gap:16px;
}

.section{
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  background:#fffdfa;
}

.section-title{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:center;
  margin-bottom:14px;
}

.section-title h3{
  margin:0;
  font-size:17px;
  color:var(--primary);
}

.section-title span{
  font-size:12px;
  color:var(--muted);
}

.grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.field{
  display:flex;
  flex-direction:column;
  gap:7px;
}

label{
  font-size:13px;
  font-weight:600;
  color:#4d3427;
}

input,
select{
  width:100%;
  border:1px solid #dcc7b7;
  background:#fff;
  border-radius:14px;
  padding:13px 14px;
  font:inherit;
  color:var(--text);
  outline:none;
  transition:.2s ease;
}

input:focus,
select:focus{
  border-color:var(--primary-2);
  box-shadow:0 0 0 4px rgba(201,101,34,.12);
}

.radio-group{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin-top:10px;
}

.radio-card{
  display:block;
  border:1px solid #e6d2c4;
  border-radius:12px;
  padding:10px 12px;
  background:#fff;
  cursor:pointer;
  transition:.2s ease;
}

.radio-card:hover{
  border-color:#b65a14;
  box-shadow:0 4px 12px rgba(0,0,0,0.04);
}

.radio-top{
  display:flex;
  align-items:flex-start;
  gap:10px;
}

.radio-top input[type="radio"]{
  margin-top:3px;
  width:16px;
  height:16px;
  accent-color:#b65a14;
  flex:0 0 auto;
}

.radio-title{
  font-size:15px;
  font-weight:600;
  color:#222;
  line-height:1.2;
  margin-bottom:2px;
}

.radio-desc{
  font-size:12px;
  color:#666;
  line-height:1.3;
}

#twoPersonOption{
  display:block !important;
}

.amount-box{
  border-radius:18px;
  background:linear-gradient(135deg,rgba(155,66,9,.08),rgba(246,178,107,.14));
  border:1px dashed #c98a5a;
  padding:16px;
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:center;
}

.amount-box strong{
  font-size:24px;
  color:var(--primary);
}

.amount-box span{
  font-size:13px;
  color:var(--muted);
}

.amount-detail{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}

.detail-row{
  display:flex;
  justify-content:space-between;
  gap:14px;
  border:1px solid var(--line);
  background:#fff;
  border-radius:14px;
  padding:12px 14px;
  font-size:13px;
}

.detail-row strong{
  color:var(--primary);
}

.actions{
  display:flex;
  gap:12px;
  justify-content:flex-end;
  flex-wrap:wrap;
}

.btn{
  border:none;
  border-radius:14px;
  padding:13px 18px;
  font:inherit;
  font-weight:600;
  cursor:pointer;
  transition:.2s ease;
}

.btn-primary{
  background:linear-gradient(135deg,var(--primary),var(--primary-2));
  color:#fff;
  box-shadow:0 12px 24px rgba(155,66,9,.22);
}

.btn-secondary{
  background:#fff;
  color:var(--primary);
  border:1px solid #d9c2b3;
}

.btn:hover{
  transform:translateY(-1px);
}

.small-note{
  margin-top:8px;
  font-size:12px;
  color:var(--muted);
  line-height:1.5;
}

.row{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:15px;
  align-items:start;
}

.col-6{
  width:auto;
  min-width:0;
}

#accompanyingFields .row,
#accompanying2Box{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:15px;
  align-items:start;
  width:100%;
}

#accompanyingFields .col-6{
  width:auto;
  min-width:0;
}

@media (max-width:768px){
  .wrapper{
    padding:12px;
  }

  .hero{
    padding:20px;
    border-radius:22px;
  }

  .card-header,
  .card-body,
  .section{
    padding:14px;
  }

  .grid-2,
  .radio-group{
    grid-template-columns:1fr;
  }

  .amount-box{
    flex-direction:column;
    align-items:flex-start;
  }

  .actions{
    justify-content:stretch;
  }

  .btn{
    width:100%;
  }

  .amount-detail{
    grid-template-columns:1fr;
  }

  .row,
  #accompanyingFields .row,
  #accompanying2Box{
    grid-template-columns:1fr;
  }
}