@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

:root {
  --ink: #1d2327;
  --muted: #5b636a;
  --accent: #2b6f77;
  --accent-soft: #d9ecef;
  --sand: #f4f1ed;
  --clay: #e8dcd2;
  --line: #d4d9dd;
  --paper: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 24px 6vw 12px;
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-label {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 48px 6vw 32px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-media {
  flex: 1 1 360px;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.hero-card {
  background: var(--sand);
  padding: 24px;
  border-radius: 24px;
  max-width: 420px;
  margin-top: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.hero-card .img-frame {
  background: #c9d4d8;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 16px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn-secondary {
  background: var(--paper);
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-ghost {
  background: transparent;
  border: 1px dashed var(--accent);
  color: var(--accent);
}

.btn:hover,
.btn:focus,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-ghost:hover,
.btn-ghost:focus {
  transform: translateY(-1px);
}

.section {
  padding: 32px 6vw;
}

.section-asym {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.section-asym.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
}

.panel-offset {
  background: var(--clay);
  padding: 28px;
  border-radius: 20px;
  margin-top: -18px;
}

.panel-note {
  background: var(--accent-soft);
  padding: 20px;
  border-radius: 18px;
}

.img-frame {
  background: #cbd5d9;
  border-radius: 20px;
  overflow: hidden;
}

.img-frame.large {
  border-radius: 28px;
}

.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.story-card {
  flex: 1 1 220px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card .price {
  font-weight: 700;
  color: var(--accent);
}

.service-card .img-frame {
  background: #cfd8d9;
}

.background-block {
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  justify-content: flex-end;
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--sand);
  padding: 28px;
  border-radius: 24px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1 1 320px;
}

.lead-form label {
  font-weight: 600;
  font-size: 0.95rem;
}

.lead-form select,
.lead-form input,
.lead-form textarea {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
}

.form-side {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  margin: 0 6vw 24px;
  background: var(--accent);
  color: #fff;
  border-radius: 18px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  z-index: 1;
}

.sticky-cta button {
  background: #fff;
  color: var(--accent);
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 16px;
  padding: 16px;
  display: none;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
}

.cookie-banner .btn {
  background: #fff;
  color: var(--ink);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

footer {
  margin-top: auto;
  padding: 24px 6vw 40px;
  border-top: 1px solid var(--line);
  background: var(--sand);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
}

.meta-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bg-spray {
  background-image: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1400&q=80");
}

.bg-studio {
  background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1400&q=80");
}

.bg-about {
  background-image: url("https://images.unsplash.com/photo-1493666438817-866a91353ca9?w=1400&q=80");
}

.bg-services {
  background-image: url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b?w=1400&q=80");
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 8px 12px;
  background: var(--paper);
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.85rem;
}

.page-title {
  padding: 36px 6vw 10px;
}

.simple-section {
  padding: 24px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: var(--paper);
}

.list-plain {
  padding-left: 18px;
}

.muted {
  color: var(--muted);
}

.section-divider {
  border-top: 1px solid var(--line);
  margin: 20px 0;
}

@media (max-width: 760px) {
  .hero {
    padding-top: 32px;
  }

  .hero-card {
    margin-top: 0;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
