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

body {
  background: #f5f2ee;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpolygon points='4,0 4,26 10,20 14,30 18,28 14,18 22,18' fill='%23ffd6ec' stroke='%23ff6eb4' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E") 4 0, auto;
}

*, a, button, .folder-item, .win-btn, .win-titlebar {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpolygon points='4,0 4,26 10,20 14,30 18,28 14,18 22,18' fill='%23ffd6ec' stroke='%23ff6eb4' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E") 4 0, auto !important;
}

/* ════════════════════════════
   PAGE FADE IN ON LOAD
════════════════════════════ */
.desktop {
  animation: pageLoad 0.9s ease forwards;
}

@keyframes pageLoad {
  from { opacity: 0; transform: scale(0.98); }
  to   { opacity: 1; transform: scale(1); }
}

/* ════════════════════════════
   FOLDER FLOAT ANIMATION
════════════════════════════ */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

/* ════════════════════════════
   WINDOW OPEN ANIMATION
════════════════════════════ */
@keyframes windowPop {
  0%   { opacity: 0; transform: scale(0.85); }
  70%  { transform: scale(1.03); }
  100% { opacity: 1; transform: scale(1); }
}

/* ════════════════════════════
   DESKTOP CANVAS
════════════════════════════ */
.desktop {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-image: url('images/bg-illustration.jpeg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f5f2ee;
  overflow: hidden;
}

/* No overlay — show illustration as-is */
.desktop::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

.desktop > * {
  position: relative;
  z-index: 2;
}

/* ════════════════════════════
   HEADLINE
════════════════════════════ */
.headline {
  position: absolute;
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  display: flex;
  align-items: baseline;
  gap: 0.18em;
  z-index: 10;
  line-height: 1;
}

.headline-who {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(52px, 9vw, 120px);
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

.headline-ami {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(48px, 8.5vw, 112px);
  color: #a8bdd4;
  letter-spacing: -0.01em;
  background: rgba(160,180,210,0.18);
  padding: 0 0.15em;
  border-radius: 4px;
}

/* ════════════════════════════
   DECORATIVE ELEMENTS
════════════════════════════ */
.deco {
  position: absolute;
  pointer-events: none;
}

/* Large blue circle — top right */
.deco--circle-lg {
  width: clamp(30px, 4vw, 56px);
  height: clamp(30px, 4vw, 56px);
  background: #1e6fd4;
  border-radius: 50%;
  top: 4%;
  right: 2%;
  z-index: 5;
}

/* Small blue circle */
.deco--circle-sm {
  width: clamp(12px, 1.6vw, 22px);
  height: clamp(12px, 1.6vw, 22px);
  background: #1e6fd4;
  border-radius: 50%;
  top: 13%;
  right: 3.5%;
  z-index: 5;
}

/* iMessage speech bubble */
.deco--bubble {
  top: 18%;
  right: 18%;
  background: #e8e8ea;
  border-radius: 18px 18px 18px 4px;
  padding: 10px 14px;
  display: flex;
  gap: 4px;
  align-items: center;
  z-index: 5;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

.deco--bubble span {
  display: block;
  width: 7px;
  height: 7px;
  background: #aaa;
  border-radius: 50%;
}

/* Sun spark */
.deco--sun {
  top: 38%;
  right: 27%;
  font-size: clamp(18px, 2.5vw, 32px);
  color: #f5c518;
  z-index: 15;
  filter: drop-shadow(0 0 6px rgba(245,197,24,0.6));
}

/* Vertical yellow line */
.deco--line-v {
  top: 25%;
  right: calc(27% + 14px);
  width: 2px;
  height: clamp(60px, 10vh, 120px);
  background: #f5c518;
  z-index: 15;
}

/* ════════════════════════════
   CENTER PHOTO AREA
════════════════════════════ */
.photo-area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(200px, 28vw, 380px);
  height: clamp(340px, 70vh, 680px);
  z-index: 6;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 4px;
}

/* Yellow detection / face-recognition box */
.detect-box {
  position: absolute;
  top: 12%;
  left: 18%;
  width: 52%;
  aspect-ratio: 1;
  border: 2px solid #f5c518;
  border-radius: 2px;
  pointer-events: none;
}

/* Corner tick marks */
.detect-corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: #f5c518;
  border-style: solid;
}

.detect-corner.tl { top: -4px; left: -4px;  border-width: 3px 0 0 3px; }
.detect-corner.tr { top: -4px; right: -4px; border-width: 3px 3px 0 0; }
.detect-corner.bl { bottom: -4px; left: -4px;  border-width: 0 0 3px 3px; }
.detect-corner.br { bottom: -4px; right: -4px; border-width: 0 3px 3px 0; }

/* ════════════════════════════
   ORBIT
════════════════════════════ */
.orbit-ring {
  position: absolute;
  top: 22%;
  left: 50%;
  width: 220px;
  height: 60px;
  transform: translate(-50%, -50%);
  animation: haloSpin 6s linear infinite;
  z-index: 20;
}

@keyframes haloSpin {
  from { transform: translate(-50%, -50%) rotateY(0deg); }
  to   { transform: translate(-50%, -50%) rotateY(360deg); }
}

/* Halo track line */
.orbit-ring::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #f5c518, #fff8dc, #f5c518, transparent);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 10px rgba(245, 197, 24, 0.6);
}

.orbit-item {
  position: absolute;
  font-size: 22px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.2);
  top: 50%;
  transform: translateY(-50%);
  left: calc(var(--i) * 25%);
}

/* ════════════════════════════
   TAGLINE
════════════════════════════ */
.tagline {
  position: absolute;
  bottom: 3%;
  right: 4%;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(12px, 1.4vw, 18px);
  color: rgba(30,30,30,0.7);
  letter-spacing: 0.02em;
  z-index: 10;
}

/* ════════════════════════════
   FOLDER ICONS
════════════════════════════ */
.folder-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  z-index: 10;
  transition: filter 0.18s ease;
  animation: float 3s ease-in-out infinite;
}

/* Stagger float timing per folder */
.folder-item:nth-child(1) { animation-delay: 0s; }
.folder-item:nth-child(2) { animation-delay: 0.4s; }
.folder-item:nth-child(3) { animation-delay: 0.8s; }
.folder-item:nth-child(4) { animation-delay: 1.2s; }
.folder-item:nth-child(5) { animation-delay: 0.2s; }
.folder-item:nth-child(6) { animation-delay: 0.6s; }
.folder-item:nth-child(7) { animation-delay: 1.0s; }
.folder-item:nth-child(8) { animation-delay: 1.4s; }

.folder-item:hover {
  transform: translateY(-4px) scale(1.06);
  filter: brightness(1.1);
}

.folder-item:hover .folder-label {
  color: #fff;
}

/* macOS-style blue folder */
.folder-icon {
  position: relative;
  width: clamp(52px, 6vw, 80px);
  height: clamp(42px, 4.8vw, 64px);
}

.folder-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 28%;
  background: linear-gradient(135deg, #7ecef4, #4ab0ef);
  border-radius: 4px 8px 0 0;
  z-index: 1;
}

.folder-icon::after {
  content: '';
  position: absolute;
  top: 18%;
  left: 0;
  width: 100%;
  height: 82%;
  background: linear-gradient(160deg, #7dd4f8 0%, #4ab8f0 40%, #2a9ee0 100%);
  border-radius: 3px 6px 6px 6px;
  box-shadow:
    0 4px 16px rgba(74,184,240,0.35),
    inset 0 1px 0 rgba(255,255,255,0.3);
  z-index: 0;
}

.folder-label {
  font-size: clamp(9px, 1vw, 13px);
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 3px rgba(255,255,255,0.8);
  white-space: nowrap;
}

/* ════════════════════════════
   ABOUT ME CONTENT
════════════════════════════ */
.about-layout {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.about-photo-wrap {
  flex-shrink: 0;
  width: 220px;
}

.about-photo {
  width: 220px;
  height: 300px;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}

.about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-greeting {
  font-size: 13px;
  color: #999;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.1;
}

.about-role {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: #1a1a1a;
  padding: 4px 10px;
  border-radius: 20px;
  width: fit-content;
}

.about-bio {
  font-size: 13px;
  color: #444;
  line-height: 1.75;
}

.about-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 20px;
  transition: opacity 0.18s, transform 0.18s;
  letter-spacing: 0.03em;
}

.about-link:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.about-link--linkedin   { background: #0a66c2; color: #fff; }
.about-link--tableau    { background: #e97627; color: #fff; }
.about-link--github     { background: #1a1a1a; color: #fff; }

/* ════════════════════════════
   SHARED SECTION STYLES
════════════════════════════ */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

/* ════════════════════════════
   EDUCATION
════════════════════════════ */
.edu-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  height: calc(100% - 60px);
}

.edu-big-card {
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.edu-big-card--ms {
  background: linear-gradient(145deg, #1a1a1a 0%, #2e2e2e 100%);
  color: #fff;
}

.edu-big-card--bs {
  background: linear-gradient(145deg, #5b7fa6 0%, #3d6490 100%);
  color: #fff;
}

.edu-big-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.edu-big-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  background: rgba(255,255,255,0.2);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
}

.edu-big-badge--bs {
  background: rgba(255,255,255,0.2);
}

.edu-big-year {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

.edu-big-icon {
  font-size: 36px;
  line-height: 1;
}

.edu-big-degree {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.edu-big-school {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.edu-big-divider {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 4px 0;
}

.edu-big-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.edu-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
}

/* ════════════════════════════
   SKILLS
════════════════════════════ */
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.skill-category {
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.skill-cat--lang    { background: #1a1a1a; }
.skill-cat--viz     { background: #5b7fa6; }
.skill-cat--ml      { background: #7a5195; }
.skill-cat--stats   { background: #3d7d6e; }
.skill-cat--tools   { background: #b05a2f; }
.skill-cat--methods { background: #4a6741; }

.skill-cat-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.skill-cat-icon {
  font-size: 16px;
  line-height: 1;
}

.skill-cat-title {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.skill-tag {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

/* ════════════════════════════
   EXPERIENCE
════════════════════════════ */
.exp-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.exp-card {
  border: 1px solid #ebebeb;
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fafafa;
  transition: box-shadow 0.2s;
}

.exp-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.exp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.exp-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.exp-company {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
}

.exp-role {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}

.exp-location {
  font-size: 11px;
  color: #aaa;
}

.exp-date {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: #1a1a1a;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.exp-bullets {
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.exp-bullets li {
  font-size: 12.5px;
  color: #444;
  line-height: 1.65;
}

.exp-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 4px;
  border-top: 1px solid #ebebeb;
}

.exp-tool {
  font-size: 10.5px;
  font-weight: 600;
  color: #555;
  background: #f0f0f0;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

/* ════════════════════════════
   PROJECTS
════════════════════════════ */
.proj-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.proj-card {
  border: 1px solid #ebebeb;
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fafafa;
  transition: box-shadow 0.2s;
}

.proj-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.proj-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.proj-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.proj-title-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.proj-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
}

.proj-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.proj-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  background: #1a1a1a;
  padding: 3px 9px;
  border-radius: 20px;
}

.proj-stat-group {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.proj-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #1a1a1a;
  border-radius: 10px;
  padding: 8px 12px;
  min-width: 58px;
}

.proj-stat-num {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.proj-stat-label {
  font-size: 9px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 3px;
}

.proj-bullets {
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-top: 1px solid #ebebeb;
  padding-top: 12px;
}

.proj-bullets li {
  font-size: 12.5px;
  color: #444;
  line-height: 1.65;
}

/* ════════════════════════════
   CERTIFICATIONS
════════════════════════════ */
.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cert-card {
  border: 1px solid #ebebeb;
  border-radius: 14px;
  padding: 22px 20px;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}

.cert-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}

.cert-icon {
  font-size: 32px;
  line-height: 1;
}

.cert-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.cert-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

.cert-org {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  letter-spacing: 0.03em;
}

.cert-date {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: #1a1a1a;
  padding: 4px 12px;
  border-radius: 20px;
  width: fit-content;
}

/* ════════════════════════════
   HOBBIES
════════════════════════════ */
.hobbies-intro {
  font-size: 13.5px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
  font-style: italic;
  border-left: 3px solid #1a1a1a;
  padding-left: 14px;
}

.hobbies-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.hobby-tag {
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
  background: #f0f0f0;
  border: 1px solid #e0e0e0;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

.hobbies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 180px 180px;
  gap: 10px;
}

.hobby-photo {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.hobby-photo--tall {
  grid-row: span 2;
}

.hobby-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.hobby-photo:hover img {
  transform: scale(1.06);
}

.hobby-photo-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 20px 10px 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hobby-photo:hover .hobby-photo-label {
  opacity: 1;
}

/* ════════════════════════════
   CONTACT FORM
════════════════════════════ */
.contact-intro {
  font-size: 13.5px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 28px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
}

.form-input {
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: #1a1a1a;
  background: #fafafa;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
}

.form-input:focus {
  border-color: #1a1a1a;
  box-shadow: 0 0 0 3px rgba(26,26,26,0.07);
  background: #fff;
}

.form-input::placeholder {
  color: #bbb;
}

.form-textarea {
  min-height: 130px;
}

.form-submit {
  align-self: flex-start;
  background: #1a1a1a;
  color: #fff;
  border: none;
  padding: 13px 32px;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.form-submit:hover {
  background: #333;
  transform: translateY(-2px);
}

.form-success {
  display: none;
  font-size: 13px;
  color: #3d7d6e;
  font-weight: 600;
  background: #f0faf7;
  border: 1px solid #b0ddd4;
  border-radius: 10px;
  padding: 12px 16px;
}

.form-success.visible {
  display: block;
}

/* ════════════════════════════
   LIGHTBOX
════════════════════════════ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s ease;
}

.lightbox.is-open {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox-img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: zoomIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes zoomIn {
  from { transform: scale(0.85); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.3);
}

/* ════════════════════════════
   MAC WINDOWS
════════════════════════════ */
.mac-window {
  position: absolute;
  width: 860px;
  height: auto;
  max-height: 85vh;
  background: #f0f0f0;
  border-radius: 10px;
  box-shadow:
    0 22px 70px rgba(0,0,0,0.55),
    0 4px 12px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.6);
  display: none;
  flex-direction: column;
  overflow: hidden;
  user-select: none;
}

.mac-window.is-open {
  display: flex;
  animation: windowPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Title bar */
.win-titlebar {
  display: flex;
  align-items: center;
  height: 36px;
  background: linear-gradient(180deg, #e0e0e0 0%, #d0d0d0 100%);
  border-bottom: 1px solid #b8b8b8;
  padding: 0 12px;
  cursor: grab;
  border-radius: 10px 10px 0 0;
  flex-shrink: 0;
}

.win-titlebar:active {
  cursor: grabbing;
}

/* Traffic light buttons */
.win-controls {
  display: flex;
  gap: 7px;
  align-items: center;
}

.win-btn {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  position: relative;
  transition: filter 0.15s;
}

.btn-close  { background: #ff5f57; box-shadow: inset 0 1px 0 rgba(255,255,255,0.3); }
.btn-min    { background: #febc2e; box-shadow: inset 0 1px 0 rgba(255,255,255,0.3); }
.btn-max    { background: #28c840; box-shadow: inset 0 1px 0 rgba(255,255,255,0.3); }

.win-btn:hover { filter: brightness(0.85); }

/* Window title text */
.win-title {
  flex: 1;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.01em;
  pointer-events: none;
}

/* Window content body */
.win-body {
  flex: 1;
  background: #fff;
  padding: 24px;
  overflow-y: auto;
  height: 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #333;
  line-height: 1.7;
}
