* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e1e1e;
  background-color: #f8f5f1;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background-color: #f4efe9;
  border-bottom: 1px solid #ded7ce;
}

.nav-bar {
  max-width: 1140px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-disclosure {
  font-size: 12px;
  color: #5f564c;
  max-width: 220px;
  text-align: right;
}

main {
  flex: 1;
}

.magazine {
  max-width: 1140px;
  margin: 0 auto;
  padding: 36px 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1400&q=80");
  background-size: cover;
  background-position: center;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  color: #fefcf8;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 15, 10, 0.2), rgba(20, 15, 10, 0.75));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.hero-content h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background-color: #f0b429;
  color: #1a1a1a;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background-color: #f7ede0;
  color: #2a2621;
  border: 1px solid #d6c7b8;
}

.row {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.col-60 {
  flex: 1 1 60%;
  min-width: 280px;
}

.col-40 {
  flex: 1 1 35%;
  min-width: 240px;
}

.col-50 {
  flex: 1 1 48%;
  min-width: 260px;
}

.panel {
  background-color: #fff9f2;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(42, 38, 33, 0.08);
}

.panel.dark {
  background-color: #23201c;
  color: #f8f2ea;
}

.panel h2,
.panel h3 {
  margin-bottom: 12px;
  line-height: 1.3;
}

.panel p + p {
  margin-top: 12px;
}

.image-frame {
  background-color: #e9dfd3;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
}

.frame-sand {
  background-color: #e6dbcf;
}

.frame-oat {
  background-color: #efe5d8;
}

.frame-almond {
  background-color: #eadfd3;
}

.frame-clay {
  background-color: #e8d9c9;
}

.frame-linen {
  background-color: #efe3d6;
}

.story-panel {
  background-image: url("https://images.unsplash.com/photo-1481931098730-318b6f776db0?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fdf8f0;
  border-radius: 20px;
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.story-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 8, 0.6);
}

.story-panel .story-content {
  position: relative;
  z-index: 1;
  max-width: 540px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(30, 30, 30, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-price {
  font-weight: 700;
  color: #8a4b00;
}

.quote {
  font-style: italic;
  background-color: #fef2de;
  padding: 20px;
  border-radius: 14px;
}

.form-section {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 12px 26px rgba(30, 30, 30, 0.08);
}

.form-section form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-section label {
  font-weight: 600;
}

.form-section input,
.form-section select,
.form-section textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d5c7b6;
  font-size: 14px;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background-color: #2b2218;
  color: #fef5ea;
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 20;
}

.sticky-cta button {
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  background-color: #f0b429;
  cursor: pointer;
  font-weight: 600;
}

footer {
  background-color: #1e1b17;
  color: #f0e7db;
  padding: 30px 24px;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  background-color: #ffffff;
  color: #1e1e1e;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(30, 30, 30, 0.18);
  display: none;
  max-width: 320px;
  z-index: 30;
}

.cookie-banner button {
  margin-top: 12px;
  margin-right: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background-color: #2b2218;
  color: #fef5ea;
}

.cookie-banner .secondary {
  background-color: #e6dbcf;
  color: #2b2218;
}

.section-label {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7b6a57;
  margin-bottom: 10px;
}

.page-title {
  font-size: 34px;
  margin-bottom: 16px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  background-color: #fff9f2;
  padding: 18px;
  border-radius: 12px;
}

.table-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.table-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #eadfce;
}

.simple-hero {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.note {
  background-color: #fef2de;
  padding: 18px;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-disclosure {
    text-align: left;
    max-width: none;
  }

  .hero {
    padding: 28px;
  }

  .hero-content h1 {
    font-size: 32px;
  }
}
