* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background-color: #f7f3ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select,
input,
textarea {
  font: inherit;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 6vw 18px;
  border-bottom: 1px solid #e1d8cf;
  background-color: #fbf8f4;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-toggle {
  border: 1px solid #1f1f1f;
  background: transparent;
  padding: 8px 12px;
  cursor: pointer;
}

.nav-disclosure {
  font-size: 0.85rem;
  background: #1f1f1f;
  color: #f7f3ef;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links.is-hidden {
  display: none;
}

.nav-open .nav-links {
  display: flex;
}

.main {
  flex: 1;
}

.section {
  padding: 56px 6vw;
}

.section.alt {
  background-color: #efe7dc;
}

.section.dark {
  background-color: #1f1f1f;
  color: #f7f3ef;
}

.section.with-bg {
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.section.with-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 16, 14, 0.55);
}

.section.with-bg > * {
  position: relative;
  z-index: 1;
}

.bg-market {
  background-image: url("https://images.unsplash.com/photo-1476224203421-9ac39bcb3327?w=1400&q=80");
}

.bg-studio {
  background-image: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1400&q=80");
}

.section-heading {
  font-size: 2.2rem;
  margin-bottom: 18px;
  max-width: 680px;
}

.lead {
  font-size: 1.1rem;
  max-width: 720px;
}

.columns {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.col {
  flex: 1 1 280px;
  min-width: 260px;
}

.hero {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-visual {
  flex: 1 1 320px;
  background-color: #d9c7b5;
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  cursor: pointer;
  padding: 12px 20px;
  border-radius: 999px;
  background-color: #1f1f1f;
  color: #f7f3ef;
}

.btn.light {
  background-color: transparent;
  color: inherit;
  border: 1px solid currentColor;
}

.inline-link {
  text-decoration: underline;
}

.magazine-block {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: stretch;
}

.magazine-card {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.magazine-card .card-image {
  background-color: #cbb8a2;
}

.magazine-card .card-image img {
  width: 100%;
  height: 200px;
}

.magazine-card .card-body {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote-panel {
  background-color: #fff5eb;
  border-left: 4px solid #1f1f1f;
  padding: 22px;
  margin-top: 18px;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-item {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  border-bottom: 1px solid #d7cbbd;
  padding-bottom: 16px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
}

.form-panel {
  background-color: #fff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  border: 1px solid #cdbfb0;
  border-radius: 8px;
  padding: 10px 12px;
}

.form-panel button {
  align-self: flex-start;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #1f1f1f;
  color: #f7f3ef;
  padding: 14px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta button {
  background-color: #f7f3ef;
  color: #1f1f1f;
}

.footer {
  padding: 36px 6vw;
  background-color: #111;
  color: #f7f3ef;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.footer small {
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #fff;
  color: #1f1f1f;
  border-radius: 14px;
  padding: 18px;
  max-width: 320px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #1f1f1f;
  background: transparent;
  cursor: pointer;
}

.cookie-actions .accept {
  background: #1f1f1f;
  color: #f7f3ef;
}

.hidden {
  display: none;
}

.page-header {
  padding: 38px 6vw 26px;
  background-color: #efe7dc;
}

.two-up {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.callout {
  background-color: #fff;
  border-radius: 16px;
  padding: 22px;
}

.image-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.image-strip figure {
  flex: 1 1 220px;
  background-color: #d0c0b2;
  border-radius: 14px;
  overflow: hidden;
}

.image-strip img {
  width: 100%;
  height: 180px;
}

.references a {
  text-decoration: underline;
}

@media (max-width: 800px) {
  .section-heading {
    font-size: 1.8rem;
  }

  .sticky-cta {
    position: static;
  }
}
