@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #f7f3ee;
  --ink: #1f1b16;
  --muted: #6a5f54;
  --accent: #9a5c3f;
  --accent-dark: #6c3f2a;
  --light: #fffaf4;
  --shadow: 0 24px 60px rgba(31, 27, 22, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 88px;
  padding-bottom: 96px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw 8px 6vw;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand span {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 12px;
  color: var(--muted);
}

.brand h1,
.brand h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav-links a {
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 6vw;
}

.hero-intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 620px;
}

.hero-intro h2 {
  font-size: 42px;
  margin: 0;
  line-height: 1.2;
}

.hero-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cta {
  background: var(--accent);
  color: #fff;
  padding: 14px 26px;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.cta.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.hero-image {
  position: relative;
  margin-left: 8vw;
  margin-top: -18px;
  max-width: 920px;
}

.hero-image img {
  box-shadow: var(--shadow);
}

.badge {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--light);
  padding: 18px 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 260px;
  font-size: 14px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 0 6vw;
}

.section-title {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 12px;
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.offset-right {
  align-items: flex-end;
}

.split .text {
  max-width: 520px;
}

.split .text h3 {
  margin: 0 0 12px 0;
  font-size: 30px;
}

.split .text p {
  margin: 0 0 12px 0;
  color: var(--muted);
}

.overlap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--light);
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  max-width: 620px;
  margin-left: -4vw;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: #fff;
  padding: 24px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 40px rgba(31, 27, 22, 0.08);
}

.card h4 {
  margin: 0;
  font-size: 20px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card small {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-dark);
  font-weight: 600;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f0e7dc;
  padding: 26px;
  border-radius: 20px;
}

.metrics div {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.gallery-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  font-style: italic;
  border-left: 4px solid var(--accent);
  padding-left: 18px;
  color: var(--muted);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 38px rgba(31, 27, 22, 0.08);
}

.pricing-item h4 {
  margin: 0;
  font-size: 20px;
}

.pricing-item span {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-dark);
}

.form-card {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #e3d8cc;
  font-family: inherit;
  font-size: 15px;
}

button[type="submit"] {
  background: var(--accent-dark);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 18px;
  font-weight: 600;
  cursor: pointer;
}

.inline-cta {
  color: var(--accent-dark);
  font-weight: 600;
  border-bottom: 1px solid var(--accent-dark);
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 6vw 64px 6vw;
  background: #efe6dc;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 9;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent-dark);
  padding: 8px 14px;
  border-radius: 18px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions button.primary {
  background: var(--accent);
  color: #fff;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  padding: 26px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.legal {
  max-width: 760px;
  color: var(--muted);
}

.accent-panel {
  background: #f0e7dc;
  border-radius: 28px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-image {
    margin-left: 0;
    margin-top: 0;
  }

  .split {
    flex-direction: row;
    justify-content: space-between;
  }

  .split.offset-right {
    flex-direction: row-reverse;
  }

  .card-row,
  .gallery-row,
  .pricing-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .pricing-item {
    flex: 1 1 220px;
  }

  .contact-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .accent-panel {
    flex-direction: row;
    justify-content: space-between;
  }
}
