* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f4f2;
  --ink: #1a1a1a;
  --muted: #5b5b5b;
  --accent: #0f6c6a;
  --accent-2: #7a3c26;
  --card: #ffffff;
  --sand: #efe7e2;
  --steel: #e4eaee;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  background: var(--steel);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--accent-2);
  letter-spacing: 0.02em;
}

header {
  padding: 24px 0 10px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a,
.nav-links button {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  margin: 26px 0 48px;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
  background: var(--card);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.hero-media {
  flex: 1 1 360px;
  border-radius: 26px;
  overflow: hidden;
  background: var(--steel);
  min-height: 320px;
  display: flex;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 0.85rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.cta.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  margin: 46px 0;
}

.section.accent {
  background: var(--sand);
  padding: 36px 0;
}

.section.steel {
  background: var(--steel);
  padding: 36px 0;
}

.section.bg-wash {
  background-image: url("https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.section.bg-wash .content-block {
  background: rgba(15, 15, 15, 0.72);
  color: #fff;
}

.section-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom: 18px;
}

.asym-row {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.asym-text {
  flex: 1 1 320px;
}

.asym-media {
  flex: 1 1 320px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--steel);
  min-height: 240px;
}

.asym-media img {
  width: 100%;
  height: 100%;
}

.offset-block {
  background: var(--card);
  padding: 24px;
  border-radius: 18px;
  margin-top: -24px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
}

.card-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--card);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.05);
}

.card img {
  border-radius: 12px;
  background: var(--steel);
  width: 100%;
  height: 160px;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.storyline {
  display: flex;
  gap: 18px;
  flex-direction: column;
}

.inline-cta a {
  color: var(--accent);
  text-decoration: underline;
}

.form-wrap {
  background: var(--card);
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c7c7c7;
  font-family: inherit;
}

.two-col {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--accent-2);
  color: #fff;
}

footer {
  background: #0f1113;
  color: #fff;
  padding: 36px 0 50px;
  margin-top: 40px;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.footer-grid a:hover {
  text-decoration: underline;
}

.legal {
  margin-top: 22px;
  font-size: 0.85rem;
  color: #c4c4c4;
}

.muted {
  color: var(--muted);
}

.banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #111;
  color: #fff;
  padding: 16px;
  border-radius: 12px;
  max-width: 320px;
  display: none;
  z-index: 30;
}

.banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.banner-actions {
  display: flex;
  gap: 10px;
}

.banner-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.banner-actions .accept {
  background: #fff;
  color: #000;
}

.banner-actions .reject {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.page-hero {
  padding: 26px;
  border-radius: 20px;
  background: var(--sand);
  margin: 18px 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.page-hero img {
  width: 300px;
  height: 200px;
  border-radius: 14px;
  background: var(--steel);
}

.content-block {
  background: var(--card);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.05);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.list-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.list-item span {
  font-weight: 700;
  color: var(--accent);
}

.table-pricing {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.table-row:last-child {
  border-bottom: none;
}

.notice {
  background: var(--steel);
  padding: 18px;
  border-radius: 14px;
  font-size: 0.92rem;
}

@media (max-width: 720px) {
  .hero,
  .asym-row {
    flex-direction: column;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
