* {
  box-sizing: border-box;
}

:root {
  --ink: #1c1b19;
  --muted: #5f5a55;
  --accent: #b34b2f;
  --accent-soft: #f3d8cf;
  --cream: #faf6f1;
  --sand: #f1ebe2;
  --olive: #3b4a3f;
  --shadow: 0 18px 40px rgba(28, 27, 25, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw 0;
  position: relative;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 40px 6vw 20px;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.hero-copy {
  max-width: 560px;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin: 12px 0;
}

.hero p {
  margin: 0 0 18px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--ink);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-outline {
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-start;
}

.hero-visual img {
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  bottom: -18px;
  right: 12%;
  background: #fff;
  padding: 16px 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
}

.section {
  padding: 64px 6vw;
}

.section.alt {
  background: var(--sand);
}

.section.accent {
  background: var(--accent-soft);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 18px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.story-block {
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.highlight-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.highlight-card {
  display: flex;
  gap: 16px;
  background: #fff;
  padding: 18px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.highlight-card img {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  object-fit: cover;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: #fff;
  padding: 22px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--olive);
}

.panel {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9d2c8;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gallery img {
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.quote {
  font-style: italic;
  font-size: 1.05rem;
}

.footer {
  padding: 40px 6vw 60px;
  background: #1f1c18;
  color: #f6f1ea;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--olive);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  gap: 12px;
  flex-direction: column;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tagline {
  font-weight: 600;
  color: var(--olive);
}

.contact-card {
  background: #fff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal {
  max-width: 760px;
}

.hero-offset {
  margin-left: 6vw;
}

@media (min-width: 900px) {
  .hero-layout {
    flex-direction: row;
    align-items: center;
  }

  .hero-visual {
    justify-content: flex-end;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .highlight-grid {
    flex-direction: row;
  }

  .highlight-card {
    flex: 1;
  }

  .gallery-row {
    flex-direction: row;
  }

  .gallery-row img {
    flex: 1;
    height: 260px;
    object-fit: cover;
  }

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
  }
}
