:root {
  --bg: #f5f2ee;
  --ink: #1c1c1c;
  --muted: #5a5a5a;
  --accent: #1c5f5b;
  --accent-light: #d7ece8;
  --sand: #f0e5d8;
  --ink-soft: #2f2f2f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 24px 7%;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.ad-disclosure {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 360px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-bottom: 1px solid var(--accent);
}

.hero {
  padding: 80px 7% 64px;
  background: var(--accent-light);
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.hero-row {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-image-wrap {
  flex: 1 1 320px;
  background: #cbd7d5;
  padding: 16px;
  transform: translateY(24px);
}

.hero-image {
  width: 100%;
  height: 320px;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

.primary-btn {
  background: var(--accent);
  color: #fff;
}

.secondary-btn {
  background: #fff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 24px;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  z-index: 10;
  text-decoration: none;
}

.section {
  padding: 64px 7%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-light {
  background: #fff;
}

.section-sand {
  background: var(--sand);
}

.section-bg-edinburgh {
  background-color: #dfe6e4;
  background-image: url("https://images.unsplash.com/photo-1441716844725-09cedc13a4e7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #111;
}

.offset-blocks {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.offset-card {
  flex: 1 1 260px;
  background: #fff;
  padding: 24px;
  position: relative;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.offset-card.shift-down {
  margin-top: 32px;
}

.offset-card.shift-up {
  margin-top: -16px;
}

.image-panel {
  background: #d1ddd6;
  padding: 12px;
}

.image-panel img {
  width: 100%;
  height: 240px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-item {
  background: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 4px solid var(--accent);
}

.service-price {
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  background: #fff;
  padding: 28px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  max-width: 560px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  font-size: 0.95rem;
  border: 1px solid #c9c9c9;
  border-radius: 4px;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.dual-columns {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.dual-columns > div {
  flex: 1 1 280px;
}

.cta-band {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px;
  background: var(--accent-light);
}

.footer {
  margin-top: auto;
  padding: 32px 7%;
  background: #1d1d1d;
  color: #f1f1f1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #fff;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #222;
  color: #f1f1f1;
  padding: 16px 7%;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.hidden {
  display: none;
}

.page-title {
  font-size: 2.4rem;
  margin: 0;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--muted);
}

.inline-link {
  font-weight: 600;
}

.image-stack {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-stack .image-panel {
  flex: 1 1 200px;
}

.table-like {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 12px;
}

.table-row span {
  font-weight: 600;
}

.centered-block {
  max-width: 720px;
  margin: 0 auto;
}

.pill {
  display: inline-flex;
  align-items: center;
  background: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  border: 1px solid #d1d1d1;
}

@media (max-width: 900px) {
  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }

  .hero-row {
    flex-direction: column;
  }
}
