@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300;400;600;700&family=Playfair+Display:wght@500;600&display=swap");

:root {
  --ink: #1b1f2a;
  --muted: #586174;
  --accent: #2f5d8c;
  --accent-2: #7b4a3b;
  --paper: #f6f2ec;
  --stone: #e7e1d6;
  --sage: #dde4e0;
  --sky: #dfe9f5;
  --outline: #c9c4ba;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  background: #ffffff;
  border-bottom: 1px solid var(--outline);
}

.brand {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
}

.layout {
  display: flex;
  min-height: calc(100vh - 68px);
}

.sidebar {
  width: 260px;
  padding: 28px 22px;
  background: var(--stone);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar .cta-link {
  padding: 10px 14px;
  border-radius: 20px;
  background: var(--accent);
  color: #fff;
  text-align: center;
  display: inline-flex;
  justify-content: center;
}

.content {
  flex: 1;
  padding: 32px 40px 120px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 90px 70px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 26, 35, 0.45);
}

.hero-inner {
  position: relative;
  max-width: 620px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero h1 {
  margin: 0;
  font-size: 2.6rem;
  font-family: "Playfair Display", serif;
}

.hero p {
  margin: 0;
  color: #f2f5f8;
}

.hero .hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 26px;
  font-weight: 600;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.alt {
  background: #fff;
  color: var(--accent);
}

.split {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split > * {
  flex: 1;
  min-width: 240px;
}

.panel {
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--outline);
}

.panel.sage {
  background: var(--sage);
}

.panel.sky {
  background: var(--sky);
}

.bg-audience {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #3b4a5e;
  color: #fff;
}

.bg-audience .section-title,
.bg-audience p {
  color: #f5f7fa;
}

.bg-studio {
  background-image: url("https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #37414d;
  color: #f8f9fb;
}

.bg-campus {
  background-image: url("https://images.unsplash.com/photo-1507206130118-b5907f817163?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #3a4856;
  color: #f8f9fb;
}

.img-frame {
  background: var(--outline);
  border-radius: 20px;
  overflow: hidden;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--outline);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  width: 100%;
  height: 140px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--outline);
  flex-wrap: wrap;
}

.service-item img {
  width: 160px;
  height: 120px;
  border-radius: 12px;
}

.service-details {
  flex: 1;
  min-width: 220px;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.form-wrap {
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  border: 1px solid var(--outline);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--outline);
  font-family: inherit;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--muted);
  padding-top: 16px;
  border-top: 1px solid var(--outline);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid var(--outline);
  border-radius: 999px;
  padding: 8px 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 340px;
  background: #fff;
  border: 1px solid var(--outline);
  border-radius: 18px;
  padding: 14px 16px;
  display: none;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.notice {
  padding: 16px;
  border-radius: 18px;
  background: var(--sky);
  border: 1px solid var(--outline);
}

.tagline {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin: 0;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}

.two-col {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1;
  min-width: 240px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-top: 0;
}

.contact-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--outline);
  padding: 18px;
}

.legal-block {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--outline);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .content {
    padding: 28px 22px 120px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 60px 28px;
  }

  .topbar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
