:root{
  --bg:#f6f1ea;
  --surface:#fffaf5;
  --surface-2:#efe4d6;
  --text:#1f1a17;
  --muted:#6f6259;
  --accent:#9a6b46;
  --accent-dark:#6f4729;
  --line:#decfbe;
  --success:#2f6c4f;
  --shadow:0 16px 40px rgba(44,31,20,.12);
  --radius:22px;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

body{
  font-family:Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:min(1180px,92%);
  margin:auto;
}

header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(246,241,234,.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 0;
}

.logo{
  font-size:28px;
  font-weight:700;
  letter-spacing:1px;
}

.logo span{
  color:var(--accent);
}

.nav-links{
  display:flex;
  gap:20px;
  align-items:center;
  flex-wrap:wrap;
}

.btn{
  display:inline-block;
  padding:12px 22px;
  border-radius:999px;
  font-weight:700;
  border:1px solid transparent;
  transition:.25s;
}

.btn-primary{
  background:var(--accent);
  color:#fff;
}

.btn-primary:hover{
  background:var(--accent-dark);
}

.btn-light{
  background:var(--surface);
  border-color:var(--line);
}

.hero{
  padding:72px 0 40px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:34px;
  align-items:center;
}

.hero-card,
.panel,
.service-card,
.form-card,
.stat-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.hero-copy h1{
  font-size:clamp(34px,5vw,68px);
  line-height:1.05;
  margin-bottom:18px;
}

.hero-copy p{
  font-size:18px;
  color:var(--muted);
  max-width:620px;
  margin-bottom:26px;
}

.badge{
  display:inline-block;
  background:var(--surface-2);
  color:var(--accent-dark);
  padding:10px 16px;
  border-radius:999px;
  margin-bottom:18px;
  font-weight:700;
}

.hero-visual{
  padding:28px;
  min-height:520px;
  background:linear-gradient(180deg,#eadbc9,#fffaf5);
  position:relative;
  overflow:hidden;
}

.hero-visual::before,
.hero-visual::after{
  content:"";
  position:absolute;
  border-radius:50%;
}

.hero-visual::before{
  width:260px;
  height:260px;
  background:rgba(154,107,70,.14);
  top:-40px;
  right:-40px;
}

.hero-visual::after{
  width:180px;
  height:180px;
  background:rgba(111,71,41,.12);
  bottom:20px;
  left:-40px;
}

.room-board{
  position:relative;
  z-index:2;
  display:grid;
  gap:18px;
}

.mini-card{
  background:rgba(255,255,255,.84);
  border:1px solid rgba(255,255,255,.9);
  padding:18px;
  border-radius:20px;
}

.section{
  padding:40px 0;
}

.section-head{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:end;
  margin-bottom:22px;
}

.section-head h2{
  font-size:32px;
}

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

.service-card{
  overflow:hidden;
}

.service-card img{
  height:220px;
  width:100%;
  object-fit:cover;
  background:#e8ddcf;
}

.service-card .content{
  padding:20px;
}

.service-card h3{
  margin-bottom:8px;
}

.meta{
  color:var(--accent-dark);
  font-weight:700;
  margin:10px 0;
}

.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.stat-card{
  padding:24px;
  text-align:center;
}

.stat-card h3{
  font-size:34px;
  color:var(--accent-dark);
}

.form-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.form-card{
  padding:26px;
}

form{
  display:grid;
  gap:14px;
}

input,
select,
textarea{
  width:100%;
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  font-size:15px;
}

textarea{
  min-height:120px;
  resize:vertical;
}

label{
  font-weight:700;
  margin-bottom:6px;
  display:block;
}

.note{
  padding:12px 14px;
  border-radius:14px;
  background:#ecf8f1;
  color:var(--success);
  border:1px solid #b6dac7;
  margin-bottom:14px;
}

.table-wrap{
  overflow:auto;
}

table{
  width:100%;
  border-collapse:collapse;
  background:var(--surface);
}

th,
td{
  padding:14px;
  border-bottom:1px solid var(--line);
  text-align:left;
}

.footer{
  padding:28px 0 44px;
  color:var(--muted);
}

.admin-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  margin-bottom:20px;
}

.action-links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.small-btn{
  padding:8px 14px;
  border-radius:999px;
  background:var(--surface-2);
  display:inline-block;
}

@media (max-width: 900px){
  .hero-grid,
  .grid-3,
  .stats,
  .form-wrap{
    grid-template-columns:1fr;
  }

  .nav{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }
}