* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background-color: #f6f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: #1a4f8b;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

header {
  padding: 24px 6vw 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  font-size: 0.9rem;
  color: #5b4c3f;
  background-color: #efe7dc;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  padding: 20px 6vw 50px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 300px;
  min-width: 280px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: #6a5b4c;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
}

.hero-title {
  font-size: 2.6rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background-color: #1a4f8b;
  color: #ffffff;
}

.btn.secondary {
  background-color: #ead8c6;
  color: #3a2c20;
}

.btn:hover,
.btn:focus {
  filter: brightness(0.95);
}

.section {
  padding: 50px 6vw;
}

.section.alt {
  background-color: #efe7dc;
}

.section.dark {
  background-color: #1f1f1f;
  color: #ffffff;
}

.section-header {
  max-width: 720px;
  margin-bottom: 28px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card.dark {
  background-color: #2d2d2d;
  color: #f7f4f0;
}

.card .price {
  font-weight: 700;
  color: #1a4f8b;
}

.image-frame {
  background-color: #d9d0c5;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame.tight {
  border-radius: 10px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 0;
}

.tag {
  background-color: #f4efe8;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.form-panel {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #c9bdb1;
  border-radius: 10px;
  font-size: 1rem;
}

.form-panel button {
  width: 100%;
}

.footnote {
  font-size: 0.9rem;
  color: #5f544c;
}

footer {
  padding: 40px 6vw;
  background-color: #161616;
  color: #f7f4f0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: #f7f4f0;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background-color: #1a4f8b;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.sticky-cta a {
  color: #ffffff;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2e2b27;
  color: #ffffff;
  padding: 16px 6vw;
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border-radius: 999px;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background-color: #f0c48a;
  color: #2d2217;
}

.cookie-reject {
  background-color: #ffffff;
  color: #2d2217;
}

.page-hero {
  padding: 30px 6vw;
}

.page-hero .split {
  align-items: flex-start;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-list span {
  font-weight: 600;
}

.simple-layout {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.inline-cta {
  font-weight: 600;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 16px;
  border-radius: 16px;
  background-color: #ffffff;
  align-items: center;
}

.service-row .price {
  margin-left: auto;
  font-weight: 700;
  color: #1a4f8b;
}

.service-row img {
  width: 140px;
  height: 100px;
  border-radius: 12px;
}

.note-box {
  background-color: #fff4e5;
  padding: 18px;
  border-radius: 14px;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}
