*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1c1c1c;
  background-color: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6%;
  background-color: #ffffff;
  border-bottom: 1px solid #e3e0da;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: #1c1c1c;
}

.nav-disclosure {
  font-size: 0.8rem;
  color: #4f4f4f;
  max-width: 220px;
  text-align: right;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 40px 6% 20px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
  background-color: #ffffff;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #e3e0da;
}

.hero-text h1 {
  margin: 0 0 16px;
  font-size: 2.4rem;
  line-height: 1.2;
}

.hero-text p {
  margin: 0 0 20px;
  color: #3f3f3f;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  border: none;
  padding: 12px 20px;
  background-color: #1c1c1c;
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background-color: #d9d3cb;
  color: #1c1c1c;
}

.hero-visual {
  flex: 1 1 320px;
  background-color: #d9d3cb;
  border: 1px solid #e3e0da;
  overflow: hidden;
}

.hero-visual img {
  height: 100%;
  min-height: 320px;
}

.magazine-section {
  padding: 30px 6%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.magazine-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.column {
  flex: 1 1 240px;
  background-color: #ffffff;
  border: 1px solid #e3e0da;
  padding: 20px;
}

.column.highlight {
  background-color: #1c1c1c;
  color: #ffffff;
}

.column h2,
.column h3 {
  margin-top: 0;
}

.image-frame {
  background-color: #c6c2bb;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.split-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split-text {
  flex: 1 1 300px;
}

.split-image {
  flex: 1 1 300px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  border: 1px solid #e3e0da;
  background-color: #ffffff;
}

.service-card .content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.cta-inline {
  color: #4f4f4f;
  border-bottom: 1px solid #4f4f4f;
}

.note-strip {
  padding: 24px 6%;
  background-color: #1c1c1c;
  background-image: url("https://images.unsplash.com/photo-1444703686981-a3abbc4d4fe3?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.note-strip .panel {
  background-color: rgba(28, 28, 28, 0.78);
  padding: 24px;
  max-width: 560px;
}

.form-section {
  padding: 30px 6%;
  background-color: #ffffff;
  border-top: 1px solid #e3e0da;
  border-bottom: 1px solid #e3e0da;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.form-copy {
  flex: 1 1 280px;
}

.form-area {
  flex: 1 1 320px;
  background-color: #f6f4f1;
  padding: 20px;
  border: 1px solid #e3e0da;
}

.form-area form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-area label {
  font-size: 0.9rem;
}

.form-area input,
.form-area select,
.form-area textarea {
  padding: 10px;
  border: 1px solid #c6c2bb;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-area button {
  align-self: flex-start;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.testimonial {
  flex: 1 1 260px;
  background-color: #ffffff;
  border: 1px solid #e3e0da;
  padding: 18px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #1c1c1c;
  color: #ffffff;
  padding: 12px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 100;
}

.sticky-cta button {
  background-color: #ffffff;
  color: #1c1c1c;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 600;
}

.footer {
  margin-top: auto;
  padding: 26px 6% 40px;
  background-color: #1c1c1c;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer small {
  color: #d9d3cb;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #ffffff;
  border: 1px solid #e3e0da;
  padding: 16px;
  max-width: 320px;
  display: none;
  z-index: 110;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  padding: 8px 12px;
  cursor: pointer;
}

.cookie-accept {
  background-color: #1c1c1c;
  color: #ffffff;
}

.cookie-reject {
  background-color: #d9d3cb;
  color: #1c1c1c;
}

.legal {
  padding: 30px 6%;
  background-color: #ffffff;
}

.legal h1 {
  margin-top: 0;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  background-color: #ffffff;
  border: 1px solid #e3e0da;
  padding: 18px;
}

@media (max-width: 860px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav-disclosure {
    text-align: left;
    max-width: none;
  }

  .sticky-cta {
    position: static;
    margin: 20px 6%;
  }
}
