* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2430;
  --muted: #596275;
  --accent: #2f5fb3;
  --accent-2: #1f7a6b;
  --bg: #f7f4ef;
  --soft: #efe9df;
  --dark: #11131a;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 8%;
  background: #ffffff;
  border-bottom: 1px solid #e6e0d6;
  gap: 24px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.85rem;
  color: #6a4f2f;
  background: #f5efe6;
  padding: 6px 10px;
  border-radius: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.cta-link {
  color: var(--accent);
  font-weight: 600;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 60px 8%;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero-image {
  background-color: #d9d2c6;
  border-radius: 28px;
  overflow: hidden;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin: 0 0 16px;
}

.hero p {
  color: var(--muted);
  font-size: 1.1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 24px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  margin-right: 12px;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e1d8cc;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
}

.card-image {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #d8d1c7;
  flex-shrink: 0;
}

.muted {
  color: var(--muted);
}

.pricing {
  font-weight: 700;
  color: var(--accent-2);
}

.inline-cta {
  color: var(--accent-2);
  font-weight: 600;
}

.banner {
  background: var(--dark);
  color: #ffffff;
  padding: 18px 8%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.banner a {
  color: #ffffff;
  text-decoration: underline;
}

.form-panel {
  background: #ffffff;
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2dbd1;
}

.form-panel label {
  display: block;
  font-weight: 600;
  margin-top: 12px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  margin-top: 6px;
  border-radius: 12px;
  border: 1px solid #d4ccbf;
  font-size: 1rem;
}

.form-panel button {
  margin-top: 16px;
  width: 100%;
  padding: 12px;
  border-radius: 20px;
  border: none;
  background: var(--accent-2);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

.footer {
  padding: 40px 8%;
  background: #f4f0e9;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid #ddd3c8;
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 20;
}

.sticky-cta a {
  color: var(--accent);
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid #e0d7cb;
  border-radius: 20px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid #c8bfb1;
  background: #f5f1ea;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions button.primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.highlight {
  background: var(--soft);
}

.bg-studio {
  background-color: #d2c8bb;
  background-image: url("https://images.unsplash.com/photo-1464375117522-1311d6a5b81f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-studio .muted {
  color: #f3efe9;
}

.quote {
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 12px;
  color: var(--muted);
}

.legal {
  max-width: 880px;
  padding: 50px 8%;
}

.legal h1 {
  margin-top: 0;
}

.table-like {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.table-like div {
  padding: 12px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e2d9ce;
}

.address-block {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #e2d9ce;
}

.wide-image {
  border-radius: 24px;
  overflow: hidden;
  background-color: #d8d1c7;
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

@media (max-width: 800px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
  }
}
