* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1a1a1a;
  background: #f7f5f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.masthead {
  background: #efe9e1;
  border-bottom: 1px solid #d8d0c7;
}

.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 6vw;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  background: #1a1a1a;
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2c3a33;
  color: #fff;
  position: relative;
}

.hero-overlay {
  background: rgba(15, 20, 18, 0.55);
  padding: 80px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  margin: 0;
}

.hero p {
  max-width: 640px;
  font-size: 1.1rem;
}

.primary-cta {
  align-self: flex-start;
  background: #e1b655;
  color: #1a1a1a;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #1a1a1a;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  z-index: 10;
}

.section {
  padding: 56px 6vw;
}

.section.alt {
  background: #fff;
}

.magazine-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.magazine-col {
  flex: 1 1 280px;
}

.inline-cta {
  color: #3b5b6b;
  border-bottom: 1px solid #3b5b6b;
}

.media-card {
  background: #f1ece5;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.media-frame {
  background: #d8d0c7;
  border-radius: 12px;
  overflow: hidden;
}

.media-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
  margin: 0;
}

.service-price {
  font-weight: 700;
  color: #3b5b6b;
}

.section-contrast {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2c3430;
  color: #fff;
}

.contrast-inner {
  background: rgba(12, 15, 14, 0.6);
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-card {
  background: #ffffff;
  color: #1a1a1a;
  padding: 16px;
  border-radius: 12px;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 320px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea,
button {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #cfc7bd;
}

button {
  background: #1a1a1a;
  color: #fff;
  cursor: pointer;
}

.footer {
  background: #efe9e1;
  padding: 30px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.legal-note {
  max-width: 480px;
  font-size: 0.9rem;
}

.about-hero {
  background-image: url("https://images.unsplash.com/photo-1439853949127-fa647821eba0?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2f3a31;
  color: #fff;
}

.services-hero {
  background-image: url("https://images.unsplash.com/photo-1441716844725-09cedc13a4e7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2c3b34;
  color: #fff;
}

.contact-hero {
  background-image: url("https://images.unsplash.com/photo-1470770841072-f978cf4d019e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #2b3430;
  color: #fff;
}

.about-hero .hero-overlay,
.services-hero .hero-overlay,
.contact-hero .hero-overlay {
  padding: 60px 6vw;
}

.small-image {
  width: 100%;
  height: 240px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #fff;
  padding: 14px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  background: #e1b655;
  color: #1a1a1a;
  border: none;
}

.cookie-actions .reject {
  background: #ffffff;
}

.content-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.two-column > div {
  flex: 1 1 280px;
}

.page-section {
  padding: 36px 6vw;
}
