* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1b1f;
  --muted: #5b5e66;
  --accent: #1f4e79;
  --accent-2: #c7a26a;
  --paper: #f6f4f0;
  --paper-2: #efe9e2;
  --paper-3: #e3dfd8;
  --shadow: rgba(17, 24, 39, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
  background: var(--paper-2);
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 0 0 72px;
}

header {
  padding: 24px 6vw 12px;
  background: var(--paper);
  border-bottom: 1px solid #d9d5ce;
}

.top-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.top-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.1rem;
}

.ad-label {
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 6vw 0;
}

.hero-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-media {
  flex: 1 1 360px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: 0 24px 48px var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.hero-card {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.92);
  padding: 16px;
  border-radius: 12px;
  max-width: 70%;
  box-shadow: 0 12px 24px var(--shadow);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.section {
  padding: 0 6vw;
}

.section-title {
  font-size: 1.6rem;
  margin: 0 0 12px;
}

.mag-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.mag-col {
  flex: 1 1 260px;
  background: var(--paper);
  padding: 20px;
  border-radius: 12px;
}

.pull-quote {
  font-size: 1.2rem;
  font-weight: 600;
  border-left: 4px solid var(--accent-2);
  padding-left: 16px;
  color: #3c3a34;
}

.split-story {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split-story .story-text {
  flex: 1 1 320px;
}

.split-story .story-img {
  flex: 1 1 320px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--paper-3);
}

.story-img img {
  width: 100%;
  height: 100%;
  min-height: 260px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 36px var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-img {
  background: var(--paper-2);
}

.card-img img {
  width: 100%;
  height: 180px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.cta-inline {
  font-weight: 600;
}

.section-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--accent-2);
  color: #2b2419;
  font-weight: 700;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  background: var(--paper);
  padding: 16px;
  border-radius: 12px;
}

.timeline-step {
  font-weight: 700;
  color: var(--accent);
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.testimonial {
  flex: 1 1 260px;
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #e5e1db;
}

.form-section {
  background: var(--paper-2);
  padding: 32px 6vw;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.form-card {
  flex: 1 1 320px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 18px 36px var(--shadow);
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-card label {
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d2cec7;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-card button {
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.aside-note {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aside-note .note-box {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #e5e1db;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #1b1b1f;
  color: #fff;
  padding: 12px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.sticky-cta a {
  color: #fff;
  background: var(--accent);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.footer {
  background: #14151a;
  color: #d7d7df;
  padding: 32px 6vw 48px;
}

.footer a {
  color: #d7d7df;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-col {
  flex: 1 1 220px;
}

.legal {
  font-size: 0.88rem;
  color: #b7b8c2;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 320px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 40px var(--shadow);
  padding: 16px;
  display: none;
  z-index: 20;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #d1c9be;
  color: #2a2a2f;
}

.page-hero {
  padding: 32px 6vw 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.page-hero img {
  border-radius: 14px;
  background: var(--paper-2);
}

.page-content {
  padding: 0 6vw 56px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #e1ddd6;
  background: #fff;
}

.service-row strong {
  color: var(--accent);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  flex: 1 1 260px;
  background: var(--paper);
  padding: 18px;
  border-radius: 12px;
}

.note {
  background: var(--paper-2);
  padding: 16px;
  border-radius: 12px;
}

.hidden {
  display: none;
}
