@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes slideInLeft {
  from {
    width: 0;
  }
  to {
    width: 10vw;
  }
}
@keyframes slideInLeftDesktop {
  from {
    width: 0;
  }
  to {
    width: 40px;
  }
}
@keyframes loading-bar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes pulse-text {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce-subtle {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
@keyframes scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.animate-on-scroll {
  opacity: 0;
}
.animate-on-scroll.animated {
  opacity: 1;
}

.scroll-fade-in-left,
.scroll-fade-in-right,
.scroll-fade-in-up,
.scroll-scale-in {
  opacity: 0 !important;
}

.scroll-fade-in-left {
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-fade-in-left.is-visible {
  opacity: 1 !important;
  transform: translateX(0);
}

.scroll-fade-in-right {
  transform: translateX(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-fade-in-right.is-visible {
  opacity: 1 !important;
  transform: translateX(0);
}

.scroll-fade-in-up {
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-fade-in-up.is-visible {
  opacity: 1 !important;
  transform: translateY(0);
}

.scroll-scale-in {
  transform: scale(0.9);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-scale-in.is-visible {
  opacity: 1 !important;
  transform: scale(1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  width: 100%;
  min-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #2C2C2C;
  background-color: #EDE6D3;
  overflow-x: hidden;
  width: 100%;
  min-width: 100%;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2C2C2C;
  margin-bottom: 16px;
}

h1 {
  font-size: 42px;
}
@media (min-width: 768px) {
  h1 {
    font-size: 56px;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 72px;
  }
}

h2 {
  font-size: 36px;
}
@media (min-width: 768px) {
  h2 {
    font-size: 48px;
  }
}
@media (min-width: 1024px) {
  h2 {
    font-size: 60px;
  }
}

h3 {
  font-size: 30px;
}
@media (min-width: 768px) {
  h3 {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  h3 {
    font-size: 48px;
  }
}

h4 {
  font-size: 24px;
}
@media (min-width: 768px) {
  h4 {
    font-size: 30px;
  }
}
@media (min-width: 1024px) {
  h4 {
    font-size: 36px;
  }
}

h5 {
  font-size: 20px;
}
@media (min-width: 768px) {
  h5 {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  h5 {
    font-size: 28px;
  }
}

h6 {
  font-size: 18px;
}
@media (min-width: 768px) {
  h6 {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  h6 {
    font-size: 22px;
  }
}

p {
  margin-bottom: 16px;
}

a {
  color: #f59e0b;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
a:hover, a:focus {
  color: #FFA877;
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 32px;
}

li {
  margin-bottom: 4px;
}

blockquote {
  margin: 32px 0;
  padding-left: 24px;
  border-left: 4px solid #f59e0b;
  font-style: italic;
  color: #64748b;
}

code {
  font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
  font-size: 0.9em;
  background-color: #f8fafc;
  padding: 4px 8px;
  border-radius: 0.25rem;
}

pre {
  background-color: #f8fafc;
  padding: 16px;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin-bottom: 16px;
}
pre code {
  background: none;
  padding: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}
table th,
table td {
  padding: 8px 16px;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}
table th {
  font-weight: 600;
  background-color: #f8fafc;
}

hr {
  border: none;
  border-top: 1px solid #e2e8f0;
  margin: 32px 0;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
}

.site-main {
  flex: 1;
  padding: 0;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 768px) {
  .site-main {
    padding: 0;
  }
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
    padding-left: 32px;
    padding-right: 32px;
  }
}

.skip-link {
  position: absolute;
  top: -9999px;
  left: 0;
  z-index: 1070;
  padding: 8px 16px;
  background-color: #0f172a;
  color: #EDE6D3;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}

@media (min-width: 1024px) {
  .content-area {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
  }
}

.sidebar {
  margin-top: 32px;
}
@media (min-width: 1024px) {
  .sidebar {
    margin-top: 0;
  }
}

.widget {
  margin-bottom: 32px;
  padding: 24px;
  background-color: #f8fafc;
  border-radius: 0.5rem;
}
.widget .widget-title {
  font-size: 18px;
}
@media (min-width: 768px) {
  .widget .widget-title {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .widget .widget-title {
    font-size: 22px;
  }
}
.widget .widget-title {
  margin-bottom: 16px;
}

.site-header {
  background-color: transparent;
  padding: 0;
  position: relative;
  min-height: 0;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (min-width: 768px) {
  .site-header-inner {
    gap: 24px;
  }
}

.site-branding {
  flex-shrink: 0;
}
.site-branding .site-title {
  font-size: 20px;
}
@media (min-width: 768px) {
  .site-branding .site-title {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .site-branding .site-title {
    font-size: 28px;
  }
}
.site-branding .site-title {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .site-branding .site-title {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .site-branding .site-title {
    font-size: 30px;
  }
}
@media (min-width: 768px) and (min-width: 1024px) {
  .site-branding .site-title {
    font-size: 36px;
  }
}
.site-branding .site-title a {
  color: #2C2C2C;
  text-decoration: none;
}
.site-branding .site-title a:hover {
  color: #FFA877;
  text-decoration: none;
}
.site-branding .site-description {
  font-size: 14px;
}
@media (min-width: 768px) {
  .site-branding .site-description {
    font-size: 15px;
  }
}
@media (min-width: 1024px) {
  .site-branding .site-description {
    font-size: 16px;
  }
}
.site-branding .site-description {
  color: #64748b;
  margin-top: 4px;
  margin-bottom: 0;
}
.site-branding .custom-logo-link {
  display: inline-block;
}
.site-branding .custom-logo-link img {
  max-height: 50px;
  width: auto;
}
@media (min-width: 768px) {
  .site-branding .custom-logo-link img {
    max-height: 60px;
  }
}

.main-navigation {
  flex: 1;
}
.main-navigation .nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #EDE6D3;
  border-top: 1px solid #e2e8f0;
  padding: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) {
  .main-navigation .nav-menu {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    justify-content: flex-end;
    gap: 24px;
  }
}
.main-navigation .nav-menu[aria-expanded=true] {
  display: flex;
}
.main-navigation .menu-item {
  width: 100%;
}
@media (min-width: 768px) {
  .main-navigation .menu-item {
    width: auto;
  }
}
.main-navigation .menu-item a {
  color: #2C2C2C;
  font-weight: 500;
  padding: 8px 0;
  display: block;
  transition: color 0.2s ease-in-out;
}
@media (min-width: 768px) {
  .main-navigation .menu-item a {
    padding: 8px;
  }
}
.main-navigation .menu-item a:hover, .main-navigation .menu-item a:focus {
  color: #FFA877;
  text-decoration: none;
}
.main-navigation .menu-item.current-menu-item > a, .main-navigation .menu-item.current_page_item > a {
  color: #f59e0b;
}

.menu-toggle {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  z-index: 1030;
}
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle .menu-toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 24px;
  height: 18px;
}
.menu-toggle .menu-toggle-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #2C2C2C;
  transition: all 0.2s ease-in-out;
}
.menu-toggle[aria-expanded=true] .menu-toggle-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle[aria-expanded=true] .menu-toggle-icon span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded=true] .menu-toggle-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.glassy-nav--mobile {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4vw;
  padding: 2vw 4vw;
  position: fixed;
  top: 5vw;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(10px);
  border-radius: 10vw;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1030;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .glassy-nav--mobile {
    display: none;
  }
}
.glassy-nav--mobile a {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 3vw;
  line-height: 1.2;
  text-align: center;
  color: #FE762A;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity 0.2s ease-in-out;
  white-space: nowrap;
}
.glassy-nav--mobile a:hover {
  opacity: 0.6;
}
.glassy-nav--mobile a.active {
  text-decoration: underline;
}

.glassy-nav--desktop {
  display: none;
}
@media (min-width: 1024px) {
  .glassy-nav--desktop {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.6rem;
    gap: 0.5rem;
    position: fixed;
    top: 1.875rem;
    right: 2rem;
    height: 5.1875rem;
    background: rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0.875rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1030;
  }
}
.glassy-nav--desktop .glassy-nav-item {
  width: 100%;
  height: 1.0625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.glassy-nav--desktop .glassy-nav-item a {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.0625rem;
  text-align: center;
  color: #FE762A;
  text-decoration: none;
  width: 100%;
  display: block;
  transition: color 0.2s ease-in-out;
}
.glassy-nav--desktop .glassy-nav-item a:hover {
  color: #FFA877;
}
.glassy-nav--desktop .glassy-nav-item a.active {
  text-decoration: underline;
}

.site-header {
  background-color: transparent;
  padding: 0;
  position: relative;
  min-height: 0;
}

.site-footer {
  background-color: #DE773D;
  color: #EDE6D3;
  padding: 48px 0 24px;
  margin-top: 64px;
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}
@media (min-width: 768px) {
  .footer-widgets {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-widgets {
    grid-template-columns: repeat(4, 1fr);
  }
}
.footer-widgets {
  margin-bottom: 32px;
}
.footer-widgets .widget h3 {
  color: #EDE6D3;
  margin-bottom: 16px;
}
.footer-widgets .widget a {
  color: #EDE6D3;
  opacity: 0.8;
}
.footer-widgets .widget a:hover {
  opacity: 1;
  text-decoration: underline;
}

.site-info {
  text-align: center;
  padding-top: auto;
}
.site-info p {
  margin-bottom: 16px;
  opacity: 0.8;
}
.site-info a {
  color: #EDE6D3;
}
.site-info a:hover {
  text-decoration: underline;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.footer-menu a {
  color: #EDE6D3;
  opacity: 0.8;
}
.footer-menu a:hover {
  opacity: 1;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}
@media (min-width: 768px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-card {
  background-color: #EDE6D3;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.post-thumbnail {
  overflow: hidden;
  background-color: #f8fafc;
}
.post-thumbnail img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
}
.post-thumbnail a:hover img {
  transform: scale(1.05);
}

.post-content {
  padding: 16px;
}
@media (min-width: 768px) {
  .post-content {
    padding: 24px;
  }
}

.entry-header {
  margin-bottom: 16px;
}

.entry-title {
  font-size: 20px;
}
@media (min-width: 768px) {
  .entry-title {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .entry-title {
    font-size: 28px;
  }
}
.entry-title {
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .entry-title {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .entry-title {
    font-size: 30px;
  }
}
@media (min-width: 768px) and (min-width: 1024px) {
  .entry-title {
    font-size: 36px;
  }
}
.entry-title a {
  color: #2C2C2C;
  text-decoration: none;
}
.entry-title a:hover {
  color: #f59e0b;
}

.entry-meta {
  font-size: 14px;
}
@media (min-width: 768px) {
  .entry-meta {
    font-size: 15px;
  }
}
@media (min-width: 1024px) {
  .entry-meta {
    font-size: 16px;
  }
}
.entry-meta {
  color: #64748b;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}
.entry-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.entry-content {
  margin-bottom: 16px;
}
.entry-content p {
  margin-bottom: 16px;
}

.entry-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}

.read-more {
  display: inline-block;
  color: #f59e0b;
  font-weight: 500;
  text-decoration: none;
}
.read-more:hover {
  text-decoration: underline;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-header {
  text-align: center;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .page-header {
    margin-bottom: 48px;
  }
}
.page-header .page-title {
  font-size: 30px;
}
@media (min-width: 768px) {
  .page-header .page-title {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .page-header .page-title {
    font-size: 48px;
  }
}
@media (min-width: 768px) {
  .page-header .page-title {
    font-size: 36px;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .page-header .page-title {
    font-size: 48px;
  }
}
@media (min-width: 768px) and (min-width: 1024px) {
  .page-header .page-title {
    font-size: 60px;
  }
}

.archive-description {
  margin-top: 16px;
  color: #64748b;
  font-size: 18px;
}
@media (min-width: 768px) {
  .archive-description {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  .archive-description {
    font-size: 22px;
  }
}

.no-posts {
  text-align: center;
  padding: 48px 0;
}
@media (min-width: 768px) {
  .no-posts {
    padding: 64px 0;
  }
}
.no-posts h2 {
  margin-bottom: 16px;
}
.no-posts p {
  color: #64748b;
  margin-bottom: 24px;
}

.error-404 {
  text-align: center;
  padding: 48px 0;
}
@media (min-width: 768px) {
  .error-404 {
    padding: 64px 0;
  }
}
.error-404 .page-title {
  font-size: 36px;
}
@media (min-width: 768px) {
  .error-404 .page-title {
    font-size: 48px;
  }
}
@media (min-width: 1024px) {
  .error-404 .page-title {
    font-size: 60px;
  }
}
.error-404 .page-title {
  color: #f59e0b;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .error-404 .page-title {
    font-size: 42px;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .error-404 .page-title {
    font-size: 56px;
  }
}
@media (min-width: 768px) and (min-width: 1024px) {
  .error-404 .page-title {
    font-size: 72px;
  }
}
.error-404 .page-subtitle {
  font-size: 20px;
}
@media (min-width: 768px) {
  .error-404 .page-subtitle {
    font-size: 24px;
  }
}
@media (min-width: 1024px) {
  .error-404 .page-subtitle {
    font-size: 28px;
  }
}
.error-404 .page-subtitle {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .error-404 .page-subtitle {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .error-404 .page-subtitle {
    font-size: 30px;
  }
}
@media (min-width: 768px) and (min-width: 1024px) {
  .error-404 .page-subtitle {
    font-size: 36px;
  }
}
.error-404 .helpful-links {
  margin-top: 32px;
}
.error-404 .helpful-links h3 {
  margin-bottom: 16px;
}
.error-404 .helpful-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .error-404 .helpful-links ul {
    flex-direction: row;
    justify-content: center;
  }
}
.error-404 .helpful-links a {
  display: inline-block;
  padding: 8px 24px;
  background-color: #f59e0b;
  color: #EDE6D3;
  border-radius: 0.5rem;
}
.error-404 .helpful-links a:hover {
  background-color: #FFA877;
  text-decoration: none;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .pagination {
    margin-top: 48px;
  }
}
.pagination .nav-links {
  display: flex;
  gap: 8px;
}
.pagination a,
.pagination span {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  font-size: 14px;
}
@media (min-width: 768px) {
  .pagination a,
  .pagination span {
    font-size: 15px;
  }
}
@media (min-width: 1024px) {
  .pagination a,
  .pagination span {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .pagination a,
  .pagination span {
    padding: 8px 24px;
  }
}
.pagination a {
  color: #2C2C2C;
  background-color: #f8fafc;
}
.pagination a:hover {
  background-color: #f59e0b;
  color: #EDE6D3;
}
.pagination .current {
  background-color: #f59e0b;
  color: #EDE6D3;
  font-weight: 600;
}

.search-form {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.search-form .search-field {
  flex: 1;
  padding: 8px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 16px;
}
@media (min-width: 768px) {
  .search-form .search-field {
    font-size: 17px;
  }
}
@media (min-width: 1024px) {
  .search-form .search-field {
    font-size: 18px;
  }
}
.search-form .search-field:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}
.search-form .search-submit {
  padding: 8px 24px;
  background-color: #f59e0b;
  color: #EDE6D3;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}
.search-form .search-submit:hover {
  background-color: #1e40af;
}

.comments-area {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #e2e8f0;
}
@media (min-width: 768px) {
  .comments-area {
    margin-top: 48px;
  }
}

.comments-title {
  font-size: 24px;
}
@media (min-width: 768px) {
  .comments-title {
    font-size: 30px;
  }
}
@media (min-width: 1024px) {
  .comments-title {
    font-size: 36px;
  }
}
.comments-title {
  margin-bottom: 24px;
}

.comment-list {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}
.comment-list .comment {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
}
.comment-list .comment-author {
  font-weight: 600;
  margin-bottom: 4px;
}
.comment-list .comment-meta {
  font-size: 14px;
}
@media (min-width: 768px) {
  .comment-list .comment-meta {
    font-size: 15px;
  }
}
@media (min-width: 1024px) {
  .comment-list .comment-meta {
    font-size: 16px;
  }
}
.comment-list .comment-meta {
  color: #64748b;
  margin-bottom: 16px;
}
.comment-list .comment-content {
  margin-bottom: 16px;
}

.comment-form .comment-form-author,
.comment-form .comment-form-email,
.comment-form .comment-form-url {
  margin-bottom: 16px;
}
.comment-form .comment-form-author label,
.comment-form .comment-form-email label,
.comment-form .comment-form-url label {
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
}
.comment-form .comment-form-author input,
.comment-form .comment-form-email input,
.comment-form .comment-form-url input {
  width: 100%;
  padding: 8px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 16px;
}
@media (min-width: 768px) {
  .comment-form .comment-form-author input,
  .comment-form .comment-form-email input,
  .comment-form .comment-form-url input {
    font-size: 17px;
  }
}
@media (min-width: 1024px) {
  .comment-form .comment-form-author input,
  .comment-form .comment-form-email input,
  .comment-form .comment-form-url input {
    font-size: 18px;
  }
}
.comment-form .comment-form-author input:focus,
.comment-form .comment-form-email input:focus,
.comment-form .comment-form-url input:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}
.comment-form .comment-form-comment {
  margin-bottom: 16px;
}
.comment-form .comment-form-comment label {
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
}
.comment-form .comment-form-comment textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  min-height: 150px;
  font-family: inherit;
  font-size: 16px;
}
@media (min-width: 768px) {
  .comment-form .comment-form-comment textarea {
    font-size: 17px;
  }
}
@media (min-width: 1024px) {
  .comment-form .comment-form-comment textarea {
    font-size: 18px;
  }
}
.comment-form .comment-form-comment textarea:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}
.comment-form .form-submit {
  margin-top: 16px;
}
.comment-form .form-submit .submit {
  padding: 8px 32px;
  background-color: #f59e0b;
  color: #EDE6D3;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}
.comment-form .form-submit .submit:hover {
  background-color: #1e40af;
}

.hero-section {
  padding: 8vw 4vw;
  text-align: center;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0;
}
@media (min-width: 768px) {
  .hero-section {
    padding: 6vw 4vw;
  }
}
@media (min-width: 1024px) {
  .hero-section {
    padding: 0.5rem 0rem;
    text-align: left;
    margin-bottom: 10rem;
  }
}
.hero-section h1 {
  font-size: 8vw;
  color: #FE762A;
  margin-bottom: 4vw;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 768px) {
  .hero-section h1 {
    font-size: 6vw;
    margin-bottom: 3vw;
  }
}
@media (min-width: 1024px) {
  .hero-section h1 {
    font-size: 3rem;
    margin-bottom: 0rem;
  }
}
.hero-section-email {
  font-size: 4vw;
  color: #2C2C2C;
  margin-bottom: 5vw;
  text-align: center;
  font-weight: 700;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}
@media (min-width: 768px) {
  .hero-section-email {
    font-size: 3vw;
    margin-bottom: 4vw;
  }
}
@media (min-width: 1024px) {
  .hero-section-email {
    font-size: 1.125rem;
    margin-bottom: 5rem;
  }
}
.hero-section__svg {
  position: relative;
  margin-top: 6vw;
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
}
@media (min-width: 768px) {
  .hero-section__svg {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .hero-section__svg {
    margin-top: 2rem;
    width: 100%;
  }
}
.hero-section__svg svg {
  width: 100%;
  height: auto;
  display: block;
}
.hero-section__email {
  margin-top: 4vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2vw;
}
@media (min-width: 1024px) {
  .hero-section__email {
    margin-top: 0.2rem;
    gap: 10px;
  }
}
.hero-section__email-text {
  font-size: 3.5vw;
  font-weight: 500;
  color: #2C2C2C;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: color 0.3s ease;
}
@media (min-width: 1024px) {
  .hero-section__email-text {
    font-size: 14px;
  }
}
.hero-section__email-text:hover {
  color: #FFA877;
}
.hero-section__email-line {
  width: 0;
  height: 2px;
  background: #FFA877;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-section__email-line.animate-expand {
  width: 20vw;
}
@media (min-width: 1024px) {
  .hero-section__email-line.animate-expand {
    width: 100px;
  }
}
.hero-section__scroll-indicator {
  position: absolute;
  bottom: 8vw;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2vw;
  transition: opacity 0.3s ease;
  animation: bounce-subtle 2s ease-in-out infinite;
}
@media (min-width: 1024px) {
  .hero-section__scroll-indicator {
    bottom: 2rem;
    gap: 8px;
  }
}
.hero-section__scroll-text {
  font-size: 2.5vw;
  font-weight: 500;
  color: #2C2C2C;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.5;
}
@media (min-width: 1024px) {
  .hero-section__scroll-text {
    font-size: 10px;
  }
}
.hero-section__scroll-line {
  width: 1px;
  height: 8vw;
  background: linear-gradient(to bottom, #2C2C2C, transparent);
  animation: scroll-line 1.5s ease-in-out infinite;
}
@media (min-width: 1024px) {
  .hero-section__scroll-line {
    height: 40px;
  }
}
.hero-section-button {
  display: inline-block;
  padding: 3vw 6vw;
  font-size: 4vw;
  background-color: #f59e0b;
  color: #EDE6D3;
  border-radius: 2vw;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease-in-out;
}
@media (min-width: 768px) {
  .hero-section-button {
    padding: 2.5vw 5vw;
    font-size: 3.5vw;
  }
}
@media (min-width: 1024px) {
  .hero-section-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 0.5rem;
  }
}
.hero-section-button:hover {
  background-color: #1e40af;
}
.hero-section-content {
  font-size: 4vw;
  color: #64748b;
  margin-bottom: 5vw;
}
@media (min-width: 768px) {
  .hero-section-content {
    font-size: 3vw;
    margin-bottom: 4vw;
  }
}
@media (min-width: 1024px) {
  .hero-section-content {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}

.p-front__background {
  background-color: #FFFFFF;
  padding: 8vw 4vw;
  border-radius: 40px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: margin-top 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-front__background.is-scrolled {
  margin-top: -20vw;
}
@media (min-width: 1024px) {
  .p-front__background.is-scrolled {
    margin-top: -200px;
  }
}
@media (min-width: 1024px) {
  .p-front__background {
    padding: 2.5rem;
  }
}
.p-front__content_container {
  padding-left: 0vw;
  padding-right: 0vw;
  display: flex;
  flex-direction: column;
  gap: 5vw;
}
@media (min-width: 768px) {
  .p-front__content_container {
    padding-left: 0vw;
    padding-right: 0vw;
    gap: 4vw;
  }
}
@media (min-width: 1024px) {
  .p-front__content_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-front__left-column {
  width: 100%;
}
@media (min-width: 1024px) {
  .p-front__left-column {
    width: auto;
  }
}
.p-front__title {
  font-size: 6vw;
  font-weight: 700;
  color: #FE762A;
  margin-bottom: 5vw;
  text-align: left;
  margin-top: 0vw;
  scroll-margin-top: 20vw;
}
@media (min-width: 1024px) {
  .p-front__title {
    font-size: 32px;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    scroll-margin-top: 250px;
  }
}
.p-front__content_container_inner {
  display: flex;
  flex-direction: column;
  gap: 3vw;
}
@media (min-width: 1024px) {
  .p-front__content_container_inner {
    gap: 2rem;
  }
}
.p-front__project-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  margin-top: 8vw;
  transition: transform 0.2s ease-in-out, opacity 0.6s ease-out, transform 0.6s ease-out;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .p-front__project-card {
    margin-top: 17px;
    width: 500px;
  }
}
.p-front__project-card:hover {
  transform: translateY(-8px);
}
.p-front__project-card:hover .p-front__project-thumbnail {
  transform: scale(1.05) translateY(-5px);
}
.p-front__project-card:hover .p-front__project-green-bg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.p-front__project-thumbnail {
  position: absolute;
  left: 3vw;
  bottom: 5vw;
  width: 35vw;
  height: 22vw;
  background-color: rgba(255, 248, 245, 0.96);
  border-radius: 0 20px 0 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0vw;
  z-index: 1;
  transition: transform 0.3s ease-in-out;
}
@media (min-width: 1024px) {
  .p-front__project-thumbnail {
    left: 12px;
    bottom: 0;
    width: 150px;
    height: 94px;
    padding: 0px;
    margin-bottom: 10px;
  }
}
.p-front__project-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
  transition: transform 0.3s ease-in-out;
}
.p-front__project-green-bg {
  width: 100%;
  background-color: #7DBFA6;
  border-radius: 0 0 5px 5px;
  min-height: 18vw;
  display: flex;
  transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
  align-items: center;
}
@media (min-width: 1024px) {
  .p-front__project-green-bg {
    min-height: 77px;
  }
}
.p-front__project-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2vw 4vw;
  padding-left: 42vw;
  gap: 1.5vw;
}
@media (min-width: 1024px) {
  .p-front__project-info {
    padding: 14px 20px;
    padding-left: 190px;
    gap: 7px;
  }
}
.p-front__project-title {
  font-size: 4vw;
  font-weight: 700;
  color: white;
  letter-spacing: 0.1em;
}
@media (min-width: 1024px) {
  .p-front__project-title {
    font-size: 16px;
  }
}
.p-front__project-divider {
  width: 45vw;
  height: 0;
  border: 0.5px solid rgba(255, 248, 245, 0.6);
}
@media (min-width: 1024px) {
  .p-front__project-divider {
    width: 280px;
  }
}
.p-front__project-tech {
  display: flex;
  align-items: center;
  gap: 1vw;
}
@media (min-width: 1024px) {
  .p-front__project-tech {
    gap: 10px;
  }
}
.p-front__project-tech-item {
  font-size: 2vw;
  font-weight: 400;
  color: white;
  letter-spacing: 0.1em;
}
@media (min-width: 1024px) {
  .p-front__project-tech-item {
    font-size: 12px;
  }
}
.p-front__project-tech-dot {
  width: 1.2vw;
  height: 1.2vw;
  background-color: #FFF8F5;
  border-radius: 50%;
}
@media (min-width: 1024px) {
  .p-front__project-tech-dot {
    width: 5px;
    height: 5px;
  }
}
.p-front__right-column {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}
@media (min-width: 1024px) {
  .p-front__right-column {
    width: auto;
    gap: 1.5rem;
  }
}
.p-front__description {
  font-size: 4vw;
  font-weight: 500;
  color: #2C2C2C;
  letter-spacing: 0.13em;
  line-height: 1.25;
  margin-top: 10vw;
  scroll-margin-top: 20vw;
}
@media (min-width: 1024px) {
  .p-front__description {
    font-size: 16px;
    line-height: 20px;
    margin-top: 1rem;
    line-height: 2;
    scroll-margin-top: 250px;
  }
}
.p-front__stats {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  gap: 3vw;
  margin-bottom: 10vw;
}
@media (min-width: 1024px) {
  .p-front__stats {
    gap: 19px;
    margin-bottom: 0vw;
  }
}
.p-front__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.2s ease-in-out;
  cursor: default;
}
.p-front__stat-number {
  font-size: 8vw;
  font-weight: 700;
  color: #2C2C2C;
  letter-spacing: 0.05em;
  line-height: 1.2;
  transition: transform 0.2s ease-in-out;
}
@media (min-width: 1024px) {
  .p-front__stat-number {
    font-size: 32px;
    line-height: 39px;
  }
}
.p-front__stat-label {
  font-size: 2.5vw;
  font-weight: 500;
  color: #2C2C2C;
  line-height: 1.2;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .p-front__stat-label {
    font-size: 10px;
    line-height: 12px;
  }
}
.p-front .p-front__stat:first-child .p-front__stat-label {
  margin-left: 6vw;
  margin-top: -5vw;
}
@media (min-width: 1024px) {
  .p-front .p-front__stat:first-child .p-front__stat-label {
    margin-left: 25px;
    margin-top: -20px;
  }
}
.p-front .p-front__stat:nth-child(2) .p-front__stat-label {
  margin-left: 15vw;
  margin-top: -5vw;
}
@media (min-width: 1024px) {
  .p-front .p-front__stat:nth-child(2) .p-front__stat-label {
    margin-left: 60px;
    margin-top: -20px;
  }
}
.p-front .p-front__stat:nth-child(3) .p-front__stat-label {
  margin-left: 11vw;
  margin-top: -5vw;
}
@media (min-width: 1024px) {
  .p-front .p-front__stat:nth-child(3) .p-front__stat-label {
    margin-left: 45px;
    margin-top: -20px;
  }
}
.p-front__tools-section {
  display: flex;
  flex-direction: column;
  gap: 3vw;
}
@media (min-width: 1024px) {
  .p-front__tools-section {
    gap: 16px;
  }
}
.p-front__tools-title {
  font-size: 5.5vw;
  font-weight: 700;
  color: #FE762A;
  position: relative;
  padding-top: 3vw;
}
@media (min-width: 1024px) {
  .p-front__tools-title {
    font-size: 24px;
    padding-top: 16px;
  }
}
.p-front__tools-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #000000;
  transition: width 0.8s ease-out;
}
.is-visible .p-front__tools-title::before {
  width: 10vw;
}
@media (min-width: 1024px) {
  .is-visible .p-front__tools-title::before {
    width: 40px;
  }
}
.p-front__tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2vw 2vw;
}
@media (min-width: 768px) {
  .p-front__tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .p-front__tools-grid {
    gap: 8px 25px;
  }
}
.p-front__tool-item {
  display: flex;
  align-items: center;
  gap: 2vw;
  transition: transform 0.2s ease-in-out, opacity 0.5s ease-out;
}
@media (min-width: 1024px) {
  .p-front__tool-item {
    gap: 8px;
  }
}
.p-front__tool-item:hover {
  transform: translateY(-5px);
}
.p-front__tool-item:hover .p-front__tool-icon {
  transform: scale(1.15) rotate(8deg);
  background-color: rgb(194.6, 194.6, 194.6);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.p-front__tool-item:hover .p-front__tool-icon img {
  transform: scale(1.1);
}
.p-front__tool-item:hover .p-front__tool-name {
  color: rgb(18.5, 18.5, 18.5);
}
.p-front__tool-icon {
  width: 7vw;
  height: 7vw;
  min-width: 7vw;
  background-color: #D7D7D7;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
@media (min-width: 1024px) {
  .p-front__tool-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }
}
.p-front__tool-icon img {
  width: 5.5vw;
  height: 5.5vw;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.2s ease-in-out;
}
@media (min-width: 1024px) {
  .p-front__tool-icon img {
    width: 24px;
    height: 24px;
  }
}
.p-front__tool-name {
  font-size: 3.2vw;
  font-weight: 500;
  color: #2C2C2C;
  letter-spacing: 0.13em;
  transition: color 0.2s ease-in-out;
}
@media (min-width: 1024px) {
  .p-front__tool-name {
    font-size: 13px;
    line-height: 16px;
  }
}

.p-front__collab {
  background-color: #EDE6D3;
  padding: 15vw 0vw;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1024px) {
  .p-front__collab {
    padding: 5rem 0rem;
  }
}

.p-front__contributions--title {
  text-align: center;
  font-size: 8vw;
  font-weight: 700;
  color: #FE762A;
  margin-bottom: 0vw;
}
@media (min-width: 1024px) {
  .p-front__contributions--title {
    font-size: 48px;
    margin-bottom: 0rem;
  }
}

.collab-carousel {
  width: 100%;
  position: relative;
  perspective: 1200px;
  perspective-origin: 50% 50%;
  height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .collab-carousel {
    height: 550px;
  }
}

.collab-carousel__container {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.collab-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 65vw;
  height: 45vw;
  margin-left: -32.5vw;
  margin-top: -22.5vw;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
  cursor: pointer;
}
@media (min-width: 768px) {
  .collab-card {
    width: 50vw;
    height: 35vw;
    margin-left: -25vw;
    margin-top: -17.5vw;
  }
}
@media (min-width: 1024px) {
  .collab-card {
    width: 480px;
    height: 340px;
    margin-left: -240px;
    margin-top: -170px;
  }
}
.collab-card[data-position="0"] {
  transform: translateX(0) translateZ(100px) rotateY(0deg) scale(1);
  opacity: 1;
  z-index: 10;
}
.collab-card[data-position="0"] .collab-card__button {
  opacity: 1;
  pointer-events: auto;
}
.collab-card[data-position="1"] {
  transform: translateX(50%) translateZ(-200px) rotateY(-35deg) scale(0.88);
  opacity: 0.75;
  z-index: 9;
}
.collab-card[data-position="2"] {
  transform: translateX(90%) translateZ(-450px) rotateY(-55deg) scale(0.7);
  opacity: 0.5;
  z-index: 8;
}
.collab-card[data-position="-1"] {
  transform: translateX(-50%) translateZ(-200px) rotateY(35deg) scale(0.88);
  opacity: 0.75;
  z-index: 9;
}
.collab-card[data-position="-2"] {
  transform: translateX(-90%) translateZ(-450px) rotateY(55deg) scale(0.7);
  opacity: 0.5;
  z-index: 8;
}
.collab-card[data-position="3"], .collab-card[data-position="-3"], .collab-card[data-position="4"], .collab-card[data-position="-4"] {
  opacity: 0;
  pointer-events: none;
  transform: translateX(0) translateZ(-800px) scale(0.5);
}

.collab-card__image {
  display: block;
  cursor: pointer;
  width: 100%;
  height: 100%;
  border-radius: 5vw;
  overflow: hidden;
  background: linear-gradient(135deg, #E0E0E0 0%, #C0C0C0 100%);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}
@media (min-width: 1024px) {
  .collab-card__image {
    border-radius: 1.5rem;
  }
}
.collab-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.collab-card__button {
  position: absolute;
  bottom: 5vw;
  left: 50%;
  transform: translateX(-50%);
  padding: 2.5vw 6vw;
  background-color: #FE762A;
  color: #FFFFFF;
  border: none;
  border-radius: 10vw;
  font-weight: 700;
  font-size: 3.5vw;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(254, 118, 42, 0.35);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (min-width: 1024px) {
  .collab-card__button {
    bottom: 2.5rem;
    padding: 0.875rem 2.5rem;
    border-radius: 2rem;
    font-size: 16px;
  }
}
.collab-card__button:hover {
  background-color: rgb(253.8093457944, 91.8803738318, 1.3906542056);
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 12px 28px rgba(254, 118, 42, 0.45);
}

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #EDE6D3;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}
.page-loader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4vw;
}
@media (min-width: 1024px) {
  .page-loader__content {
    gap: 20px;
  }
}
.page-loader__text {
  font-size: 10vw;
  font-weight: 700;
  color: #f59e0b;
  letter-spacing: 0.2em;
  animation: pulse-text 1.5s ease-in-out infinite;
}
@media (min-width: 1024px) {
  .page-loader__text {
    font-size: 48px;
  }
}
.page-loader__bar {
  width: 40vw;
  height: 3px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .page-loader__bar {
    width: 200px;
  }
}
.page-loader__progress {
  width: 0;
  height: 100%;
  background-color: #f59e0b;
  border-radius: 3px;
  animation: loading-bar 0.8s ease-out forwards;
}

.page-loaded .hero-section,
.page-loaded .p-front {
  animation: fade-in-up 0.8s ease-out forwards;
}
.page-loaded .p-front {
  animation-delay: 0.2s;
  opacity: 0;
}

.p-front__contact {
  scroll-margin-top: 20vw;
}
@media (min-width: 1024px) {
  .p-front__contact {
    scroll-margin-top: 100px;
  }
}
.p-front__contact--title {
  position: relative;
  text-align: center;
  color: #FE762A;
  z-index: 1;
}
.p-front__contact--title::before {
  content: "";
  position: absolute;
  top: 80%;
  left: 25%;
  transform: translate(-50%, -50%);
  width: 15vw;
  height: 20vw;
  background: url("../images/png/contact-part.png") center/contain no-repeat;
  z-index: -1;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .p-front__contact--title::before {
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    margin-left: -14.5rem;
    margin-top: 1.5rem;
  }
}
.p-front__contact--gmail {
  font-size: 4vw;
  color: #2C2C2C;
  margin-bottom: 0vw;
  text-align: center;
  font-weight: 400;
}
@media (min-width: 768px) {
  .p-front__contact--gmail {
    font-size: 3vw;
    margin-bottom: 0vw;
  }
}
@media (min-width: 1024px) {
  .p-front__contact--gmail {
    font-size: 1.125rem;
    margin-bottom: 0rem;
  }
}
.p-front__contact--phone {
  font-size: 4vw;
  color: #2C2C2C;
  margin-bottom: 5vw;
  text-align: center;
  font-weight: 400;
}
@media (min-width: 768px) {
  .p-front__contact--phone {
    font-size: 3vw;
    margin-bottom: 4vw;
  }
}
@media (min-width: 1024px) {
  .p-front__contact--phone {
    font-size: 1.125rem;
    margin-bottom: 5rem;
  }
}

.p-works_single {
  padding-bottom: 15vw;
}
@media (min-width: 1024px) {
  .p-works_single {
    padding-bottom: 0rem;
  }
}
.p-works_single__hero {
  width: 100%;
  margin-bottom: 10vw;
}
@media (min-width: 1024px) {
  .p-works_single__hero {
    margin-bottom: 5rem;
  }
}
.p-works_single__hero-image {
  width: 100%;
}
.p-works_single__hero-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1720/960;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-works_single__back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 1.5vw;
  margin-bottom: 6vw;
  color: rgba(0, 0, 0, 0.5);
  font-size: 3vw;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (min-width: 1024px) {
  .p-works_single__back-to-top {
    gap: 6px;
    margin-bottom: 2.5rem;
    font-size: 13px;
  }
}
.p-works_single__back-to-top svg {
  width: 3.5vw;
  height: 3.5vw;
  opacity: 0.5;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (min-width: 1024px) {
  .p-works_single__back-to-top svg {
    width: 16px;
    height: 16px;
  }
}
.p-works_single__back-to-top span {
  position: relative;
}
.p-works_single__back-to-top span::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.8);
  transition: width 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.p-works_single__back-to-top:hover {
  color: #f64611;
}
.p-works_single__back-to-top:hover svg {
  opacity: 1;
  transform: translateX(-3px);
}
.p-works_single__back-to-top:hover span::after {
  width: 100%;
}
.p-works_single__container {
  margin: 10vw 4vw 0 4vw;
  padding: 5vw;
  border-radius: 4vw;
  background-color: #FFFFFF;
  box-shadow: 0 4px 30px rgba(89, 89, 89, 0.185);
}
@media (min-width: 1024px) {
  .p-works_single__container {
    max-width: 1250rem;
    padding: 3rem 4rem;
    margin-top: 4rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 30px rgba(89, 89, 89, 0.422);
    position: relative;
    z-index: 1;
  }
}
.p-works_single__title {
  font-size: 6vw;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 6vw;
}
@media (min-width: 1024px) {
  .p-works_single__title {
    font-size: 32px;
    margin-bottom: 2rem;
  }
}
.p-works_single__lead {
  font-size: 3.8vw;
  font-weight: 400;
  color: #333;
  line-height: 2;
  margin-bottom: 10vw;
  max-width: 300vw;
}
@media (min-width: 1024px) {
  .p-works_single__lead {
    font-size: 16px;
    margin-bottom: 4rem;
  }
}
.p-works_single__gallery-hero {
  display: flex;
  flex-direction: row;
  gap: 3vw;
  margin-bottom: 10vw;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .p-works_single__gallery-hero {
    gap: 2rem;
    margin-bottom: 4rem;
  }
}
.p-works_single__gallery-hero-item {
  overflow: hidden;
  border-radius: 4px;
}
.p-works_single__gallery-hero-item--pc {
  flex: 1;
}
.p-works_single__gallery-hero-item--pc img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 1024px) {
  .p-works_single__gallery-hero-item--pc img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-works_single__gallery-hero-item--sp {
  width: 30vw;
  height: auto;
}
@media (min-width: 1024px) {
  .p-works_single__gallery-hero-item--sp {
    width: 280px;
    height: 607px;
  }
}
.p-works_single__gallery-hero-item--sp img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-works_single__gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4vw;
  margin-bottom: 10vw;
}
@media (min-width: 768px) {
  .p-works_single__gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .p-works_single__gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
  }
}
.p-works_single__gallery-item {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vw;
  min-height: 50vw;
}
@media (min-width: 1024px) {
  .p-works_single__gallery-item {
    padding: 1.5rem;
    min-height: 300px;
  }
}
@media (min-width: 1024px) {
  .p-works_single__gallery-item:first-child {
    grid-column: span 2;
    height: 400px;
  }
}
.p-works_single__gallery-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.p-works_single__info {
  margin-bottom: 10vw;
  border-top: 1px solid #e5e5e5;
}
@media (min-width: 1024px) {
  .p-works_single__info {
    margin-bottom: 4rem;
  }
}
.p-works_single__info-item {
  display: flex;
  flex-direction: column;
  padding: 4vw 0;
  border-bottom: 1px solid #e5e5e5;
}
@media (min-width: 768px) {
  .p-works_single__info-item {
    flex-direction: row;
    align-items: baseline;
    padding: 1rem 0;
  }
}
.p-works_single__info-label {
  font-size: 3vw;
  font-weight: 700;
  color: #1a1a1a;
  min-width: 30vw;
  margin-bottom: 1vw;
}
@media (min-width: 768px) {
  .p-works_single__info-label {
    font-size: 14px;
    min-width: 180px;
    margin-bottom: 0;
  }
}
.p-works_single__info-value {
  font-size: 3.5vw;
  color: #333;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-works_single__info-value {
    font-size: 15px;
  }
}
.p-works_single__info-value a {
  color: #0066cc;
  text-decoration: none;
  word-break: break-all;
}
.p-works_single__info-value a:hover {
  text-decoration: underline;
}
.p-works_single__section {
  margin-bottom: 12vw;
}
@media (min-width: 1024px) {
  .p-works_single__section {
    margin-bottom: 5rem;
  }
}
.p-works_single__section-title {
  font-size: 5vw;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4vw;
  padding-bottom: 2vw;
  border-bottom: 2px solid #1a1a1a;
}
@media (min-width: 1024px) {
  .p-works_single__section-title {
    font-size: 22px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
  }
}
.p-works_single__section-content {
  font-size: 3.5vw;
  color: #333;
  line-height: 2;
  max-width: 300vw;
}
@media (min-width: 1024px) {
  .p-works_single__section-content {
    font-size: 15px;
  }
}
.p-works_single__section-content p {
  margin-bottom: 4vw;
  max-width: 300vw;
}
@media (min-width: 1024px) {
  .p-works_single__section-content p {
    margin-bottom: 1.5rem;
  }
}
.p-works_single__section-content p:last-child {
  margin-bottom: 0;
}
.p-works_single__capture {
  margin-bottom: 8vw;
}
@media (min-width: 1024px) {
  .p-works_single__capture {
    margin-bottom: 3rem;
  }
}
.p-works_single__capture-1col img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 4px;
}
@media (min-width: 1024px) {
  .p-works_single__capture-1col img {
    width: 200px;
    height: 550px;
  }
}
.p-works_single__capture-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4vw;
}
@media (min-width: 768px) {
  .p-works_single__capture-2col {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
.p-works_single__capture-2col img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.p-works_single__capture-3col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4vw;
}
@media (min-width: 768px) {
  .p-works_single__capture-3col {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
.p-works_single__capture-3col img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.p-works_single__capture-3col-item {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  gap: 1vw;
}
@media (min-width: 1024px) {
  .p-works_single__capture-3col-item {
    gap: 0.5rem;
  }
}
.p-works_single__capture-3col-label {
  font-size: 3vw;
  color: #999;
}
@media (min-width: 1024px) {
  .p-works_single__capture-3col-label {
    font-size: 12px;
  }
}
.p-works_single__capture-3col-value {
  font-size: 4vw;
  font-weight: 700;
  color: #1a1a1a;
}
@media (min-width: 1024px) {
  .p-works_single__capture-3col-value {
    font-size: 18px;
  }
}
.p-works_single__capture-3col-link {
  font-size: 3.5vw;
  color: #0066cc;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1vw;
  word-break: break-all;
  overflow-wrap: anywhere;
  min-width: 0;
}
@media (min-width: 1024px) {
  .p-works_single__capture-3col-link {
    font-size: 14px;
    gap: 0.25rem;
  }
}
.p-works_single__capture-3col-link:hover {
  text-decoration: underline;
}
.p-works_single__capture-3col-link svg {
  flex-shrink: 0;
}
.p-works_single__related {
  margin-top: 15vw;
  padding-top: 10vw;
  border-top: 1px solid #e5e5e5;
}
@media (min-width: 1024px) {
  .p-works_single__related {
    margin-top: 5rem;
    padding-top: 4rem;
  }
}
.p-works_single__related-title {
  font-size: 5vw;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6vw;
}
@media (min-width: 1024px) {
  .p-works_single__related-title {
    font-size: 22px;
    margin-bottom: 2.5rem;
  }
}
.p-works_single__related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6vw;
}
@media (min-width: 768px) {
  .p-works_single__related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .p-works_single__related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-works_single__related-card {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.p-works_single__related-card:hover {
  opacity: 0.8;
}
.p-works_single__related-card:hover .p-works_single__related-image img {
  transform: scale(1.03);
}
.p-works_single__related-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 3vw;
  background-color: #f5f5f5;
}
@media (min-width: 1024px) {
  .p-works_single__related-image {
    margin-bottom: 1rem;
  }
}
.p-works_single__related-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.p-works_single__related-client {
  font-size: 2.8vw;
  color: #666;
  margin-bottom: 1vw;
}
@media (min-width: 1024px) {
  .p-works_single__related-client {
    font-size: 12px;
    margin-bottom: 0.25rem;
  }
}
.p-works_single__related-name {
  font-size: 3.5vw;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
}
@media (min-width: 1024px) {
  .p-works_single__related-name {
    font-size: 15px;
  }
}
.p-works_single__related-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1vw;
  margin-top: 2vw;
}
@media (min-width: 1024px) {
  .p-works_single__related-tags {
    gap: 0.5rem;
    margin-top: 0.5rem;
  }
}
.p-works_single__related-tag {
  font-size: 2.5vw;
  color: #666;
}
@media (min-width: 1024px) {
  .p-works_single__related-tag {
    font-size: 11px;
  }
}
.p-works_single__breadcrumb {
  padding: 4vw 0;
  font-size: 3vw;
  color: #666;
  margin-top: 10vw;
}
@media (min-width: 1024px) {
  .p-works_single__breadcrumb {
    padding: 1.5rem 0;
    font-size: 12px;
    margin-top: 4rem;
  }
}
.p-works_single__breadcrumb a {
  color: #666;
  text-decoration: none;
}
.p-works_single__breadcrumb a:hover {
  text-decoration: underline;
}
.p-works_single__breadcrumb span {
  margin: 0 1vw;
}
@media (min-width: 1024px) {
  .p-works_single__breadcrumb span {
    margin: 0 0.5rem;
  }
}
/* ============================================
   Language Toggle
   ============================================ */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  border-radius: 10vw;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.06);
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  cursor: pointer;
  user-select: none;
  flex-shrink: 0;
}

.lang-toggle span {
  padding: 1.2vw 2.5vw;
  font-size: 2.6vw;
  font-weight: 600;
  color: #999;
  transition: all 0.25s ease;
  white-space: nowrap;
  line-height: 1.2;
}

.lang-toggle .lang-toggle__active {
  background: #FE762A;
  color: #fff;
  border-radius: 10vw;
}

/* Desktop nav: accommodate toggle */
@media (min-width: 1024px) {
  .glassy-nav--desktop {
    height: auto;
  }

  .glassy-nav--desktop .lang-toggle {
    margin-top: 0.35rem;
  }

  .lang-toggle span {
    padding: 0.3rem 0.55rem;
    font-size: 0.7rem;
  }
}

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