@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;600&display=swap");

:root {
  --ink: #1b1b1b;
  --muted: #5a5a5a;
  --cream: #f4f1ec;
  --sand: #e6dfd6;
  --deep: #2b2a28;
  --accent: #7a5c3c;
  --olive: #54604f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: #faf8f5;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  background: #fff;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.ad-label {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 12px;
  font-weight: 600;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 40px 6vw 80px;
  background: var(--cream);
  position: relative;
}

.hero__text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 2;
}

.hero__text h1 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin: 0;
}

.hero__text p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.hero__media {
  flex: 1 1 360px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  position: relative;
  background: var(--sand);
  padding: 18px;
}

.hero__media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  padding: 12px 22px;
  font-size: 14px;
  border-radius: 999px;
  cursor: pointer;
  background: var(--deep);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-outline {
  background: transparent;
  color: var(--deep);
  border: 1px solid var(--deep);
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.section {
  padding: 70px 6vw;
  position: relative;
}

.section--offset {
  margin-top: -40px;
  background: #fff;
  border-radius: 24px;
  margin-left: 8vw;
  margin-right: 8vw;
  padding: 60px 6vw;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin: 0 0 16px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.split .block {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.band {
  background-size: cover;
  background-position: center;
  color: #fff;
}

.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0.55);
  z-index: 0;
}

.band .content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.photo-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.photo-block img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}

.img-wrap {
  background: var(--sand);
  border-radius: 16px;
  padding: 8px;
  display: flex;
}

.img-wrap img {
  display: block;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.testimonial {
  background: var(--cream);
  border-radius: 16px;
  padding: 20px;
  flex: 1 1 220px;
}

.form-wrap {
  background: #fff;
  border-radius: 22px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d7d0c8;
  font-family: inherit;
  font-size: 14px;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  padding: 40px 6vw 60px;
  background: var(--deep);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer-note {
  color: #d7d0c8;
  font-size: 13px;
  line-height: 1.6;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 5;
}

.sticky-cta button {
  background: var(--olive);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  padding: 60px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  background: var(--cream);
}

.page-hero img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
}

.page-hero .block {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.bg-fabric {
  background-image: url("https://images.unsplash.com/photo-1463100099107-aa0980c362e6?w=1400&q=80");
}

.bg-studio {
  background-image: url("https://images.unsplash.com/photo-1512436991641-6745cdb1723f?w=1400&q=80");
}
