* {
  box-sizing: border-box;
}

:root {
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --brand: #1f4b5a;
  --accent: #d6a457;
  --paper: #f7f4ef;
  --soft: #eef1f3;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--brand);
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

header {
  padding: 24px 7vw 10px;
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 15px;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
  max-width: 260px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  padding: 30px 7vw 60px;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-media {
  flex: 1 1 340px;
  position: relative;
  background: #e2e8ea;
  min-height: 360px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.hero-card {
  background: var(--paper);
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 360px;
  margin-top: -20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  gap: 8px;
}

.button.alt {
  background: var(--accent);
  color: #1b1b1b;
}

.section {
  padding: 60px 7vw;
}

.section.soft {
  background: var(--soft);
}

.section.paper {
  background: var(--paper);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .visual {
  flex: 1 1 320px;
  background: #dfe5e8;
  min-height: 260px;
  position: relative;
}

.split .visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.offset-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.offset-panel .panel {
  flex: 1 1 280px;
  background: #ffffff;
  padding: 24px;
  box-shadow: var(--shadow);
}

.offset-panel .panel.lift {
  margin-top: -30px;
  background: #fff;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-media {
  height: 160px;
  background: #e4e7ea;
  position: relative;
}

.card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.price {
  font-weight: 700;
  color: var(--brand);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
}

.timeline-item span {
  font-weight: 700;
  color: var(--accent);
  min-width: 60px;
}

.inline-cta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

form {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  padding: 24px;
  box-shadow: var(--shadow);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cdd3d6;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  flex: 1 1 260px;
  background: var(--paper);
  padding: 22px;
}

.footer {
  padding: 40px 7vw 70px;
  background: #111;
  color: #f0f0f0;
}

.footer a {
  color: #f0f0f0;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer small {
  color: #b7b7b7;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: #1a1a1a;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
  padding: 16px 7vw;
  display: none;
  z-index: 30;
}

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.simple-page {
  padding: 30px 7vw 70px;
  max-width: 980px;
}

.simple-page h1 {
  margin-top: 0;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 22px;
  box-shadow: var(--shadow);
}

.quote {
  font-style: italic;
  margin: 0;
}

.notice {
  background: #fff8e6;
  padding: 18px;
  border-left: 4px solid var(--accent);
}

.bg-hero {
  background: #d9e3e6;
}

.bg-visual-light {
  background: #dde2e5;
}

.bg-visual-paper {
  background: #e6ddcf;
}

.bg-card-slate {
  background: #e1e6ea;
}

.bg-card-sand {
  background: #e8e0d9;
}

.bg-card-mist {
  background: #e2e5e7;
}

.bg-card-sage {
  background: #dfe7e2;
}

.bg-visual-ink {
  background: #e1e3e6;
}

@media (max-width: 820px) {
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
