* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1f22;
  --muted: #5a636b;
  --accent: #0e5d6f;
  --accent-soft: #e2f0f2;
  --paper: #f8f6f3;
  --sand: #efe9e1;
  --stone: #d9d4cc;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

header {
  padding: 24px 6vw 12px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 320px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
  align-items: center;
}

nav .ad-label {
  font-size: 0.8rem;
  max-width: 260px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-bottom: 80px;
}

.hero {
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 60px 6vw;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
}

.hero-content {
  position: relative;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-content h1 {
  font-size: 2.7rem;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid #fff;
}

.section {
  padding: 0 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-backdrop {
  background-image: url("https://images.unsplash.com/photo-1493976040374-85c8e12f0c0e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  padding: 48px 6vw;
  color: #fff;
}

.section-backdrop .quote-strip {
  background: rgba(15, 24, 28, 0.7);
  color: #fff;
}

.magazine-row {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.magazine-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.magazine-column.wide {
  flex: 1.4;
}

.panel {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.image-frame {
  background-color: var(--stone);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
}

.frame-stone {
  background-color: var(--stone);
}

.frame-sand {
  background-color: var(--sand);
}

.frame-paper {
  background-color: var(--paper);
}

.frame-mist {
  background-color: #c8c3bc;
}

.frame-foam {
  background-color: #c9d0d2;
}

.frame-meadow {
  background-color: #cfd2c7;
}

.frame-pebble {
  background-color: #c6c2bc;
}

.frame-lake {
  background-color: #d2cbc1;
}

.frame-drift {
  background-color: #d8d0c8;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.journal-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.journal-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.journal-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quote-strip {
  background: var(--accent-soft);
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

.split-banner {
  display: flex;
  gap: 24px;
  background: var(--sand);
  padding: 28px;
  border-radius: 18px;
}

.split-banner .banner-text {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-banner .banner-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lead-form label {
  font-weight: 600;
}

.lead-form select,
.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8c8c8;
  font-size: 1rem;
}

.lead-form button {
  align-self: flex-start;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  padding: 8px;
  z-index: 10;
}

.sticky-cta a {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
}

.site-footer {
  background: #111;
  color: #f5f5f5;
  padding: 32px 6vw 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #d7e9ed;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.legal-page {
  padding: 48px 6vw 80px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.contact-block {
  flex: 1 1 260px;
  background: #fff;
  padding: 22px;
  border-radius: 16px;
}

.thanks-panel {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  padding: 32px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 980px) {
  .magazine-row,
  .split-banner {
    flex-direction: column;
  }

  .top-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
