* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  color: #1d1d1f;
  background: #f8f4ef;
  line-height: 1.6;
}

a {
  color: #1f4b7a;
  text-decoration: underline;
}

a.button,
button.button {
  text-decoration: none;
}

header {
  background: #efe6dc;
  border-bottom: 1px solid #d5c9be;
}

.top-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 8vw 10px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  padding: 4px 10px;
  border: 1px solid #9f7e62;
  background: #fef8f2;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
  padding: 36px 8vw 48px;
  background: #f6efe7;
}

.hero-visual {
  flex: 1 1 52%;
  min-width: 280px;
  background: #d6c2b1;
  position: relative;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-content {
  flex: 1 1 40%;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.button {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid #1f4b7a;
  background: #1f4b7a;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: #fff;
  color: #1f4b7a;
}

.magazine {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 0 8vw 60px;
}

.section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  background: #fff;
  padding: 28px;
  border: 1px solid #e1d5c8;
}

.section.alt {
  background: #f2ebe2;
}

.section-header {
  flex: 1 1 100%;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  border-bottom: 1px solid #d9cdbf;
  padding-bottom: 12px;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.column {
  flex: 1 1 240px;
  min-width: 220px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #fdfaf7;
  border: 1px solid #e2d6c8;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  background: #cbb7a4;
  height: 160px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.inline-image {
  background: #cbb7a4;
  flex: 1 1 280px;
  min-height: 240px;
  overflow: hidden;
}

.inline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pull-quote {
  font-size: 1.2rem;
  font-style: italic;
  padding: 16px 18px;
  border-left: 4px solid #9f7e62;
  background: #f8f1e8;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px dashed #c8b7a7;
  padding-bottom: 10px;
}

.form-panel {
  flex: 1 1 320px;
  background: #fffaf4;
  border: 1px solid #e2d6c8;
  padding: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px;
  border: 1px solid #cbb7a4;
  background: #fff;
  font-family: inherit;
}

footer {
  background: #efe6dc;
  padding: 36px 8vw;
  font-size: 0.92rem;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-col {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #1f4b7a;
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1000;
}

.sticky-cta a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fffdf9;
  border: 1px solid #d4c6b9;
  padding: 16px;
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 999;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.muted {
  color: #5a5a5f;
}

.banner-link {
  font-weight: 600;
}

.notice-box {
  background: #f8f1e8;
  border: 1px solid #d9cdbf;
  padding: 16px;
}

.details-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.details-item {
  flex: 1 1 240px;
  background: #fff;
  border: 1px solid #e1d5c8;
  padding: 16px;
}

.content-narrow {
  max-width: 880px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
