@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap");
* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
  background: linear-gradient(160deg, #f8f4ee 0%, #ebe6df 50%, #f5f0ea 100%);
  background-attachment: fixed;
}

body {
  overflow-x: hidden;
  max-width: 100%;
  background: linear-gradient(160deg, #f8f4ee 0%, #ebe6df 50%, #f5f0ea 100%);
  background-attachment: fixed;
}
body.menu-open {
  overflow: hidden;
}

body,
span,
.main-search-bar {
  font-family: "Syne", sans-serif;
}

.home-screen {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 56px;
  box-sizing: border-box;
  background: transparent;
}
.home-screen .container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.logo-container {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 30px auto 0;
  padding-bottom: 30px;
}
.logo-container .logo-stage {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.logo-container .logo-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.28) 50%, transparent 62%);
  transform: translateX(-130%);
  pointer-events: none;
  opacity: 0;
}
.logo-container .logo-stage.logo-intro::after {
  opacity: 1;
  animation: logo-shimmer 1s ease 0.7s forwards;
}
.logo-container .logo-final {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: contain;
  will-change: transform, filter, opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.logo-container .logo-final.logo-intro {
  animation: logo-reveal 1.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes logo-reveal {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(18px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}
@keyframes logo-shimmer {
  to {
    transform: translateX(130%);
  }
}
.main-search {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.main-search-bar {
  width: 100%;
  height: 54px;
  background: #d8d8d8;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  gap: 16px;
  box-sizing: border-box;
  min-width: 0;
  overflow: hidden;
}

.home-name {
  font-size: 16px;
  font-weight: 600;
  color: #2c2c2c;
  white-space: nowrap;
  flex-shrink: 0;
}

.home-role {
  font-size: 16px;
  color: #666;
  white-space: nowrap;
  text-align: right;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-icon {
  position: absolute;
  left: 18px;
  font-size: 30px;
  color: teal;
  transform: rotate(-10deg);
}

.apps-grid {
  max-width: 650px;
  margin: 70px auto 60px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 60px;
  position: relative;
  z-index: 2;
}

.app {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  transition: transform 0.2s ease;
}
.app a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 72px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.app:hover {
  transform: scale(1.08);
}
.app img {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
}
.app__label {
  display: block;
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  color: #3c3c3c;
  text-align: center;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.app:hover .app__label, .app:focus-within .app__label {
  opacity: 1;
  transform: translateY(0);
}
.app--display-only a {
  cursor: default;
}
.app--display-only:hover {
  transform: none;
}

@media (hover: none) {
  .app__label {
    opacity: 1;
    transform: translateY(0);
  }
}
.app-section {
  display: flex;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: transparent;
  flex-shrink: 0;
}
.app-section .sidebar {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 340px;
  height: 100%;
  max-height: 100vh;
  flex-shrink: 0;
  padding: 8px 16px 32px;
  border-right: 1px solid rgba(0, 0, 0, 0.3);
  background: transparent;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
}
.app-section .sidebar__brand {
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  max-width: 100%;
  padding: 10px 8px 10px;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  color: #2c2c2c;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: -0.03em;
  line-height: 1;
  flex-shrink: 0;
  transition: none;
  min-width: 0;
}
.app-section .sidebar__brand img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}
.app-section .sidebar__brand span {
  display: block;
  flex: 0 0 auto;
  text-align: left;
  white-space: nowrap;
  overflow: visible;
}
.app-section .app-header {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-width: 120px;
  height: 28px;
  margin: 52px 0 0 0;
  padding: 0 14px;
  background: #d9d9d9;
  border-radius: 14px;
  align-self: flex-start;
  margin-left: 0;
  flex-shrink: 0;
}
.app-section .app-header img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  object-position: center;
  border-radius: 4px;
  flex-shrink: 0;
}
.app-section .app-header span {
  font-size: 11px;
}
.app-section .content {
  flex: 1;
  min-width: 0;
  height: 100%;
  max-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 32px;
  background: transparent;
  overflow: hidden;
  box-sizing: border-box;
}
.app-section .works-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  min-width: 0;
  max-width: min(900px, 100%);
  max-height: 100%;
  margin: 0 auto;
}
.app-section .works-carousel.is-hidden {
  display: none;
}
.app-section .works-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  min-width: 0;
  max-height: calc(100vh - 100px);
}
.app-section .works-carousel__viewport {
  flex: 0 1 auto;
  min-width: 0;
  width: 100%;
  max-width: min(820px, 100vw - 400px);
  max-height: min(640px, 100vh - 130px);
  min-height: 0;
  height: auto;
  overflow: hidden;
  border-radius: 20px;
  background: transparent;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: width 0.35s ease, height 0.35s ease;
}
.app-section .works-carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.app-section .works-carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  background: transparent;
  line-height: 0;
}
.app-section .works-carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
  border-radius: 0;
}
.app-section .works-carousel__slide--clickable {
  cursor: pointer;
}
.app-section .works-carousel__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0eeea;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  color: #666;
  font-size: 16px;
}
.app-section .works-carousel__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: none;
  border-radius: 50%;
  background: #2c2c2c;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.app-section .works-carousel__btn ion-icon {
  font-size: 24px;
}
.app-section .works-carousel__btn:hover {
  background: #444;
  transform: scale(1.05);
}
.app-section .works-carousel__btn:active {
  transform: scale(0.96);
}
.app-section .works-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.app-section .works-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #d5d0c8;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}
.app-section .works-carousel__dot.is-active {
  width: 24px;
  border-radius: 4px;
  background: #2c2c2c;
}
.app-section .google-menu {
  width: 100%;
  max-width: 260px;
  margin: 36px auto 0;
  padding: 18px 12px 22px;
  background: #d8d2ca;
  border-radius: 24px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.app-section .google-menu__header {
  margin-bottom: 14px;
  padding: 0 8px;
  text-align: center;
}
.app-section .google-menu__title {
  color: #3c3c3c;
  font-size: 15px;
  font-weight: 500;
}
.app-section .google-menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 6px;
}
.app-section .google-menu__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 4px;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.app-section .google-menu__item.is-hidden {
  display: none !important;
}
.app-section .google-menu__item:hover {
  background: rgba(0, 0, 0, 0.07);
}
.app-section .google-menu__item img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
}
.app-section .google-menu__item span {
  color: #444;
  font-size: 11px;
  font-weight: 400;
  text-align: center;
  line-height: 1.25;
}

.work-sheet {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.work-sheet.is-open {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
}
.work-sheet__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.work-sheet__dialog {
  position: relative;
  width: min(960px, 100%);
  max-height: min(560px, 100vh - 48px);
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}
.work-sheet__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #2c2c2c;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}
.work-sheet__close ion-icon {
  font-size: 22px;
}
.work-sheet__layout {
  display: flex;
  min-height: min(560px, 100vh - 48px);
}
.work-sheet__image-wrap {
  flex: 0 0 50%;
  margin: 0;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.work-sheet__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.work-sheet__content {
  flex: 1;
  min-width: 0;
  padding: 40px 36px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
}
.work-sheet__title {
  margin: 0;
  padding-right: 28px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  color: #2c2c2c;
}
.work-sheet__date {
  margin: 0;
  font-size: 0.95rem;
  color: #888;
}
.work-sheet__description {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
  white-space: pre-line;
}

body.work-sheet-open {
  overflow: hidden;
}

.presentation-section {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  height: 100vh;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 48px;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  background: transparent;
}

.presentation-inner {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

.presentation-header {
  margin-bottom: 36px;
}
.presentation-header h2 {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 10px;
  color: #2c2c2c;
}

.presentation-role {
  font-size: 16px;
  font-weight: 600;
  color: #666;
  letter-spacing: 0.01em;
}

.presentation-layout {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.presentation-photo {
  flex-shrink: 0;
  width: 148px;
  margin: 0;
  padding: 8px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
.presentation-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
}

.presentation-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.presentation-content > p {
  font-size: 17px;
  line-height: 1.75;
  color: #3a3a3a;
  font-weight: 400;
}
.presentation-content > p strong {
  font-weight: 700;
  color: #2c2c2c;
}

.presentation-timeline {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0;
  padding: 0;
}
.presentation-timeline__item {
  position: relative;
  padding-left: 28px;
}
.presentation-timeline__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2c2c2c;
}
.presentation-timeline__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 4px;
  top: calc(0.45em + 16px);
  bottom: -32px;
  width: 2px;
  background: rgba(0, 0, 0, 0.18);
}
.presentation-timeline__year {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #2c2c2c;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.presentation-timeline__text {
  font-size: 16px;
  line-height: 1.65;
  color: #3a3a3a;
  font-weight: 400;
}

.contact-section {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  height: auto;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  background: transparent;
}

.contact-sidebar {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 340px;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 100%;
  padding: 80px 16px 32px;
  border-right: 1px solid rgba(0, 0, 0, 0.3);
  background: transparent;
  box-sizing: border-box;
}
.contact-sidebar__title {
  width: 100%;
  max-width: 260px;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  color: #3c3c3c;
}
.contact-sidebar__socials {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  max-width: 260px;
}
.contact-sidebar__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: #2c2c2c;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.contact-sidebar__social ion-icon {
  font-size: 20px;
  flex-shrink: 0;
}
.contact-sidebar__social:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.contact-sidebar__social--instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border-color: transparent;
}
.contact-sidebar__social--tiktok:hover {
  background: #010101;
  color: #fff;
  border-color: transparent;
}
.contact-sidebar__social--mail:hover {
  background: #2c2c2c;
  color: #fff;
  border-color: transparent;
}

.contact-main {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 24px 40px;
  box-sizing: border-box;
}

.contact-layout {
  width: 100%;
  max-width: 560px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 0 1 auto;
  min-height: 0;
  box-sizing: border-box;
}

.contact-inner {
  width: 100%;
  max-width: 520px;
  box-sizing: border-box;
}

.contact-header {
  margin-bottom: 40px;
}
.contact-header h2 {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 8px;
}
.contact-header p {
  font-size: 15px;
  color: #666;
}

.contact-feedback {
  margin-bottom: 20px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
}
.contact-feedback--success {
  background: rgba(46, 125, 72, 0.12);
  color: #2e7d48;
}
.contact-feedback--error {
  background: rgba(180, 60, 60, 0.12);
  color: #b43c3c;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-field {
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.form-field input,
.form-field textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 18px 20px 12px;
  font-family: "Syne", sans-serif;
  font-size: 15px;
  color: #1a1a1a;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid transparent;
  border-radius: 16px;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.form-field input:focus + label, .form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
  top: 8px;
  font-size: 11px;
  color: #666;
}
.form-field textarea {
  min-height: 140px;
  padding-top: 22px;
  resize: none;
}
.form-field label {
  position: absolute;
  left: 20px;
  top: 18px;
  font-size: 15px;
  color: #888;
  pointer-events: none;
  transition: top 0.25s ease, font-size 0.25s ease, color 0.25s ease;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: flex-start;
  margin-top: 8px;
  box-sizing: border-box;
  max-width: 100%;
  padding: 16px 32px;
  font-family: "Syne", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: #2c2c2c;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.contact-submit ion-icon {
  font-size: 20px;
  transition: transform 0.25s ease;
}
.contact-submit:hover {
  background: #444;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}
.contact-submit:hover ion-icon {
  transform: translateX(4px);
}
.contact-submit:active {
  transform: translateY(-1px) scale(0.98);
}

.contact-socials {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.contact-socials__title {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}
.contact-socials__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #2c2c2c;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.social-btn ion-icon {
  font-size: 22px;
}
.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.social-btn--instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border-color: transparent;
}
.social-btn--tiktok:hover {
  background: #010101;
  color: #fff;
  border-color: transparent;
}
.social-btn--mail:hover {
  background: #2c2c2c;
  color: #fff;
  border-color: transparent;
}

.site-footer {
  width: 100%;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.site-footer__identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.site-footer__firstname {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666;
}
.site-footer__lastname {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #2c2c2c;
  line-height: 1.1;
}
.site-footer__role {
  margin-top: 6px;
  font-size: 14px;
  color: #666;
}
.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.site-footer__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: #2c2c2c;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.site-footer__social ion-icon {
  font-size: 20px;
}
.site-footer__social:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.site-footer__social--instagram:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border-color: transparent;
}
.site-footer__social--tiktok:hover {
  background: #010101;
  color: #fff;
  border-color: transparent;
}
.site-footer__social--mail:hover {
  background: #2c2c2c;
  color: #fff;
  border-color: transparent;
}
.site-footer__social--legal:hover {
  background: #2c2c2c;
  color: #fff;
  border-color: transparent;
}
.site-footer__copy {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0.02em;
}

.legal-page {
  min-height: 100vh;
  background: #f5f3ef;
  color: #2c2c2c;
  overflow-x: hidden;
}
.legal-page__header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 20px 24px;
  background: rgba(245, 243, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
}
.legal-page__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #2c2c2c;
}
.legal-page__back:hover {
  color: #666;
}
.legal-page__main {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 32px 80px;
  box-sizing: border-box;
}

.legal-content {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.legal-content h1 {
  width: 100%;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.legal-content h2 {
  width: 100%;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 600;
  line-height: 1.35;
  margin-top: 8px;
}
.legal-content p,
.legal-content li {
  width: 100%;
  max-width: 100%;
  font-size: clamp(0.875rem, 2vw, 0.9375rem);
  line-height: 1.7;
  color: #3a3a3a;
}
.legal-content ol,
.legal-content ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding-left: 0;
  list-style-position: inside;
  text-align: center;
}
.legal-content a {
  color: #2c2c2c;
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-word;
}
.legal-content a:hover {
  color: #666;
}

@media (max-width: 1024px) {
  .legal-page__header {
    padding: 16px 28px;
  }
  .legal-page__main {
    padding: 32px 28px 64px;
  }
  .legal-content {
    gap: 22px;
    padding: 0 4px;
  }
  .legal-content h1 {
    font-size: 1.45rem;
  }
  .legal-content h2 {
    font-size: 1rem;
  }
  .legal-content p,
  .legal-content li {
    font-size: 0.875rem;
    line-height: 1.65;
    padding: 0 6px;
    box-sizing: border-box;
  }
  .legal-content ol,
  .legal-content ul {
    max-width: 100%;
    gap: 8px;
    padding: 0 6px;
    box-sizing: border-box;
  }
}
@media (max-width: 768px) {
  .legal-page__header {
    padding: 16px 24px;
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: max(24px, env(safe-area-inset-right));
  }
  .legal-page__back {
    font-size: 13px;
  }
  .legal-page__main {
    padding: 28px 24px 56px;
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: max(24px, env(safe-area-inset-right));
  }
  .legal-content {
    gap: 18px;
    padding: 0 8px;
  }
  .legal-content h1 {
    font-size: 1.25rem;
    padding: 0 4px;
  }
  .legal-content h2 {
    font-size: 0.92rem;
    padding: 0 4px;
  }
  .legal-content p,
  .legal-content li {
    font-size: 0.8125rem;
    line-height: 1.65;
    padding: 0 8px;
  }
  .legal-content ol,
  .legal-content ul {
    max-width: 100%;
    gap: 8px;
    padding: 0 8px;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1024px) {
  .app-section {
    height: auto;
    min-height: 0;
    max-height: none;
    align-items: stretch;
    overflow-x: hidden;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .contact-section {
    margin-top: 0;
  }
  .app-section .sidebar {
    height: auto;
    min-height: 100%;
    max-height: none;
    align-self: stretch;
  }
  .app-section .content {
    height: auto;
    max-height: none;
  }
  .contact-sidebar {
    width: 168px;
    padding: 72px 8px 24px;
  }
  .contact-sidebar__title {
    max-width: 148px;
    font-size: 13px;
    margin-bottom: 14px;
  }
  .contact-sidebar__socials {
    max-width: 148px;
    gap: 8px;
  }
  .contact-sidebar__social {
    padding: 10px 8px;
    font-size: 11px;
    gap: 6px;
  }
  .contact-sidebar__social ion-icon {
    font-size: 18px;
  }
  .contact-main {
    padding: 72px 20px 32px;
  }
  .apps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 48px;
    margin: 48px auto 48px;
  }
  .app a {
    width: 72px;
  }
  .app img {
    width: 72px;
    height: 72px;
  }
  .app__label {
    font-size: 11px;
    opacity: 1;
    transform: translateY(0);
  }
  .logo-container {
    width: 160px;
    height: 160px;
    margin-top: 40px;
    padding-bottom: 20px;
  }
  .home-screen .container {
    padding-left: 20px;
    padding-right: 20px;
    align-items: stretch;
  }
  .main-search {
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
  .main-search-bar {
    width: 100%;
    flex-direction: row;
    height: 50px;
    padding: 0 20px;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    border-radius: 18px;
  }
  .home-name {
    font-size: 14px;
  }
  .home-role {
    font-size: 13px;
    text-align: right;
  }
  .app-section .sidebar {
    width: 168px;
    padding: 8px 8px 20px;
  }
  .app-section .app-header {
    align-self: center;
    max-width: 100%;
    min-width: 0;
    margin-top: 48px;
  }
  .app-section .google-menu {
    width: 100%;
    max-width: 168px;
    margin: 14px auto 0;
    padding: 14px 8px 16px;
    box-sizing: border-box;
  }
  .app-section .google-menu__title {
    font-size: 12px;
  }
  .app-section .google-menu__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 6px;
  }
  .app-section .google-menu__item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 4px;
    gap: 6px;
    min-width: 0;
  }
  .app-section .google-menu__item img {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
  }
  .app-section .google-menu__item span {
    font-size: 10px;
    text-align: center;
    line-height: 1.15;
    word-break: break-word;
    max-width: 100%;
    min-width: 0;
  }
  .app-section .content {
    padding: 16px 14px;
  }
  .works-carousel {
    max-width: 100%;
    gap: 12px;
  }
  .works-carousel__controls {
    gap: 10px;
    min-width: 0;
    max-height: calc(100vh - 100px);
  }
  .app-section .works-carousel {
    max-width: min(100vw - 180px, 560px);
    width: 100%;
    margin: 0 auto;
    gap: 12px;
    box-sizing: border-box;
  }
  .app-section .works-carousel__controls {
    gap: 8px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    flex-wrap: nowrap;
  }
  .app-section .works-carousel__viewport {
    flex: 0 1 auto;
    min-width: 0;
    width: auto;
    height: auto;
    max-height: min(56vh, 520px);
    max-width: min(480px, 100vw - 220px);
  }
  .works-carousel__btn {
    width: 40px;
    height: 40px;
  }
  .works-carousel__btn ion-icon {
    font-size: 20px;
  }
  .contact-inner {
    max-width: 440px;
  }
  .contact-header {
    margin-bottom: 28px;
  }
  .contact-header h2 {
    font-size: 36px;
  }
  .contact-form {
    gap: 22px;
  }
  .form-field textarea {
    min-height: 120px;
  }
  .site-footer {
    margin-top: 40px;
    padding-top: 28px;
  }
  .site-footer__inner {
    gap: 20px;
    width: 100%;
  }
  .site-footer__identity {
    width: 100%;
    gap: 4px;
  }
  .site-footer__lastname {
    font-size: 26px;
  }
  .site-footer__socials {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 360px;
    gap: 8px;
  }
  .site-footer__social {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
  .site-footer__copy {
    width: 100%;
    max-width: 360px;
    line-height: 1.5;
  }
}
@media (max-width: 768px) {
  .home-screen {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .app-section {
    height: auto;
    min-height: 0;
    max-height: none;
    align-items: stretch;
    overflow-x: hidden;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .logo-container {
    width: 120px;
    height: 120px;
    margin-top: 24px;
    padding-bottom: 16px;
  }
  .home-screen .container {
    padding-left: 14px;
    padding-right: 14px;
    align-items: stretch;
  }
  .main-search {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
  .main-search-bar {
    width: 100%;
    flex-direction: row;
    height: 46px;
    padding: 0 14px;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    border-radius: 16px;
  }
  .home-name {
    font-size: 12px;
  }
  .home-role {
    font-size: 11px;
    text-align: right;
  }
  .apps-grid {
    gap: 40px 48px;
    margin: 48px auto 48px;
    padding: 0 20px;
    max-width: 650px;
    width: 100%;
  }
  .app a {
    width: 72px;
  }
  .app img {
    width: 72px;
    height: 72px;
  }
  .app__label {
    font-size: 11px;
    white-space: normal;
    word-break: break-word;
    opacity: 1;
    transform: translateY(0);
  }
  .app-section .sidebar {
    width: 120px;
    height: auto;
    min-height: 100%;
    max-height: none;
    align-self: stretch;
    padding: 8px 6px 0;
    overflow-x: hidden;
    overflow-y: visible;
    box-sizing: border-box;
    border-right: 1px solid rgba(0, 0, 0, 0.3);
  }
  .app-section .sidebar__brand {
    padding: 6px 2px 4px;
    gap: 3px;
    font-size: 0.5rem;
    letter-spacing: -0.045em;
  }
  .app-section .sidebar__brand img {
    width: 13px;
    height: 13px;
  }
  .app-section .app-header {
    align-self: center;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    height: 26px;
    margin-top: 6px;
    padding: 0 4px;
    box-sizing: border-box;
    justify-content: center;
  }
  .app-section .app-header img {
    width: 20px;
    height: 20px;
  }
  .app-section .app-header span {
    font-size: 11px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
  }
  .app-section .google-menu {
    width: 100%;
    max-width: 108px;
    margin: 10px auto 12px;
    padding: 12px 6px 14px;
    border-radius: 14px;
    box-sizing: border-box;
  }
  .app-section .google-menu__header {
    margin-bottom: 8px;
    padding: 0;
  }
  .app-section .google-menu__title {
    font-size: 11px;
    line-height: 1.2;
  }
  .app-section .google-menu__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 4px;
  }
  .app-section .google-menu__item {
    flex-direction: column;
    align-items: center;
    padding: 6px 2px;
    gap: 5px;
    border-radius: 10px;
    min-width: 0;
  }
  .app-section .google-menu__item img {
    width: 34px;
    height: 34px;
  }
  .app-section .google-menu__item span {
    font-size: 8.5px;
    line-height: 1.15;
    text-align: center;
    word-break: break-word;
    max-width: 100%;
    min-width: 0;
  }
  .app-section .content {
    flex: 1;
    min-width: 0;
    height: auto;
    min-height: 0;
    max-height: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 10px 12px 8px;
    overflow-x: hidden;
    overflow-y: visible;
    box-sizing: border-box;
  }
  .app-section .works-carousel {
    width: 100%;
    max-width: 100%;
    max-height: none;
    margin: 0 auto;
    gap: 10px;
    min-width: 0;
    justify-content: center;
    box-sizing: border-box;
  }
  .app-section .works-carousel__controls {
    gap: 4px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    max-height: none;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
    flex-wrap: nowrap;
  }
  .app-section .works-carousel__viewport {
    flex: 0 1 auto;
    min-width: 0;
    width: auto;
    max-width: min(340px, 100% - 56px);
    height: auto;
    max-height: min(62vh, 440px);
    border-radius: 10px;
  }
  .app-section .works-carousel__slide {
    overflow: hidden;
    border-radius: 12px;
    display: block;
    line-height: 0;
  }
  .app-section .works-carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 0;
  }
  .app-section .works-carousel__btn {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    margin-top: 0;
  }
  .app-section .works-carousel__btn ion-icon {
    font-size: 14px;
  }
  .app-section .works-carousel__dot.is-active {
    width: 18px;
  }
  .work-sheet {
    padding: 12px;
  }
  .work-sheet__dialog {
    max-height: calc(100vh - 24px);
    border-radius: 18px;
  }
  .work-sheet__layout {
    flex-direction: column;
    min-height: 0;
  }
  .work-sheet__image-wrap {
    flex: 0 0 auto;
    max-height: 45vh;
  }
  .work-sheet__content {
    padding: 24px 20px 28px;
  }
  .presentation-section {
    height: auto;
    min-height: 100vh;
    padding: 72px 16px 40px;
    align-items: flex-start;
  }
  .presentation-layout {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .presentation-photo {
    width: 128px;
    padding: 7px;
    border-radius: 16px;
  }
  .presentation-photo img {
    border-radius: 10px;
  }
  .presentation-header h2 {
    font-size: 32px;
  }
  .presentation-role {
    font-size: 14px;
  }
  .presentation-content > p {
    font-size: 15px;
    line-height: 1.7;
  }
  .presentation-timeline {
    gap: 28px;
  }
  .presentation-timeline__year {
    font-size: 18px;
  }
  .presentation-timeline__text {
    font-size: 14px;
    line-height: 1.6;
  }
  .contact-section {
    height: auto;
    min-height: 100vh;
    align-items: stretch;
    margin-top: 0;
    padding-top: 0;
  }
  .contact-sidebar {
    width: 120px;
    padding: 72px 6px 24px;
    border-right: 1px solid rgba(0, 0, 0, 0.3);
  }
  .contact-sidebar__title {
    max-width: 100%;
    font-size: 8px;
    line-height: 1.2;
    margin-bottom: 10px;
    word-break: break-word;
  }
  .contact-sidebar__socials {
    max-width: 100%;
    gap: 6px;
  }
  .contact-sidebar__social {
    flex-direction: column;
    gap: 3px;
    padding: 6px 4px;
    font-size: 7px;
    border-radius: 10px;
  }
  .contact-sidebar__social ion-icon {
    font-size: 16px;
  }
  .contact-sidebar__social span {
    text-align: center;
    line-height: 1.1;
    word-break: break-word;
  }
  .contact-main {
    padding: 72px 14px 32px;
    overflow-x: hidden;
  }
  .contact-layout {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 0 2px 8px;
    box-sizing: border-box;
  }
  .contact-inner {
    width: 100%;
    max-width: 100%;
    padding: 0 2px;
    box-sizing: border-box;
  }
  .site-footer {
    margin-top: 28px;
    padding-top: 20px;
    padding-bottom: 8px;
  }
  .site-footer__inner {
    gap: 18px;
    width: 100%;
  }
  .site-footer__identity {
    width: 100%;
    gap: 4px;
  }
  .site-footer__firstname {
    font-size: 13px;
  }
  .site-footer__lastname {
    font-size: 22px;
  }
  .site-footer__role {
    font-size: 13px;
    margin-top: 4px;
  }
  .site-footer__socials {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    gap: 8px;
  }
  .site-footer__social {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
    padding: 12px 16px;
    font-size: 14px;
  }
  .site-footer__copy {
    width: 100%;
    font-size: 11px;
    line-height: 1.5;
    padding: 0 8px;
    box-sizing: border-box;
  }
  .contact-header {
    margin-bottom: 20px;
  }
  .contact-header h2 {
    font-size: 28px;
  }
  .contact-form {
    gap: 18px;
  }
  .form-field input,
  .form-field textarea {
    padding: 14px 16px 10px;
    font-size: 14px;
    border-radius: 12px;
  }
  .form-field label {
    left: 16px;
    top: 14px;
    font-size: 14px;
  }
  .form-field textarea {
    min-height: 96px;
    padding-top: 18px;
  }
  .contact-submit {
    width: 100%;
    padding: 14px 24px;
    font-size: 14px;
  }
}
@media (max-width: 380px) {
  .contact-sidebar {
    width: 112px;
  }
  .app-section .sidebar {
    width: 112px;
  }
  .app-section .sidebar__brand {
    padding: 6px 2px 4px;
    font-size: 0.5rem;
    gap: 2px;
  }
  .app-section .sidebar__brand img {
    width: 14px;
    height: 14px;
  }
  .app-section .google-menu {
    max-width: 100px;
    padding: 10px 5px 12px;
  }
  .app-section .google-menu__item img {
    width: 30px;
    height: 30px;
  }
  .app-section .google-menu__item span {
    font-size: 8px;
  }
  .app-section .content {
    padding-top: 52px;
  }
  .app-section .works-carousel__viewport {
    max-width: min(300px, 100% - 52px);
    max-height: min(58vh, 380px);
  }
  .app-section .works-carousel__btn {
    width: 24px;
    height: 24px;
  }
  .app-section .works-carousel__btn ion-icon {
    font-size: 13px;
  }
}
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.5rem;
  box-sizing: border-box;
  pointer-events: none;
}
.site-nav__logo, .site-nav__burger {
  pointer-events: all;
}
.site-nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: #2c2c2c;
  text-decoration: none;
  transition: none;
}
.site-nav__logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 4px;
}
.site-nav__burger {
  width: 36px;
  height: 24px;
  position: relative;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.site-nav__burger .bar {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #2c2c2c;
  transition: all 0.4s ease;
}
.site-nav__burger .bar:nth-child(1) {
  top: 0;
}
.site-nav__burger .bar:nth-child(2) {
  top: 50%;
  width: 70%;
  transform: translateY(-50%);
}
.site-nav__burger .bar:nth-child(3) {
  top: 100%;
  width: 45%;
  transform: translateY(-100%);
}
.site-nav__burger.open .bar {
  background: #9a7b5c;
}
.site-nav__burger.open .bar:nth-child(1) {
  top: 50%;
  width: 100%;
  height: 4px;
  transform: translateY(-50%) rotate(45deg);
}
.site-nav__burger.open .bar:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
}
.site-nav__burger.open .bar:nth-child(3) {
  top: 50%;
  width: 100%;
  height: 4px;
  transform: translateY(-50%) rotate(-45deg);
}

.burger-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background-color 0.5s ease;
}
.burger-overlay.open {
  background: rgba(0, 0, 0, 0.55);
  pointer-events: all;
}

.burger-panel {
  --panel-bg: #f0eeea;
  --panel-fg: #2c2c2c;
  --panel-accent: #9a7b5c;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 180;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(440px, 100vw);
  height: 100vh;
  padding: 3rem 1.75rem 3.5rem;
  background: var(--panel-bg);
  color: var(--panel-fg);
  clip-path: inset(0 0 0 100%);
  transition: clip-path 0.7s ease;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
}
.burger-panel.open {
  clip-path: inset(0 0 0 0);
}
.burger-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--panel-accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.6s ease 0.3s;
}
.burger-panel.open::before {
  transform: scaleY(1);
}
.burger-panel__links {
  list-style: none;
  width: 100%;
  margin-bottom: 3rem;
}
.burger-panel__links li {
  margin-bottom: 0.35rem;
  overflow: hidden;
}
.burger-panel__links a {
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(1.55rem, 4.2vw, 2rem);
  line-height: 1.15;
  color: var(--panel-fg);
  text-decoration: none;
  letter-spacing: -0.04em;
}
.burger-panel__links a span {
  display: block;
  transform: translateY(110%);
  transition: transform 0.65s cubic-bezier(0.77, 0, 0.18, 1);
}
.burger-panel__links a:hover {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--panel-fg);
}
.burger-panel__links li:nth-child(3) a {
  font-size: clamp(1.4rem, 3.6vw, 1.85rem);
  letter-spacing: -0.05em;
}
.burger-panel__links li:nth-child(1) a span {
  transition-delay: 0.15s;
}
.burger-panel__links li:nth-child(2) a span {
  transition-delay: 0.22s;
}
.burger-panel__links li:nth-child(3) a span {
  transition-delay: 0.29s;
}
.burger-panel__links li:nth-child(4) a span {
  transition-delay: 0.36s;
}
.burger-panel.open .burger-panel__links a span {
  transform: translateY(0);
}
.burger-panel__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease 0.55s, transform 0.4s ease 0.55s;
}
.burger-panel.open .burger-panel__footer {
  opacity: 1;
  transform: translateY(0);
}
.burger-panel__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.burger-panel__socials a {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.45);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.burger-panel__socials a:hover {
  color: var(--panel-fg);
}
.burger-panel__year {
  font-family: "Syne", sans-serif;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.25);
  letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
  body.is-skills-slide .site-nav {
    justify-content: space-between;
  }
  body.is-skills-slide .sidebar__brand {
    display: none;
  }
  .site-nav {
    padding: 0.85rem 1.25rem;
    background: transparent;
    align-items: center;
  }
  .site-nav__logo {
    gap: 6px;
    font-size: 1rem;
    letter-spacing: -0.02em;
    flex: 0 1 auto;
    width: auto;
    min-width: 0;
    max-width: calc(100% - 48px);
    overflow: hidden;
    align-items: center;
    color: #2c2c2c;
  }
  .site-nav__logo img {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }
  .site-nav__logo span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
  }
  .site-nav__burger {
    width: 34px;
    height: 22px;
    flex-shrink: 0;
  }
  .app-section .sidebar__brand {
    padding: 8px 4px 6px;
    gap: 4px;
    font-size: 0.58rem;
  }
  .app-section .sidebar__brand img {
    width: 18px;
    height: 18px;
  }
  .burger-panel {
    width: min(100%, 460px);
    padding: 3rem 2rem 2.5rem;
    justify-content: center;
  }
  .burger-panel__links {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  .burger-panel__links li {
    overflow: visible;
  }
  .burger-panel__links a {
    font-size: clamp(1.75rem, 4.5vw, 2.2rem);
    letter-spacing: -0.035em;
    padding: 0 0.25rem;
    box-sizing: border-box;
  }
  .burger-panel__links a span {
    display: inline-block;
    text-align: center;
  }
  .burger-panel__links li:nth-child(3) a {
    font-size: clamp(1.48rem, 3.6vw, 1.82rem);
    letter-spacing: -0.025em;
  }
  .burger-panel__footer {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
  }
  .burger-panel__socials {
    justify-content: center;
  }
}
@media (min-width: 1025px) {
  body.is-skills-slide .sidebar__brand {
    display: none;
  }
}
@media (max-width: 768px) {
  .home-screen {
    padding-top: 52px;
  }
  .site-nav {
    padding: 0.7rem 0.85rem;
    background: transparent;
    align-items: center;
  }
  .site-nav__logo {
    gap: 10px;
    flex: 0 1 auto;
    width: auto;
    min-width: 0;
    max-width: calc(100% - 42px);
    overflow: hidden;
    align-items: center;
    font-size: 1rem;
    letter-spacing: -0.02em;
    color: #2c2c2c;
  }
  .site-nav__logo img {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  }
  .site-nav__logo span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
  }
  .site-nav__burger {
    width: 30px;
    height: 18px;
    flex-shrink: 0;
  }
  .site-nav__burger .bar {
    height: 2px;
    background: #2c2c2c;
  }
  .site-nav__burger.open .bar {
    background: #9a7b5c;
  }
  .site-nav__burger.open .bar:nth-child(1), .site-nav__burger.open .bar:nth-child(3) {
    height: 3px;
  }
  .burger-panel {
    width: 100vw;
    padding: 2.5rem 1.5rem 2rem;
  }
  .burger-panel__links {
    margin-bottom: 2rem;
  }
  .burger-panel__links li {
    margin-bottom: 0.5rem;
    overflow: visible;
  }
  .burger-panel__links a {
    font-size: clamp(2rem, 8.5vw, 2.75rem);
    line-height: 1.2;
    padding: 0 0.25rem;
  }
  .burger-panel__links a span {
    display: inline-block;
    max-width: 100%;
  }
  .burger-panel__links li:nth-child(3) a {
    font-size: clamp(1.75rem, 7.5vw, 2.45rem);
    letter-spacing: -0.035em;
  }
  .burger-panel__socials a {
    font-size: 0.7rem;
  }
}
@media (max-width: 380px) {
  .site-nav {
    padding: 0 0.7rem;
  }
  .site-nav__logo {
    gap: 8px;
    font-size: 0.9rem;
    max-width: calc(100% - 38px);
  }
  .site-nav__logo img {
    width: 24px;
    height: 24px;
  }
  .site-nav__burger {
    width: 28px;
    height: 16px;
  }
  .burger-panel__links a {
    font-size: clamp(1.75rem, 9vw, 2.2rem);
  }
  .burger-panel__links li:nth-child(3) a {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }
}

/*# sourceMappingURL=style.css.map */
