@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,700&family=Ropa+Sans:ital@0;1&display=swap');

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/roboto.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/roboto-italic.woff2') format('woff2');
}

:root {
  --accent:        #aed059;
  --accent-dark:   #8fb040;
  --accent-rgb:    174,208,89;
  --text:          #34343c;
  --text-light:    #777;
  --bg:            #fff;
  --bg-light:      #f7f7f7;
  --bg-dark:       #2b2b2b;
  --border:        #e5e5e5;
  --header-bg:     #fff;
  --header-height: 90px;
  --max-w:         1170px;
  --radius:        3px;
  --font:          'Roboto', Arial, sans-serif;
  --font-display:  'Ropa Sans', 'Roboto', Arial, sans-serif;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { font-size: 16px; scroll-behavior: smooth; }
body  { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.75; }
img   { max-width: 100%; height: auto; display: block; }
a     { color: var(--accent-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); text-decoration: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font); font-weight: 500; line-height: 1.3; color: var(--text); }
h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.25rem; }
p  { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }
ul,ol { padding-left: 1.4em; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section    { padding: 70px 0; }
.section-grey { background: var(--bg-light); }

.site-header {
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}
.site-logo        { display: block; line-height: 1; }
.site-logo-img    { height: 56px; width: auto; display: block; }
.site-logo:hover  { opacity: .85; }

.social-links { display: flex; gap: 12px; margin-left: 18px; }
.social-links a {
  width: 34px; height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 13px;
  transition: all .2s;
}
.social-links a:hover { color: #fff; background: var(--accent); border-color: var(--accent); }

.site-nav ul { list-style: none; display: flex; align-items: center; padding: 0; margin: 0; }
.site-nav > ul > li { position: relative; }
.site-nav a {
  display: block;
  padding: 0 15px;
  height: var(--header-height);
  line-height: var(--header-height);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.site-nav a:hover,
.site-nav li.active > a { color: var(--accent); }

.has-dropdown > a::after { content: ' \25BE'; font-size: .75em; opacity: .8; margin-left: 4px; }

.dropdown {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
  border-top: 2px solid var(--accent);
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  pointer-events: none;
}
.dropdown li { width: 100%; list-style: none; }
.has-dropdown.open > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown a { height: auto; line-height: 1.4; padding: 12px 18px; border-bottom: 1px solid var(--border); color: var(--text); font-size: 13px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; }
.dropdown li:last-child a { border-bottom: none; }
.dropdown a:hover { color: var(--accent); background: var(--bg-light); }

.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; padding: 8px; color: var(--text); }

.hero {
  position: relative;
  height: 75vh;
  min-height: 520px;
  overflow: hidden;
  background: #2c2c2c;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.42);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  padding: 20px;
}
.hero-content { position: relative; z-index: 2; max-width: 920px; }
.hero-content .pre-title {
  display: block;
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: .9;
}
.hero-content h1 {
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero-content p {
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0 auto 28px;
}

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: all .2s;
}
.hero-dot:hover { background: rgba(255,255,255,.7); }
.hero-dot.active { background: var(--accent); transform: scale(1.2); }

.page-header {
  background: linear-gradient(135deg, #2c2c2c 0%, #404040 100%);
  border-bottom: 4px solid var(--accent);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/slide-bg1.jpg');
  background-size: cover;
  background-position: center;
  opacity: .15;
  z-index: 0;
}
.page-header > * { position: relative; z-index: 1; }
.page-header h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 2.6rem;
  color: #fff;
  margin-bottom: 0;
}
.page-header h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-top: 16px;
}
.page-header p { color: rgba(255,255,255,.85); margin-top: 14px; max-width: 640px; font-size: 1rem; }

.btn {
  display: inline-block;
  padding: 11px 28px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  text-transform: uppercase;
}
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-white { background: #fff; color: var(--text); border-color: #fff; }
.btn-white:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-white-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-white-outline:hover { background: #fff; color: var(--text); border-color: #fff; }

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 8px;
}
.section-title { font-size: 1.9rem; font-weight: 400; margin-bottom: 14px; }
.section-intro { color: var(--text-light); max-width: 640px; }
.section-divider {
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin: 14px 0 24px;
}
.section-divider.center { margin-left: auto; margin-right: auto; }

.display-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 8px;
}

.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.split-media { position: relative; overflow: hidden; }
.split-media img {
  width: 100%;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,.07);
  transition: transform .6s ease, box-shadow .4s ease;
}

.split-block.split-interactive {
  padding: 16px;
  border-radius: 6px;
  transition: background .35s ease;
  position: relative;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
a.split-block { display: grid; }
.split-block.split-interactive::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 4px;
  height: 60%;
  background: var(--accent);
  transition: transform .35s ease;
  border-radius: 2px;
}
.split-block.split-interactive:hover::before { transform: translateY(-50%) scaleY(1); }
.split-block.split-interactive.split-reverse::before { left: auto; right: 0; }
.split-block.split-interactive:hover .split-media img {
  transform: scale(1.04);
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
}
.split-block.split-interactive:hover .split-text h2 { color: var(--accent-dark); }
.split-text h2 { transition: color .25s ease; }
.split-media-inset {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 45% !important;
  border: 4px solid #fff !important;
  box-shadow: 0 12px 28px rgba(0,0,0,.18) !important;
}
@media (max-width: 768px) {
  .split-block { grid-template-columns: 1fr; gap: 36px; }
  .split-reverse { direction: ltr; }
  .split-media-inset { display: none; }
}

.intro-block {
  max-width: 920px;
  margin: 0 auto;
}

.info-strip-section { background: var(--bg-light); padding: 48px 0; }
.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.info-strip-item {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.info-strip-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 10px;
  transition: transform .25s ease;
}
.info-strip-item:hover .info-strip-icon { transform: scale(1.08); }
.info-strip-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.info-strip-value { font-size: 1rem; line-height: 1.6; color: var(--text); }
.info-strip-value a { color: var(--text); }
.info-strip-value a:hover { color: var(--accent); }
@media (max-width: 700px) { .info-strip { grid-template-columns: 1fr; gap: 12px; } }

.testimonial-section { background: var(--bg); }
.testimonial {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-photo img {
  width: 100%;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
  aspect-ratio: 1;
  object-fit: cover;
}
.testimonial-text { position: relative; padding-left: 18px; }
.testimonial-mark {
  font-size: 2.2rem;
  color: var(--accent);
  opacity: .35;
  margin-bottom: 4px;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 16px;
}
.testimonial-author {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .9rem;
  color: var(--text);
  margin-bottom: 2px;
}
.testimonial-role {
  font-size: .85rem;
  color: var(--text-light);
  margin-bottom: 0;
}
@media (max-width: 700px) {
  .testimonial { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .testimonial-photo { max-width: 180px; margin: 0 auto; }
  .testimonial-text { padding-left: 0; }
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 44px;
  align-items: stretch;
}
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 40px 30px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card > .btn { margin-top: auto !important; align-self: flex-start; }
.card:hover { box-shadow: 0 10px 30px rgba(0,0,0,.10); transform: translateY(-4px); border-color: rgba(174,208,89,.4); }
.card:hover .card-icon { transform: scale(1.08); color: var(--accent-dark); }
.card-accent { border-top: 3px solid var(--accent); }
.card h3 { margin-bottom: 12px; color: var(--text); font-weight: 600; }
.card p  { color: var(--text-light); font-size: .95rem; margin-bottom: 24px; }
.card-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  color: var(--accent);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(174,208,89,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s, color .25s;
}

.two-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}
.stage-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  padding: 70px 30px 30px;
  position: relative;
  text-align: center;
  transition: box-shadow .3s, transform .3s;
}
.stage-card:hover { box-shadow: 0 14px 36px rgba(0,0,0,.08); transform: translateY(-4px); }
.stage-image {
  position: absolute;
  top: -56px;
  left: 50%;
  transform: translateX(-50%);
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
}
.stage-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.stage-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 10px;
  display: block;
}
.stage-card h3 { margin-bottom: 14px; font-weight: 600; }
.stage-card p  { color: var(--text-light); font-size: .93rem; margin-bottom: .8em; text-align: left; }

.steps-list { list-style: none; padding: 0; margin-top: 24px; counter-reset: steps; }
.steps-list li {
  counter-increment: steps;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: .95rem;
  color: var(--text-light);
}
.steps-list li::before {
  content: counter(steps);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 700;
  margin-top: 2px;
}

.faq-list    { margin-top: 32px; }
.faq-item    { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-question:hover { color: var(--accent); }
.faq-question.open  { color: var(--accent); }
.faq-toggle { font-size: 1.4rem; line-height: 1; transition: transform .2s; flex-shrink: 0; color: var(--accent); }
.faq-question.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: .93rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 760px;
}
.faq-answer.open { display: block; }

.collapsible {
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  background: #fff;
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.collapsible[open] { box-shadow: 0 6px 20px rgba(0,0,0,.08); }
.collapsible summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text);
  list-style: none;
  transition: background .2s;
}
.collapsible summary::-webkit-details-marker { display: none; }
.collapsible summary:hover { background: var(--bg-light); color: var(--accent-dark); }
.collapsible-title { letter-spacing: 1px; text-transform: uppercase; font-size: .95rem; }
.collapsible-toggle { color: var(--accent); transition: transform .25s ease; font-size: 1rem; }
.collapsible[open] .collapsible-toggle { transform: rotate(180deg); }
.collapsible-body {
  padding: 4px 22px 22px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.collapsible-body p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 14px;
  padding-left: 14px;
  border-left: 2px solid var(--border);
}
.collapsible-body p:last-child { margin-bottom: 0; }
.collapsible-body strong { color: var(--text); font-weight: 700; }

.photo-gallery,
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  margin: 36px 0;
}
.photo-gallery img,
.gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border: 1px solid var(--border);
  cursor: zoom-in;
  transition: transform .25s ease, box-shadow .25s ease, opacity .2s;
}
.photo-gallery img:hover,
.gallery img:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,.18); opacity: .95; }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 40px;
}
.lightbox.open { display: flex; animation: lb-fade .2s ease; }
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox-figure {
  position: relative;
  max-width: 92vw;
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border: 1px solid rgba(255,255,255,.15);
}
.lightbox-caption {
  color: rgba(255,255,255,.85);
  font-size: .92rem;
  margin-top: 12px;
  text-align: center;
  max-width: 700px;
}
.lightbox-counter {
  position: absolute;
  top: -32px;
  right: 0;
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  letter-spacing: 1px;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev  { top: 50%; left: 24px;  transform: translateY(-50%); }
.lightbox-next  { top: 50%; right: 24px; transform: translateY(-50%); }
.lightbox-close:hover { background: var(--accent); border-color: var(--accent); }
.lightbox-prev:hover,
.lightbox-next:hover  { background: var(--accent); border-color: var(--accent); }
.lightbox-prev:hover  { transform: translateY(-50%) scale(1.06); }
.lightbox-next:hover  { transform: translateY(-50%) scale(1.06); }

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0;
}
.about-images img { width: 100%; height: auto; border: 1px solid var(--border); }

.post-image { width: 100%; height: auto; margin: 20px 0; border: 1px solid var(--border); }
.post-image-caption { font-size: .82rem; color: var(--text-light); margin-top: -12px; margin-bottom: 20px; font-style: italic; }

.hero-video-wrap {
  position: relative;
  overflow: hidden;
  background: #111;
}
.hero-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
}

.page-header-video {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: linear-gradient(135deg, #2c2c2c 0%, #404040 100%);
  border-bottom: 4px solid var(--accent);
}
.page-header-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .38;
}
.page-header-video-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 1;
  padding: 0 20px;
}
.page-header-video h1 {
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 2.6rem;
  margin: 0;
}
.page-header-video h1::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-top: 16px;
}
.page-header-video p  { color: rgba(255,255,255,.85); margin-top: 14px; max-width: 640px; }

.content-section { max-width: 820px; }

.blog-grid    { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 40px; }
.blog-card    {
  display: grid;
  grid-template-columns: 280px 1fr;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
  background: #fff;
}
.blog-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.10); transform: translateY(-2px); }
.blog-card-img {
  background: var(--bg-light);
  min-height: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-img-placeholder { color: var(--text-light); font-size: .8rem; text-align: center; padding: 20px; }
.blog-card-body { padding: 32px; }
.blog-date {
  font-size: .75rem;
  color: var(--accent-dark);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-card-body h2 { font-size: 1.4rem; font-weight: 600; margin-bottom: 12px; }
.blog-card-body h2 a { color: var(--text); transition: color .2s; }
.blog-card-body h2 a:hover { color: var(--accent); }
.blog-card-body p  { font-size: .93rem; color: var(--text-light); margin-bottom: 16px; line-height: 1.7; }
.read-more {
  font-size: .78rem;
  color: var(--accent-dark);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.read-more::after { content: ' \2192'; transition: margin-left .2s; }
.read-more:hover::after { margin-left: 6px; }

.blog-post-wrap { max-width: 780px; margin: 0 auto; padding: 56px 20px 80px; }
.blog-post-meta {
  font-size: .78rem;
  color: var(--accent-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.blog-post-wrap h2 { margin: 36px 0 14px; font-weight: 600; }
.blog-post-wrap p  { margin-bottom: 1.3em; font-size: 1.05rem; line-height: 1.8; }
.blog-post-wrap img { margin: 28px auto; border: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.back-link {
  display: inline-block;
  margin-bottom: 24px;
  font-size: .78rem;
  color: var(--text-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  transition: color .2s, transform .2s;
}
.back-link:hover { color: var(--accent); transform: translateX(-3px); }

.about-profile  { display: grid; grid-template-columns: 240px 1fr; gap: 52px; align-items: start; }
.about-photo    { border: 1px solid var(--border); overflow: hidden; background: var(--bg-light); }
.about-photo img { width: 100%; height: auto; display: block; }
.about-photo-placeholder { padding: 60px 20px; text-align: center; color: var(--text-light); font-size: .85rem; }
.credentials-list { list-style: none; padding: 0; margin-top: 14px; }
.credentials-list li { padding: 9px 0; border-bottom: 1px solid var(--border); font-size: .9rem; line-height: 1.5; }
.credentials-list li:last-child { border-bottom: none; }
.credentials-list strong { color: var(--text); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 52px; align-items: start; margin-top: 48px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.contact-icon {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .95rem;
  color: #fff;
}
.contact-item-text        { line-height: 1.5; }
.contact-item-text strong { display: block; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--text-light); margin-bottom: 2px; }
.contact-item-text a      { color: var(--text); }
.contact-item-text a:hover{ color: var(--accent); }

.contact-form-box { background: var(--bg-light); border: 1px solid var(--border); padding: 36px; }
.form-group       { margin-bottom: 20px; }
.form-group label { display: block; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-light); margin-bottom: 7px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  font-family: var(--font);
  font-size: .95rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .8rem; color: var(--text-light); margin-top: 12px; }

.affil-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 48px;
  align-items: center;
  justify-content: center;
  padding: 36px 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fafafa;
}
.affil-strip img { height: 44px; width: auto; filter: grayscale(100%); opacity: .55; transition: all .25s; }
.affil-strip a:hover img { filter: none; opacity: 1; transform: scale(1.04); }
.affil-strip a { display: flex; align-items: center; }

.cta-band {
  background: linear-gradient(135deg, #2b2b2b 0%, #1f1f1f 100%);
  color: #fff;
  padding: 72px 20px;
  text-align: center;
  position: relative;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent);
}
.cta-band h2 {
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.cta-band p  { color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto 28px; }

.site-footer {
  background-color: #1f1f1f;
  background-image:
    linear-gradient(135deg, rgba(31,31,31,.93) 0%, rgba(43,43,43,.93) 100%),
    url('/assets/images/slide-bg2.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: rgba(255,255,255,.78);
  padding: 64px 0 0;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-heading {
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}
.footer-section p,
.footer-section li { font-size: .9rem; line-height: 1.8; color: rgba(255,255,255,.7); }
.footer-section ul { list-style: none; padding: 0; }
.footer-section ul li { margin-bottom: 8px; }
.footer-section a { color: rgba(255,255,255,.7); transition: color .2s, padding-left .2s; }
.footer-section a:hover { color: var(--accent); }
.footer-section ul li a { display: inline-block; }
.footer-section ul li a::before { content: '\203A'; margin-right: 8px; color: var(--accent); }
.footer-section ul li a:hover { padding-left: 4px; }
.footer-logo { height: 44px; width: auto; margin-bottom: 18px; filter: brightness(10); opacity: .85; }

.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; font-size: .9rem; color: rgba(255,255,255,.7); }
.footer-contact-item a { color: rgba(255,255,255,.7); }
.footer-contact-item a:hover { color: var(--accent); }

.footer-affiliations {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-affiliations .footer-heading { font-size: .7rem; letter-spacing: 2px; margin-bottom: 14px; }
.footer-affiliations-row { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-affiliations-row a {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.18);
  padding: 4px 10px;
  border-radius: 2px;
  transition: all .2s;
}
.footer-affiliations-row a:hover { color: var(--accent); border-color: var(--accent); }
.footer-disclaimer { font-size: .8rem; color: rgba(255,255,255,.4); font-style: italic; margin-top: 14px; }
.footer-disclaimer a { color: rgba(255,255,255,.6); text-decoration: underline; }
.footer-disclaimer a:hover { color: var(--accent); }

.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  transition: all .25s;
}
.footer-social a:hover { color: #fff; border-color: var(--accent); background: var(--accent); transform: translateY(-2px); }
.footer-contact-item i.fa { color: var(--accent); width: 18px; text-align: center; flex-shrink: 0; margin-top: 4px; }

.footer-affiliations-strip {
  background: #232323;
  padding: 26px 20px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer-affiliations-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  align-items: center;
  justify-content: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-affiliations-strip img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .45;
  transition: opacity .25s;
}
.footer-affiliations-strip a:hover img { opacity: 1; }

.footer-disclaimer { font-size: .78rem; color: rgba(255,255,255,.35); font-style: italic; margin-top: 10px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.reveal-in { opacity: 1; transform: none; }
.reveal.reveal-left  { transform: translateX(-24px); }
.reveal.reveal-right { transform: translateX(24px); }
.reveal.reveal-left.reveal-in,
.reveal.reveal-right.reveal-in { transform: none; }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

.text-center  { text-align: center; }
.text-accent  { color: var(--accent); }
.mt-8  { margin-top:  8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .two-stage { grid-template-columns: 1fr; }
}
@media (max-width: 1199px) {
  .hero-content h1 { font-size: 3rem; }
  .hero-content p  { font-size: 1.3rem; }
}
@media (max-width: 991px) {
  .hero-content h1 { font-size: 2.4rem; }
  .hero-content p  { font-size: 1.1rem; }
}
@media (max-width: 768px) {
  :root { --header-height: 70px; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  .hero-content h1 { font-size: 1.8rem; }
  .hero-content p  { font-size: 1rem; }
  .nav-toggle  { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
  }
  .site-nav.open        { display: block; }
  .site-nav ul          { flex-direction: column; }
  .site-nav a           { height: auto; line-height: 1; padding: 14px 20px; border-bottom: 1px solid var(--border); }
  .dropdown { position: static; box-shadow: none; border-top: none; background: var(--bg-light); transform: none; transition: none; visibility: visible; opacity: 1; pointer-events: auto; display: none; }
  .has-dropdown.open > .dropdown { display: block; }
  .has-dropdown > a::after { content: ' \25BE'; }
  .blog-card    { grid-template-columns: 1fr; }
  .about-profile { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
}
@media (max-width: 480px) {
  .hero { height: 60vh; }
  .section { padding: 48px 0; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}
