@import url('https://fonts.googleapis.com/css2?family=Epilogue:wght@300;400;500;600;700;800&display=swap');

:root {
  --c-bg: #F6F0E7;
  --c-bg-alt: #EFE2CC;
  --c-cream: #FBF7F0;
  --c-ink: #2B2420;
  --c-ink-soft: #6B5D4F;
  --c-brick: #C1562F;
  --c-brick-dark: #9C431F;
  --c-brick-light: #E8875F;
  --c-forest: #2F3B2C;
  --c-forest-dark: #1D2519;
  --c-forest-light: #4E6249;
  --c-sand: #EAD9C2;
  --c-line: rgba(43,36,32,0.1);

  --radius-sm: 14px;
  --radius-md: 26px;
  --radius-lg: 48px;
  --radius-pill: 999px;
  --radius-blob: 62% 38% 55% 45% / 45% 55% 45% 55%;

  --shadow-sm: 0 1px 2px rgba(43,25,10,0.08), 0 2px 6px rgba(43,25,10,0.06);
  --shadow-md: 0 4px 10px rgba(43,25,10,0.08), 0 12px 28px rgba(43,25,10,0.10);
  --shadow-lg: 0 10px 24px rgba(43,25,10,0.12), 0 24px 56px rgba(43,25,10,0.14);

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: 'Epilogue', sans-serif;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; margin: 0 0 var(--space-sm); color: var(--c-forest-dark); }
p { margin: 0 0 var(--space-sm); color: var(--c-ink-soft); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { padding-left: 1.2rem; }

.u-hidden { display: none !important; }
.u-text-center { text-align: center; }

h1 { font-size: clamp(2.4rem, 5vw + 1rem, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3vw + 1rem, 2.8rem); }
h3 { font-size: clamp(1.2rem, 1.4vw + 0.8rem, 1.5rem); }

.c-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-brick-dark);
  margin-bottom: var(--space-xs);
}

.c-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  min-height: 44px;
}
.c-btn--primary {
  background: var(--c-brick);
  color: var(--c-cream);
  box-shadow: var(--shadow-md);
}
.c-btn--primary:hover { background: var(--c-brick-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.c-btn--ghost {
  background: transparent;
  color: var(--c-forest-dark);
  border: 2px solid var(--c-forest);
}
.c-btn--ghost:hover { background: var(--c-forest); color: var(--c-cream); transform: translateY(-2px); }
.c-btn--lg { padding: 1.1rem 2.4rem; font-size: 1.05rem; }


.c-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-forest-dark);
  box-shadow: var(--shadow-md);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1), opacity 0.4s ease;
}
.c-nav.is-scrolled {
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
}
.c-nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.c-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--c-cream);
}
.c-nav__links {
  display: flex;
  gap: 1.8rem;
  flex: 1;
  justify-content: center;
}
.c-nav__links a {
  color: rgba(251,247,240,0.78);
  font-weight: 500;
  font-size: 0.96rem;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.3rem 0;
}
.c-nav__links a:hover, .c-nav__links a.is-active { color: var(--c-cream); }
.c-nav__links a.is-active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--c-brick-light);
  border-radius: 2px;
}
.c-nav__cta { flex-shrink: 0; }
.c-nav__toggle {
  display: none;
  color: var(--c-cream);
  font-size: 1.3rem;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
}
.c-nav__dropdown {
  max-height: 0;
  overflow: hidden;
  background: var(--c-forest);
  transition: max-height 0.45s ease;
  display: flex;
  flex-direction: column;
}
.c-nav__dropdown.is-open { max-height: 480px; }
.c-nav__dropdown a {
  padding: 1rem 1.5rem;
  color: rgba(251,247,240,0.85);
  border-top: 1px solid rgba(251,247,240,0.1);
  font-weight: 500;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.c-nav__dropdown a:hover { color: var(--c-cream); background: rgba(255,255,255,0.05); }
.c-nav__dropdown .c-btn { margin: 1rem 1.5rem; justify-content: center; }

.c-nav-pill {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 200;
  opacity: 0;
  transform: translateY(-16px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.c-nav-pill.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.c-nav-pill__btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--c-brick);
  color: var(--c-cream);
  font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: background 0.3s ease, transform 0.3s ease;
}
.c-nav-pill__btn:hover { background: var(--c-brick-dark); transform: scale(1.06); }
.c-nav-pill__panel {
  position: absolute;
  top: 62px;
  right: 0;
  background: var(--c-forest-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  opacity: 0;
  transform: translateY(-10px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.c-nav-pill__panel.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.c-nav-pill__panel a {
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  color: rgba(251,247,240,0.85);
  font-weight: 500;
  min-height: 44px;
  display: flex; align-items: center;
  transition: background 0.25s ease, color 0.25s ease;
}
.c-nav-pill__panel a:hover { background: rgba(255,255,255,0.08); color: var(--c-cream); }


.c-wave {
  line-height: 0;
  margin-top: -2px;
}
.c-wave svg { width: 100%; height: 70px; display: block; }
.c-wave path { fill: var(--c-bg); }
.c-wave--flip { transform: rotate(180deg); }
.c-wave--flip path { fill: var(--c-bg-alt); }


.s-hero {
  position: relative;
  background: var(--c-bg);
  padding: var(--space-lg) 1.5rem var(--space-xl);
  overflow: hidden;
}
.s-hero__blob {
  position: absolute;
  border-radius: var(--radius-blob);
  filter: blur(2px);
  opacity: 0.5;
  z-index: 0;
}
.s-hero__blob--one { width: 420px; height: 420px; background: radial-gradient(circle at 30% 30%, var(--c-sand), transparent 70%); top: -140px; left: -140px; }
.s-hero__blob--two { width: 320px; height: 320px; background: radial-gradient(circle at 60% 40%, var(--c-brick-light), transparent 70%); bottom: -100px; right: -80px; opacity: 0.3; }
.s-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.s-hero__content p { font-size: 1.1rem; max-width: 46ch; }
.s-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: var(--space-md); }
.s-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 1rem;
  min-height: 420px;
}
.s-hero__img {
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s ease;
}
.s-hero__img--large { grid-column: 1 / 2; grid-row: 1 / 3; height: 100%; border-radius: var(--radius-lg) var(--radius-sm) var(--radius-lg) var(--radius-sm); }
.s-hero__img--medium { grid-column: 2 / 3; grid-row: 1 / 2; height: 220px; border-radius: var(--radius-sm) var(--radius-lg) var(--radius-sm) var(--radius-lg); margin-top: 2rem; }
.s-hero__img--small { grid-column: 2 / 3; grid-row: 2 / 3; height: 160px; border-radius: var(--radius-lg); }


.c-marquee {
  background: var(--c-forest-dark);
  overflow: hidden;
  padding: 1.1rem 0;
}
.c-marquee__track {
  display: flex;
  gap: 1.2rem;
  white-space: nowrap;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.c-marquee__track span {
  color: var(--c-sand);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


.s-services {
  position: relative;
  background: var(--c-bg-alt);
  padding: var(--space-xl) 1.5rem;
}
.s-services__inner { max-width: 1000px; margin: 0 auto; }
.s-services__intro { text-align: center; max-width: 620px; margin: 0 auto var(--space-lg); }
.c-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.c-accordion__item {
  background: var(--c-cream);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.c-accordion__item.is-active { box-shadow: var(--shadow-md); }
.c-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  text-align: left;
  min-height: 44px;
}
.c-accordion__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-sand);
  color: var(--c-brick-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
}
.c-accordion__title { flex: 1; font-weight: 600; font-size: 1.05rem; color: var(--c-forest-dark); }
.c-accordion__chevron { color: var(--c-ink-soft); transition: transform 0.35s ease; }
.c-accordion__item.is-active .c-accordion__chevron { transform: rotate(180deg); }
.c-accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.5rem;
}
.c-accordion__panel p { padding-bottom: 1.4rem; margin: 0; }
.c-accordion__item.is-active .c-accordion__panel { max-height: 300px; }


.s-types {
  background: var(--c-bg);
  padding: var(--space-xl) 0;
}
.s-types__intro { max-width: 620px; margin: 0 auto var(--space-lg); padding: 0 1.5rem; text-align: center; }
.s-types__scroller {
  overflow-x: auto;
  padding: 0.5rem 1.5rem 2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.s-types__scroller::-webkit-scrollbar { height: 8px; }
.s-types__scroller::-webkit-scrollbar-thumb { background: var(--c-brick-light); border-radius: 10px; }
.s-types__track {
  display: flex;
  gap: 1.4rem;
  width: max-content;
}
.c-type-card {
  scroll-snap-align: start;
  background: var(--c-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  width: 300px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.c-type-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.c-type-card__num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-brick);
  letter-spacing: 0.06em;
}
.c-type-card h3 { margin-top: 0.6rem; }
.c-type-card p { font-size: 0.96rem; margin: 0; }


.s-about {
  background: var(--c-bg-alt);
  padding: var(--space-xl) 1.5rem;
}
.s-about__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-lg);
  align-items: center;
}
.s-about__image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 100%; object-fit: cover; }

.s-service-detail {
  background: var(--c-bg);
  padding: var(--space-xl) 1.5rem;
}
.s-service-detail__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-lg);
  align-items: center;
}
.s-service-detail__image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.s-service-detail--reverse .s-service-detail__inner { grid-template-columns: 1.1fr 1fr; }
.s-service-detail--reverse .s-service-detail__content { order: 1; }
.s-service-detail--reverse .s-service-detail__image { order: 2; }


.s-blog {
  background: var(--c-bg-alt);
  padding: var(--space-xl) 1.5rem;
}
.s-blog__intro { max-width: 620px; margin: 0 auto var(--space-lg); text-align: center; }
.s-blog__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.c-blog-card {
  background: var(--c-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.c-blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.c-blog-card img { width: 100%; height: 190px; object-fit: cover; }
.c-blog-card__body { padding: 1.4rem; }
.c-blog-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-brick-dark);
  background: var(--c-sand);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.7rem;
}
.c-blog-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.c-blog-card p { font-size: 0.95rem; }
.c-blog-card__link {
  font-weight: 600;
  color: var(--c-forest-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  transition: gap 0.3s ease, color 0.3s ease;
}
.c-blog-card__link:hover { gap: 0.7rem; color: var(--c-brick); }


.c-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.c-modal.is-open { display: flex; }
.c-modal__backdrop { position: absolute; inset: 0; background: rgba(29,37,25,0.6); }
.c-modal__panel {
  position: relative;
  background: var(--c-cream);
  border-radius: var(--radius-lg);
  max-width: 620px;
  width: 100%;
  max-height: 84vh;
  overflow-y: auto;
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
}
.c-modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-sand);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--c-forest-dark);
  transition: background 0.3s ease;
}
.c-modal__close:hover { background: var(--c-brick-light); color: var(--c-cream); }


.s-cta {
  position: relative;
  background: var(--c-forest);
  padding: var(--space-xl) 1.5rem;
  overflow: hidden;
  text-align: center;
}
.s-cta__blob {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: var(--radius-blob);
  background: radial-gradient(circle at 40% 40%, var(--c-forest-light), transparent 70%);
  opacity: 0.5;
  top: -160px; right: -160px;
}
.s-cta__inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.s-cta h2 { color: var(--c-cream); }


.s-page-hero {
  position: relative;
  background: var(--c-bg);
  padding: var(--space-xl) 1.5rem var(--space-lg);
  overflow: hidden;
}
.s-page-hero__blob {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: var(--radius-blob);
  background: radial-gradient(circle at 30% 30%, var(--c-sand), transparent 70%);
  top: -120px; right: -100px;
  opacity: 0.6;
}
.s-page-hero__inner {
  position: relative; z-index: 1;
  max-width: 780px; margin: 0 auto; text-align: center;
}
.s-page-hero__inner p { font-size: 1.1rem; max-width: 60ch; margin: 0 auto; }


.s-audiences {
  background: var(--c-bg);
  padding: 0 1.5rem var(--space-xl);
}
.s-audiences__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.c-audience-card {
  background: var(--c-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.c-audience-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.c-audience-card__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-sand);
  color: var(--c-brick-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.c-audience-card p { font-size: 0.96rem; margin: 0; }


.s-process {
  background: var(--c-bg-alt);
  padding: var(--space-xl) 1.5rem;
}
.s-process__inner { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.2rem; }
.c-step {
  display: flex;
  gap: 1.4rem;
  background: var(--c-cream);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.c-step:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.c-step__num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c-brick);
  flex-shrink: 0;
  width: 60px;
}
.c-step__body h3 { margin-bottom: 0.4rem; }
.c-step__body p { margin: 0; font-size: 0.97rem; }


.s-contact {
  background: var(--c-bg);
  padding: 0 1.5rem var(--space-xl);
}
.s-contact__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}
.c-contact-card {
  background: var(--c-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
}
.c-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.c-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.c-form__group label { font-weight: 600; font-size: 0.92rem; color: var(--c-forest-dark); }
.c-form__group input, .c-form__group textarea {
  font-family: inherit;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--c-line);
  background: var(--c-bg);
  color: var(--c-ink);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  min-height: 44px;
}
.c-form__group input:focus, .c-form__group textarea:focus { outline: none; border-color: var(--c-brick); box-shadow: 0 0 0 4px rgba(193,86,47,0.12); }
.c-form__group textarea { min-height: 120px; resize: vertical; }
.c-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
}
.c-form__checkbox input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--c-brick); flex-shrink: 0; }
.c-form__checkbox a { color: var(--c-brick-dark); font-weight: 600; }
.c-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.c-contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.c-contact-info__item i { width: 44px; height: 44px; border-radius: 50%; background: var(--c-sand); color: var(--c-brick-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-contact-info__item h4 { margin: 0 0 0.3rem; font-size: 1rem; }
.c-contact-info__item p { margin: 0; font-size: 0.94rem; }
.c-contact-info__image { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin-top: 0.5rem; object-fit: cover; height: 200px; width: 100%; }
.s-map {
  max-width: 1100px;
  margin: 0 auto var(--space-xl);
  padding: 0 1.5rem;
}
.s-map iframe { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }


.s-thanks {
  position: relative;
  background: var(--c-bg);
  padding: var(--space-xl) 1.5rem;
  overflow: hidden;
}
.s-thanks__blob {
  position: absolute; width: 420px; height: 420px;
  border-radius: var(--radius-blob);
  background: radial-gradient(circle at 40% 40%, var(--c-sand), transparent 70%);
  top: -140px; left: -140px; opacity: 0.6;
}
.s-thanks__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; text-align: center; }
.c-timeline {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  text-align: left;
}
.c-timeline__item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.c-timeline__dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  background: var(--c-sand);
  color: var(--c-ink-soft);
}
.c-timeline__item.is-done .c-timeline__dot { background: var(--c-forest-light); color: var(--c-cream); }
.c-timeline__item.is-current .c-timeline__dot { background: var(--c-brick); color: var(--c-cream); box-shadow: var(--shadow-md); }
.c-timeline__item.is-upcoming { opacity: 0.55; }
.c-timeline__body h3 { margin-bottom: 0.2rem; font-size: 1.1rem; }
.c-timeline__body p { margin: 0; font-size: 0.94rem; }


.s-legal {
  background: var(--c-bg);
  padding: var(--space-xl) 1.5rem;
}
.s-legal__inner {
  max-width: 780px;
  margin: 0 auto;
}
.s-legal__inner h2 { margin-top: var(--space-md); }
.s-legal__inner p { font-size: 1.02rem; }
.c-legal-updated { font-size: 0.9rem; color: var(--c-ink-soft); margin-bottom: var(--space-md); }


.c-footer {
  background: var(--c-forest-dark);
  color: var(--c-sand);
  margin-top: auto;
}
.c-footer__quote {
  padding: var(--space-xl) 1.5rem var(--space-lg);
  border-bottom: 1px solid rgba(251,247,240,0.1);
}
.c-footer__quote-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.c-footer__quote-inner i { font-size: 1.6rem; color: var(--c-brick-light); margin-bottom: 1rem; }
.c-footer__quote-inner p { color: var(--c-cream); font-size: clamp(1.2rem, 2vw + 0.6rem, 1.6rem); font-weight: 500; line-height: 1.4; }
.c-footer__quote-inner span { display: block; margin-top: 1rem; color: rgba(251,247,240,0.6); font-size: 0.9rem; font-weight: 600; }
.c-footer__main {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-lg) 1.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-md);
}
.c-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.c-footer__col h4 { color: var(--c-cream); font-size: 1rem; margin-bottom: 0.3rem; }
.c-footer__col a, .c-footer__col p { color: rgba(251,247,240,0.7); font-size: 0.94rem; transition: color 0.3s ease; }
.c-footer__col a:hover { color: var(--c-brick-light); }
.c-footer__col p { display: flex; align-items: center; gap: 0.5rem; margin: 0; }
.c-footer__col--brand p { margin-top: 0.4rem; }
.c-footer__col--brand .c-nav__logo { color: var(--c-cream); margin-bottom: 0.3rem; }
.c-footer__bottom {
  text-align: center;
  padding: 1.2rem 1.5rem;
  border-top: 1px solid rgba(251,247,240,0.1);
}
.c-footer__bottom p { margin: 0; font-size: 0.85rem; color: rgba(251,247,240,0.5); }


.c-cookie {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  z-index: 400;
  width: min(340px, calc(100vw - 2.4rem));
  background: var(--c-cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.6rem;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1), opacity 0.5s ease;
}
.c-cookie.is-visible { transform: translateY(0); opacity: 1; }
.c-cookie__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--c-sand);
  color: var(--c-brick-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.c-cookie h4 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.c-cookie p { font-size: 0.9rem; margin-bottom: 1rem; }
.c-cookie__actions { display: flex; flex-direction: column; gap: 0.6rem; }
.c-cookie__toggles {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 0.5rem;
}
.c-cookie__toggles.is-open { max-height: 260px; margin-bottom: 0.8rem; }
.c-cookie__toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-forest-dark);
}
.c-cookie__toggle-row span.u-note { display: block; font-weight: 400; color: var(--c-ink-soft); font-size: 0.8rem; }
.c-cookie__toggle-row input { accent-color: var(--c-brick); width: 20px; height: 20px; }
.c-cookie .c-btn { width: 100%; justify-content: center; font-size: 0.9rem; padding: 0.75rem 1rem; }
.c-cookie__link-btn {
  background: none;
  color: var(--c-forest-dark);
  font-weight: 600;
  font-size: 0.88rem;
  text-align: center;
  min-height: 40px;
  text-decoration: underline;
}


[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }


@media (max-width: 980px) {
  .s-hero__inner { grid-template-columns: 1fr; }
  .s-hero__grid { min-height: 340px; }
  .s-about__inner, .s-service-detail__inner, .s-service-detail--reverse .s-service-detail__inner { grid-template-columns: 1fr; }
  .s-service-detail--reverse .s-service-detail__content { order: 2; }
  .s-service-detail--reverse .s-service-detail__image { order: 1; }
  .s-audiences__inner { grid-template-columns: repeat(2, 1fr); }
  .s-blog__grid { grid-template-columns: repeat(2, 1fr); }
  .s-contact__inner { grid-template-columns: 1fr; }
  .c-footer__main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .c-nav__links, .c-nav__cta { display: none; }
  .c-nav__toggle { display: flex; }
  .s-audiences__inner { grid-template-columns: 1fr; }
  .s-blog__grid { grid-template-columns: 1fr; }
  .c-footer__main { grid-template-columns: 1fr; }
  .s-hero__grid {
    grid-template-columns: 1fr 1fr;
  }
  .c-cookie { right: 0.7rem; left: 0.7rem; width: auto; bottom: 0.7rem; }
}
