* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1e1c19;
  --sand: #f6f1ea;
  --clay: #e8dccf;
  --rust: #b24c3a;
  --olive: #55604f;
  --cream: #fffaf4;
  --shadow: rgba(30, 28, 25, 0.12);
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 24px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 12px;
  background: var(--clay);
  border-radius: 999px;
  font-size: 0.8rem;
}

.hero {
  padding: 90px 6vw 110px;
  color: var(--cream);
  background-image: url("https://images.unsplash.com/photo-1506368249639-73a05d6f6488?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(32, 28, 24, 0.55);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 520px;
}

.hero h1 {
  font-size: 2.7rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  background: var(--rust);
  color: #fff;
  font-size: 0.95rem;
}

.btn-outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.section-alt {
  background: var(--sand);
}

.section-surface {
  background: var(--clay);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split > div {
  flex: 1 1 300px;
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 10px 24px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card-row .card {
  flex: 1 1 240px;
}

.image-frame {
  background: var(--clay);
  border-radius: 12px;
  overflow: hidden;
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote {
  font-style: italic;
  border-left: 4px solid var(--olive);
  padding-left: 16px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(30, 28, 25, 0.2);
}

.price-item span {
  font-weight: 600;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid rgba(30, 28, 25, 0.3);
  font-size: 0.95rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inline-cta {
  font-weight: 600;
  color: var(--rust);
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: 0 12px 24px var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9;
}

.sticky-cta button {
  background: var(--olive);
  color: #fff;
}

footer {
  padding: 40px 6vw 60px;
  background: #1e1c19;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.85rem;
  opacity: 0.8;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 18px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 24px var(--shadow);
  display: none;
  flex-direction: column;
  gap: 14px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-actions button {
  background: var(--rust);
  color: #fff;
}

.cookie-actions .btn-alt {
  background: transparent;
  border: 1px solid var(--rust);
  color: var(--rust);
}

.simple-header {
  padding: 60px 6vw 10px;
}

.simple-header h1 {
  font-size: 2.2rem;
}

.content-block {
  padding: 30px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 820px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  background: var(--sand);
  padding: 18px;
  border-radius: 10px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  background: var(--clay);
  border-radius: 999px;
  font-size: 0.8rem;
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1484723091739-30a097e8f929?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 21, 18, 0.5);
}

.section-bg .section-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.note {
  font-size: 0.9rem;
  color: rgba(30, 28, 25, 0.7);
}
