
.cbar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 13px 56px;
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
  flex-wrap: wrap;
}

.cbar a {
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.cbar a:hover {
  color: var(--accent);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: center;
  padding: 120px 56px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-tag {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.hero h1 .it {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 24px;
  font-weight: 400;
}

.hero-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.22s;
  cursor: pointer;
  border: none;
  font-family: "Outfit", sans-serif;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: #164438;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(29, 92, 74, 0.3);
}

.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border: 1.5px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  opacity: 0;
  transform: translateX(24px);
  animation: slideIn 0.6s ease forwards;
}

.panel-card:nth-child(1) { animation-delay: 0.2s; }
.panel-card:nth-child(2) { animation-delay: 0.35s; margin-left: 20px; }
.panel-card:nth-child(3) { animation-delay: 0.5s; }

@keyframes slideIn {
  to { opacity: 1; transform: translateX(0); }
}

.pc-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.pc-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}

.pc-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 4px;
}

section {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-body p {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.85;
}

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

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.atag {
  background: var(--accent-light);
  color: var(--accent);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
}

.hl-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hl-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  transition: box-shadow 0.2s;
}

.hl-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.hl-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hl-text strong {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 2px;
  font-weight: 600;
}

.hl-text span {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sk-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.2s;
}

.sk-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
  border-color: transparent;
}

.sk-icon {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.sk-card h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 12px;
}

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

.sk-tag {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 9px;
  font-size: 0.72rem;
  color: var(--muted);
}

.sk-tag.adv {
  background: var(--accent-light);
  border-color: transparent;
  color: var(--accent);
  font-weight: 500;
}

.exp-list {
  display: flex;
  flex-direction: column;
}

.exp-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.exp-item:last-child {
  border-bottom: none;
}

.exp-period {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 8px;
}

.exp-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}

.exp-badge.cur {
  background: #e8f5e9;
  color: #2e7d32;
}

.exp-role {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.exp-company {
  font-size: 0.875rem;
  color: var(--accent2);
  font-weight: 500;
  margin-bottom: 12px;
}

.exp-pts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.exp-pts li {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
  padding-left: 16px;
  position: relative;
}

.exp-pts li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--border);
  font-size: 0.7rem;
  top: 4px;
}

.exp-award {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff8f0;
  border: 1px solid #f0d9c0;
  color: var(--accent2);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 10px;
  margin-right: 8px;
}

.cat-section {
  padding: 48px 0 80px;
}

.cat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.cat-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cat-icon--projects {
  background: linear-gradient(135deg, #e3f2fd, #90caf9);
}

.cat-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cat-meta {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}

.cat-desc {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 20px;
}

.photo-count-badge {
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 6px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

.project-preview {
  width: 100%;
  height: 200px;
  background: #f5f5f5;
  overflow: hidden;
  position: relative;
}

.project-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.project-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e3f2fd 0%, #90caf9 100%);
}

.project-preview--business .project-placeholder {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.project-preview--identity .project-placeholder {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.project-icon {
  width: 64px;
  height: 64px;
  opacity: 0.95;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease;
}

.project-card:hover .project-icon {
  transform: scale(1.1);
}

.project-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.project-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}

.project-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}

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

.project-tag {
  background: var(--accent-light);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
}

.project-link {
  margin-top: auto;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.project-card:hover .project-link {
  gap: 10px;
}

.ec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.col-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.edu-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.edu-item:last-child {
  border-bottom: none;
}

.edu-deg {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.edu-sch {
  font-size: 0.875rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 5px;
}

.edu-yr {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.edu-note {
  font-size: 0.78rem;
  color: var(--accent2);
  font-weight: 400;
  line-height: 1.6;
  display: block;
}

.cert-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cert-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  transition: all 0.2s;
  text-decoration: none;
  color: var(--ink);
}

.cert-item:hover {
  border-color: var(--accent);
  background: var(--accent-light);
  transform: translateX(4px);
}

.cert-item:hover .cert-name {
  color: var(--accent);
}

.cert-name {
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 0.2s;
}

.cert-iss {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 2px;
}

.cert-yr {
  font-size: 0.72rem;
  color: var(--muted);
  white-space: nowrap;
}

.cert-gallery-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
  padding: 13px 16px;
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.22s;
}

.cert-gallery-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(29, 92, 74, 0.25);
}

.contact-box {
  background: var(--ink);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.c-left {
  padding: 64px;
}

.c-left .s-label {
  color: #6fcf97;
}

.c-left .s-label::after {
  background: rgba(111, 207, 151, 0.2);
}

.c-left .s-title {
  color: #fff;
  margin-bottom: 16px;
}

.c-left p {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  margin-bottom: 36px;
  line-height: 1.8;
}

.c-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.c-link:hover {
  background: rgba(255, 255, 255, 0.12);
}

.c-right {
  background: var(--accent);
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.c-right h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.facts li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.facts li span:first-child {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .cbar {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    gap: 40px;
  }

  .hero-panel {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .panel-card {
    flex: 1 1 calc(50% - 8px);
  }

  .panel-card:nth-child(2) {
    margin-left: 0;
  }

  .about-grid,
  .ec-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .exp-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .c-left,
  .c-right {
    padding: 40px 28px;
  }
}
