* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1f24;
  --muted: #5a6470;
  --paper: #f6f4f1;
  --warm: #f2e6d8;
  --cool: #e5eef3;
  --accent: #2b6b6f;
  --accent-dark: #214d50;
  --sun: #f2c38b;
  --border: #d9d4cc;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-bottom: 80px;
}

header {
  padding: 28px 6vw 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.top-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand span {
  color: var(--muted);
  font-size: 0.9rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px dashed var(--border);
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.nav-links a {
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: var(--accent);
}

.cta-button,
.ghost-button,
.service-pill,
.sticky-cta button {
  cursor: pointer;
  border: none;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.cta-button {
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
}

.cta-button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.ghost-button {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 10px 16px;
  border-radius: 999px;
}

.ghost-button:hover {
  background: var(--accent);
  color: #fff;
}

.section {
  padding: 0 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section h2 {
  font-size: 2rem;
}

.muted {
  color: var(--muted);
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--cool);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  padding: 30px 6vw 0;
}

.hero-text {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px 0;
}

.hero-text h1 {
  font-size: 2.6rem;
  line-height: 1.15;
}

.hero-card {
  flex: 1 1 320px;
  border-radius: 32px;
  overflow: hidden;
  background: var(--paper);
  position: relative;
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.hero-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 14px;
  border-radius: 16px;
  font-weight: 600;
}

.offset-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.offset-card {
  flex: 1 1 240px;
  background: var(--warm);
  border-radius: 18px;
  padding: 20px;
  min-height: 180px;
}

.offset-card.dark {
  background: var(--ink);
  color: #fff;
}

.offset-card.light {
  background: #fff;
  border: 1px solid var(--border);
}

.floating-block {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-24px);
}

.pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 220px;
  border-radius: 20px;
  background: var(--paper);
  padding: 20px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-pill {
  background: #fff;
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 999px;
}

.service-pill.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.form-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-card label {
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: inherit;
}

.form-card textarea {
  min-height: 120px;
  resize: vertical;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.note-card {
  flex: 1 1 220px;
  padding: 18px;
  border-radius: 18px;
  background: var(--cool);
}

.image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.image-frame {
  flex: 1 1 220px;
  border-radius: 16px;
  overflow: hidden;
  background: #d9dde2;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

footer {
  background: var(--ink);
  color: #f5f5f5;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

footer a {
  color: #f5f5f5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.sticky-cta button {
  background: var(--sun);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 999px;
}

.sticky-cta button:hover {
  transform: translateY(-2px);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  max-width: 360px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 20;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1 1 120px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--paper);
}

.cookie-actions button.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.page-hero {
  padding: 30px 6vw;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-hero h1 {
  font-size: 2.2rem;
}

.legal {
  padding: 0 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal ul {
  padding-left: 20px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0 6vw 60px;
}

.contact-card {
  flex: 1 1 260px;
  background: var(--paper);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--border);
}

.mini-gallery {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.mini-gallery .media {
  flex: 1 1 260px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--cool);
}

@media (max-width: 768px) {
  .hero {
    padding-top: 10px;
  }

  .hero-text h1 {
    font-size: 2.1rem;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
