* {
  box-sizing: border-box;
}

:root {
  --ink: #1d1c1a;
  --muted: #5f5b55;
  --sand: #f4efe8;
  --clay: #e3d7c8;
  --sage: #8b9b8a;
  --accent: #c27b5a;
  --night: #2b2a27;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  padding: 24px 5vw 10px;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--ink);
}

.nav-links a.cta-link {
  background: var(--accent);
  color: #fff;
  padding: 8px 14px;
  border-radius: 24px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 40px 5vw 30px;
  align-items: stretch;
}

.hero-media {
  flex: 1 1 48%;
  min-width: 280px;
  position: relative;
}

.hero-media img {
  border-radius: 18px;
  height: 100%;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  bottom: -22px;
  left: 18px;
  background: var(--sand);
  padding: 18px;
  border-radius: 14px;
  width: 70%;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.hero-copy {
  flex: 1 1 42%;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-copy h1 {
  font-size: 2.6rem;
  margin: 0;
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 30px;
  border: 1px solid var(--accent);
  color: #fff;
  background: var(--accent);
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.section {
  padding: 70px 5vw;
  position: relative;
}

.section.alt {
  background: var(--sand);
}

.section.dark {
  background: var(--night);
  color: #f6f2ed;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 20px;
}

.offset-wrap {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.offset-wrap.reverse {
  flex-direction: row-reverse;
}

.offset-box {
  flex: 1 1 42%;
  min-width: 240px;
  padding: 24px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-18px);
}

.offset-box.stagger {
  transform: translateY(18px);
}

.offset-media {
  flex: 1 1 48%;
  min-width: 260px;
}

.quote-strip {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.quote {
  flex: 1 1 240px;
  background: #fff;
  padding: 18px;
  border-left: 4px solid var(--accent);
}

.process-line {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.process-step {
  flex: 1 1 210px;
  background: var(--clay);
  padding: 18px;
  border-radius: 12px;
}

.gallery-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.gallery-card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.gallery-card .card-body {
  padding: 16px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.service-item .price {
  font-weight: 700;
  color: var(--accent);
}

.form-shell {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}

.form-shell label {
  font-weight: 600;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cfc6bb;
  font-size: 1rem;
}

.form-shell button {
  align-self: flex-start;
  border: none;
}

.split-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.split-cta .cta-text {
  flex: 1 1 280px;
}

.split-cta .cta-box {
  flex: 1 1 220px;
  background: var(--accent);
  color: #fff;
  padding: 20px;
  border-radius: 16px;
}

.site-footer {
  padding: 40px 5vw;
  background: #f3eee7;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--night);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  border: none;
  border-radius: 20px;
  padding: 8px 14px;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #e8e0d6;
}

.page-hero {
  padding: 60px 5vw 40px;
  background: var(--sand);
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: 2.3rem;
}

.legal-text {
  max-width: 820px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 240px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.08);
}

@media (max-width: 720px) {
  .hero-copy h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    right: 12px;
    bottom: 80px;
  }
}
