* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --stone: #f4f1ec;
  --sand: #e7dccb;
  --ink: #1c1c1c;
  --sea: #2b4c5f;
  --sun: #d49d5a;
  --sage: #8b9a86;
  --white: #ffffff;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--stone);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow: hidden;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6%;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--sun);
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 64px 6%;
}

.split-section.alt {
  background: var(--white);
}

.split-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.split-visual .overlay-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 16px 20px;
  border-left: 4px solid var(--sun);
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 70%;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--sea);
}

.hero-title {
  font-size: 2.4rem;
  line-height: 1.2;
}

.lead {
  font-size: 1.05rem;
  color: #3c3c3c;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--sea);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border-color: var(--sea);
  color: var(--sea);
}

.btn-soft {
  background: var(--sun);
  color: var(--white);
}

.inline-link {
  color: var(--sea);
  font-weight: 600;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 16px;
  background: var(--white);
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.service-card img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: var(--sea);
}

.tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--sage);
  color: var(--white);
  font-size: 0.75rem;
  width: fit-content;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.quote-form label {
  font-size: 0.85rem;
  font-weight: 600;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d6d6d6;
  font-size: 1rem;
  font-family: inherit;
  background: #fafafa;
}

.quote-form button {
  align-self: flex-start;
}

.highlight-box {
  background: var(--sand);
  padding: 24px;
  border-radius: 16px;
}

.columns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  padding: 16px;
  background: rgba(255, 255, 255, 0.8);
  border-left: 3px solid var(--sun);
}

.footer {
  padding: 40px 6%;
  background: #1a2228;
  color: #e5e5e5;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #e5e5e5;
  opacity: 0.85;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--sun);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 360px;
  background: var(--white);
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sea);
  color: var(--white);
  font-size: 0.8rem;
}

.spaced-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-title {
  font-size: 1.8rem;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.section-note {
  font-size: 0.9rem;
  color: #454545;
}

.bg-stone {
  background: url("images/stone-texture.svg") center/cover no-repeat;
  color: var(--white);
}

.bg-stone .lead {
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 900px) {
  .split-inner {
    flex-direction: row;
    align-items: center;
  }

  .split-inner.reverse {
    flex-direction: row-reverse;
  }

  .columns {
    flex-direction: row;
  }

  .hero-title {
    font-size: 3.2rem;
  }
}
