* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1f1f;
  --muted: #5d5d5d;
  --paper: #f6f3ee;
  --sand: #efe6da;
  --forest: #2d3a34;
  --clay: #c6a894;
  --sun: #f1c77a;
  --sky: #dfe9f3;
  --rose: #e7d2d3;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 28px 6vw 10px;
}

.top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #d7cbbf;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand strong {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 220px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-bottom: 1px solid var(--ink);
}

.hero {
  display: flex;
  gap: 32px;
  padding: 36px 6vw 52px;
  background: var(--sky);
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-content {
  flex: 1.1;
  background: rgba(246, 243, 238, 0.92);
  padding: 28px;
  max-width: 520px;
}

.hero h1 {
  font-size: 2.7rem;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero p {
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-size: 0.95rem;
  background: var(--ink);
  color: #fff;
}

.btn.secondary {
  background: transparent;
  color: var(--ink);
}

.hero-image {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-image .media {
  background: var(--clay);
  padding: 10px;
}

.hero-image img {
  width: 420px;
  height: 540px;
}

.section {
  padding: 42px 6vw;
}

.section.alt {
  background: var(--sand);
}

.section.deep {
  background: var(--forest);
  color: #f9f3ec;
}

.section.deep a {
  color: #f9f3ec;
}

.columns {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.col {
  flex: 1;
  min-width: 240px;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
}

.magazine-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
  background: #fff;
  border: 1px solid #d7cbbf;
}

.magazine-card .media {
  background: var(--rose);
  padding: 8px;
}

.magazine-card img {
  width: 100%;
  height: 180px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1;
  min-width: 240px;
  background: #fff;
  border: 1px solid #d7cbbf;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card .media {
  background: var(--sky);
  padding: 8px;
}

.service-card img {
  width: 100%;
  height: 150px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.inline-quote {
  font-style: italic;
  padding: 16px;
  border-left: 3px solid var(--ink);
  background: #fff;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  background: #fff;
  border: 1px solid #d7cbbf;
  padding: 16px;
}

.form-wrap {
  background: #fff;
  border: 1px solid #d7cbbf;
  padding: 24px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.92rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid #cdbfb2;
  background: #fff;
  font-family: inherit;
}

.form-note {
  font-size: 0.88rem;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  padding: 28px 6vw 36px;
  background: #e7dfd6;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.legal {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #cdbfb2;
  padding: 16px 20px;
  display: none;
  gap: 16px;
  align-items: center;
  max-width: 820px;
  width: calc(100% - 32px);
  z-index: 10;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--ink);
}

.page-title {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.spacer {
  height: 16px;
}

.media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-clay {
  background-color: var(--clay);
}

.bg-rose {
  background-color: var(--rose);
}

.bg-sand {
  background-color: var(--sand);
}

.bg-sky {
  background-color: var(--sky);
}

.bg-paper {
  background-color: var(--paper);
}

.notice {
  padding: 16px;
  background: #fff7e6;
  border: 1px solid #e6c58b;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bg-story {
  background-image: url("https://images.unsplash.com/photo-1503264116251-35a269479413?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-archive {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-focus {
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.overlay {
  background: rgba(31, 31, 31, 0.7);
  color: #fff;
  padding: 24px;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #d7cbbf;
}

.table-row span {
  flex: 1;
}

.table-row strong {
  text-align: right;
}

.disclaimer {
  font-size: 0.85rem;
  color: #555;
}
