:root {
  --bulma-family-primary: 'Karla', sans-serif;
  --bulma-family-secondary: 'Crimson Pro', serif;
  --bulma-radius: 4px;
  --bulma-scheme-main: #ebf3f7;
  --bulma-text: #081319;
  --bulma-control-border-width: 1px;
  --site-primary: #2b3d48;
  --site-primary-light: #66747b;
  --site-primary-dark: #041e2a;
  --site-secondary: #58666d;
  --site-accent: #bf8200;
  --site-background: #ebf3f7;
  --site-surface: #f8f8f8;
  --site-text-primary: #081319;
  --site-text-secondary: #4b575f;
  --site-border: rgba(88, 102, 109, 0.22);
  --card-radius: 16px;
  --image-radius: 24px;
  --button-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  --card-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #ebf3f7;
  color: #081319;
  font-family: var(--bulma-family-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--bulma-family-secondary);
}

.button.is-primary {
  background-color: #2b3d48;
  border-color: #2b3d48;
  color: #fff;
}

.button.is-primary:hover,
.button.is-primary:focus {
  background-color: #041e2a;
  border-color: #041e2a;
  color: #fff;
}

.button.is-link {
  background-color: #2b3d48;
  color: #fff;
}

.has-text-primary {
  color: #2b3d48 !important;
}

.has-background-primary {
  background-color: #2b3d48 !important;
}

a {
  color: #2b3d48;
}

a:hover {
  color: #041e2a;
}

.navbar-item:hover,
.navbar-item:focus {
  color: #2b3d48;
}

.navbar {
  background: transparent;
}

.navbar-item,
.navbar-link,
.navbar-brand .navbar-item {
  color: var(--site-text-primary);
  font-weight: 500;
}

.site-brand {
  font-family: var(--bulma-family-secondary);
  font-size: 1.45rem;
  letter-spacing: 0.02em;
}

.section,
.hero,
.footer {
  background-color: var(--site-background);
}

.section.section-bordered,
.hero.section-bordered,
.footer.section-bordered {
  border-top: 1px solid var(--site-border);
}

.section:first-of-type,
.hero.section-bordered:first-of-type {
  border-top: 0;
}

.display-title {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.section-title {
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.lead-copy,
.content p,
.card-content p {
  color: var(--site-text-secondary);
  font-size: 1.08rem;
}

.hero-wrap {
  position: relative;
}

.hero-image-shell {
  border-radius: var(--image-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  min-height: 26rem;
}

.hero-image-shell img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--image-radius);
}

.hero-card-overlap {
  position: relative;
  margin-top: -5rem;
  z-index: 2;
}

.editorial-card,
.card {
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  background: var(--site-surface);
  border-left: 4px solid var(--site-accent);
}

.card-image img,
.rounded-image {
  border-radius: var(--image-radius);
}

.button,
.input,
.textarea {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.button {
  border-radius: 0;
  border: 0;
  background: var(--site-surface);
  color: var(--site-text-primary);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08), var(--button-shadow);
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
  background: #ffffff;
}

.button.is-primary,
.button.is-link {
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12), var(--button-shadow);
}

.input,
.textarea {
  border-radius: 4px;
  border: 0;
  background: var(--site-surface);
  color: var(--site-text-primary);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08);
}

.input:focus,
.textarea:focus {
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08), 0 0 0 0.125em rgba(43, 61, 72, 0.18);
}

.hover-lift:hover {
  transform: translateY(-3px);
}

.timeline-mark {
  display: inline-block;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid var(--site-accent);
}

.testimonial-quote {
  font-family: var(--bulma-family-secondary);
  font-size: 1.35rem;
  line-height: 1.3;
  color: var(--site-primary-dark);
}

.contact-panel iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--image-radius);
  box-shadow: var(--card-shadow);
}

.footer {
  border-top: 1px solid var(--site-border);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.footer a {
  color: var(--site-text-primary);
}

.footer a:hover {
  color: var(--site-primary);
}

.legal-wrap {
  max-width: 860px;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  background: var(--site-surface);
  border-left: 4px solid var(--site-accent);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  padding: 1rem 1.25rem;
}

.cookie-banner.is-hidden {
  display: none;
}

@media screen and (max-width: 768px) {
  .hero-card-overlap {
    margin-top: 1.5rem;
  }

  .hero-image-shell {
    min-height: 18rem;
  }
}
