/* ── RESET & TOKENS ────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #FFFFFF;
  --lav-soft: #EDE4FF;
  --lav-mid: #C9B4FF;
  --lav-deep: #9B7FE8;
  --grey-bg: #F7F6FA;
  --grey-line: #E2DFF0;
  --ink: #1A1820;
  --ink-soft: #4A4560;
  --ink-muted: #8C88A8;

  --font-display: 'Syne', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-mono: 'DM Mono', monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ────────────────────────────────────── */
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--lav-deep);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid var(--lav-mid);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

.cursor-ring.hovered {
  width: 56px;
  height: 56px;
  border-color: var(--lav-deep);
}

/* ── NOISE OVERLAY ─────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9997;
  opacity: 0.4;
}

/* ── NAV ───────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

nav.scrolled {
  border-color: var(--grey-line);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
}

.nav-logo span {
  color: var(--lav-deep);
}

.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--lav-deep);
}

.nav-links a.active {
  font-weight: 600;
}

/* ── SECTIONS ──────────────────────────────────── */
section {
  min-height: 100vh;
}

/* ── HERO ──────────────────────────────────────── */
#home {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 60px;
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lav-deep);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  opacity: 0;
  animation: fadeUp 0.9s 0.4s forwards;
}

.hero-name em {
  font-style: italic;
  font-weight: 400;
  font-family: var(--font-serif);
  color: var(--lav-deep);
  font-size: 0.85em;
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-soft);
  margin-top: 28px;
  max-width: 400px;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s forwards;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
  opacity: 0;
  animation: fadeUp 0.9s 0.8s forwards;
}

.chip {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border: 1px solid var(--grey-line);
  border-radius: 100px;
  color: var(--ink-soft);
  background: var(--grey-bg);
  transition: all 0.2s;
}

.chip:hover {
  border-color: var(--lav-mid);
  background: var(--lav-soft);
  color: var(--ink);
}

.hero-right {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 60px 60px 0;
  position: relative;
  opacity: 0;
  animation: fadeIn 1.2s 0.5s forwards;
}

.hero-photo-wrap {
  position: relative;
  width: 360px;
}

.hero-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  background: var(--lav-soft);
  border-radius: 180px 180px 0 0;
  z-index: 0;
}

.hero-photo-wrap::after {
  content: 'Agnimithra J. Kalathil';
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 160px 160px 0 0;
  display: block;
  filter: grayscale(15%);
  transition: filter 0.4s;
}

.hero-photo:hover {
  filter: grayscale(0%);
}

.hero-deco {
  position: absolute;
  top: 100px;
  right: 40px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--lav-deep);
  writing-mode: vertical-rl;
  opacity: 0.5;
}

/* ── SCROLL CUE ────────────────────────────────── */
.scroll-cue {
  position: absolute;
  bottom: 48px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.9s 1.2s forwards;
}

.scroll-cue span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.scroll-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--lav-mid), transparent);
  animation: pulse 2s infinite;
}

/* ── DIVIDER ───────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--grey-line), transparent);
}

#about {
  padding: 160px 60px 130px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: auto;
}

.about-left-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 8px;
}

.about-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lav-deep);
}

.about-photo-wrap {
  position: relative;
  width: 100%;
}

.about-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -10px -10px 10px 10px;
  background: var(--lav-soft);
  border-radius: 140px 140px 0 0;
  z-index: 0;
}

.about-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 120px 120px 0 0;
  display: block;
  filter: grayscale(15%);
  transition: filter 0.4s;
}

.about-photo:hover {
  filter: grayscale(0%);
}

.about-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
}

.about-heading em {
  font-style: italic;
  font-weight: 400;
  font-family: var(--font-serif);
  color: var(--lav-deep);
}

.about-body {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-soft);
  max-width: 680px;
}

.about-body p+p {
  margin-top: 20px;
}

.read-more-chip {
  display: inline-block;
  margin-top: 32px;
  text-decoration: none;
}

.skills-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}

.skill-item {
  background: var(--grey-bg);
  border: 1px solid var(--grey-line);
  border-radius: 8px;
  padding: 14px 16px;
  transition: all 0.25s ease;
}

.skill-item:hover {
  background: var(--lav-soft);
  border-color: var(--lav-mid);
  transform: translateY(-2px);
}

.skill-name {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  display: block;
}

.skill-item:hover .skill-name {
  color: var(--ink);
}

/* ── PROJECTS ──────────────────────────────────── */
#projects {
  background: var(--grey-bg);
  padding: 130px 60px;
}

.section-header {
  max-width: 1200px;
  margin: 0 auto 80px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4vw, 54px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}

.section-title em {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--lav-deep);
}

.section-count {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-bottom: 8px;
}

.projects-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.project-card,
.gadget-card,
.book-card {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: 16px;
  padding: 36px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--lav-mid), var(--lav-soft));
  opacity: 0;
  transition: opacity 0.3s;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(155, 127, 232, 0.12);
  border-color: var(--lav-mid);
}

.project-card:hover::before,
.gadget-card:hover::before,
.book-card:hover::before {
  opacity: 1;
}

.project-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--lav-deep);
  margin-bottom: 20px;
}

.project-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 12px;
}

.project-desc {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border: 1px solid var(--grey-line);
  border-radius: 4px;
  color: var(--ink-muted);
  background: var(--grey-bg);
}

.project-learn {
  border-top: 1px solid var(--grey-line);
  padding-top: 20px;
  margin-top: 4px;
}

.learn-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lav-deep);
  margin-bottom: 6px;
}

.learn-text {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-muted);
  line-height: 1.6;
}

.projects-link-container {
  max-width: 1200px;
  margin: 40px auto 0;
  text-align: right;
}

/* ── JOURNEY EXTRAS ────────────────────────────── */
.journey-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 60px;
}

.journey-content-container {
  max-width: 1200px;
  margin: 0 auto;
}

.journey-timeline-content {
  align-self: center;
}

/* ── RESPONSIVE PAGE CLASSES ───────────────────── */
.page-section {
  padding-top: 180px;
  min-height: 100vh;
}

.page-header-container {
  padding: 0 60px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.page-content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

.journey-section {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.page-content-padding {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 60px 60px;
}

.page-content-padding-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px 130px;
}

/* ── ANIMATION CANVAS ──────────────────────────── */
.x-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
}

#home {
  position: relative;
  overflow: hidden;
}

footer {
  position: relative;
  overflow: hidden;
}

.hero-left,
.hero-right {
  position: relative;
  z-index: 1;
}

footer span {
  position: relative;
  z-index: 1;
}

/* ── JOURNEY ───────────────────────────────────── */
#journey {
  padding: 160px 60px 130px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: auto;
}

.timeline {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 200px 1px 1fr;
  gap: 0 40px;
  padding-bottom: 60px;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-date {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: right;
  padding-top: 4px;
}

.timeline-line {
  background: var(--grey-line);
  position: relative;
  display: flex;
  justify-content: center;
}

.timeline-dot {
  width: 8px;
  height: 8px;
  background: var(--lav-deep);
  border-radius: 50%;
  position: absolute;
  top: 6px;
  transform: translateX(-50%);
  left: 50%;
  transition: transform 0.2s;
}

.timeline-item:hover .timeline-dot {
  transform: translateX(-50%) scale(1.6);
  background: var(--lav-mid);
}

.timeline-body {
  padding-bottom: 40px;
}

.timeline-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}

.timeline-text {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-soft);
}

/* ── CONTACT ───────────────────────────────────── */
#contact {
  background: var(--ink);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.fog-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.fog-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80vw;
  height: 60vh;
  background: radial-gradient(ellipse at center, rgba(230, 240, 255, 0.12) 0%, rgba(230, 240, 255, 0) 70%);
  filter: blur(60px);
  transform: translate(-50%, -50%);
  animation: fogFloat 12s ease-in-out infinite alternate;
  border-radius: 50%;
  opacity: 0.8;
}

@keyframes fogFloat {
  0% {
    transform: translate(-50%, -40%) scale(1);
    opacity: 0.6;
  }

  100% {
    transform: translate(-50%, -60%) scale(1.1);
    opacity: 1;
  }
}

.contact-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.contact-animation-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.contact-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lav-mid);
  margin-bottom: 28px;
}

.contact-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 32px;
}

.contact-heading em {
  font-style: italic;
  font-weight: 300;
  font-family: var(--font-serif);
  color: var(--lav-mid);
}

.contact-sub {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 52px;
  line-height: 1.7;
}

.contact-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.contact-link {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
  padding: 14px 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  transition: all 0.25s;
  display: inline-block;
}

.contact-link:hover {
  background: var(--lav-deep);
  border-color: var(--lav-deep);
  transform: translateY(-2px);
}

.contact-link.primary {
  background: var(--lav-deep);
  border-color: var(--lav-deep);
  color: var(--white);
}

.contact-link.primary:hover {
  background: var(--lav-mid);
  border-color: var(--lav-mid);
  color: var(--ink);
}

/* ── FOOTER ────────────────────────────────────── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ── ANIMATIONS ────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

/* ── REVEAL ON SCROLL ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 900px) {
  #home {
    grid-template-columns: 1fr;
  }



  nav {
    padding: 20px 28px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-header {
    width: 100%;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
  }

  .nav-links.nav-open {
    max-height: 800px;
    opacity: 1;
    margin-top: 24px;
    padding-bottom: 8px;
  }

  #about {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 80px 28px;
  }

  #projects {
    padding: 80px 28px;
  }

  #journey {
    padding: 80px 28px;
  }

  #contact {
    padding: 80px 28px;
  }

  footer {
    padding: 20px 28px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  #home {
    padding-top: 80px;
  }

  .hero-left {
    padding: 0px 28px 40px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-line {
    display: none;
  }

  .timeline-date {
    text-align: left;
  }

  /* Subpage adjustments */
  .page-section {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .page-header-container,
  .page-content-container {
    padding: 0 28px;
  }

  .page-content-padding {
    padding: 30px 28px 40px;
  }

  .page-content-padding-bottom {
    padding: 0 28px 80px;
  }
}

/* ── PHONE SPECIFIC ────────────────────────────── */
@media (max-width: 768px) {
  .x-canvas {
    display: none !important;
  }

  .projects-link-container {
    text-align: center;
    padding: 0;
  }

  .projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .project-card,
  .gadget-card,
  .book-card {
    padding: 16px 12px;
  }

  .project-num {
    margin-bottom: 12px;
  }

  .project-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .project-desc {
    display: none;
  }

  .project-tags {
    margin-bottom: 8px;
    gap: 4px;
    flex-wrap: wrap;
  }

  .tag {
    padding: 2px 6px;
    font-size: 9px;
  }

  .project-learn {
    display: none;
  }

  .about-photo-wrap {
    max-width: 380px;
    margin: 0 auto;
  }

  .gadget-pros-cons {
    display: none;
  }
}