:root {
  --bg: #060606;
  --surface: #0f0f0f;
  --accent: #fdc448;
  --muted: #9f9f9f;
  --white: #ffffff;
  --border: rgba(159, 159, 159, 0.2);
  --font-display: "Rajdhani", sans-serif;
  --font-body: "Rubik", sans-serif;
  --radius: 20px;
  --container: 1290px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

/* Page loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity 0.55s var(--ease), visibility 0.55s;
}

.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__logo {
  width: min(78vw, 420px);
  height: auto;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Atmosphere */
.glow {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(200px);
  pointer-events: none;
  z-index: 0;
}

.glow--1 {
  top: 40%;
  left: -5%;
  opacity: 0.25;
}

.glow--2 {
  top: 70%;
  right: -8%;
  opacity: 0.3;
}

.glow--3 {
  top: 20%;
  right: 15%;
  opacity: 0.15;
}

main,
.header,
.footer {
  position: relative;
  z-index: 1;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.logo__mark {
  width: 28px;
  height: 32px;
  background: var(--accent);
  clip-path: polygon(35% 0, 100% 0, 100% 70%, 55% 100%, 0 55%, 0 30%);
}

.logo__text {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: capitalize;
}

.logo__img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.logo__full {
  width: min(280px, 70vw);
  height: auto;
  object-fit: contain;
  display: block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s, outline-color 0.3s;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--accent);
  color: var(--bg);
}

.btn--outline {
  outline: 1px solid var(--white);
  outline-offset: -1px;
  color: var(--white);
}

.btn--outline:hover {
  background: var(--accent);
  color: var(--bg);
  outline-color: var(--accent);
}

.btn--sm {
  padding: 0.85rem 1.5rem;
}

.btn--block {
  width: 100%;
}

.btn__icon {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.75rem;
}

.btn__icon--light {
  background: var(--white);
}

.btn__icon--dark {
  background: rgba(0, 0, 0, 0.2);
}

.btn--primary .btn__icon--dark,
.btn--primary .btn__icon--light {
  color: var(--bg);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
  backdrop-filter: blur(16px);
  background: rgba(6, 6, 6, 0.75);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.header.is-scrolled {
  border-bottom-color: var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.25s;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero {
  min-height: min(100vh, 900px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(255, 255, 255, 0.04), transparent 60%),
    var(--surface);
  padding: 4rem 0 5rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__role {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: capitalize;
  margin-bottom: 0.5rem;
}

.hero__name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.8rem);
  font-weight: 700;
  line-height: 0.95;
  margin-bottom: 1.25rem;
}

.hero__desc {
  max-width: 30rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.875;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__visual {
  display: flex;
  justify-content: center;
}

.hero__frame {
  position: relative;
  width: min(100%, 480px);
  aspect-ratio: 1;
}

.hero__ring {
  position: absolute;
  inset: 8%;
  border: 2.5px solid rgba(253, 196, 72, 0.35);
  border-radius: 50%;
  animation: pulse-ring 4s ease-in-out infinite;
}

.hero__ring::before,
.hero__ring::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--accent);
}

.hero__ring::before {
  top: 8%;
  left: 18%;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.hero__ring::after {
  bottom: 12%;
  right: 10%;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.hero__photo {
  position: absolute;
  inset: 14%;
  width: 72%;
  height: 72%;
  margin: auto;
  object-fit: cover;
  border-radius: 50%;
  border: 2.5px solid var(--accent);
  animation: float-y 6s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.03);
    opacity: 0.75;
  }
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Intro */
.intro {
  padding: 4rem 0;
  position: relative;
}

.intro::before,
.intro::after {
  content: "";
  position: absolute;
  top: 0;
  width: min(40%, 400px);
  height: 100%;
  pointer-events: none;
}

.intro::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.intro::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.intro__text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-transform: capitalize;
  color: var(--muted);
}

.intro__text em {
  font-style: normal;
  color: var(--accent);
}

/* Sections */
.section {
  padding: 6rem 0;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.eyebrow--light {
  color: var(--white);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.25;
  text-transform: capitalize;
}

.section__text {
  color: var(--muted);
  line-height: 1.875;
  max-width: 40rem;
}

.section__text--center {
  margin-inline: auto;
  text-align: center;
}

.section__text em {
  font-style: normal;
  color: var(--accent);
}

.section__head {
  margin-bottom: 3rem;
}

.section__head--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.section__head--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.section__cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.panel {
  background: var(--surface);
  border-radius: 40px;
  padding: clamp(2rem, 5vw, 4rem);
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.about__stats {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 2rem;
}

.about__stats::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  left: -10%;
  bottom: 10%;
  border-radius: 50%;
  background: linear-gradient(0deg, transparent, var(--accent));
  filter: blur(4px);
  opacity: 0.55;
  z-index: -1;
}

.stat-card {
  background: rgba(22, 22, 22, 0.55);
  border: 0.5px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(35px);
  border-radius: var(--radius);
  box-shadow: 15px 26px 50px rgba(253, 196, 72, 0.04);
}

.stat-card--lg {
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.stat-card__avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background:
    url("../images/profile.jpeg")
      center / cover,
    var(--bg);
}

.stat-card__value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-card__label {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.2;
  max-width: 16rem;
}

.stat-card--sm {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
}

.stat-card__icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--bg);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 1.75rem;
  flex-shrink: 0;
}

.stat-card__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  text-transform: capitalize;
}

.stat-card__meta {
  color: var(--white);
  margin-top: 0.25rem;
}

.about__copy .section__title {
  margin-bottom: 1rem;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0;
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.feature-card__icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.875;
}

/* Gallery / Services */
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.filter {
  padding: 0.4rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  outline: 1px solid var(--muted);
  outline-offset: -1px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, outline-color 0.25s;
}

.filter.is-active,
.filter:hover {
  background: var(--accent);
  color: var(--bg);
  outline-color: var(--accent);
}

.gallery {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(240px, 1.35fr) minmax(180px, 0.9fr) minmax(180px, 0.9fr);
  grid-template-rows: 305px 305px;
  gap: 1.25rem;
}

.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  background: #c4c4c4;
  transition: opacity 0.35s, transform 0.35s var(--ease);
}

.gallery__item.is-hidden {
  opacity: 0.2;
  transform: scale(0.98);
  pointer-events: none;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__item--tall {
  grid-row: 1 / -1;
}

.gallery__item--wide {
  grid-row: 1 / -1;
}

/* Expertise */
.expertise__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.expertise__row {
  display: grid;
  grid-template-columns: auto 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s;
}

.expertise__row:hover {
  border-color: rgba(253, 196, 72, 0.45);
}

.expertise__pct {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--accent);
  display: grid;
  place-items: center;
}

.expertise__pct span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
  padding: 0.25rem;
}

.expertise__row h3 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  text-transform: none;
}

.expertise__row p {
  color: var(--muted);
  line-height: 1.875;
}

/* Testimonials */
.testimonials__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 1.5rem;
  overflow: hidden;
}

.testimonial {
  position: relative;
  border: 1px solid var(--muted);
  border-radius: var(--radius);
  padding: 3.5rem 2.5rem 2.5rem;
  transition: border-color 0.3s, transform 0.4s var(--ease);
}

.testimonial.is-active {
  border-color: var(--accent);
}

.testimonial__quote-mark {
  position: absolute;
  top: -1.5rem;
  left: 2.5rem;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
}

.testimonial__text {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: 2rem;
}

.testimonial__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testimonial__author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  outline: 1px solid var(--muted);
  outline-offset: 6px;
}

.testimonial__role {
  color: var(--muted);
  font-size: 0.95rem;
}

.testimonial__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.testimonial__stars {
  color: var(--accent);
  display: flex;
  gap: 0.25rem;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--muted);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.dot.is-active {
  background: var(--accent);
  outline: 1px solid var(--accent);
  outline-offset: 8px;
  transform: scale(1.15);
}

/* Skills */
.skills__panel {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: center;
}

.skills__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.skill-card {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s, transform 0.35s var(--ease);
}

.skill-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.skill-card__logo {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.skill-card__logo--framer {
  color: #ff494a;
  font-family: var(--font-display);
  font-weight: 700;
}

.skill-card__logo--webflow {
  color: #3827c8;
}

.skill-card__logo--figma {
  color: #a259ff;
}

.skill-card__logo--wp {
  color: #0073aa;
}

.skill-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.skill-card p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Projects */
.projects__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.project-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.4s var(--ease);
}

.project-card:hover {
  transform: translateY(-6px);
}

.project-card__media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 550 / 396;
  background: #c4c4c4;
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.project-card:hover .project-card__media img {
  transform: scale(1.05);
}

.project-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.project-card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: none;
}

.project-card__type {
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: -0.35rem;
}

.project-card__desc {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.project-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  width: 100%;
}

.project-card__actions .btn {
  flex: 1 1 auto;
  justify-content: center;
  text-align: center;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tags span {
  padding: 0.35rem 0.75rem;
  border-radius: 10px;
  outline: 1px solid var(--accent);
  outline-offset: -1px;
  color: var(--accent);
  font-size: 0.875rem;
}

/* Education */
.education__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.education__card {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.education__card h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0.5rem 0 0.75rem;
}

.education__list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  color: var(--muted);
  line-height: 1.6;
}

.education__list li {
  padding-left: 1rem;
  position: relative;
}

.education__list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 0.55em;
}

@media (max-width: 900px) {
  .education__grid {
    grid-template-columns: 1fr;
  }
}

.contact__lead {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 1.5rem;
  max-width: 28rem;
}

/* Pricing */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.price-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.price-card:hover,
.price-card--featured {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(253, 196, 72, 0.08);
}

.price-card__icon {
  width: 65px;
  height: 65px;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 2rem;
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  opacity: 0.85;
}

.price-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-align: left;
  width: 100%;
  max-width: 260px;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
}

.price-card li i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 0.6rem;
  display: grid;
  place-items: center;
}

.price-card hr {
  width: 100%;
  border: none;
  border-top: 1px solid rgba(227, 227, 227, 0.5);
  opacity: 0.5;
  margin: 0.5rem 0;
}

.price-card__amount {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.price-card__period {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.price-card .btn {
  border-radius: 10px;
}

/* Contact */
.contact__panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3.5rem);
}

.contact__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.15;
  margin-bottom: 2.5rem;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--muted);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact__label {
  display: block;
  color: var(--muted);
  font-size: 0.875rem;
}

.contact__form h3 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--muted);
  opacity: 0.85;
  margin-bottom: 0;
  transition: border-color 0.25s, opacity 0.25s;
}

.contact__form textarea {
  margin-bottom: 1.25rem;
  resize: vertical;
}

.contact__form input:focus,
.contact__form textarea:focus {
  opacity: 1;
  border-color: var(--accent);
}

/* Blog */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease);
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-card__media {
  position: relative;
  aspect-ratio: 410 / 291;
  background: #c4c4c4;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__date {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0.35rem 1.25rem;
  border-radius: 20px 10px 10px 0;
}

.blog-card__body {
  padding: 1.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
}

.blog-card__meta i {
  margin-right: 0.35rem;
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
}

/* Footer */
.footer {
  background: var(--surface);
  padding: 4rem 0 2rem;
  margin-top: 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.footer__brand p,
.footer__news p {
  color: var(--muted);
  margin: 1rem 0 1.5rem;
  line-height: 1.875;
  max-width: 20rem;
}

.socials {
  display: flex;
  gap: 0.75rem;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  transition: background 0.25s, color 0.25s;
}

.socials a:hover {
  background: var(--accent);
  color: var(--bg);
}

.footer__col h4,
.footer__news h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer__col a,
.footer__col p {
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer__col a:hover {
  color: var(--accent);
}

.footer__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0.5px solid var(--accent);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}

.footer__news {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.news-form {
  display: flex;
  align-items: center;
  border: 1px solid var(--muted);
  border-radius: 999px;
  padding: 0.35rem 0.35rem 0.35rem 1.25rem;
  gap: 0.5rem;
}

.news-form input {
  flex: 1;
  min-width: 0;
}

.news-form button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}

.news-form button:hover {
  transform: scale(1.05);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  color: var(--muted);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__legal a:hover {
  color: var(--accent);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay {
  transition-delay: 0.15s;
}

/* Responsive */
@media (max-width: 1100px) {
  .header__cta {
    display: none;
  }

  .nav {
    gap: 1.1rem;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery__item--tall,
  .gallery__item--wide {
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }

  .expertise__row {
    grid-template-columns: auto 1fr;
    gap: 1.25rem 1.5rem;
  }

  .expertise__row p {
    grid-column: 1 / -1;
  }

  .testimonials__track {
    grid-template-columns: 1fr;
  }

  .testimonial:not(.is-active) {
    display: none;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 72px 1rem auto;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.3s, transform 0.3s;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav__link {
    padding: 0.85rem 1rem;
    border-radius: 12px;
  }

  .nav__link:hover {
    background: rgba(253, 196, 72, 0.08);
  }

  .hero__grid,
  .about__grid,
  .skills__panel,
  .contact__panel,
  .projects__grid,
  .pricing__grid,
  .blog__grid,
  .about__features,
  .skills__grid,
  .form-row,
  .section__head--split {
    grid-template-columns: 1fr;
  }

  .section__head--split {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero__visual {
    order: -1;
  }

  .hero__frame {
    width: min(100%, 340px);
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }

  .panel {
    border-radius: 24px;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .stat-card__label {
    font-size: 1.75rem;
  }

  .contact__form h3 {
    font-size: 2rem;
  }

  .price-card__amount {
    font-size: 3rem;
  }

  .expertise__row {
    grid-template-columns: auto 1fr;
    gap: 1rem 1.1rem;
    padding: 1.25rem;
    align-items: center;
  }

  .expertise__pct {
    width: 72px;
    height: 72px;
  }

  .expertise__pct span {
    font-size: 1.35rem;
  }

  .expertise__row h3 {
    font-size: 1.35rem;
    line-height: 1.25;
  }

  .expertise__row p {
    grid-column: 1 / -1;
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

/* ========== Services page ========== */
.page-banner {
  position: relative;
  background: var(--surface);
  padding: 5.5rem 0 4rem;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 0%, rgba(255, 255, 255, 0.06), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  pointer-events: none;
}

.page-banner__inner {
  position: relative;
  text-align: center;
}

.page-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  font-size: 1rem;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb i {
  font-size: 0.85rem;
}

.service-list__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.service-item {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  transition: transform 0.35s var(--ease), border-color 0.3s;
  border: 1px solid transparent;
  display: block;
  color: inherit;
}

.service-item:hover {
  transform: translateY(-4px);
  border-color: rgba(253, 196, 72, 0.35);
}

.service-item h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.85rem;
  display: flex;
  gap: 0.65rem;
  align-items: baseline;
}

.service-item h2 span {
  color: var(--accent);
}

.service-item p {
  color: var(--muted);
  line-height: 1.875;
  max-width: 34rem;
}

.pricing__grid--services {
  align-items: stretch;
}

.pricing__grid--services .price-card {
  text-align: left;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  padding: 2.25rem;
}

.price-card__name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  opacity: 0.8;
}

.pricing__grid--services .price-card__amount {
  font-size: 3rem;
}

.pricing__grid--services .price-card ul {
  max-width: none;
}

.price-card__btn {
  margin-top: auto;
  border-radius: 10px;
}

.price-card--center {
  padding-top: 2.75rem;
}

.price-card__badge {
  position: absolute;
  top: 1.1rem;
  right: -2.2rem;
  background: transparent;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: rotate(45deg);
  transform-origin: center;
}

.btn--light {
  background: var(--white);
  color: var(--bg);
}

.btn--light:hover {
  background: var(--accent);
}

.cta-strip {
  position: relative;
  z-index: 1;
  background: var(--surface);
  padding: 4rem 0 2rem;
  margin-top: 2rem;
  overflow: hidden;
}

.cta-strip::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -8%;
  top: 20%;
  background: white;
  opacity: 0.03;
  transform: rotate(-19deg);
  pointer-events: none;
}

.cta-strip__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.cta-strip__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 4.25rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 1.5rem 0 1.75rem;
}

.cta-strip__title strong {
  font-weight: 700;
}

.cta-strip__form {
  display: flex;
  align-items: center;
  max-width: 330px;
  border-bottom: 1px solid rgba(227, 227, 227, 0.2);
  padding-bottom: 0.75rem;
  gap: 0.75rem;
}

.cta-strip__form input {
  flex: 1;
  min-width: 0;
}

.cta-strip__form button {
  color: var(--white);
  cursor: pointer;
  opacity: 0.85;
}

.cta-strip__form button:hover {
  color: var(--accent);
}

.cta-strip__links,
.cta-strip__contact {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.cta-strip__links h4,
.cta-strip__contact h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cta-strip__links a,
.cta-strip__contact p {
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.cta-strip__links a:hover {
  color: var(--accent);
}

.cta-strip__contact .socials {
  margin-top: 1rem;
}

.cta-strip .footer__bottom {
  padding-top: 1.5rem;
}

@media (max-width: 900px) {
  .service-list__grid,
  .cta-strip__grid,
  .pricing__grid--services {
    grid-template-columns: 1fr;
  }

  .price-card--center {
    order: -1;
  }
}

/* ========== Service Details ========== */
.service-details__grid {
  display: grid;
  grid-template-columns: 1.55fr 0.7fr;
  gap: 2rem;
  align-items: start;
}

.service-details__media {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
  aspect-ratio: 16 / 9;
  background: var(--surface);
}

.service-details__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-details__main .section__title {
  margin: 0.5rem 0 1.25rem;
}

.service-details__text {
  color: var(--muted);
  line-height: 1.875;
  margin-bottom: 1rem;
}

.service-details__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2rem 0 2.5rem;
}

.service-details__points article {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}

.service-details__points article:hover {
  border-color: rgba(253, 196, 72, 0.35);
}

.service-details__points h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.service-details__points h3 i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.65rem;
  display: grid;
  place-items: center;
}

.service-details__points p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-aside-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}

.service-aside-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.15rem;
}

.service-aside-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.service-aside-list a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: color 0.25s, background 0.25s, border-color 0.25s;
}

.service-aside-list a:hover,
.service-aside-list a.is-active {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
}

.service-aside-card--contact p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-aside-meta {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-aside-meta i {
  color: var(--accent);
  margin-right: 0.55rem;
}

@media (max-width: 900px) {
  .service-details__grid,
  .service-details__points {
    grid-template-columns: 1fr;
  }
}

/* ========== Projects page ========== */
.projects-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 2rem;
}

.project-tile__link {
  display: block;
}

.project-tile__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 600 / 527;
  background: #c4c4c4;
  margin-bottom: 1rem;
}

.project-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.project-tile__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 112px;
  height: 112px;
  margin: -56px 0 0 -56px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  background: rgba(6, 6, 6, 0.25);
  backdrop-filter: blur(4px);
}

.project-tile__arrow i {
  transform: rotate(-45deg);
}

.project-tile:hover .project-tile__arrow {
  opacity: 1;
  transform: scale(1);
}

.project-tile:hover .project-tile__media img {
  transform: scale(1.06);
}

.project-tile--links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.project-tile--links .project-tile__media {
  width: 100%;
}

.project-tile--links .project-card__actions {
  margin-top: 1rem;
}

.project-tile--links h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.project-tile--links > p {
  color: var(--muted);
}

.project-tile h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.25rem;
}

.project-tile p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.875;
}

@media (max-width: 900px) {
  .projects-page__grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Project Details ========== */
.project-details__hero {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1290 / 560;
  background: #c4c4c4;
  margin-bottom: 2.5rem;
}

.project-details__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-details__layout {
  display: grid;
  grid-template-columns: 1fr 410px;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.project-details__content .section__title {
  margin-bottom: 1.25rem;
}

.project-details__content p {
  color: var(--muted);
  line-height: 1.875;
  max-width: 850px;
  margin-bottom: 1rem;
}

.project-details__checks {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.project-details__checks li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
}

.project-details__checks i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 0.65rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.project-meta {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
}

.project-meta h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  padding-bottom: 1rem;
  margin-bottom: 1.15rem;
  border-bottom: 1px solid var(--accent);
}

.project-meta ul {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.project-meta li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.project-meta span {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
}

.project-meta strong {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
}

.project-details__more {
  margin-bottom: 2rem;
}

.project-details__more h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.project-details__more p {
  color: var(--muted);
  line-height: 1.875;
  max-width: 850px;
}

.project-details__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.project-details__gallery img {
  width: 100%;
  aspect-ratio: 410 / 295;
  object-fit: cover;
  border-radius: var(--radius);
  background: #c4c4c4;
}

.project-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 0;
  border-top: 1px solid var(--surface);
  border-bottom: 1px solid var(--surface);
}

.project-nav__btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  transition: color 0.25s;
}

.project-nav__btn:hover {
  color: var(--accent);
}

.project-nav__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--white);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  transition: border-color 0.25s, color 0.25s;
}

.project-nav__icon--accent {
  border-color: var(--accent);
  color: var(--accent);
}

.project-nav__btn:hover .project-nav__icon {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 900px) {
  .project-details__layout,
  .project-details__gallery {
    grid-template-columns: 1fr;
  }

  .project-details__hero {
    aspect-ratio: 16 / 9;
  }
}

/* ========== Blog page ========== */
.blog-page__grid {
  display: grid;
  grid-template-columns: 1fr 410px;
  gap: 2rem;
  align-items: start;
}

.blog-post {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
}

.blog-post__media {
  aspect-ratio: 850 / 462;
  background: #c4c4c4;
}

.blog-post__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post__body {
  padding: 2rem 2.5rem 2.5rem;
}

.blog-post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.blog-post__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-post__meta i {
  color: var(--white);
}

.blog-post h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.3;
  margin-bottom: 0.85rem;
}

.blog-post p {
  color: var(--muted);
  line-height: 1.875;
  margin-bottom: 1.75rem;
  max-width: 48rem;
}

.blog-post .btn--primary {
  color: var(--white);
}

.blog-post .btn__icon--light {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1rem;
}

.blog-pagination a {
  width: 60px;
  height: 60px;
  border-radius: 5px;
  background: var(--surface);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: border-color 0.25s, color 0.25s;
}

.blog-pagination a.is-active,
.blog-pagination a:hover {
  border-color: var(--accent);
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
}

.sidebar-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-card__title--lg {
  font-size: 2rem;
  text-transform: capitalize;
}

.sidebar-card__title span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.sidebar-search {
  display: flex;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

.sidebar-search input {
  flex: 1;
  min-width: 0;
  padding: 1rem 1.25rem;
}

.sidebar-search button {
  width: 60px;
  background: var(--accent);
  color: var(--white);
  cursor: pointer;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: filter 0.25s;
}

.sidebar-search button:hover {
  filter: brightness(1.08);
}

.sidebar-cats {
  display: flex;
  flex-direction: column;
}

.sidebar-cats li + li {
  border-top: 1px solid var(--muted);
}

.sidebar-cats a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  transition: color 0.25s;
}

.sidebar-cats a em {
  margin-left: auto;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
}

.sidebar-cats a.is-active,
.sidebar-cats a:hover {
  color: var(--accent);
}

.sidebar-cats a.is-active i,
.sidebar-cats a:hover i {
  color: var(--accent);
}

.sidebar-posts {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-posts li {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--muted);
}

.sidebar-posts li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-posts img {
  width: 82px;
  height: 92px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.sidebar-posts__cat {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

.sidebar-posts__cat i {
  color: var(--accent);
  margin-right: 0.35rem;
}

.sidebar-posts a {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  transition: color 0.25s;
}

.sidebar-posts a:hover {
  color: var(--accent);
}

.sidebar-about__row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.sidebar-about__row img {
  width: 83px;
  height: 83px;
  border-radius: 50%;
  object-fit: cover;
}

.sidebar-about h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
}

.sidebar-about__row p {
  font-size: 0.875rem;
  margin: 0.2rem 0 0.5rem;
}

.sidebar-about__socials {
  display: flex;
  gap: 0.85rem;
}

.sidebar-about__socials a {
  color: var(--accent);
  font-size: 0.75rem;
}

.sidebar-about__bio {
  line-height: 1.875;
}

.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.sidebar-tags a {
  background: var(--bg);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-size: 1rem;
  transition: background 0.25s, color 0.25s;
}

.sidebar-tags a:hover {
  background: var(--accent);
  color: var(--bg);
}

@media (max-width: 1000px) {
  .blog-page__grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Blog details ========== */
.blog-details__hero {
  aspect-ratio: 850 / 506;
  border-radius: var(--radius);
  overflow: hidden;
  background: #c4c4c4;
  margin-bottom: 1.75rem;
}

.blog-details__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-details__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.blog-details__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-details__author {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
}

.blog-details__title,
.blog-details__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.blog-details__text,
.blog-details__split-text p {
  color: var(--muted);
  line-height: 1.875;
  margin-bottom: 1.25rem;
}

.blog-details__quote {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin: 1.5rem 0 2rem;
  position: relative;
}

.blog-details__quote p {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.blog-details__quote footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.blog-details__quote-line {
  width: 40px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.blog-details__quote cite {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  font-style: normal;
  color: var(--white);
}

.blog-details__quote .fa-quote-right {
  margin-left: auto;
  color: var(--accent);
  font-size: 1.5rem;
}

.blog-details__split {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1.5rem;
  align-items: start;
  margin: 1.5rem 0 2rem;
}

.blog-details__split-media {
  aspect-ratio: 300 / 280;
  border-radius: var(--radius);
  overflow: hidden;
  background: #c4c4c4;
}

.blog-details__split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-details__nav {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.blog-details__nav-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 48%;
  transition: color 0.25s;
}

.blog-details__nav-item--next {
  margin-left: auto;
  text-align: right;
}

.blog-details__nav-icon {
  width: 60px;
  height: 60px;
  background: var(--accent);
  display: grid;
  place-items: center;
  color: var(--white);
  flex-shrink: 0;
}

.blog-details__nav-item em {
  display: block;
  font-style: normal;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.blog-details__nav-item strong {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

.blog-details__nav-item:hover strong {
  color: var(--accent);
}

.blog-details__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--muted);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}

.blog-details__keywords {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.blog-details__keywords strong {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
}

.blog-details__keywords a {
  color: var(--muted);
  transition: color 0.25s;
}

.blog-details__keywords a:hover {
  color: var(--accent);
}

.blog-details__share {
  display: flex;
  gap: 0.65rem;
}

.blog-details__share a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  display: grid;
  place-items: center;
  transition: background 0.25s, color 0.25s;
}

.blog-details__share a:hover {
  background: var(--accent);
  color: var(--bg);
}

.blog-comments {
  margin-bottom: 2.5rem;
}

.blog-comments__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.blog-comment {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.blog-comment__avatar {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.blog-comment__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem 1rem;
  margin-bottom: 0.5rem;
}

.blog-comment__head h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
}

.blog-comment__head time {
  color: var(--muted);
}

.blog-comment__socials {
  display: flex;
  gap: 0.75rem;
  margin-left: auto;
}

.blog-comment__socials a {
  color: var(--accent);
  font-size: 0.75rem;
}

.blog-comment__body p {
  color: var(--muted);
  line-height: 1.875;
  margin-bottom: 0.5rem;
}

.blog-comment__reply {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.28px;
  line-height: 2;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.25s;
}

.blog-comment__reply.is-active,
.blog-comment__reply:hover {
  color: var(--white);
}

.blog-reply {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2.5rem 2.5rem 2.75rem;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.05);
}

.blog-reply__note {
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.blog-reply__form label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.blog-reply__form input,
.blog-reply__form textarea {
  width: 100%;
  border: 1px solid var(--muted);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  background: transparent;
  color: var(--white);
}

.blog-reply__form textarea {
  min-height: 130px;
  resize: vertical;
}

.blog-reply__form input:focus,
.blog-reply__form textarea:focus {
  border-color: var(--accent);
  outline: none;
}

.blog-reply__submit {
  width: 100%;
  justify-content: center;
  color: var(--white);
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .blog-details__split {
    grid-template-columns: 1fr;
  }

  .blog-details__nav-item {
    max-width: 100%;
  }

  .blog-details__nav-item--next {
    margin-left: 0;
    text-align: left;
    flex-direction: row-reverse;
    justify-content: flex-end;
  }

  .blog-comment {
    flex-direction: column;
  }

  .blog-comment__socials {
    margin-left: 0;
  }

  .blog-reply {
    padding: 1.75rem;
  }
}

/* ========== Contact page ========== */
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4.5rem;
}

.contact-info__card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 3rem 2rem 2.5rem;
  text-align: center;
}

.contact-info__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(253, 196, 72, 0.2);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 1.875rem;
}

.contact-info__card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.3;
  margin-bottom: 0.85rem;
}

.contact-info__card p,
.contact-info__card a {
  color: var(--muted);
  line-height: 1.875;
}

.contact-info__card a:hover {
  color: var(--accent);
}

.contact-touch {
  display: grid;
  grid-template-columns: 410px 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-touch__intro .eyebrow {
  color: var(--accent);
  letter-spacing: 4px;
}

.contact-touch__intro .section__title {
  margin-bottom: 1.25rem;
}

.contact-touch__intro p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.875;
}

.contact-touch__form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.contact-touch__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.contact-touch__form input,
.contact-touch__form textarea,
.contact-touch__form select {
  width: 100%;
  height: 65px;
  border: 1px solid rgba(159, 159, 159, 0.4);
  border-radius: var(--radius);
  padding: 0 1.25rem;
  background: transparent;
  color: var(--white);
}

.contact-touch__form textarea {
  height: 130px;
  padding-top: 1.1rem;
  resize: vertical;
}

.contact-touch__form input::placeholder,
.contact-touch__form textarea::placeholder {
  color: var(--muted);
}

.contact-touch__form input:focus,
.contact-touch__form textarea:focus,
.contact-touch__form select:focus {
  border-color: var(--accent);
  outline: none;
}

.contact-touch__select {
  position: relative;
}

.contact-touch__select select {
  appearance: none;
  color: var(--muted);
  cursor: pointer;
}

.contact-touch__select select:valid {
  color: var(--white);
}

.contact-touch__select i {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--white);
}

.contact-touch__form .btn--primary {
  align-self: flex-start;
  color: var(--white);
  margin-top: 0.35rem;
}

@media (max-width: 1000px) {
  .contact-info {
    grid-template-columns: 1fr;
  }

  .contact-touch {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .contact-touch__row {
    grid-template-columns: 1fr;
  }
}

/* CV viewer page */
.cv-page__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.cv-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.cv-viewer {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  min-height: 80vh;
}

.cv-viewer iframe {
  display: block;
  width: 100%;
  height: min(85vh, 1100px);
  border: 0;
  background: #fff;
}

.cv-viewer__fallback {
  padding: 1rem 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  border-top: 1px solid var(--border);
}

.cv-viewer__fallback a {
  color: var(--accent);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cv-viewer iframe {
    height: 70vh;
  }
}
