* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #141414;
  --muted: #5c5c5c;
  --sand: #f4f1ec;
  --stone: #e6ded2;
  --clay: #c9b9a4;
  --forest: #1f3a2b;
  --accent: #9b3d2f;
  --white: #ffffff;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 26px;
}

.nav-logo {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-disclosure {
  font-size: 12px;
  color: var(--muted);
  text-align: right;
  max-width: 260px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 40px;
}

.hero-text {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--stone);
  background: var(--sand);
}

.hero-media {
  flex: 1 1 360px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: 360px;
  background: var(--stone);
  padding: 18px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--forest);
  color: var(--white);
  padding: 8px 14px;
  font-size: 13px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--ink);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  margin: 40px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-media {
  flex: 1 1 360px;
  background: var(--clay);
  padding: 14px;
}

.overlay-card {
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 18px;
  position: relative;
  margin-top: -24px;
  margin-left: 16px;
  max-width: 360px;
}

.grid-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  border: 1px solid var(--stone);
  padding: 16px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  height: 170px;
  background: var(--sand);
}

.section-title {
  font-size: 22px;
  margin-bottom: 8px;
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 16px;
}

.price {
  font-weight: 700;
  color: var(--forest);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 12px;
  border-left: 2px solid var(--clay);
}

.highlight {
  background: var(--sand);
  padding: 20px;
  border: 1px solid var(--stone);
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border: 1px solid var(--stone);
  background: var(--sand);
  padding: 20px;
}

.form-shell label {
  font-size: 14px;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--stone);
  background: var(--white);
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--stone);
  font-size: 14px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--forest);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-layout {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 820px;
}

.contact-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  border: 1px solid var(--stone);
  padding: 18px;
  background: var(--sand);
}

.img-frame {
  background: var(--stone);
  padding: 10px;
}

.notice {
  background: var(--clay);
  padding: 14px;
  color: var(--ink);
  font-size: 14px;
}

.bg-atelier {
  background: linear-gradient(rgba(244, 241, 236, 0.92), rgba(244, 241, 236, 0.92)),
    url("https://images.unsplash.com/photo-1512436991641-6745cdb1723f?w=1400&q=80")
      center / cover no-repeat;
  padding: 32px;
}

.bg-lookbook {
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
    url("https://images.unsplash.com/photo-1489987707025-afc232f7ea0f?w=1400&q=80")
      center / cover no-repeat;
  padding: 32px;
}

.bg-tailor {
  background: linear-gradient(rgba(244, 241, 236, 0.95), rgba(244, 241, 236, 0.95)),
    url("https://images.unsplash.com/photo-1521572267360-ee0c2909d518?w=1400&q=80")
      center / cover no-repeat;
  padding: 32px;
}

.bg-contact {
  background: linear-gradient(rgba(230, 222, 210, 0.88), rgba(230, 222, 210, 0.88)),
    url("https://images.unsplash.com/photo-1491553895911-0055eca6402d?w=1400&q=80")
      center / cover no-repeat;
  padding: 32px;
}
