:root {
  --bg: #1d1208;
  --bg-soft: #2b1c10;
  --panel: rgba(42, 27, 14, 0.9);
  --panel-soft: rgba(64, 41, 18, 0.78);
  --line: rgba(235, 185, 92, 0.18);
  --text: #fff4de;
  --muted: #d3bf9a;
  --amber: #ebb95c;
  --amber-deep: #b67519;
  --foam: #fff7ea;
  --green: #56754c;
  --green-soft: #92af7d;
  --shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(235, 185, 92, 0.18) 0, rgba(235, 185, 92, 0) 28%),
    radial-gradient(circle at 100% 8%, rgba(146, 175, 125, 0.18) 0, rgba(146, 175, 125, 0) 26%),
    linear-gradient(180deg, #140c05 0%, #1d1208 52%, #120902 100%);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: #ffe4a8;
  text-underline-offset: 2px;
}

a:hover {
  color: #fff8e7;
}

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

.sale-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(90deg, #4f2f10 0%, #a46417 52%, #6f8d53 100%);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.sale-bar p {
  margin: 0;
  padding: 12px 16px;
  text-align: center;
  color: var(--foam);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sale-bar a {
  color: var(--foam);
}

.shell {
  width: min(1140px, calc(100% - 30px));
  margin: 22px auto 46px;
  padding: 22px;
  border: 1px solid rgba(235, 185, 92, 0.12);
  border-radius: 30px;
  background: rgba(25, 15, 8, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px 24px;
  margin-bottom: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.28));
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--green-soft);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}

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

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(235, 185, 92, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a[aria-current="page"] {
  background: rgba(235, 185, 92, 0.14);
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
  align-items: stretch;
}

.hero-card,
.panel,
.offer-card,
.map-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
}

.hero-card {
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(235, 185, 92, 0.1) 0, rgba(235, 185, 92, 0) 30%),
    var(--panel);
}

.hero-card h1 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 6vw, 4.9rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  overflow-wrap: anywhere;
}

.hero-card p {
  margin: 0 0 16px;
  max-width: 37rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.pills,
.cta-row,
.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(235, 185, 92, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffe7b9;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.button {
  background: linear-gradient(135deg, #d4972d 0%, #a86616 100%);
  color: var(--foam);
}

.button-secondary {
  border: 1px solid rgba(235, 185, 92, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.stack {
  display: grid;
  gap: 18px;
}

.offer-card,
.map-card {
  padding: 24px;
}

.price {
  margin: 10px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.stat {
  padding: 14px;
  border: 1px solid rgba(235, 185, 92, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.stat span {
  display: block;
  color: var(--green-soft);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stat strong {
  display: block;
  margin-top: 6px;
  font-size: 1.12rem;
}

.map {
  position: relative;
  height: 220px;
  margin-top: 16px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
    radial-gradient(circle at 30% 40%, rgba(86,117,76,0.3) 0 16%, rgba(86,117,76,0) 17%),
    radial-gradient(circle at 55% 30%, rgba(235,185,92,0.24) 0 11%, rgba(235,185,92,0) 12%),
    radial-gradient(circle at 70% 60%, rgba(86,117,76,0.28) 0 13%, rgba(86,117,76,0) 14%),
    linear-gradient(180deg, rgba(22, 39, 21, 0.35), rgba(39, 56, 31, 0.16));
}

.map svg {
  width: 100%;
  height: 100%;
}

.map-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(235, 185, 92, 0.14);
  color: #ffe3a7;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  margin-top: 20px;
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 20px;
  align-items: end;
  margin-bottom: 16px;
}

.section-header p,
.section-header h2 {
  margin: 0;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 18px;
}

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

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

.panel {
  padding: 22px;
}

.panel h2,
.panel h3,
.contact-card h2,
.section h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.03em;
}

.quote {
  margin-top: 20px;
  padding: 22px 24px;
  border: 1px solid rgba(235, 185, 92, 0.16);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(235,185,92,0.12), rgba(86,117,76,0.12));
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  line-height: 1.25;
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(235, 185, 92, 0.1);
}

.list li:last-child {
  border-bottom: 0;
}

.news-grid {
  display: grid;
  gap: 18px;
}

.news-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--panel-soft);
}

.news-date {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--green-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.news-card h3,
.news-story h1 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.03em;
}

.news-card p {
  color: var(--muted);
}

.news-story {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
}

.news-story p,
.news-story li {
  color: var(--muted);
}

.story-media {
  margin: 20px 0 24px;
}

.story-media img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.story-media figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--green-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--green-soft);
  text-decoration: none;
}

.share-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 18px;
  align-items: center;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(235, 185, 92, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.share-copy {
  color: var(--muted);
  max-width: 34rem;
}

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

.share-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(235, 185, 92, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.links-grid {
  display: grid;
  gap: 18px;
}

.links-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--panel-soft);
}

.links-card h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
}

.contact-card {
  padding: 24px;
}

.contact-card p {
  color: var(--muted);
}

.form-grid {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field,
.field-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(235, 185, 92, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
}

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

.form-note {
  min-height: 16px;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-status {
  display: none;
}

.form-error {
  min-height: 16px;
  color: #ffb0a0;
  font-size: 0.8rem;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 22px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(235, 185, 92, 0.12);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

@media (max-width: 980px) {
  .hero,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .section-header,
  .share-strip {
    align-items: start;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 16px, 1140px);
    margin-top: 12px;
    padding: 16px;
    border-radius: 24px;
  }

  .sale-bar p {
    font-size: 0.74rem;
  }

  .brand img {
    width: 72px;
    height: 72px;
  }

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