:root{
  --color-primary:#b8872f;
  --color-primary-hover:#9f7428;

  --color-gold:#c79a3b;
  --color-gold-soft:#f5ead2;

  --color-black:#080808;
  --color-ink:#111111;
  --color-charcoal:#181818;

  --color-success:#15803d;
  --color-warning:#b45309;
  --color-danger:#b91c1c;

  --color-text:#121212;
  --color-text-soft:#5f5a50;

  --color-border:#e7dfd0;
  --color-background:#f7f3eb;
  --color-surface:#ffffff;

  --shadow-sm:0 2px 10px rgba(8,8,8,.05);
  --shadow-md:0 14px 38px rgba(8,8,8,.10);
  --shadow-lg:0 26px 70px rgba(8,8,8,.16);

  --radius-sm:10px;
  --radius-md:16px;
  --radius-lg:24px;

  --container:1200px;
  --transition:.25s ease;
}

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

html{
  scroll-behavior:smooth;
}

body{
  background:
    radial-gradient(
      circle at top left,
      rgba(199,154,59,.12),
      transparent 34%
    ),
    var(--color-background);

  color:var(--color-text);

  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;

  line-height:1.6;
  min-height:100vh;
}

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

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

button{
  border:none;
  cursor:pointer;
  font:inherit;
}

input,
textarea,
select{
  font:inherit;
}

.container{
  width:min(
    calc(100% - 32px),
    var(--container)
  );

  margin-inline:auto;
}

.section{
  padding:80px 0;
}

.card{
  background:var(--color-surface);
  border:1px solid var(--color-border);
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-sm);
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-height:52px;

  padding:0 24px;

  border-radius:999px;

  font-weight:800;
  letter-spacing:-.01em;

  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition),
    opacity var(--transition),
    box-shadow var(--transition);
}

.button:hover{
  transform:translateY(-2px);
}

.button--primary{
  background:
    linear-gradient(
      135deg,
      #111,
      #2a2a2a
    );

  color:#d7b061;

  border:1px solid rgba(215,176,97,.25);

  box-shadow:0 12px 28px rgba(8,8,8,.18);
}

.button--primary:hover{
  background:
    linear-gradient(
      135deg,
      #1c1c1c,
      #050505
    );

  color:#f0d28d;

  box-shadow:0 16px 36px rgba(8,8,8,.24);
}

.button--secondary{
  background:#fffaf0;
  color:var(--color-ink);

  border:1px solid var(--color-border);
}

.button--secondary:hover{
  background:#111;
  color:#fff;
  border-color:#111;
}

.field{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.field span{
  font-size:.82rem;

  font-weight:800;

  text-transform:uppercase;

  letter-spacing:.05em;

  color:#8a6423;
}

.field input,
.field textarea,
.field select{
  width:100%;

  padding:16px 18px;

  border:1px solid rgba(184,135,47,.20);

  border-radius:16px;

  background:#fffefb;

  color:#111;

  transition:
    border-color .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus{
  outline:none;

  background:#ffffff;

  border-color:#b8872f;

  box-shadow:
    0 0 0 4px rgba(184,135,47,.12);
}

.field input::placeholder,
.field textarea::placeholder{
  color:#9ca3af;
}

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

.field small{
  min-height:18px;
  color:var(--color-danger);
  font-size:.85rem;
}

.is-invalid{
  border-color:var(--color-danger)!important;
}

.loading-state,
.error-state,
.empty-state{
  background:#fffdf8;

  padding:32px;

  border-radius:var(--radius-md);

  border:1px solid var(--color-border);

  box-shadow:var(--shadow-sm);
}

.error-state{
  border-color:#fecaca;
  background:#fff7f7;
}

.error-state h2,
.error-state h3{
  margin-bottom:12px;
}

.muted{
  color:var(--color-text-soft);
}

.hidden{
  display:none!important;
}

.status-message{
  margin-top:12px;
}

.is-error{
  color:var(--color-danger);
}

.is-success{
  color:var(--color-success);
}

.progress{
  width:100%;
  height:10px;

  overflow:hidden;

  background:#eadfcb;

  border-radius:999px;
}

.progress__bar{
  width:0%;

  height:100%;

  background:linear-gradient(
    90deg,
    #d7b061,
    #b8872f
  );

  transition:width .4s ease;
}

.modal{
  position:fixed;
  inset:0;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:24px;

  background:rgba(8,8,8,.78);

  z-index:999;
}

.modal[hidden]{
  display:none;
}

.modal__content{
  width:min(100%,900px);

  max-height:90vh;

  overflow:auto;

  background:#fffdf8;

  border:1px solid rgba(199,154,59,.22);
  border-radius:24px;

  padding:34px;

  box-shadow:var(--shadow-lg);
}

.modal-open{
  overflow:hidden;
}

.review-grid{
  display:grid;
  gap:14px;

  margin:24px 0;
}

.review-row{
  display:flex;
  flex-direction:column;

  gap:4px;

  padding:14px;

  border:1px solid var(--color-border);

  border-radius:14px;

  background:#fffaf0;
}

.review-price{
  margin-top:24px;

  font-size:1.1rem;
  font-weight:800;
}

.page-header{
  padding:32px 0;
}

.page-title{
  font-size:clamp(
    2rem,
    4vw,
    3rem
  );

  line-height:1.1;

  margin-bottom:12px;

  letter-spacing:-.04em;
}

.page-subtitle{
  color:var(--color-text-soft);
}

.footer{
  margin-top:80px;
  padding:52px 0;

  background:#0b0b0b;

  border-top:1px solid
    rgba(215,176,97,.15);
}

.footer__content{
  display:grid;
  grid-template-columns:
    2fr 1fr 1fr;

  gap:48px;
}

.footer__column h3{
  color:#ffffff;

  margin-bottom:14px;

  font-size:1.3rem;
}

.footer__column h4{
  color:#d7b061;

  margin-bottom:14px;

  font-size:.95rem;

  text-transform:uppercase;

  letter-spacing:.06em;
}

.footer__column p{
  color:
    rgba(255,255,255,.72);

  margin-bottom:10px;

  line-height:1.7;
}

.footer__column a{
  color:
    rgba(255,255,255,.72);

  transition:.25s ease;
}

.footer__column a:hover{
  color:#d7b061;
}

@media (max-width:768px){

  .section{
    padding:48px 0;
  }

  .modal__content{
    padding:22px;
  }

  .button{
    width:100%;
  }

  .footer__content{
    grid-template-columns:1fr;

    text-align:center;

    gap:28px;
  }

}
