* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #111418;
  --muted: #4b5563;
  --accent: #1f5d6b;
  --accent-dark: #16434d;
  --soft: #f3f4f6;
  --cream: #f8f5f1;
  --sand: #efe9e1;
  --line: #e5e7eb;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

header {
  padding: 24px 6vw 16px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
}

.cta-button {
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta-button:hover,
.cta-button:focus {
  background: var(--accent-dark);
  text-decoration: none;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 80px 6vw;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
}

.hero-content {
  position: relative;
  max-width: 680px;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.4rem, 3.8vw, 3.4rem);
  margin: 0 0 12px;
}

.hero p {
  font-size: 1.1rem;
  margin: 0 0 20px;
  color: #f8fafc;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.ghost-link {
  color: #f8fafc;
  border-bottom: 1px solid rgba(248, 250, 252, 0.7);
}

.section {
  padding: 64px 6vw;
}

.section.alt {
  background: var(--soft);
}

.section.sand {
  background: var(--sand);
}

.section.cream {
  background: var(--cream);
}

.section.market-backdrop {
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f8fafc;
  position: relative;
}

.section.market-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
}

.section.market-backdrop .content-layer {
  position: relative;
  z-index: 1;
}

.magazine-row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.col-wide {
  flex: 1 1 360px;
}

.col-narrow {
  flex: 1 1 260px;
}

.story-card {
  border-top: 3px solid var(--accent);
  padding-top: 12px;
}

.story-card h2,
.story-card h3 {
  margin-top: 0;
}

.inline-image {
  background: #dfe7eb;
  border-radius: 14px;
  overflow: hidden;
}

.stats-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.stat strong {
  display: block;
  font-size: 1.1rem;
}

.pricing-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.pricing-card {
  flex: 1 1 220px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.surface-image {
  background: #e6e9ef;
  border-radius: 18px;
  overflow: hidden;
}

.form-panel {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

input:disabled,
select:disabled {
  background: #f3f4f6;
  color: #9ca3af;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-status {
  font-size: 0.95rem;
  color: var(--accent-dark);
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  width: 100%;
  padding: 14px 6vw;
  background: #fff;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  z-index: 10;
}

.footer {
  padding: 48px 6vw 32px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}

.legal {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.secondary-button {
  background: #fff;
  color: var(--accent);
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  cursor: pointer;
}

.secondary-button:hover,
.secondary-button:focus {
  background: #eef6f7;
}

.page-hero {
  padding: 64px 6vw 32px;
  background: var(--soft);
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 260px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 180px;
}

.service-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 220px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.wide-image {
  background: #e0e7ec;
  border-radius: 18px;
  overflow: hidden;
}

@media (max-width: 860px) {
  .hero {
    padding: 64px 6vw;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
