@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

:root {
  --ink: #1c1b1a;
  --sand: #f6f1ea;
  --clay: #d9cdbf;
  --forest: #2f4a3d;
  --sky: #d8e5f0;
  --ember: #b8614b;
  --stone: #f1efec;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--stone);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  background: var(--sand);
  gap: 24px;
  flex-wrap: wrap;
}

.nav-brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-disclosure {
  font-size: 0.9rem;
  background: var(--clay);
  padding: 6px 12px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom: 2px solid var(--ember);
}

.hero {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 90px 6vw 120px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 23, 20, 0.55);
}

.hero-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
  z-index: 1;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-text h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--ember);
  color: #fff;
  font-weight: 600;
}

.btn.alt {
  background: transparent;
  border: 2px solid #fff;
}

.hero-card {
  flex: 1 1 260px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 24px;
  border-radius: 18px;
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: var(--sand);
}

.section-title {
  font-size: 2rem;
  margin-bottom: 24px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  padding: 24px;
  background: #fff;
  border-radius: 18px;
}

.panel.offset {
  margin-top: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.image-card {
  flex: 1 1 320px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--clay);
  min-height: 280px;
}

.image-card.small {
  min-height: 220px;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-insight .panel {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--forest);
}

.inline-link {
  color: var(--ember);
  font-weight: 600;
  text-decoration: underline;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

.form-wrapper label {
  font-weight: 600;
}

.form-wrapper input,
.form-wrapper select,
.form-wrapper textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d0c8bf;
  font-family: inherit;
}

.form-wrapper button {
  border: none;
  cursor: pointer;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  background: var(--clay);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.story-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.story-text {
  flex: 1 1 340px;
}

.story-stack {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--forest);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 3;
}

.footer {
  margin-top: auto;
  background: #1f1f1f;
  color: #fff;
  padding: 40px 6vw;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid div {
  flex: 1 1 220px;
}

.footer a {
  color: #fff;
}

.legal {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 4;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 12px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: var(--forest);
  color: #fff;
}

.cookie-actions button.secondary {
  background: var(--clay);
  color: var(--ink);
}

.is-hidden {
  display: none;
}

.hero-subimage {
  background: var(--sky);
}

.bg-atelier {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-atelier .panel {
  background: rgba(255, 255, 255, 0.92);
}

.small-note {
  font-size: 0.9rem;
  color: #444;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 240px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .sticky-cta {
    position: static;
    margin: 18px 6vw 0;
  }
}
