* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #14212b;
  background-color: #f7f6f4;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  padding: 24px 6vw 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.brand-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 13px;
  padding: 6px 10px;
  background-color: #ffe9c8;
  border-radius: 999px;
  color: #6b4b00;
}

.main-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background-color: #1c2b36;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.cta-secondary {
  background-color: #e2ecef;
  color: #1c2b36;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.page-hero {
  padding: 72px 6vw;
  color: #fefefe;
  background-position: center;
  background-size: cover;
  background-color: #1c2b36;
}

.hero-inner {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-title {
  font-size: 44px;
  line-height: 1.1;
  margin: 0;
}

.hero-subtitle {
  font-size: 18px;
  margin: 0;
}

.section {
  padding: 64px 6vw;
}

.section-title {
  margin: 0 0 16px;
  font-size: 30px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.card-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(20, 33, 43, 0.08);
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #0c5a5c;
}

.media-frame {
  border-radius: 20px;
  overflow: hidden;
  background-color: #e4e7ea;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight {
  background-color: #f1ede6;
}

.bg-panel {
  color: #fefefe;
  background-position: center;
  background-size: cover;
  background-color: #243746;
}

.stats-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  flex: 1 1 180px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(20, 33, 43, 0.08);
}

.form-wrap {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 16px 30px rgba(20, 33, 43, 0.08);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #cbd3d9;
  font-size: 15px;
  font-family: inherit;
}

.form-note {
  font-size: 13px;
  color: #4a5864;
}

.site-footer {
  padding: 40px 6vw 60px;
  background-color: #131d25;
  color: #dce2e7;
}

.footer-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.disclaimer {
  margin-top: 24px;
  font-size: 13px;
  color: #b5c0c8;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
  background-color: #1c2b36;
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
}

.sticky-cta button {
  background-color: #f7d88b;
  color: #1c2b36;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(20, 33, 43, 0.2);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.legal-content {
  max-width: 800px;
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  background-color: #eff4f6;
  color: #37505f;
  font-weight: 600;
}

.simple-hero {
  padding: 56px 6vw 32px;
}

.simple-hero h1 {
  margin: 0;
  font-size: 36px;
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.list-inline li {
  background-color: #e8eff1;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.spacer-top {
  margin-top: 18px;
}

.contact-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 24px rgba(20, 33, 43, 0.08);
}

.bg-speaker {
  background-image: url("https://images.unsplash.com/photo-1772419216340-fd8abb4f55de?w=1400&q=80");
}

.bg-boardroom {
  background-image: url("https://images.unsplash.com/photo-1758691736424-4b4273948341?w=1400&q=80");
}

.bg-process {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
}

.frame-sand {
  background-color: #d8d3c7;
}

.frame-sky {
  background-color: #c9d6d8;
}

.frame-clay {
  background-color: #e0d9cf;
}
