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

:root {
  --bg: #070707;
  --bg-soft: #10100f;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #f8efe0;
  --muted: #b8aa97;
  --gold: #d7b46a;
  --gold-light: #ffe6a3;
  --cream: #fff6e7;
  --border: rgba(215, 180, 106, 0.24);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 15%, rgba(215, 180, 106, 0.18), transparent 32%),
    radial-gradient(circle at 80% 8%, rgba(255, 246, 231, 0.10), transparent 30%),
    linear-gradient(135deg, #050505 0%, #0d0c0b 50%, #15110b 100%);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 85%);
  z-index: -2;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 180, 106, 0.18), transparent 62%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.85;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  z-index: 100;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.62);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  font-weight: 700;
}

.brand-signature {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  line-height: 1;
  color: var(--cream);
  letter-spacing: 0.4px;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid rgba(215, 180, 106, 0.22);
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.13), rgba(255, 246, 231, 0.04));
}

.navbar {
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar a {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: 0.25s ease;
}

.navbar a:hover {
  color: var(--cream);
}

.nav-cta {
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--gold-light) !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--panel);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--cream);
}

.section {
  padding: 115px 7vw;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
}

.hero-grid {
  width: min(1120px, 100%);
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 55px;
  align-items: center;
}

.eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 16px;
}

h1, h2, h3 {
  line-height: 1.05;
}

h1, h2 {
  font-family: "Cormorant Garamond", serif;
}

h1 {
  font-size: clamp(42px, 6vw, 76px);
  max-width: 720px;
  letter-spacing: -1px;
}

h2 {
  font-size: clamp(38px, 5vw, 66px);
  max-width: 880px;
  letter-spacing: -1px;
}

h3 {
  font-size: 22px;
}

.hero-text {
  max-width: 650px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--cream));
  color: #17110a;
  box-shadow: 0 18px 45px rgba(215, 180, 106, 0.26);
}

.btn.secondary {
  border: 1px solid var(--border);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.04);
}

.hero-stats {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats div {
  min-width: 112px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--panel);
  backdrop-filter: blur(18px);
}

.hero-stats strong {
  display: block;
  font-size: 24px;
  color: var(--gold-light);
  line-height: 1;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  display: grid;
  place-items: center;
}

.portrait-card {
  position: relative;
  width: min(420px, 82vw);
  aspect-ratio: 0.82;
  padding: 14px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 246, 231, 0.10), rgba(215, 180, 106, 0.06)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(215, 180, 106, 0.28);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 246, 231, 0.05) inset;
  backdrop-filter: blur(16px);
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
  background: #111;
  border: 1px solid rgba(255, 246, 231, 0.12);
}

.orbit {
  display: none;
}

.floating-badge {
  position: absolute;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.72);
  backdrop-filter: blur(18px);
  color: var(--cream);
  font-size: 13px;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.badge-one {
  left: -18px;
  bottom: 24px;
}

.badge-two {
  right: -18px;
  top: 24px;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: grid;
  place-items: center;
  gap: 8px;
}

.scroll-indicator span {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.section-heading {
  width: min(1120px, 100%);
  margin: 0 auto 42px;
}

.about-grid,
.writing-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.glass-panel,
.signature-panel,
.skill-card,
.project-card,
.writing-panel,
.contact-card {
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.glass-panel,
.signature-panel {
  border-radius: 34px;
  padding: 34px;
}

.glass-panel p {
  color: var(--muted);
  margin-top: 16px;
}

.signature-panel {
  background:
    radial-gradient(circle at top right, rgba(215, 180, 106, 0.22), transparent 42%),
    rgba(255, 255, 255, 0.06);
}

.signature-panel span {
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 800;
}

.signature-panel h3 {
  margin: 18px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
}

.signature-panel p {
  color: var(--muted);
}

.skill-grid,
.project-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

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

.skill-card,
.project-card {
  border-radius: 30px;
  padding: 28px;
  transition: 0.28s ease;
}

.skill-card:hover,
.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 230, 163, 0.42);
  background: var(--panel-strong);
}

.pill-row,
.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill-row span,
.tech-stack span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 246, 231, 0.12);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  background: rgba(0, 0, 0, 0.18);
}

.project-tabs {
  width: min(1120px, 100%);
  margin: 0 auto 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tab-btn {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--cream));
  color: #17110a;
}

.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card {
  display: flex;
  flex-direction: column;
  min-height: 355px;
}

.project-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.project-tag {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.status {
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 800;
}

.status.completed {
  background: rgba(181, 255, 207, 0.12);
  color: #bfffd6;
}

.status.working {
  background: rgba(255, 230, 163, 0.14);
  color: var(--gold-light);
}

.status.soon {
  background: rgba(214, 221, 255, 0.12);
  color: #dbe0ff;
}

.project-card p {
  color: var(--muted);
  margin-top: 14px;
}

.project-actions {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.project-actions a {
  color: var(--gold-light);
  font-weight: 800;
  font-size: 14px;
}

.writing {
  position: relative;
}

.writing-panel {
  border-radius: 34px;
  padding: 34px;
}

.writing-panel p {
  color: var(--muted);
  margin: 14px 0 22px;
}

.writing-list {
  display: grid;
  gap: 14px;
}

.writing-list div {
  padding: 18px;
  border: 1px solid rgba(255, 246, 231, 0.11);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.18);
}

.writing-list strong,
.writing-list span {
  display: block;
}

.writing-list span {
  color: var(--muted);
  margin-top: 4px;
  font-size: 14px;
}

.contact {
  padding-bottom: 70px;
}

.contact-card {
  width: min(900px, 100%);
  margin: 0 auto;
  border-radius: 38px;
  padding: 46px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(215, 180, 106, 0.21), transparent 44%),
    var(--panel);
}

.contact-card h2 {
  margin: 0 auto;
}

.contact-card p {
  color: var(--muted);
  max-width: 680px;
  margin: 20px auto 26px;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.contact-links a {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--gold-light);
  font-weight: 800;
  background: rgba(0,0,0,0.16);
}

.contact-card small {
  color: var(--muted);
}

.site-footer {
  padding: 26px 7vw 40px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.project-card.hide {
  display: none;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .writing-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-top: 145px;
  }

  .hero-visual {
    order: -1;
  }

  .portrait-card {
    width: min(350px, 82vw);
  }
}

@media (max-width: 760px) {
  .site-header {
    border-radius: 28px;
  }

  .menu-toggle {
    display: block;
  }

  .navbar {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(7, 7, 7, 0.92);
    backdrop-filter: blur(22px);
    flex-direction: column;
    align-items: stretch;
    display: none;
  }

  .navbar.open {
    display: flex;
  }

  .navbar a {
    text-align: center;
  }

  .brand-signature {
    font-size: 20px;
    padding: 8px 12px;
  }

  .section {
  padding: 120px 8vw;
}

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-text {
    font-size: 16px;
  }

  .skill-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
  }

  .hero-stats div {
    width: 100%;
  }

  .badge-one,
  .badge-two {
    position: static;
    margin: 12px auto 0;
    width: fit-content;
  }

  .orbit {
    display: none;
  }

  .contact-card {
    padding: 32px 20px;
  }
}
.about-photo {
  width: min(420px, 100%);
  margin: 42px auto 0;
}

.portfolio-art-card {
  position: relative;
  width: min(430px, 82vw);
  aspect-ratio: 0.82;
  border-radius: 34px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(215, 180, 106, 0.32);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 230, 163, 0.20), transparent 34%),
    radial-gradient(circle at 80% 80%, rgba(215, 180, 106, 0.12), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.55),
    inset 0 0 90px rgba(255, 246, 231, 0.04);
  backdrop-filter: blur(18px);
}

.portfolio-art-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 246, 231, 0.10);
  pointer-events: none;
}

.portfolio-mini {
  position: relative;
  z-index: 2;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 20px;
}

.portfolio-word {
  position: relative;
  z-index: 2;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(58px, 8vw, 88px);
  line-height: 0.9;
  color: var(--cream);
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.portfolio-line {
  position: relative;
  z-index: 2;
  margin-top: 22px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 1.5px;
}

.portfolio-rings span {
  position: absolute;
  border: 1px solid rgba(215, 180, 106, 0.20);
  border-radius: 50%;
  animation: rotate 18s linear infinite;
}

.portfolio-rings span:nth-child(1) {
  width: 280px;
  height: 280px;
  right: -50px;
  top: 70px;
}

.portfolio-rings span:nth-child(2) {
  width: 360px;
  height: 360px;
  right: -95px;
  top: 20px;
  animation-direction: reverse;
}

.portfolio-rings span:nth-child(3) {
  width: 210px;
  height: 210px;
  left: -70px;
  bottom: -40px;
}

.portfolio-chip {
  position: absolute;
  z-index: 3;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(215, 180, 106, 0.28);
  background: rgba(7, 7, 7, 0.78);
  color: var(--cream);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
}

.chip-one {
  top: 28px;
  right: 28px;
}

.chip-two {
  bottom: 34px;
  left: 28px;
}

.chip-three {
  bottom: 34px;
  right: 28px;
}
.about-photo {
  width: min(520px, 100%);
  margin: 46px auto 0;
  text-align: center;
}

.about-portrait-card {
  width: min(340px, 72vw);
  margin: 0 auto;
  padding: 12px;
  border-radius: 32px;
  aspect-ratio: 0.82;
}

.about-portrait-card .profile-img {
  border-radius: 24px;
  object-position: center top;
}

.about-role-text {
  margin-top: 28px;
}

.about-role-text h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.95;
  color: rgba(255, 246, 231, 0.72);
  font-weight: 700;
  letter-spacing: -1px;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.about-role-text p {
  margin-top: 14px;
  font-size: clamp(18px, 2.5vw, 28px);
  color: rgba(215, 180, 106, 0.72);
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
}
.about-grid {
  align-items: start;
}

.about .glass-panel,
.about .signature-panel {
  height: auto;
  min-height: unset;
  padding-bottom: 34px;
}

.about .glass-panel p:last-child {
  margin-bottom: 0;
}
.about-highlight-card {
  margin-top: 22px;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(215, 180, 106, 0.24);
  background:
    radial-gradient(circle at top left, rgba(215, 180, 106, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.about-highlight-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(215, 180, 106, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.about-highlight-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.05;
  color: rgba(255, 246, 231, 0.78);
  font-weight: 700;
}

.highlight-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.highlight-points p {
  margin: 0;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(215, 180, 106, 0.22);
  color: rgba(255, 246, 231, 0.62);
  font-size: 13px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.18);
}
.about-grid {
  align-items: start;
}

.about-left,
.about-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-photo {
  width: min(360px, 100%);
  margin: 0 auto;
  text-align: center;
}

.about-portrait-card {
  width: min(330px, 72vw);
  margin: 0 auto;
  padding: 12px;
  border-radius: 32px;
  aspect-ratio: 0.82;
}

.about-role-text {
  margin-top: 24px;
}

.about-role-text h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 0.95;
  color: rgba(255, 246, 231, 0.72);
  font-weight: 700;
  letter-spacing: -1px;
}

.about-role-text p {
  margin-top: 12px;
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(215, 180, 106, 0.72);
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.about-highlight-card {
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(215, 180, 106, 0.24);
  background:
    radial-gradient(circle at top left, rgba(215, 180, 106, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.about-highlight-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(215, 180, 106, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.about-highlight-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.05;
  color: rgba(255, 246, 231, 0.78);
  font-weight: 700;
}

.highlight-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.highlight-points p {
  margin: 0;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(215, 180, 106, 0.22);
  color: rgba(255, 246, 231, 0.62);
  font-size: 13px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.18);
}

@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-right {
    order: 2;
  }

  .about-left {
    order: 1;
  }
}
.seo-projects-card {
  margin-top: 42px;
  padding: 38px;
  border-radius: 34px;
  border: 1px solid rgba(215, 180, 106, 0.24);
  background:
    radial-gradient(circle at top left, rgba(215, 180, 106, 0.16), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.seo-projects-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: rgba(255, 230, 163, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.seo-projects-card h3 {
  max-width: 760px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  color: rgba(255, 246, 231, 0.82);
  font-weight: 700;
}

.seo-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.seo-brand-grid p {
  margin: 0;
  padding: 15px 16px;
  border-radius: 999px;
  border: 1px solid rgba(215, 180, 106, 0.22);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 246, 231, 0.66);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.4px;
}

@media (max-width: 760px) {
  .seo-projects-card {
    padding: 28px 22px;
  }

  .seo-brand-grid {
    grid-template-columns: 1fr;
  }
}
.writing-showcase {
  margin-top: 36px;
}

.writing-intro-card {
  padding: 34px;
  border-radius: 32px;
  border: 1px solid rgba(215, 180, 106, 0.24);
  background:
    radial-gradient(circle at top left, rgba(215, 180, 106, 0.16), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.writing-intro-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(255, 230, 163, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.writing-intro-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.05;
  color: rgba(255, 246, 231, 0.84);
  margin-bottom: 16px;
}

.writing-intro-card p {
  color: rgba(255, 246, 231, 0.70);
  font-size: 17px;
  line-height: 1.8;
}

.writing-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.writing-meta p {
  margin: 0;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(215, 180, 106, 0.24);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 246, 231, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.writing-site-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.writing-site-card {
  display: block;
  text-decoration: none;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(215, 180, 106, 0.22);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.26);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.writing-site-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.writing-site-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.writing-site-content {
  padding: 22px;
}

.writing-site-content span {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255, 230, 163, 0.76);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.writing-site-content h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  color: rgba(255, 246, 231, 0.86);
  margin-bottom: 12px;
}

.writing-site-content p {
  color: rgba(255, 246, 231, 0.64);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 900px) {
  .writing-site-grid {
    grid-template-columns: 1fr;
  }
}
.project-cover {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 20px;
  border: 1px solid rgba(215, 180, 106, 0.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}
.about-photo {
  width: min(320px, 100%);
  margin: 0 auto;
  text-align: center;
}

.about-portrait-card {
  width: min(280px, 68vw);
  margin: 0 auto;
  padding: 10px;
  border-radius: 30px;
  aspect-ratio: 0.82;
}

.about-portrait-card .profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
  transform: scale(1.02);
}

.about-role-text {
  margin-top: 20px;
}

.about-role-text h3 {
  font-size: clamp(32px, 3.6vw, 48px);
}

.about-role-text p {
  font-size: clamp(14px, 1.6vw, 18px);
  letter-spacing: 3px;
}
