/* Base */
:root {
  --ink: #1b1b1b;
  --muted: #5a5a5a;
  --accent: #2f6b6c;
  --accent-2: #b78b3f;
  --paper: #f6f3ee;
  --fog: #eef1f1;
  --stone: #e2e0da;
  --deep: #223238;
}

* {
  box-sizing: border-box;
}

html {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
}

body {
  margin: 0;
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.nav {
  padding: 24px 0;
  border-bottom: 1px solid #e3e3e3;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.04em;
}

.ad-label {
  background: var(--paper);
  color: var(--muted);
  padding: 6px 12px;
  font-size: 0.85rem;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--fog);
}

.hero {
  position: relative;
  background: var(--deep);
  color: #ffffff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0 100px;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-end;
}

.hero-text {
  flex: 1.1;
}

.hero-image {
  flex: 0.9;
  background: #24363b;
  padding: 18px;
  border-radius: 12px;
}

.hero-image img {
  width: 100%;
  height: 360px;
  border-radius: 10px;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--accent-2);
  color: #1e1e1e;
  border-radius: 999px;
  font-weight: 600;
}

.inline-link {
  color: var(--accent-2);
  font-weight: 600;
}

.asym-section {
  padding: 70px 0;
}

.asym-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}

.asym-left {
  flex: 1.1;
  min-width: 260px;
}

.asym-right {
  flex: 0.9;
  min-width: 240px;
}

.offset-card {
  background: var(--paper);
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-24px);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step-number {
  font-weight: 700;
  color: var(--accent);
}

.image-frame {
  background: var(--stone);
  border-radius: 12px;
  padding: 12px;
}

.image-frame img {
  width: 100%;
  height: 260px;
  border-radius: 10px;
}

.services {
  background: var(--fog);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
}

.service-card img {
  width: 100%;
  height: 180px;
}

.service-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.cta-strip {
  padding: 26px;
  background: var(--deep);
  color: #ffffff;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.sticky-panel {
  background: var(--paper);
  padding: 20px;
  border-radius: 16px;
  position: sticky;
  top: 18px;
}

.form-section {
  background: var(--paper);
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.form-panel {
  flex: 1.1;
  min-width: 260px;
}

.form-card {
  flex: 0.9;
  min-width: 260px;
  background: #ffffff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfcfcf;
  font-size: 1rem;
}

button {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.quote {
  background: #ffffff;
  padding: 26px;
  border-left: 4px solid var(--accent-2);
  margin: 0;
}

.background-band {
  position: relative;
  background: var(--deep);
  color: #ffffff;
  overflow: hidden;
}

.background-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.band-content {
  position: relative;
  z-index: 1;
  padding: 70px 0;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer {
  background: #141c20;
  color: #ffffff;
  padding: 40px 0;
  margin-top: auto;
}

.footer small {
  color: #d9d9d9;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  padding: 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 999;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.ghost-btn {
  background: #e8e8e8;
  color: #222222;
}

.page-header {
  background: var(--fog);
  padding: 60px 0;
}

.simple-section {
  padding: 60px 0;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  flex: 1 1 260px;
}

.inline-image {
  background: var(--stone);
  border-radius: 14px;
  padding: 14px;
}

.inline-image img {
  height: 260px;
}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
  }
  .offset-card {
    transform: none;
  }
  .sticky-panel {
    position: static;
  }
}
[hidden] {
  display: none !important;
}