* {
  box-sizing: border-box;
}

:root {
  --ink: #1d1d1f;
  --muted: #5e5e66;
  --sand: #f6f0e8;
  --linen: #f3f1ed;
  --stone: #d9d0c7;
  --night: #111315;
  --accent: #6d4b3b;
  --accent-soft: #b9937e;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 6vw 0.5rem;
  gap: 1rem;
}

.brand {
  font-size: 1.3rem;
  letter-spacing: 0.05rem;
  font-weight: 600;
}

.ad-label {
  background: var(--sand);
  color: var(--accent);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
}

.nav {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.nav a {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid transparent;
}

.nav a:focus,
.nav a:hover {
  border-bottom-color: var(--accent);
}

.hero {
  min-height: 70vh;
  padding: 6rem 6vw 4rem;
  background-image: url("https://images.unsplash.com/photo-1503342452485-86b7f54527ef?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.45);
}

.hero-content {
  position: relative;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.1;
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn {
  border: none;
  background: var(--accent);
  color: #ffffff;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #ffffff;
}

.inline-link {
  font-size: 0.95rem;
  text-decoration: underline;
}

.section {
  padding: 4.5rem 6vw;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section.dark {
  background: var(--night);
  color: #f8f4ef;
}

.section.sand {
  background: var(--sand);
}

.section.linen {
  background: var(--linen);
}

.section h2 {
  margin: 0;
  font-size: 2rem;
}

.centered {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.section p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.media-frame {
  background: var(--stone);
  border-radius: 1.2rem;
  overflow: hidden;
  min-height: 320px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.card.dark {
  background: #1b1c20;
  color: #f8f4ef;
  box-shadow: none;
}

.card p {
  color: inherit;
}

.card-image {
  background: var(--stone);
  border-radius: 0.8rem;
  overflow: hidden;
  height: 180px;
}

.quotes {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quote {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 1.4rem;
  border-radius: 0.8rem;
}

.quote span {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.lookbook {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.lookbook .media-frame {
  flex: 1 1 220px;
  min-height: 240px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.price-tag {
  font-weight: 600;
  color: var(--accent);
}

.form-area {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 2rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-grid label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  color: var(--muted);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 0.6rem;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.form-message {
  font-size: 0.9rem;
  color: var(--accent);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.floating-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  background: var(--night);
  color: #ffffff;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 10;
}

.floating-cta button {
  background: #ffffff;
  color: var(--night);
  border: none;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.floating-cta .close {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.footer {
  background: var(--night);
  color: #f4efe9;
  padding: 3rem 6vw;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-size: 0.9rem;
}

.footer small {
  color: rgba(244, 239, 233, 0.7);
}

.cookie-banner {
  position: fixed;
  left: 1.5rem;
  bottom: 1.5rem;
  background: #ffffff;
  padding: 1.2rem;
  border-radius: 1rem;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.8rem;
}

.cookie-actions button {
  border: none;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #ffffff;
}

.cookie-actions .reject {
  background: var(--stone);
  color: var(--night);
}

.page-header {
  padding: 4rem 6vw 2rem;
}

.page-header h1 {
  margin: 0 0 1rem;
  font-size: 2.4rem;
}

.page-body {
  padding: 0 6vw 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.meta-block {
  background: var(--linen);
  padding: 1.5rem;
  border-radius: 1rem;
}

.plain-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

@media (max-width: 800px) {
  .hero {
    padding: 5rem 6vw 4rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .floating-cta {
    left: 1.5rem;
    right: 1.5rem;
    justify-content: space-between;
  }
}
