/* ========== Reset & Base ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  background-color: #FAFAF8;
  color: #1a1a1a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ========== Typography ========== */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
}

/* ========== Header / Nav ========== */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: #FAFAF8;
  border-bottom: 1px solid #e5e2de;
}

.nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 4rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: #666;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #1a1a1a;
  text-decoration: underline;
}

.nav-links a.active {
  color: #1a1a1a;
  text-decoration: underline;
}

.nav-cta {
  background: #9C8265;
  color: #fff !important;
  padding: 0.6rem 1.5rem;
  border-radius: 2px;
  font-weight: 500 !important;
  transition: background 0.3s ease;
}

.nav-cta:hover {
  background: #7d6750;
  text-decoration: none !important;
  color: #fff !important;
}

.nav-cta.active {
  background: #7d6750;
  text-decoration: none !important;
  color: #fff !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #9C8265;
  margin: 6px 0;
  transition: all 0.3s ease;
}

/* ========== Hero ========== */
.hero {
  min-height: calc(100vh - 80px);
  max-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background: #f3f1ee;
  border-bottom: 1px solid #e5e2de;
}

.hero-content {
  max-width: 800px;
}

.hero-label {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1.3;
}

.hero h1 em {
  font-weight: 500;
  color: #9C8265;
}

.hero-sub {
  font-size: 1rem;
  color: #777;
  max-width: 560px;
  margin: 2rem auto 0;
  line-height: 1.75;
}

/* ========== Section utilities ========== */
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 1rem;
}

/* ========== Work Quote ========== */
.work-quote {
  background: #f3f1ee;
  padding: 8rem 2rem;
  text-align: center;
  border-bottom: 1px solid #e5e2de;
}

.work-quote-inner {
  max-width: 800px;
  margin: 0 auto;
}

.work-quote-heading {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: #1a1a1a;
  line-height: 1.3;
}

.work-quote-heading em {
  font-weight: 500;
  color: #9C8265;
}

.work-quote-attr {
  font-size: 0.85rem;
  color: #999;
  margin-top: 2rem;
}

/* ========== Work Showcase ========== */
.work-showcase {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 800px;
  overflow: hidden;
  background: #111;
}

.showcase-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.showcase-bg--active {
  opacity: 1;
}

.showcase-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.6s ease;
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.showcase-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 4rem;
  color: #fff;
}

.showcase-left {
  flex-shrink: 0;
}

.showcase-prompt {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.showcase-cta {
  display: inline-block;
  background: none;
  border: 1px solid #9C8265;
  color: #9C8265;
  padding: 0.7rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.showcase-cta:hover {
  background: #9C8265;
  color: #fff;
}

.showcase-cta--mobile {
  display: none;
  margin-top: 1.5rem;
}

.showcase-middle {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.showcase-line {
  width: 70px;
  height: 2px;
  background: #9C8265;
  flex-shrink: 0;
}

.showcase-nav {
  display: flex;
  flex-direction: column;
}

.showcase-nav-item {
  padding: 0.6rem 0;
  cursor: pointer;
}

.showcase-nav-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 2.8vw, 2.6rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.5s ease;
  user-select: none;
  white-space: nowrap;
}

.showcase-nav-item--active .showcase-nav-title {
  color: #DBBE8A;
}

.showcase-nav-item:hover .showcase-nav-title {
  color: rgba(255, 255, 255, 0.55);
}

.showcase-nav-item--active:hover .showcase-nav-title {
  color: #DBBE8A;
}

.showcase-right {
  flex-shrink: 0;
}

/* ========== Work Gallery ========== */
.work-gallery {
  background: #FAFAF8;
  padding: 4rem 0;
}

.gallery-strip {
  display: flex;
  gap: 1.25rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 4rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.gallery-strip::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 auto;
  width: 240px;
  height: 168px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border: 1px solid #e5e2de;
  transition: border-color 0.3s ease;
}

.gallery-item:hover {
  border-color: #9C8265;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-item:hover img {
  filter: grayscale(0%);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ========== About Section ========== */
.about {
  background: #f3f1ee;
  border-top: 1px solid #e5e2de;
}

.about-top {
  padding: 6rem 4rem 2rem;
  text-align: center;
}

.about-top-inner {
  max-width: 720px;
  margin: 0 auto;
}

.about-heading {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.35;
}

.about-heading em {
  color: #9C8265;
}

/* Person card — leadership style */
.about-people {
  display: flex;
  justify-content: center;
  padding: 2.5rem 4rem 4rem;
}

.about-person {
  position: relative;
  width: 380px;
  height: 520px;
  overflow: hidden;
  background: #e5e2de;
}

.about-person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about-person-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(40, 36, 30, 0.75) 0%, transparent 100%);
  pointer-events: none;
}

.about-person-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 2rem 1.5rem;
}

.about-person-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
}

.about-person-role {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

/* About body — two columns */
.about-body {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4rem 4rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  border-top: 1px solid #d9d5cf;
}

.about-bio p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-detail-group {
  padding: 1.75rem 0;
  border-bottom: 1px solid #d9d5cf;
}

.about-detail-group:first-child {
  padding-top: 0;
}

.about-detail-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-detail-group h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9C8265;
  margin-bottom: 0.75rem;
}

.about-detail-group p {
  font-size: 0.9rem;
  color: #777;
  line-height: 1.8;
}

/* ========== Skills ========== */
.skills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-tag {
  font-size: 0.75rem;
  font-weight: 400;
  padding: 0.35rem 0.85rem;
  border: 1px solid #ccc;
  border-radius: 2px;
  color: #777;
  transition: all 0.3s ease;
}

.skill-tag:hover {
  border-color: #9C8265;
  color: #9C8265;
}

/* ========== Footer ========== */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 5rem 4rem 2.5rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.footer-cta {
  margin-bottom: 4rem;
}

.footer-cta-link {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  color: #fff;
  transition: color 0.3s ease;
}

.footer-cta-link em {
  color: #DBBE8A;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-cta-link:hover {
  color: #DBBE8A;
}

.footer-cta-sub {
  font-size: 0.85rem;
  color: #777;
  margin-top: 0.75rem;
  line-height: 1.6;
}

.footer-info {
  display: flex;
  gap: 6rem;
  margin-bottom: 4rem;
}

.footer-col-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #eee;
  margin-bottom: 0.35rem;
}

.footer-col p {
  font-size: 0.85rem;
  color: #777;
}

.footer-col a {
  color: #DBBE8A;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  font-size: 0.8rem;
  color: #DBBE8A;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-copy {
  font-size: 0.7rem;
  color: #555;
}

/* ========== Lightbox ========== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.lightbox-close:hover {
  opacity: 1;
}

/* ========== Section ========== */
.section {
  padding: 6rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 0.95rem;
  color: #777;
  max-width: 600px;
  line-height: 1.75;
}

/* ========== Project Blocks ========== */
/* ========== UX Cases — side-by-side row ========== */
.ux-cases-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.ux-cases-row .project-block {
  margin-bottom: 0;
}

.ux-cases-row .portfolio-item {
  aspect-ratio: 4/3;
}

.project-block {
  margin-bottom: 3rem;
}

.project-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #9C8265;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e5e2de;
}

.project-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9C8265;
  opacity: 0.8;
  margin: 0 0 0.5rem;
}

.project-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #4a4a4a;
  max-width: 65ch;
  margin: 0 0 1.25rem;
}

/* ========== Portfolio Grid ========== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.folder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.folder-card {
  position: relative;
  display: block;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid #e5e2de;
  background: #f3f1ee;
}

.folder-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.folder-card:hover img {
  transform: scale(1.04);
}

.folder-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.16) 58%, transparent 100%);
}

.folder-card-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 1.5rem;
  color: #fff;
}

.folder-card-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.folder-card h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: #fff;
}

.folder-card p {
  margin-top: 0.75rem;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  line-height: 1.6;
}

.folder-card small {
  display: block;
  margin-top: 1rem;
  color: #DBBE8A;
  font-size: 0.78rem;
  font-weight: 600;
}

.portfolio-item {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #e5e2de;
  aspect-ratio: 4/3;
  transition: border-color 0.3s ease;
}

.portfolio-item:hover {
  border-color: #9C8265;
}

.portfolio-item.featured {
  grid-column: span 2;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.03);
}

.case-cover-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 18, 31, 0.9) 0%, rgba(5, 18, 31, 0.62) 34%, rgba(5, 18, 31, 0.12) 70%),
    linear-gradient(0deg, rgba(5, 18, 31, 0.55) 0%, transparent 48%);
  pointer-events: none;
}

.case-cover-content {
  position: absolute;
  left: 6%;
  bottom: 8%;
  z-index: 2;
  max-width: min(58%, 34rem);
  color: #fff;
  pointer-events: none;
}

.case-cover-content--veed {
  padding: 1.25rem;
  border: 1px solid rgba(222, 255, 183, 0.16);
  border-radius: 18px;
  background: rgba(5, 18, 31, 0.58);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.case-cover-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.case-cover-tags span {
  padding: 0.38rem 0.62rem;
  border: 1px solid rgba(222, 255, 183, 0.52);
  border-radius: 999px;
  background: rgba(5, 18, 31, 0.72);
  color: #DEFFB7;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-cover-content h4 {
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.05;
  color: #fff;
}

.case-cover-content p {
  margin: 0.75rem 0 0;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.72rem, 1vw, 0.92rem);
  line-height: 1.55;
}

.wise-cover-card {
  background: #9fe870;
}

.wise-cover {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 32%, rgba(22, 51, 0, 0.12), transparent 32%),
    linear-gradient(135deg, #9fe870 0%, #b8f58c 52%, #9fe870 100%);
  color: #163300;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.wise-cover::before {
  content: "WISE";
  position: absolute;
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
  opacity: 0.08;
  pointer-events: none;
}

.wise-cover-tags {
  position: absolute;
  top: 7%;
  left: 6%;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.wise-cover-tags span {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: #163300;
  color: #9fe870;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.wise-cover-kicker,
.wise-cover-title,
.wise-cover-entry {
  position: absolute;
  z-index: 2;
  margin: 0;
}

.wise-cover-kicker {
  left: 6%;
  bottom: 38%;
  font-size: clamp(0.5rem, 0.7vw, 0.7rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.6;
}

.wise-cover-title {
  left: 6%;
  bottom: 9%;
  max-width: 55%;
  font-size: clamp(1.2rem, 2.4vw, 2.4rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.wise-cover img {
  position: absolute;
  right: -2%;
  top: 4%;
  z-index: 1;
  width: min(66%, 700px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 40px rgba(22, 51, 0, 0.22));
}

.portfolio-item:hover .wise-cover img {
  transform: translateY(-3px) scale(1.03);
}

.wise-cover-brand {
  position: absolute;
  right: 6%;
  bottom: 9%;
  z-index: 2;
  margin: 0;
  font-size: clamp(1.3rem, 2.6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.wise-cover-entry {
  right: 6.25%;
  bottom: 5%;
  font-size: clamp(0.55rem, 0.8vw, 0.78rem);
  font-weight: 600;
  opacity: 0.62;
}

/* ---------- Ocean Decade Cover Card ---------- */
.ocean-cover-card {
  background: #03045E;
}

.ocean-cover {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3,4,94,0.10) 0%, rgba(2,62,138,0.05) 45%, rgba(3,4,94,0.55) 100%),
    url('UX/un-ocean-decade/Sea.jpg?v=2') center/cover no-repeat;
  color: #ffffff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Subtle glow accents — match hero */
.ocean-cover::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(144,224,239,0.18) 0%, transparent 65%);
  pointer-events: none;
}

.ocean-cover::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 55%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(244,132,95,0.14) 0%, transparent 60%);
  pointer-events: none;
}

/* Pill tag (top-left) — mirrors hero tag with glowing coral dot */
.ocean-cover-tag {
  position: absolute;
  top: 7%;
  left: 6%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  border-radius: 50px;
  background: rgba(144,224,239,0.08);
  border: 1px solid rgba(144,224,239,0.4);
  font-size: clamp(0.5rem, 0.65vw, 0.65rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
}
.ocean-cover-tag {
  border-color: rgba(255,255,255,0.6);
  background: rgba(3,4,94,0.35);
}
.ocean-cover-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #CF9F2C;
  box-shadow: 0 0 10px #CF9F2C;
}

/* Text positioning */
.ocean-cover-kicker,
.ocean-cover-title {
  position: absolute;
  z-index: 3;
  margin: 0;
}

.ocean-cover-kicker {
  left: 6%;
  bottom: 38%;
  font-size: clamp(0.5rem, 0.7vw, 0.68rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(144,224,239,0.75);
}

.ocean-cover-title {
  left: 6%;
  bottom: 14%;
  max-width: 78%;
  font-size: clamp(1.15rem, 2.2vw, 2.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}
.ocean-cover-title .accent {
  color: #90E0EF;
  position: relative;
  display: inline-block;
  z-index: 1;
}
.ocean-cover-title .accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.05em;
  width: 100%;
  height: 0.18em;
  background: #CF9F2C;
  opacity: 0.85;
  z-index: -1;
}

/* Bottom meta strip */
.ocean-cover-bottom {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 5%;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.ocean-cover-scope,
.ocean-cover-region {
  margin: 0;
  font-size: clamp(0.5rem, 0.7vw, 0.72rem);
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- HEAVEN Cover Card ---------- */
.heaven-cover-card {
  background: #00578c;
}

.heaven-cover {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #dbe5ee 0%, #93b1cd 25%, #508bb3 50%, #006999 75%, #00578c 100%);
  color: #ffffff;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.heaven-cover::before {
  display: none;
}

.heaven-cover-tags {
  position: absolute;
  top: 7%;
  left: 6%;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.heaven-cover-tags span {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(0, 87, 140, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.heaven-cover-kicker,
.heaven-cover-title,
.heaven-cover-entry {
  position: absolute;
  z-index: 2;
  margin: 0;
}

.heaven-cover-kicker {
  left: 6%;
  bottom: 38%;
  font-size: clamp(0.5rem, 0.7vw, 0.7rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.8;
  color: #dbe5ee;
}

.heaven-cover-title {
  left: 6%;
  bottom: 9%;
  max-width: 55%;
  font-size: clamp(1.2rem, 2.4vw, 2.4rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.heaven-cover-brand {
  position: absolute;
  right: 6%;
  bottom: 9%;
  z-index: 2;
  margin: 0;
  font-size: clamp(0.9rem, 1.8vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #dbe5ee;
  opacity: 0.9;
}

.heaven-cover-entry {
  right: 6.25%;
  bottom: 5%;
  font-size: clamp(0.55rem, 0.8vw, 0.78rem);
  font-weight: 600;
  opacity: 0.6;
  color: #dbe5ee;
}

.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-item-overlay {
  opacity: 1;
}

.story-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 4rem;
}

.story-back {
  display: inline-block;
  margin-bottom: 2rem;
  color: #9C8265;
  font-size: 0.85rem;
  font-weight: 500;
}

.story-back:hover,
.story-nav a:hover {
  text-decoration: underline;
}

.story-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1.25fr);
  gap: 4rem;
  align-items: center;
}

.story-copy h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.story-copy p {
  max-width: 34rem;
  color: #666;
  font-size: 1rem;
  line-height: 1.85;
}

.story-image {
  border: 1px solid #e5e2de;
  background: #f3f1ee;
}

.story-image img {
  width: 100%;
  height: auto;
}

.story-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e2de;
  color: #9C8265;
  font-size: 0.85rem;
}

.story-nav a:last-child {
  text-align: right;
}

.portfolio-item-overlay span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
}

.overlay-desc {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

/* ========== Placeholder Card ========== */
.placeholder-card {
  border: 2px dashed #d9d5cf;
  padding: 3rem 2rem;
  text-align: center;
  color: #bbb;
  font-size: 0.9rem;
  font-style: italic;
}

/* ========== Video Container ========== */
.video-container {
  max-width: 800px;
}

.video-container video {
  width: 100%;
  border: 1px solid #e5e2de;
  background: #000;
}

/* ========== Animations ========== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Responsive ========== */
@media (max-width: 900px) {
  .nav {
    padding: 0 2rem;
  }

  .work-quote {
    padding: 5rem 2rem;
  }

  .showcase-content {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 2rem;
    gap: 2.5rem;
  }

  .showcase-right {
    display: none;
  }

  .showcase-cta--mobile {
    display: inline-block;
  }

  .showcase-middle {
    flex-direction: column;
    align-items: flex-start;
  }

  .showcase-line {
    width: 50px;
  }

  .gallery-strip {
    padding: 0 2rem;
  }

  .about-top {
    padding: 4rem 2rem 2rem;
  }

  .about-people {
    padding: 2rem 2rem 3rem;
  }

  .about-person {
    width: 100%;
    max-width: 380px;
  }

  .about-body {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 2rem;
  }

  .footer {
    padding: 3.5rem 2rem 2rem;
  }

  .footer-info {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .ux-cases-row {
    grid-template-columns: 1fr;
  }

  .story-page {
    padding: 4rem 2rem;
  }

  .story-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .wise-cover {
    min-height: 280px;
  }

  .wise-cover-title {
    max-width: 60%;
  }

  .wise-cover img {
    right: -18%;
    top: 22%;
    width: 78%;
  }

  .ocean-cover {
    min-height: 280px;
  }

  .ocean-cover-title {
    max-width: 65%;
  }

  .heaven-cover {
    min-height: 280px;
  }

  .heaven-cover-title {
    max-width: 65%;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    top: 80px;
    background: rgba(250, 250, 248, 0.98);
    backdrop-filter: blur(12px);
    padding: 3rem 2rem;
    gap: 2rem;
    align-items: center;
    justify-content: flex-start;
  }

  .nav-links.open a {
    font-size: 1.1rem;
    color: #1a1a1a;
  }

  .hero {
    max-height: none;
    min-height: auto;
    padding: 5rem 1.5rem;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .work-quote {
    padding: 4rem 1.5rem;
  }

  .showcase-content {
    padding: 0 1.5rem;
    gap: 2rem;
  }

  .showcase-nav-title {
    font-size: 1.3rem;
  }

  .work-showcase {
    max-height: 600px;
  }

  .gallery-strip {
    padding: 0 1.5rem;
  }

  .gallery-item {
    width: 200px;
    height: 140px;
  }

  .about-person {
    height: 440px;
  }

  .footer {
    padding: 3rem 1.5rem 2rem;
  }
}
