/* Base */
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1e1c1a;
  background: #f7f4ef;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.top-banner {
  background: #1e1c1a;
  color: #f7f4ef;
  font-size: 13px;
  text-align: center;
  padding: 10px 16px;
  letter-spacing: 0.2px;
}
.site-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 28px 0 12px;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.brand .brand-title {
  margin: 0;
  font-size: 26px;
  text-transform: lowercase;
  letter-spacing: 1px;
}
.brand span {
  font-size: 14px;
  color: #6f675f;
}
.nav {
  display: flex;
  gap: 18px;
  font-size: 15px;
}
.nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.nav a:hover {
  border-bottom-color: #1e1c1a;
}

/* Asymmetric sections */
.section {
  padding: 68px 0;
  position: relative;
}
.section.alt {
  background: #fffdf9;
}
.section.deep {
  background: #eae4db;
}
.section .split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.split .copy {
  flex: 1 1 320px;
}
.split .visual {
  flex: 1 1 320px;
  position: relative;
}
.offset-left {
  margin-left: -36px;
}
.offset-right {
  margin-right: -36px;
}
.overlap-card {
  background: #ffffff;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(30, 28, 26, 0.12);
  border-radius: 14px;
}
.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #1e1c1a;
  color: #f7f4ef;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.headline {
  font-size: 38px;
  margin: 16px 0;
  line-height: 1.2;
}
.lead {
  font-size: 18px;
  color: #4d463f;
  line-height: 1.6;
}

/* Buttons and links */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1e1c1a;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  background: #1e1c1a;
  color: #f7f4ef;
  transition: transform 0.2s ease;
}
.btn.light {
  background: transparent;
  color: #1e1c1a;
}
.btn:hover {
  transform: translateY(-2px);
}
.inline-link {
  border-bottom: 1px solid #1e1c1a;
}
.inline-link:hover {
  border-bottom-width: 2px;
}
.btn-row {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Cards */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 16px 30px rgba(30, 28, 26, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card .image-frame {
  height: 180px;
  border-radius: 14px;
}
.price {
  font-size: 20px;
  font-weight: 700;
}

/* Forms */
.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}
form {
  flex: 1 1 360px;
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 20px 40px rgba(30, 28, 26, 0.1);
}
label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: #4d463f;
}
input,
select,
textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 18px;
  border-radius: 10px;
  border: 1px solid #ccc4b9;
  font-size: 15px;
  font-family: inherit;
}
textarea {
  min-height: 120px;
  resize: vertical;
}

/* Footer */
.footer {
  margin-top: auto;
  padding: 40px 0;
  background: #1e1c1a;
  color: #f7f4ef;
}
.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}
.footer small {
  display: block;
  margin-top: 12px;
  color: #cfc7bd;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(30, 28, 26, 0.15);
  padding: 20px;
  display: none;
  z-index: 20;
}
.cookie-banner.active {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #1e1c1a;
  color: #f7f4ef;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 16px 30px rgba(30, 28, 26, 0.2);
  z-index: 10;
}
.sticky-cta:hover {
  transform: translateY(-2px);
}

/* Utility */
.image-frame {
  background: #d9d2c7;
  border-radius: 18px;
  overflow: hidden;
  height: 360px;
}
.image-frame.hero {
  height: 520px;
}
.image-frame.tall {
  height: 420px;
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.pill {
  padding: 6px 14px;
  background: #efe9e0;
  border-radius: 999px;
  font-size: 13px;
}
.testimonial {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(30, 28, 26, 0.08);
  margin-bottom: 16px;
}
.divider {
  height: 1px;
  background: #c9c1b7;
  margin: 32px 0;
}
