* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1b1b;
  --muted: #5b5b5b;
  --paper: #f6f2ee;
  --accent: #6b3f2a;
  --accent-soft: #e6d5c7;
  --shadow: rgba(20, 20, 20, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fbfaf8;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  border-bottom: 1px solid #e2d6cc;
  background: #fffdfb;
  gap: 20px;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border: 1px solid #d7c4b7;
  border-radius: 999px;
  background: var(--accent-soft);
}

.nav-link {
  font-size: 14px;
  color: var(--muted);
}

.hero {
  display: flex;
  gap: 40px;
  padding: 60px 6vw 40px;
  align-items: stretch;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.hero-title {
  font-size: 44px;
  line-height: 1.1;
  margin: 0;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: #fff;
  background: var(--accent);
  cursor: pointer;
  font-size: 14px;
}

.btn.secondary {
  color: var(--accent);
  background: transparent;
}

.hero-media {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.hero-media .image-frame {
  border-radius: 20px;
  overflow: hidden;
  background: #dcd2c7;
  box-shadow: 0 20px 40px var(--shadow);
}

.image-frame.small {
  width: 70%;
  margin-left: auto;
}

.section {
  padding: 50px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: var(--paper);
}

.section-title {
  font-size: 30px;
  margin: 0;
}

.section-sub {
  color: var(--muted);
  margin: 0;
}

.asym-row {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel.card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 14px 24px var(--shadow);
}

.panel .image-frame {
  border-radius: 18px;
  overflow: hidden;
  background: #e1d6cc;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 20px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card input {
  margin-right: 8px;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
}

.form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 18px 30px var(--shadow);
}

.is-hidden {
  display: none;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-size: 13px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d2c5bb;
  font-size: 14px;
  font-family: inherit;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #fff;
  padding: 16px 6vw;
  border-top: 1px solid #e5dbd2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer {
  padding: 40px 6vw;
  background: #141210;
  color: #f0e9e2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f0e9e2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #d8cfc7;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 20px 40px var(--shadow);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .btn {
  flex: 1;
  text-align: center;
}

.notice {
  padding: 18px;
  border-radius: 16px;
  background: #f0e9e2;
  color: #4b3d33;
}

.image-bg-hero {
  background-image: url("https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=1400&q=80");
  background-color: #d9cfc5;
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  min-height: 360px;
}

.image-bg-story {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-color: #d4c9bf;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 260px;
}

.image-bg-atelier {
  background-image: url("https://images.unsplash.com/photo-1492562080023-ab3db95bfbce?w=1400&q=80");
  background-color: #dcd2c7;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 260px;
}

.image-bg-studio {
  background-image: url("https://images.unsplash.com/photo-1463453091185-61582044d556?w=1400&q=80");
  background-color: #d6cbc0;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 240px;
}

.image-bg-contact {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-color: #d8cdc3;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  min-height: 240px;
}

.card-image {
  border-radius: 16px;
  overflow: hidden;
  background: #e4dbd2;
}

.hero-img-1 {
  background-color: #e0d5cb;
}

.hero-img-2 {
  background-color: #d3c8bd;
}

.portrait-1 {
  background-color: #ddd2c8;
}

.portrait-2 {
  background-color: #d9cec3;
}

.portrait-3 {
  background-color: #d6cabf;
}

.portrait-4 {
  background-color: #d0c4b8;
}

.about-image {
  background-color: #d8cdc3;
}

.contact-image {
  background-color: #d6cbc0;
}

.bg-panel {
  background: #1f1a17;
  color: #f6efe8;
  padding: 30px;
  border-radius: 20px;
}

.bg-panel a {
  color: #f6efe8;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .hero-title {
    font-size: 34px;
  }

  .image-frame.small {
    width: 100%;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
