* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1d1d1f;
  --muted: #5b5e63;
  --sand: #f6f1ea;
  --mist: #eef3f6;
  --pine: #1f4a3a;
  --ember: #c05b2b;
  --ocean: #2f4f6f;
  --paper: #ffffff;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  border-bottom: 1px solid #e4e7ea;
  background: var(--paper);
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.hero {
  display: flex;
  gap: 32px;
  padding: 48px 6%;
  background: var(--mist);
}

.hero-copy {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-image {
  flex: 1;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.2;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.button-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.95rem;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
}

.section {
  padding: 44px 6%;
}

.magazine-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.column {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel {
  padding: 20px;
  border-radius: 18px;
  background: var(--sand);
}

.panel-dark {
  background: var(--pine);
  color: var(--paper);
}

.image-wrap {
  background: #d9d2c9;
  border-radius: 16px;
  overflow: hidden;
}

.media-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.story-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.story-card {
  flex: 1;
  min-width: 240px;
  background: var(--paper);
  border: 1px solid #e1e3e8;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.story-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.highlight {
  background: var(--ocean);
  color: var(--paper);
  border-radius: 20px;
  padding: 28px;
}

.two-tone {
  background: linear-gradient(120deg, var(--paper) 55%, var(--mist) 45%);
}

.quote {
  font-size: 1.05rem;
  font-style: italic;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border: 1px solid #e6e9ef;
  border-radius: 14px;
  background: var(--paper);
}

.service-meta {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.form-wrap {
  background: var(--mist);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd5db;
  font-size: 0.95rem;
}

button {
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--ember);
  color: var(--paper);
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  z-index: 20;
}

.sticky-cta button {
  background: var(--paper);
  color: var(--ember);
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.sticky-cta a {
  background: var(--paper);
  color: var(--ember);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
}

.footer {
  background: var(--sand);
  padding: 32px 6%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: var(--paper);
  border: 1px solid #d8dde3;
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
}

.cookie-actions .btn-outline {
  background: transparent;
  color: var(--ink);
}

.page-hero {
  padding: 36px 6%;
  background: var(--mist);
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.page-hero .image-wrap {
  flex: 1;
  min-width: 260px;
}

.page-hero .page-copy {
  flex: 1.2;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.notice {
  padding: 14px;
  border-radius: 12px;
  background: var(--mist);
}

.list-tight {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.legal-card {
  flex: 1;
  min-width: 260px;
  background: var(--paper);
  border: 1px solid #e6e8ed;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.link-inline {
  color: var(--ocean);
  text-decoration: underline;
}

.background-hero {
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1400&q=80");
}

.background-route {
  background-image: url("https://images.unsplash.com/photo-1447078806655-40579c2520d6?w=1400&q=80");
}

.background-market {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.background-bistro {
  background-image: url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1400&q=80");
}

.background-lakes {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
}

.background-skyline {
  background-image: url("https://images.unsplash.com/photo-1470770841072-f978cf4d019e?w=1400&q=80");
}

.background-chef {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
}

.background-table {
  background-image: url("https://images.unsplash.com/photo-1498654896293-37aacf113fd9?w=1400&q=80");
}

.background-spices {
  background-image: url("https://images.pexels.com/photos/12266289/pexels-photo-12266289.jpeg");
}

.background-harbor {
  background-image: url("https://images.unsplash.com/photo-1476224203421-9ac39bcb3327?w=1400&q=80");
}

.background-pasta {
  background-image: url("https://images.unsplash.com/photo-1466978913421-dad2ebd01d17?w=1400&q=80");
}

.background-coffee {
  background-image: url("https://images.unsplash.com/photo-1481931098730-318b6f776db0?w=1400&q=80");
}

@media (max-width: 860px) {
  .hero {
    flex-direction: column;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
