:root {
  --ink: #1d1d1f;
  --muted: #5c5c66;
  --paper: #f6f4f1;
  --sand: #e8e1d7;
  --clay: #d6cbbf;
  --accent: #3a4a57;
  --accent-soft: #c9d2da;
  --line: #d2c7ba;
}

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

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.top-strip {
  background: var(--sand);
  padding: 10px 0;
  font-size: 0.9rem;
}

.top-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.nav {
  padding: 20px 0;
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  padding: 90px 0 110px;
  overflow: hidden;
}

.hero .container {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 30px;
  background: rgba(246, 244, 241, 0.9);
  border: 1px solid var(--line);
  position: relative;
  z-index: 2;
}

.hero-visual {
  flex: 1;
  position: relative;
  background: var(--clay);
  transform: translateY(20px);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

.hero-visual img {
  height: 100%;
  min-height: 360px;
}

.tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

h1 {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  line-height: 1.15;
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: var(--sand);
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split > div {
  flex: 1 1 280px;
}

.offset-card {
  background: #fff;
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(34, 34, 34, 0.12);
  transform: translateY(-28px);
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.spaced-top {
  margin-top: 24px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card .image-box {
  height: 180px;
  background: var(--clay);
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.95rem;
}

.btn.light {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-link {
  text-decoration: underline;
}

.ribbon {
  background: var(--accent-soft);
  padding: 26px;
  position: relative;
  margin: 0 auto;
  width: min(900px, 94%);
  transform: translateY(-36px);
}

.gallery {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery .image-box {
  flex: 1 1 260px;
  height: 220px;
}

.form-wrap {
  background: #fff;
  padding: 32px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 0.95rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  font-size: 1rem;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 50px 0;
  background: #1f2226;
  color: #f4f1ec;
}

.footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer a {
  color: inherit;
}

.small {
  font-size: 0.85rem;
  color: #c7c2b8;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 10;
  background: #1f2226;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
}

.notice {
  background: var(--clay);
  padding: 18px;
  border-left: 4px solid var(--accent);
}

.page-hero {
  padding: 70px 0 60px;
}

.page-hero .container {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.page-hero .image-box {
  flex: 1 1 320px;
  height: 260px;
  background: var(--clay);
}

.page-hero .text-box {
  flex: 1 1 320px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 20px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f2226;
  color: #f4f1ec;
  padding: 16px 0;
  z-index: 12;
}

.cookie-banner .container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner button {
  border: 1px solid #f4f1ec;
  background: transparent;
  color: #f4f1ec;
  padding: 8px 16px;
  cursor: pointer;
}

.cookie-banner .accept {
  background: #f4f1ec;
  color: #1f2226;
}

.hidden {
  display: none;
}

.image-box {
  background: var(--clay);
  overflow: hidden;
}

.image-box.medium {
  height: 280px;
}

.image-box.tall {
  height: 320px;
}

.image-box.short {
  height: 260px;
}

.image-box.slate {
  background: var(--accent-soft);
}

@media (max-width: 860px) {
  .hero .container {
    flex-direction: column;
  }

  .hero-visual {
    transform: none;
  }

  .offset-card,
  .ribbon {
    transform: none;
  }

  .sticky-cta {
    right: 10px;
    left: 10px;
    text-align: center;
  }
}
