* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background: #f6f4f0;
  line-height: 1.6;
}

a {
  color: #0c4b5a;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px 80px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 28px;
  background: #ffffff;
  border-bottom: 1px solid #e1ddd4;
}

.brand {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ad-label {
  font-size: 12px;
  color: #5f5a4c;
  padding: 6px 10px;
  border: 1px solid #d4cfc6;
  border-radius: 999px;
  background: #f3efe7;
}

.hero {
  display: flex;
  gap: 28px;
  align-items: stretch;
  margin-top: 32px;
}

.hero-media {
  flex: 1.2;
  background: #d8d4cb;
  border-radius: 18px;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero h1 {
  font-size: 36px;
  margin: 0 0 12px;
}

.tagline {
  font-size: 18px;
  color: #4e4a42;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: #0c4b5a;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: #f0e8d9;
  color: #2c2820;
  border: 1px solid #d4cfc6;
}

.button.ghost {
  background: transparent;
  border: 1px solid #0c4b5a;
  color: #0c4b5a;
}

.magazine-row {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  align-items: stretch;
}

.panel {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  flex: 1;
}

.panel.wide {
  flex: 1.5;
}

.panel.dark {
  background: #1c2f35;
  color: #fdfaf5;
}

.panel.dark a {
  color: #f4e4c2;
}

.panel h2,
.panel h3 {
  margin-top: 0;
}

.inline-media {
  display: flex;
  gap: 20px;
  align-items: center;
}

.inline-media .media {
  flex: 1;
  background: #d5d2cb;
  border-radius: 14px;
  overflow: hidden;
}

.inline-media .content {
  flex: 1.2;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #ece6da;
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
}

.media-sand {
  background-color: #d8d4cb;
}

.media-stone {
  background-color: #c9c3b9;
}

.media-clay {
  background-color: #d2cbc0;
}

.media-ink {
  background-color: #c7c0b6;
}

.card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card .price {
  font-weight: 700;
  color: #0c4b5a;
}

.background-section {
  margin-top: 44px;
  padding: 32px;
  border-radius: 20px;
  background: #2a3c42;
  color: #f7f3ea;
  position: relative;
  overflow: hidden;
}

.background-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}

.background-section .content {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 24px;
  align-items: center;
}

.testimonial {
  font-style: italic;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.form-section {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  align-items: flex-start;
}

.form-box {
  flex: 1.2;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d7d0c5;
  font-family: inherit;
}

.side-note {
  flex: 0.8;
  background: #f3efe7;
  border-radius: 16px;
  padding: 24px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #0c4b5a;
  color: #ffffff;
  border-radius: 999px;
  padding: 10px 18px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
  border: none;
  z-index: 20;
}

.footer {
  margin-top: 60px;
  background: #ffffff;
  padding: 30px 28px;
  border-top: 1px solid #e1ddd4;
}

.footer-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid #d7d0c5;
  border-radius: 16px;
  padding: 18px;
  max-width: 360px;
  z-index: 30;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  margin-top: 32px;
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.page-hero .title-box {
  flex: 1;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
}

.page-hero .media-box {
  flex: 1;
  background: #d9d5cc;
  border-radius: 16px;
  overflow: hidden;
}

.content-columns {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  align-items: flex-start;
}

.content-columns .column {
  flex: 1;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
}

.contact-list {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-item {
  background: #ffffff;
  padding: 18px;
  border-radius: 14px;
  flex: 1;
  min-width: 200px;
}

.policy-section {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .hero,
  .magazine-row,
  .inline-media,
  .form-section,
  .page-hero,
  .content-columns {
    flex-direction: column;
  }

  .card {
    width: 100%;
  }
}
