/* Smooth page transition for main content */
.site-content {
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(.4,0,.2,1);
}
.site-content.fade-out {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(.4,0,.2,1);
}
.site-content.fade-in {
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(.4,0,.2,1);
}
.top__link, #contactBtn, #themeToggle {
  background: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  color: var(--nav-btn-color, inherit);
  font: inherit;
  cursor: pointer;
  padding: 0 8px;
  min-width: unset;
  min-height: unset;
  transition: none;
}
.top__link:focus, #contactBtn:focus, #themeToggle:focus,
.top__link:active, #contactBtn:active, #themeToggle:active {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  background: none !important;
}
#themeToggle {
  font-size: 1.2em;
  padding: 0 8px;
  background: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  vertical-align: middle;
}
#themeToggle img, #themeToggle svg {
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}
.album-large-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 120px;
  margin: 24px 0 16px 0;
}
.album-large-image {
  display: block;
  max-width: 90vw;
  max-height: 70vh;
  width: auto;
  height: auto;
  object-fit: contain;
  background: #18191c;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
}
.album-thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 0 0 12px 0;
}
.album-thumbnails img {
  width: 64px;
  height: 48px;
  object-fit: contain;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.7;
  border: 2px solid transparent;
  background: #18191c;
  transition: opacity 0.2s, border 0.2s;
}
.album-thumbnails img.active, .album-thumbnails img:hover {
  opacity: 1;
  border: 2px solid #6cf;
}
.album-desc {
  color: #b6c9df;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  text-align: center;
}
.gallery-album-desc {
  font-size: 0.98rem;
  color: #b6c9df;
  margin-top: 4px;
  margin-bottom: 2px;
  line-height: 1.4;
  min-height: 32px;
}
/* --- Gallery Section --- */
.gallery-section {
  width: 100%;
  margin: 0;
  padding: 64px 0 32px 0;
}
.gallery-albums {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.gallery-album {
  background: var(--card-bg, #23242a);
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
  padding: 16px 16px 8px 16px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  width: 180px;
  position: relative;
}
.gallery-album:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.16);
}
.gallery-thumb {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
}
.gallery-album-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text, #fff);
}

/* Gallery Modal */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 1002;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.65);
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  opacity: 0;
}
.gallery-modal.show {
  display: flex;
}
.gallery-modal.visible {
  opacity: 1;
}
    .gallery-modal-content {
      background: var(--card-bg, #23242a);
      border-radius: 18px;
      padding: 16px 16px 12px 16px;
      max-width: 98vw;
      max-height: 98vh;
      width: auto;
      height: auto;
      box-shadow: 0 8px 40px 0 rgba(0,0,0,0.22);
      position: relative;
      animation: galleryPopIn 0.32s cubic-bezier(.4,0,.2,1);
      transition: width 0.3s, max-width 0.3s, padding 0.3s, height 0.3s;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      overflow: auto;
    }
    /* .gallery-siema and .gallery-slide-img removed: no slider, no scrolling, no overflow */
  @media (max-width: 1100px) {
    .gallery-modal-content {
      max-width: 99vw;
      max-height: 99vh;
      padding: 8px 1vw 8px 1vw;
    }
  }
  @media (max-width: 600px) {
    .gallery-modal-content {
      max-width: 100vw;
      max-height: 100vh;
      padding: 4px 0 4px 0;
    }
  }
@keyframes galleryPopIn {
  0% { transform: scale(0.92) translateY(40px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
#closeGalleryModal {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 2rem;
  color: #6cf;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 2;
  transition: color 0.2s;
}
#closeGalleryModal:hover {
  color: #fff;
}
/* .gallery-slider-group, .gallery-siema, .gallery-slide-img, .gallery-slider-controls removed: no slider, no scrolling */
/* .gallery-thumbnails and .gallery-thumb-mini replaced by .album-thumbnails and .album-thumbnails img for clean, non-scrolling, non-cropping layout */
@media (max-width: 600px) {
  .gallery-albums {
    gap: 16px;
  }
  .gallery-album {
    width: 44vw;
    min-width: 120px;
    padding: 10px 6px 6px 6px;
  }
  .gallery-thumb {
    height: 70px;
  }
  .gallery-modal-content {
    width: 98vw;
    padding: 16px 2vw 12px 2vw;
  }
  /* .gallery-siema, .gallery-slide-img, .gallery-thumb-mini removed for clean album */
}
/* Responsive improvements for phone and tablet */
@media (max-width: 900px) {
  .top {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0 8px 0;
    gap: 12px;
  }
  .top__right {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }
  .top .links {
    flex-direction: row;
    gap: 16px;
    width: 100%;
  }
  .top__link, .top__cta, #themeToggle {
    font-size: 1.1rem;
    padding: 10px 0;
    min-width: 44px;
    min-height: 44px;
  }
  .bio-section {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .bio-image, .bio-text {
    width: 100%;
  }
  .overview {
    font-size: 2.2rem;
    line-height: 2.7rem;
    text-align: left;
    margin: 0 0 16px 0;
  }
  div.boxed {
    padding: 0 8px;
    max-width: 100vw;
  }
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 24px 0;
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .top {
    padding: 8px 0 4px 0;
  }
  .top__avatar {
    width: 36px;
    height: 36px;
  }
  .top__brand {
    font-size: 1rem;
  }
  .top__link, .top__cta, #themeToggle {
    font-size: 1rem;
    padding: 8px 0;
    min-width: 40px;
    min-height: 40px;
  }
  .overview {
    font-size: 1.5rem;
    line-height: 2rem;
    margin: 0 0 12px 0;
  }
  div.boxed {
    padding: 0 4px;
    max-width: 100vw;
  }
  .bio-section {
    gap: 16px;
  }
  .site-footer {
    padding: 16px 0;
    font-size: 0.9rem;
  }
  .slider-controls {
    gap: 8px;
    font-size: 0.95rem;
  }
}

/* Fade content transition */
.site-content.fade-out {
  opacity: 0;
  transition: opacity 0.32s cubic-bezier(.4,0,.2,1);
}
.site-content.fade-in {
  opacity: 1;
  transition: opacity 0.32s cubic-bezier(.4,0,.2,1);
}
html, body {
  background: #191b1f !important;
}
body.scheme-daylight, html.scheme-daylight {
  background: #f7f8fa !important;
}
.top__link.active {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  letter-spacing: 0.2px;
  transition: color 0.3s;
}
body.scheme-daylight, body.scheme-midnight {
  transition: background 0.5s, color 0.5s;
}
body, .contact-container, .modal-content, .contact-section, .top, .site-footer {
  transition: background 0.5s, color 0.5s, border-color 0.5s;
}
/* Fix email input color and autofill for dark mode */
input[type="email"], input[type="email"]:focus, input[type="email"]:active {
  color: #f5f6fa !important;
  background: #191b1f !important;
  border-color: #2e3138;
}
input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-text-fill-color: #f5f6fa !important;
  box-shadow: 0 0 0 1000px #191b1f inset !important;
  background-color: #191b1f !important;
  border-color: #2e3138 !important;
  transition: background-color 5000s ease-in-out 0s;
}
/* Responsive Contact Section Styles using CSS variables for theme */
.contact-section {
  background: var(--contact-bg, var(--background));
  color: var(--contact-text, var(--text));
  padding: 64px 0 80px 0;
  text-align: center;
  transition: background 0.5s, color 0.5s;
}
.contact-container {
  max-width: 420px;
  margin: 0 auto;
  padding: 40px 32px 32px 32px;
  border-radius: 18px;
  background: var(--contact-card-bg, var(--card-bg, var(--background-secondary, #fff)));
  box-shadow: 0 6px 32px 0 rgba(0,0,0,0.10);
  border: 1px solid var(--contact-card-border, var(--border, #e0e0e0));
  transition: background 0.5s, color 0.5s, border-color 0.5s;
}
.contact-container h2 {
  margin-bottom: 28px;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -1px;
}
.form-group {
  margin-bottom: 22px;
  text-align: left;
}
.form-group label {
  display: block;
  margin-bottom: 7px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--contact-label, var(--text-secondary, #555));
  transition: color 0.5s;
}
.form-group label span {
  color: #6cf;
  margin-left: 2px;
}
input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--contact-input-border, var(--border, #e0e0e0));
  border-radius: 8px;
  background: var(--contact-input-bg, var(--background, #fff));
  color: var(--contact-input-text, var(--text, #222));
  font-size: 1rem;
  margin-bottom: 2px;
  transition: border 0.2s, background 0.5s, color 0.5s;
  outline: none;
  box-shadow: none;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border: 1.5px solid #6cf;
}
textarea {
  min-height: 90px;
  resize: vertical;
}
.contact-submit-btn {
  background: linear-gradient(90deg, #6cf 0%, #4ab8e6 100%);
  color: #1c191f;
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  width: 100%;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(76,207,255,0.08);
  transition: background 0.2s, color 0.2s;
  margin-top: 8px;
  letter-spacing: 0.5px;
}
.contact-submit-btn:hover {
  background: linear-gradient(90deg, #4ab8e6 0%, #6cf 100%);
  color: #191b1f;
}
.contact-notification {
  position: fixed;
  left: 50%;
  bottom: 48px;
  transform: translateX(-50%);
  background: var(--contact-card-bg, var(--card-bg, var(--background-secondary, #fff)));
  color: #6cf;
  padding: 18px 36px;
  border-radius: 12px;
  box-shadow: 0 4px 24px 0 rgba(76,207,255,0.10);
  font-size: 1.1rem;
  font-weight: 600;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.5s, color 0.5s;
  display: block;
}
.contact-notification.show {
  opacity: 1;
  pointer-events: auto;
}

/* Light/Dark mode variables for contact section */
body.scheme-daylight {
    --nav-btn-color: #181a1b;
  --background: #f7f8fa;
  --text: #181a1b;
  --text-secondary: #555;
  --card-bg: #fff;
  --background-secondary: #f7f8fa;
  --border: #e0e0e0;
  --contact-bg: #f7f8fa;
  --contact-text: #181a1b;
  --contact-card-bg: #fff;
  --contact-card-border: #e0e0e0;
  --contact-label: #555;
  --contact-input-bg: #fff;
  --contact-input-text: #181a1b;
  --contact-input-border: #e0e0e0;
}
body.scheme-midnight {
    --nav-btn-color: #f5f6fa;
  --background: #191b1f;
  --text: #f5f6fa;
  --text-secondary: #bfc7d5;
  --card-bg: #23252b;
  --background-secondary: #191b1f;
  --border: #23252b;
  --contact-bg: #191b1f;
  --contact-text: #f5f6fa;
  --contact-card-bg: #23252b;
  --contact-card-border: #23252b;
  --contact-label: #bfc7d5;
  --contact-input-bg: #191b1f;
  --contact-input-text: #f5f6fa;
  --contact-input-border: #2e3138;
}
/* Minimal Contact Section Styles */
.contact-section {
  background: #181a1b;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.contact-container {
  max-width: 400px;
  margin: 0 auto;
  padding: 32px 24px;
  border-radius: 12px;
  background: #222325;
  box-shadow: 0 4px 32px rgba(0,0,0,0.1);
}
.contact-container h2 {
  margin-bottom: 24px;
  font-size: 2rem;
}
.form-group {
  margin-bottom: 18px;
  text-align: left;
}
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}
.form-group label span {
  color: #6cf;
  margin-left: 2px;
}
input[type="text"], textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #333;
  border-radius: 6px;
  background: #181a1b;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 4px;
  resize: none;
}
textarea {
  min-height: 80px;
}
button[type="submit"] {
  background: #6cf;
  color: #181a1b;
  border: none;
  border-radius: 6px;
  padding: 10px 24px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
button[type="submit"]:hover {
  background: #4ab8e6;
}
#formMessage {
  margin-top: 18px;
  color: #6cf;
  font-weight: 500;
}
/* Modal Styles with smooth transition and theme support */
.modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(0,0,0,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1);
}
.modal.show {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  background: var(--modal-bg, #181a1b);
  color: var(--modal-text, #fff);
  margin: 10% auto;
  padding: 32px 24px;
  border-radius: 12px;
  max-width: 400px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
  position: relative;
  text-align: center;
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.35s cubic-bezier(.4,0,.2,1), transform 0.35s cubic-bezier(.4,0,.2,1), background 0.5s, color 0.5s;
}
.modal.show .modal-content {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.modal-content a {
  color: #6cf;
  text-decoration: underline;
}
.close {
  position: absolute;
  top: 12px;
  right: 18px;
  color: var(--modal-text, #fff);
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
}
.close:hover {
  color: #6cf;
}

body.scheme-daylight {
  --modal-bg: #fff;
  --modal-text: #181a1b;
}
body.scheme-midnight {
  --modal-bg: #181a1b;
  --modal-text: #fff;
}
@charset "UTF-8";
/* ------------------------------------------------------------------------------- */
/* Reset */
/* ------------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  /* scroll-behavior removed: no scrolling allowed */
  color: #000;
}

/* .siema, .slider-controls, .slider-heading removed: no slider, no scrolling */
/* Clean, non-scrolling, non-cropping gallery modal styles for album */
.gallery-modal .album-large-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 18px;
}
.gallery-modal .album-large-image {
  max-width: 90vw;
  max-height: 70vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  background: #222;
}
.gallery-modal .album-thumbnails {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}
.gallery-modal .gallery-thumb-mini {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 6px;
  border: 2px solid transparent;
  background: #222;
  cursor: pointer;
  transition: border 0.2s;
}
.gallery-modal .gallery-thumb-mini.active {
  border: 2px solid #4fa3ff;
}
.gallery-modal .album-large-image,
.gallery-modal .gallery-thumb-mini {
  box-sizing: border-box;
}
.gallery-modal .modal-content {
  background: var(--background, #181a1f);
  border-radius: 12px;
  padding: 32px 24px 24px 24px;
  max-width: 98vw;
  max-height: 98vh;
  overflow: visible !important;
}
.gallery-modal {
  overflow: visible !important;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.5;
  letter-spacing: -0.5px;
  font-style: normal;
  font-weight: 400;
}

.bio-section, .site-footer, section, .top {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 600px) {
  .bio-section, .site-footer, section, .top {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.bio-section, .site-footer, div.boxed, .eyebrow, .top {
  width: 100%;
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1100px) {
  .bio-section, .site-footer, div.boxed, .eyebrow, .top {
    width: calc(100% - 80px);
  }
}
.overview {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial, div.boxed blockquote, div.boxed p,
div.boxed h2 {
  width: 100%;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ------------------------------------------------------------------------------- */
/* Global styles */
/* ------------------------------------------------------------------------------- */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  html {
    font-size: 14px;
  }
}

body {
  padding: 0;
  margin: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*, *::before, *::after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

a img {
  vertical-align: top;
}

p {
  margin: 0 0 10px 0;
}

li {
  list-style: none;
}

*:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

hr {
  border: none;
  height: 1px;
  display: block;
  margin: 40px 0;
  border-bottom: 2px dotted;
}

b, strong {
  font-style: normal;
  font-weight: 600;
}

del {
  text-decoration: line-through;
}

blockquote {
  margin: 40px 0 40px 0;
  padding: 0 20px 0 20px;
  border-left: 1px solid;
}
blockquote a {
  text-decoration: underline;
}

i, em {
  font-style: italic;
}

pre code {
  display: block;
  padding: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}

textarea,
input,
button,
select {
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* ------------------------------------------------------------------------------- */
/* Header (logo + nav) */
/* ------------------------------------------------------------------------------- */
.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top__left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
@media (max-width: 600px) {
  .top__avatar {
    width: 40px;
    height: 40px;
  }
}
.top__brand {
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.1;
}
@media (min-width: 900px) {
  .top__brand {
    font-size: 2.7rem;
  }
}
.top__right {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 600px) {
  .top__right {
    gap: 20px;
  }
}
.top .links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.top__link {
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s ease-in, border-color 0.2s ease-in;
}
.top__link:hover {
  transition: color 0.1s ease-out, border-color 0.1s ease-out;
}
.top__cta {
  padding: 4px 16px;
  border-radius: 999px;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  transition: color 0.3s;
}
.top__cta .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  margin-left: 0.25em;
}
.top__cta:hover .arrow {
  transform: translateX(3px);
}

/* ------------------------------------------------------------------------------- */
/* Intros with big type */
/* ------------------------------------------------------------------------------- */
.eyebrow {
  display: block;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  text-align: center;
}
@media (max-width: 600px) {
  .eyebrow {
    text-align: left;
    margin-left: 0;
  }
}

.overview {
  font-size: 4rem;
  letter-spacing: -0.1875rem;
  line-height: 4.4rem;
  text-align: center;
}
@media (max-width: 600px) {
  .overview {
    text-align: left;
    font-size: 3.2rem;
    letter-spacing: -0.0375rem;
    line-height: 3.52rem;
  }
}

/* ------------------------------------------------------------------------------- */
/* Page sections */
/* ------------------------------------------------------------------------------- */
section {
  width: 100%;
  margin: 0;
}
section p {
  margin-bottom: 40px;
}
section p a {
  text-decoration: underline;
}
section hr {
  border: none;
  height: 160px;
}
@media (max-width: 600px) {
  section hr {
    height: 80px;
  }
}

div.boxed img {
  width: 100%;
  max-width: 1020px;
  border-radius: 12px;
}
div.boxed p,
div.boxed h2 {
  font-size: 1.25rem;
  letter-spacing: -0.05rem;
  line-height: 2rem;
}
div.boxed h2 {
  margin-top: 40px;
  margin-bottom: 40px;
}
div.boxed blockquote {
  font-size: 1rem;
  line-height: 1.5rem;
}
div.boxed blockquote p {
  font-size: 1rem;
  line-height: 1.5rem;
}
div.boxed p a {
  transition: color 0.2s ease-in, border-color 0.2s ease-in;
}
div.boxed p a:hover {
  transition: color 0.1s ease-out, border-color 0.1s ease-out;
}

/* ------------------------------------------------------------------------------- */
/* Footers */
/* ------------------------------------------------------------------------------- */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  font-size: 1rem;
  flex-wrap: wrap;
}

.site-footer a {
  text-decoration: underline;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-left,
.footer-right {
  margin: 0.5rem 0;
}

/* ------------------------------------------------------------------------------- */
/* Portfolios */
/* ------------------------------------------------------------------------------- */
.siema-wrapper {
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
}

.siema {
  margin: 0;
  display: flex;
}
.siema > div {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  align-items: flex-start;
}
.siema img {
  display: block;
  vertical-align: top;
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 0 !important;
}

.slider-controls {
  font-size: 1rem;
  letter-spacing: -0.1rem;
  line-height: 1.5rem;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 16px;
}
.slider-controls button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  font-size: 1.1em;
  display: inline;
  border-radius: 0;
  cursor: pointer;
  outline: none;
  position: relative;
  margin: 0 4px;
  padding: 0;
}
.slider-controls button::after {
  content: "";
  display: block;
  border-bottom: 2px solid #bbb;
  width: 100%;
  margin-top: 2px;
  transition: border-color 0.2s;
}
.slider-controls button:hover::after, .slider-controls button:focus::after {
  border-bottom-color: #888;
}
.slider-controls button:hover, .slider-controls button:focus {
  color: #222;
}

div.boxed .slider-heading {
  margin-top: 0;
}

a.cta-project {
  font-size: 1rem;
  line-height: 1rem;
  text-decoration: none;
  border: 1px solid;
  border-radius: 999px;
  padding: 2px 8px;
  transition: color 0.2s ease-in, border-color 0.2s ease-in;
}
a.cta-project:hover {
  transition: color 0.1s ease-out, border-color 0.1s ease-out;
}

/* ------------------------------------------------------------------------------- */
/* Testimonials */
/* ------------------------------------------------------------------------------- */
.testimonial {
  border-radius: 12px;
  padding: 80px 40px;
  text-align: center;
  margin-bottom: 40px;
}
.testimonial blockquote {
  border-left: none;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 1rem;
  line-height: 2rem;
  margin: 0 0 2rem;
  font-style: normal;
  quotes: "“" "”" "‘" "’";
}
.testimonial blockquote p {
  font-size: 1rem;
  line-height: 1.5rem;
}
.testimonial blockquote p::before {
  content: open-quote;
}
.testimonial blockquote p::after {
  content: close-quote;
}
.testimonial figcaption {
  font-size: 1rem;
}
.testimonial figcaption strong {
  font-weight: normal;
}
/* ------------------------------------------------------------------------------- */
/* Bios, Info, About section */
/* ------------------------------------------------------------------------------- */
.bio-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.bio-image {
  width: 100%;
}
@media (min-width: 1100px) {
  .bio-image {
    width: 48%;
  }
}
.bio-image img {
  width: 100%;
  border-radius: 12px;
}

.bio-text {
  width: 100%;
  font-size: 1.6875rem;
  line-height: 2rem;
}
@media (min-width: 1100px) {
  .bio-text {
    width: 48%;
  }
}

.highlight {
  text-decoration: underline;
}

.bio-links {
  display: flex;
  gap: 3rem;
  font-size: 1.25rem;
  line-height: 2rem;
  flex-wrap: wrap;
}
.bio-links ul {
  list-style: none;
  padding: 0;
}
.bio-links ul li {
  margin-bottom: 8px;
}
.bio-links a {
  text-decoration: none;
  position: relative;
}
.bio-links a::before {
  content: "→";
  margin-right: 0.5rem;
  display: inline-block;
  transition: transform 0.3s ease;
}
.bio-links a:hover {
  text-decoration: none;
}
.bio-links a:hover::before {
  transform: translateX(3px);
}
