*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ink: #1d1b19;
  --muted: #5b5752;
  --accent: #b86a3b;
  --accent-dark: #8f4b27;
  --sand: #f2ece6;
  --stone: #e4ddd6;
  --charcoal: #2a2623;
  --mist: #f7f4f1;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.nav {
  background: #fff;
  border-bottom: 1px solid var(--stone);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.nav-title {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--accent-dark);
  font-weight: 600;
}

.hero {
  background: var(--sand);
  padding: 56px 0;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > * {
  flex: 1 1 320px;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: #fff;
}

.section.muted {
  background: var(--stone);
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 600;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 16px;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}

.button:active {
  transform: translateY(1px);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 24px rgba(20, 17, 15, 0.08);
  flex: 1 1 240px;
}

.card strong {
  display: block;
  margin-bottom: 6px;
}

.price {
  font-weight: 700;
  color: var(--ink);
}

.image-box {
  background: var(--stone);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.image-box.tall {
  min-height: 320px;
}

.image-box.short {
  min-height: 220px;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 27, 25, 0) 0%, rgba(29, 27, 25, 0.55) 100%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #fff;
  font-weight: 600;
}

.note {
  background: var(--charcoal);
  color: #fff;
  padding: 18px;
  border-radius: 16px;
}

.form-panel {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 16px 30px rgba(20, 17, 15, 0.12);
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7cdc3;
  font-size: 1rem;
  background: #fff;
}

.field {
  margin-bottom: 16px;
}

.field-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.field-row .field {
  flex: 1 1 220px;
}

.inline-link {
  color: var(--accent-dark);
  text-decoration: underline;
  font-weight: 600;
}

.footer {
  background: #181614;
  color: #fff;
  padding: 36px 0;
}

.footer a {
  color: #fff;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 200px;
}

.small {
  font-size: 0.9rem;
  color: #d6d0c9;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(20, 17, 15, 0.2);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sand);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.cta-group {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.service-media {
  flex: 0 0 160px;
}

.service-info {
  flex: 1 1 220px;
}

.two-col {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.two-col > * {
  flex: 1 1 260px;
}

.page-header {
  padding: 46px 0 24px;
}

.form-message {
  font-weight: 600;
  color: var(--accent-dark);
}

.table {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0d8cf;
  flex-wrap: wrap;
}

.table-row span {
  font-weight: 600;
}

@media (max-width: 760px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    max-width: none;
  }
}
