<style>
:root {
  --bg: #f4f0eb;
  --bg-soft: #ebe5de;
  --cream: #fffaf3;
  --dark: #211c1a;
  --charcoal: #4a433f;
  --muted: #82766f;
  --line: #d8cfc5;
  --gold: #a9794a;
  --gold-light: #c39a6b;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(33, 28, 26, 0.10);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

header {
  background: rgba(244, 240, 235, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(14px);
}

.nav-wrap {
  max-width: 1380px;
  margin: 0 auto;
  padding: 18px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  letter-spacing: 1px;
  color: var(--dark);
  min-width: 130px;
}

.logo-main {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 34px;
  letter-spacing: -2px;
}

.logo-sub {
  font-size: 9px;
  text-transform: uppercase;
  border: 1px solid var(--dark);
  padding: 3px 8px;
  margin-top: 2px;
  letter-spacing: 1px;
  text-align: center;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--charcoal);
  font-weight: 600;
}

nav a {
  transition: var(--transition);
}

nav a:hover {
  color: var(--gold);
}

.nav-btn {
  background: var(--charcoal);
  color: var(--white);
  padding: 15px 28px;
}

.nav-btn:hover {
  background: var(--gold);
  color: var(--white);
}

.hero {
  min-height: calc(100vh - 86px);
  max-width: 1380px;
  margin: 0 auto;
  padding: 70px 7% 80px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 80px;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 7px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
  flex-shrink: 0;
}

.section-title.center .eyebrow {
  justify-content: center;
}

.hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(58px, 7vw, 104px);
  line-height: 0.96;
  letter-spacing: -4px;
  font-weight: 400;
  margin-bottom: 34px;
}

.hero h1 em {
  font-style: italic;
}

.hero p {
  max-width: 560px;
  font-size: 22px;
  color: var(--muted);
  margin-bottom: 38px;
}

.button-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 34px;
  min-height: 58px;
  border: 1px solid var(--dark);
  font-weight: 700;
  transition: var(--transition);
}

.btn.primary {
  background: var(--dark);
  color: var(--white);
}

.btn.primary:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.btn.secondary {
  background: transparent;
  color: var(--dark);
}

.btn.secondary:hover {
  background: var(--dark);
  color: var(--white);
}

.rating {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
  flex-wrap: wrap;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 18px;
}

.hero-image {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ded6cd;
}

.hero-img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

section {
  padding: 95px 7%;
}

.section-inner {
  max-width: 1380px;
  margin: 0 auto;
}

.section-title {
  max-width: 820px;
  margin-bottom: 54px;
}

.section-title.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-title h2,
.split h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.section-title p,
.split p {
  color: var(--muted);
  font-size: 18px;
}

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

.card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 24px;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.image-placeholder {
  background:
    linear-gradient(rgba(244, 240, 235, 0.82), rgba(244, 240, 235, 0.82)),
    repeating-linear-gradient(120deg, rgba(169,121,74,.16) 0 1px, transparent 1px 18px);
  border: 1px solid var(--line);
  color: var(--gold);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 25px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 12px;
}

.small-img {
  margin-bottom: 26px;
}

.card h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 12px;
}

.card p {
  color: var(--muted);
  margin-bottom: 22px;
}

.card-link {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 800;
}

.split-section {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-image {
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.15);
  background: #f5f2ee;
}

.about-img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  transition: .6s ease;
}

.about-image:hover .about-img {
  transform: scale(1.04);
}

.feature-list {
  margin: 28px 0 34px;
  display: grid;
  gap: 14px;
}

.feature-list div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  color: var(--charcoal);
  font-weight: 600;
}

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

.results-grid .hero-image {
  min-height: auto;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 10px;
  box-shadow: 0 18px 45px rgba(33, 28, 26, 0.08);
  transition: var(--transition);
}

.results-grid .hero-image:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(33, 28, 26, 0.14);
}

.results-grid .hero-image img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: #fff;
}

#results .results-grid {
  grid-template-columns: repeat(3, 1fr);
}

#results .results-grid .hero-image img {
  height: 360px;
  object-fit: cover;
}

.price-table {
  display: grid;
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}

.price-row {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 26px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.price-row strong {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 26px;
  font-weight: 400;
}

.price-row span {
  color: var(--gold);
  font-weight: 800;
}

.faq {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 15px;
}

.faq-item {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 28px 32px;
}

.faq-item h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--muted);
}

.contact-section {
  background: var(--dark);
  color: var(--white);
}

.contact-section .section-title p,
.contact-section .eyebrow {
  color: #d7c8ba;
}

form {
  max-width: 860px;
  margin: 0 auto;
  background: #2b2522;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 44px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.25);
}

input,
select,
textarea {
  width: 100%;
  padding: 17px 18px;
  margin-bottom: 16px;
  background: #f8f1ea;
  border: 1px solid #cfc4b7;
  color: var(--dark);
  font-size: 16px;
  outline: none;
  border-radius: 0;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
}

button {
  width: 100%;
  background: var(--gold);
  color: var(--white);
  padding: 18px;
  border: none;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
}

button:hover {
  background: var(--cream);
  color: var(--dark);
}

.footer-main {
  background: #171311;
  color: #fff;
  padding: 70px 7%;
}

.footer-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
}

.footer-brand h3 {
  font-family: Georgia, serif;
  font-size: 38px;
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-brand p {
  color: #c8beb2;
  line-height: 1.8;
  max-width: 550px;
}

.footer-contact h4 {
  color: #c99b63;
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-contact p {
  margin-bottom: 18px;
  color: #d5cdc4;
}

.footer-contact a {
  color: white;
  transition: .3s;
}

.footer-contact a:hover {
  color: #c99b63;
}

.footer-bottom {
  background: #0f0c0b;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 35px 7%;
}

.footer-links {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-links a {
  color: #d9d1c7;
  font-size: 15px;
  transition: .3s;
}

.footer-links a:hover {
  color: #c99b63;
}

.footer-copyright {
  max-width: 1400px;
  margin: 30px auto 0;
  text-align: center;
  color: #999;
  font-size: 14px;
  line-height: 1.8;
}

.footer-copyright a {
  color: #c99b63;
}

.footer-copyright a:hover {
  color: white;
}

@media (max-width: 1100px) {
  nav {
    gap: 18px;
    font-size: 14px;
  }

  .hero,
  .split {
    gap: 50px;
  }

  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #results .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .nav-wrap {
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    letter-spacing: -2px;
  }

  .hero-img {
    height: auto;
    min-height: 520px;
  }

  .about-img {
    height: 500px;
  }

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

  .footer-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .nav-wrap,
  .hero,
  section,
  .footer-main,
  .footer-bottom {
    padding-left: 6%;
    padding-right: 6%;
  }

  nav a {
    font-size: 14px;
  }

  .nav-btn {
    padding: 12px 18px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero p {
    font-size: 18px;
  }

  .button-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .results-grid,
  #results .results-grid {
    grid-template-columns: 1fr;
  }

  .results-grid .hero-image img,
  #results .results-grid .hero-image img {
    height: auto;
    max-height: none;
  }

  .price-row {
    flex-direction: column;
    align-items: flex-start;
  }

  form {
    padding: 28px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}
</style>