@font-face {
  font-family: 'Ceraph';
  src: url('/fonts/Ceraph-Roman-Trial.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --brand-primary: #4A5568;
  --brand-accent: #A0AEC0;
  --brand-bg: #FFFFFF;
  --brand-text: #2D3748;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--brand-text);
  background: #f6f7fa;
}

.navbar {
  border-bottom: 3px solid var(--brand-primary);
  background: #fff;
}

.logo {
  font-family: 'Ceraph', Georgia, serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: 0.3px;
}

.nav-link {
  color: var(--brand-text) !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-primary) !important;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  color: #fff;
  background-image: linear-gradient(to right, rgba(45,55,72,0.74), rgba(74,85,104,0.50)), url('/images/hero/sarah-hero.jpg');
  background-position: top;
  background-repeat: no-repeat;
  background-size: 100%;
}

.hero h1 {
  font-family: 'Ceraph', Georgia, serif;
  font-size: clamp(2.1rem, 6vw, 4rem);
  font-weight: 700;
}

.section-shell {
  background: #fff;
  border: 1px solid #dfe3ea;
  border-radius: 0 0 0.7rem 0.7rem;
  padding: 2rem;
}

section#team .section-shell {
  border-radius: 0.7rem;
}

section#contact .section-shell {
  border-radius: 0.7rem;
}

/*.section-slice {
  height: 270px;
  border-radius: 0.7rem 0.7rem 0 0;
  background-size: cover;
  background-position: center;
  border: 1px solid #dfe3ea;
}*/

.section-slice {
  width: 100%;
  aspect-ratio: 1800 / 280;
  border-radius: 0.7rem 0.7rem 0 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid #dfe3ea;
}
@media (max-width: 768px) {
  .section-slice {
    background-size: contain;
    background-color: #fff;
  }
}

.slice-team { background-image: url('/images/sections/team-slice.jpg'); }
.slice-services { background-image: url('/images/sections/services-slice.jpg'); }
.slice-workshop { 
  background-image: url('/images/sections/workshop-slice.jpg'); 
  background-position-x: left;
}
.slice-case { background-image: url('/images/sections/case-slice.jpg'); }

h2.section-title {
  font-family: 'Ceraph', Georgia, serif;
  color: var(--brand-primary);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
}

.team-card {
  border: 1px solid #d7dce4;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #fff;
}

.team-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.team-card .btn {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
}

#services ul li { margin-bottom: 0.5rem; }

.signature-box {
  border-left: 4px solid var(--brand-primary);
  background: #f5f7fb;
  padding: 0.9rem 1rem;
  border-radius: 0.35rem;
}

footer {
  border-top: 3px solid var(--brand-accent);
  background: #fff;
}

.contact-inline a { color: var(--brand-primary); }

#modalMail {
  font-family: arial, sans-serif; 
  margin-top: 1rem;
}