/* Base */
:root {
  --ink: #1f1a17;
  --muted: #6a5f58;
  --accent: #b65d42;
  --accent-dark: #7d3a27;
  --sand: #f4efe9;
  --mist: #f8f6f2;
  --olive: #7a7a63;
  --white: #ffffff;
  --shadow: 0 18px 38px rgba(31, 26, 23, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow: hidden;
}

.topbar {
  padding: 1.75rem 5vw 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.brand span {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.brand strong {
  font-size: 1.4rem;
  letter-spacing: 0.06rem;
}

.nav {
  display: flex;
  gap: 1.6rem;
  font-size: 0.95rem;
  letter-spacing: 0.03rem;
}

.nav a {
  position: relative;
  padding-bottom: 0.2rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a:focus::after {
  width: 100%;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem 5vw 4rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  right: -10vw;
  top: -6rem;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle at top, #f5d6c8 0%, rgba(245, 214, 200, 0) 70%);
  z-index: 0;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 580px;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-secondary {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.inline-link {
  font-weight: 600;
  color: var(--accent-dark);
}

.hero-media {
  position: relative;
  max-width: 520px;
  margin-left: auto;
}

.hero-media .frame {
  background: var(--white);
  padding: 1.2rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.hero-media .note {
  position: absolute;
  left: -2rem;
  bottom: -1rem;
  background: var(--sand);
  padding: 0.8rem 1.1rem;
  border-radius: 16px;
  font-size: 0.85rem;
  width: 160px;
  box-shadow: var(--shadow);
}

.sticky-cta {
  position: sticky;
  top: 1.5rem;
  align-self: flex-start;
  display: inline-flex;
  gap: 0.6rem;
  background: var(--ink);
  color: var(--white);
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

.section {
  padding: 3.5rem 5vw;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  margin: 0 0 0.8rem;
}

.section p {
  margin: 0;
  color: var(--muted);
}

.offset-panel {
  background: var(--white);
  padding: 2rem;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .card {
  background: var(--sand);
  padding: 1.6rem;
  border-radius: 22px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12rem;
  color: var(--olive);
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.storyline .step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step span {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.badge {
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow);
  font-size: 0.9rem;
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: var(--white);
  padding: 1.6rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.pricing-item strong {
  font-size: 1.2rem;
}

.price {
  font-size: 1.6rem;
  color: var(--accent-dark);
}

.service-select {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-option {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-radius: 22px;
  background: var(--sand);
  padding: 1.3rem;
  cursor: pointer;
}

.service-option input {
  margin-right: 0.4rem;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: var(--white);
  padding: 1.8rem;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.form label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form input,
.form select,
.form textarea {
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid #ddd0c6;
  font-size: 1rem;
  font-family: inherit;
}

.form button {
  align-self: flex-start;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.gallery-row {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.gallery-card {
  background: var(--white);
  padding: 1rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.cta-strip {
  background: var(--accent);
  color: var(--white);
  padding: 1.2rem 1.5rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cta-strip .btn {
  background: var(--white);
  color: var(--accent-dark);
}

.footer {
  padding: 3rem 5vw;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer a {
  color: var(--white);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  left: 1rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 1rem 1.2rem;
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cookie-actions button {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--ink);
  color: var(--white);
}

.page-hero {
  padding: 3rem 5vw 2rem;
  background: var(--sand);
}

.page-hero h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  background: var(--white);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .hero-grid {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split,
  .split.reverse {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .service-options {
    flex-direction: row;
  }

  .service-option {
    flex: 1;
  }

  .pricing-list {
    flex-direction: row;
  }

  .pricing-item {
    flex: 1;
  }

  .gallery-row {
    flex-direction: row;
  }

  .gallery-card {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
  }
}
