* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d1b19;
  --muted: #5a5551;
  --sand: #f3efe9;
  --stone: #e4ddd5;
  --terracotta: #b56a4a;
  --sea: #2e5566;
  --fog: #f7f5f2;
}

body {
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--fog);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px 80px;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 0 10px;
}

.top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 999px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.nav a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav a:focus {
  outline: 2px solid var(--sea);
  outline-offset: 2px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 28px;
  border-radius: 28px;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-color: #3b4a52;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.15;
  max-width: 620px;
}

.hero p {
  max-width: 520px;
  font-size: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--terracotta);
  color: #fff;
  font-weight: 600;
  border: 2px solid transparent;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 48px;
}

.section h2 {
  font-size: 28px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split .media {
  flex: 1 1 320px;
}

.media-frame {
  background-color: var(--stone);
  border-radius: 20px;
  overflow: hidden;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offset {
  margin-left: 40px;
}

.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.card img {
  height: 160px;
  border-radius: 14px;
}

.price {
  font-weight: 700;
  color: var(--sea);
}

.inline-cta {
  color: var(--sea);
  text-decoration: underline;
}

.highlight {
  background: var(--sand);
  padding: 24px;
  border-radius: 20px;
}

.banner {
  background-size: cover;
  background-position: center;
  background-color: #c9c3bb;
  color: #fff;
  padding: 28px;
  border-radius: 24px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-style: italic;
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c8c0b6;
  font-size: 15px;
}

.sticky-cta {
  position: sticky;
  top: 16px;
  align-self: flex-start;
  background: var(--sea);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #d4cdc5;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  max-width: 360px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 100;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #c8c0b6;
  background: var(--sand);
  cursor: pointer;
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
}

.hero.home {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
}

.hero.about {
  background-image: url("https://images.unsplash.com/photo-1470770841072-f978cf4d019e?w=1400&q=80");
}

.hero.services {
  background-image: url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?w=1400&q=80");
}

.hero.contact {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
}

.banner.harbor {
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1400&q=80");
}

.banner.archive {
  background-image: url("https://images.unsplash.com/photo-1471879832106-c7ab9e0cee23?w=1400&q=80");
}

.banner.workshop {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
}

.banner.gallery {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}
