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

:root {
  --green: #1C3829;
  --green2: #2a5040;
  --gold: #C8882A;
  --gold2: #e8a84a;
  --sand: #F5EFE4;
  --cream: #faf7f2;
  --border: #ddd5c8;
  --txt: #2a3a2e;
  --muted: #6b7d71;
  --r: 10px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--txt);
}

.hero {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  background: url('bg-home.jpg');
  transform: scale(1.03);
  transition: transform 8s ease;
  background-size: cover;
  background-position: bottom;
}

.hero:hover .hero-img {
  transform: scale(1);
}

.hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 22, 16, 0.25) 0%, rgba(10, 22, 16, 0.15) 40%, rgba(10, 22, 16, 0.72) 80%, rgba(10, 22, 16, 0.92) 100%);
}

.hero-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), transparent);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo img {
    max-width: 151px;
}
.logo-dot {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.logo-txt .n {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 16px;
  line-height: 1.1;
}

.logo-txt .s {
  color: var(--gold2);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-right a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 12.5px;
  transition: color .2s;
}

.nav-right a:hover {
  color: var(--gold2);
}

.back-btn {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.8) !important;
}

.back-btn:hover {
  border-color: rgba(255, 255, 255, 0.5) !important;
  color: #fff !important;
}

.hero-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 40px 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.hero-text .eye {
  color: var(--gold2);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 38px;
  line-height: 1.1;
}

.hero-text h1 em {
  color: var(--gold2);
  font-style: italic;
}

.hero-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin-top: 6px;
}

.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  flex-shrink: 0;
}

.hb {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 5px 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 11.5px;
  font-weight: 500;
  white-space: nowrap;
}

.notice {
  background: var(--green);
  padding: 9px 40px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.notice p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.notice strong {
  color: var(--gold2);
}

.n-badge {
  background: var(--gold);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 2px 9px;
  border-radius: 20px;
  flex-shrink: 0;
}

main {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  padding: 36px 32px 60px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  align-items: start;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.card-hd {
  background: var(--green);
  padding: 11px 17px;
}

.card-hd h3 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
}

.card-bd {
  padding: 14px 17px;
}

.rate-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid #f0ebe3;
}

.rate-row:last-child {
  border-bottom: none;
}

.ri {
  width: 32px;
  height: 32px;
  background: rgba(200, 136, 42, 0.12);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.rd {
  flex: 1;
}

.rd .rn {
  color: var(--txt);
  font-size: 12.5px;
  font-weight: 600;
}

.rd .rs {
  color: var(--muted);
  font-size: 11px;
  margin-top: 1px;
  line-height: 1.4;
}

.rp {
  color: var(--gold);
  font-size: 17px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}

.amen {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.amen li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
}

.dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

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

.arow {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.arow .ic {
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.arow a {
  color: var(--green2);
  text-decoration: none;
}

.arow a:hover {
  text-decoration: underline;
}

.note-card {
  background: rgba(200, 136, 42, 0.07);
  border: 1px solid rgba(200, 136, 42, 0.2);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  gap: 8px;
}

.note-card p {
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.6;
}

.note-card p strong {
  color: var(--green);
}

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.form-hd {
    background: var(--green);
    padding: 22px 28px;
    position: relative;
    overflow: hidden;
}
.width-new {
    width: 520px;
}
.form-hd::before {
  content: '';
  position: absolute;
  right: -15px;
  top: -15px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 136, 42, 0.22), transparent 70%);
}

.form-hd .tag {
  display: inline-block;
  background: rgba(200, 136, 42, 0.18);
  color: var(--gold2);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(200, 136, 42, 0.28);
  margin-bottom: 9px;
}

.form-hd h2 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 21px;
}

.form-hd p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  margin-top: 4px;
}

.form-bd {
  padding: 24px 28px;
}

.sec-lbl {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green2);
  margin-bottom: 12px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sec-lbl::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #f0ebe3;
}

.sec-lbl:first-child {
  margin-top: 0;
}

.row {
  display: grid;
  gap: 11px;
}

.c2 {
  grid-template-columns: 1fr 1fr;
}

.c3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}

.lbl .req {
  color: var(--gold);
}

input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=date],
select,
textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--txt);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 9px 11px;
  outline: none;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green2);
  box-shadow: 0 0 0 3px rgba(42, 80, 64, 0.1);
}

select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236b7d71'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 11px center;
  padding-right: 30px;
}

textarea {
  resize: vertical;
  min-height: 65px;
  line-height: 1.5;
}

.site-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.sopt {
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 12px 13px;
  cursor: pointer;
  transition: all .2s;
  background: #fff;
  position: relative;
}

.sopt:hover {
  border-color: var(--green2);
}

.sopt.active {
  border-color: var(--green);
  background: rgba(28, 56, 41, 0.03);
}

.sopt input {
  position: absolute;
  opacity: 0;
}

.sopt-name {
  font-weight: 700;
  font-size: 13px;
  color: var(--txt);
}

.sopt-price {
  color: var(--gold);
  font-size: 17px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin: 2px 0;
}

.sopt-desc {
  font-size: 10.5px;
  color: var(--muted);
  line-height: 1.4;
}

.sopt-ck {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  transition: all .2s;
  background: #fff;
}

.sopt.active .sopt-ck {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.ctr {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: border-color .2s;
}

.ctr:focus-within {
  border-color: var(--green2);
}

.ctr button {
  width: 34px;
  height: 36px;
  border: none;
  background: #f7f2ea;
  font-size: 15px;
  color: var(--txt);
  cursor: pointer;
  transition: background .15s;
  flex-shrink: 0;
}

.ctr button:hover {
  background: #ede5d8;
}

.ctr .cv {
  flex: 1;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 36px;
}

.estimate {
  background: var(--green);
  border-radius: 9px;
  padding: 14px 17px;
  margin-top: 18px;
}

.est-t {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 700;
  margin-bottom: 8px;
}

.erows {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.erow {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.erow .el {
  color: rgba(255, 255, 255, 0.5);
}

.erow .ev {
  color: #fff;
  font-weight: 500;
}

.ediv {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 7px 0;
}

.etot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.etot .el {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.etot .ev {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--gold2);
  font-weight: 700;
}

.enote {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 5px;
}

.submit-btn {
  width: 100%;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 13px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all .2s;
  letter-spacing: .3px;
}

.submit-btn:hover {
  background: var(--green2);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.submit-btn:active {
  transform: none;
}

.submit-btn .arr {
  transition: transform .2s;
}

.submit-btn:hover .arr {
  transform: translateX(4px);
}

.foot-note {
  font-size: 10.5px;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
  line-height: 1.6;
}

footer {
  background: var(--green);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

footer p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11.5px;
}

.flinks {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.flinks a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 11.5px;
  transition: color .2s;
}

.flinks a:hover {
  color: var(--gold2);
}

@media(max-width:860px) {
  main {
    grid-template-columns: 1fr;
    padding: 24px 18px 48px;
  }

  .hero-nav {
    padding: 14px 18px;
  }

  .hero-caption {
    padding: 0 18px 22px;
  }

  .hero {
    height: 340px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-badges {
    display: none;
  }

  .notice {
    padding: 9px 18px;
  }

  .c2,
  .c3 {
    grid-template-columns: 1fr 1fr;
  }

  .form-bd {
    padding: 20px 18px;
  }

  .form-hd {
    padding: 18px 20px;
  }
  .width-new {
    width: 100% !important;
}

  footer {
    padding: 14px 18px;
  }
}

@media(max-width:480px) {

  .c2,
  .c3 {
    grid-template-columns: 1fr;
  }

  .site-toggle {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    height: 280px;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .nav-right .nh {
    display: none;
  }
}