* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #172026;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: #f6f4f1;
  border-bottom: 1px solid #d8d2c8;
  padding: 18px 0 10px;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-mark {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.brand-sub {
  font-size: 13px;
  color: #5b636a;
}

.ad-label {
  font-size: 12px;
  color: #2e3a43;
  background: #e8e1d7;
  padding: 6px 10px;
  border-radius: 999px;
}

.site-nav {
  display: flex;
  gap: 18px;
  padding-top: 12px;
  flex-wrap: wrap;
  font-size: 14px;
}

.site-nav a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e2ddd4;
}

.site-nav a:hover,
.button:hover,
.link-inline:hover,
.sticky-cta:hover {
  background: #0f4c5c;
  color: #ffffff;
}

.hero {
  padding: 52px 0;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > * {
  flex: 1 1 320px;
}

.panel {
  background: #ffffff;
  border: 1px solid #e2ddd4;
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.panel.tone {
  background: #efe9df;
}

.panel.dark {
  background: #1b2a2f;
  color: #f7f3ee;
}

.panel.dark .link-inline {
  color: #f7f3ee;
  border-bottom-color: #f7f3ee;
}

.image-frame {
  background-color: #d7d1c8;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame.frame-hero {
  min-height: 320px;
}

.image-frame.frame-medium {
  min-height: 320px;
}

.image-frame.frame-tall {
  min-height: 360px;
}

.cta-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #8a6b3b;
  margin-bottom: 10px;
}

h1,
h2,
h3 {
  margin: 0 0 12px;
}

h1 {
  font-size: 36px;
  line-height: 1.2;
}

h2 {
  font-size: 28px;
  line-height: 1.3;
}

h3 {
  font-size: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #0f4c5c;
  color: #ffffff;
  font-weight: 600;
  border: 1px solid #0f4c5c;
}

.link-inline {
  border-bottom: 1px solid #0f4c5c;
  padding-bottom: 2px;
}

.tag-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #ded7cd;
  font-size: 12px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid #ddd6cb;
  border-radius: 16px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.info-card {
  flex: 1 1 220px;
  background: #ffffff;
  border: 1px solid #ddd6cb;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.info-card img {
  width: 100%;
  height: 180px;
}

.info-card-content {
  padding: 16px;
}

.service-card strong {
  display: block;
  margin-bottom: 6px;
}

.price {
  font-weight: 600;
  color: #0f4c5c;
}

.quote {
  font-style: italic;
  color: #4e5962;
  margin: 0;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card label {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc8be;
  font-size: 14px;
  font-family: inherit;
}

.form-note {
  font-size: 12px;
  color: #6a737b;
}

.status {
  font-size: 13px;
  color: #0f4c5c;
  min-height: 18px;
}

.section-pad {
  padding: 48px 0;
}

.section-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  background-color: #d7d1c8;
}

.section-bg img {
  width: 100%;
  height: 100%;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 96px;
  z-index: 10;
  padding: 10px 18px;
  border-radius: 999px;
  background: #0f4c5c;
  color: #ffffff;
  font-weight: 600;
  border: 1px solid #0f4c5c;
}

.footer {
  background: #f0ebe3;
  padding: 40px 0;
  margin-top: auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-columns > div {
  flex: 1 1 220px;
}

.footer small {
  color: #5e666d;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid #d8d2c8;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 20;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 8px 16px;
  border: 1px solid #0f4c5c;
  background: #0f4c5c;
  color: #ffffff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: #ffffff;
  color: #0f4c5c;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.notice {
  font-size: 13px;
  color: #4c555c;
}

.center-text {
  text-align: center;
}

.plain-list {
  padding-left: 18px;
  margin: 10px 0 0;
}

@media (max-width: 800px) {
  h1 {
    font-size: 30px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 140px;
  }
}
