/* =========================================================
   NYATENG BRANDS LIMITED
   Homepage CSS
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #a57622;
  --gold-light: #c9973a;
  --gold-pale: #f0e6d0;
  --deep-blue: #084287;
  --ivory: #f8f6ee;
  --dark-navy: #0e306a;
  --navy-black: #07182f;
  --champagne: #d5c7a9;
  --silver-blue: #7e8aa4;
  --text-dark: #0d1b2e;
  --text-mid: #3a4a60;
  --text-light: #7e8aa4;
  --white: #ffffff;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", sans-serif;

  --shadow-soft: 0 20px 60px rgba(8, 14, 30, 0.08);
  --shadow-medium: 0 26px 80px rgba(8, 14, 30, 0.14);
  --shadow-dark: 0 30px 90px rgba(8, 14, 30, 0.22);

  --site-padding: 60px;
  --section-padding: 120px 60px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--text-dark);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.7;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

/* =========================================================
   NAVIGATION
========================================================= */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 1000;

  height: 72px;
  padding: 0 var(--site-padding);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;

  background: rgba(248, 246, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(165, 118, 34, 0.15);

  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-nav.scrolled {
  box-shadow: 0 2px 24px rgba(8, 14, 30, 0.08);
  background: rgba(248, 246, 238, 0.96);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
}

.nav-logo-mark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-navy);
  letter-spacing: 0.03em;
  line-height: 1;
}

.nav-logo-mark span {
  color: var(--gold);
}

.nav-logo-sub {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--silver-blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  position: relative;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;

  height: 1px;

  background: var(--gold);

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 28px;
  background: var(--deep-blue);
  color: var(--ivory) !important;
  border-radius: 2px;
  font-size: 12px !important;
  letter-spacing: 0.12em !important;
  font-weight: 500 !important;
  transition: background 0.2s ease, color 0.2s ease !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
}

/* Mobile menu button */

.mobile-menu-btn {
  display: none;
  width: 42px;
  height: 42px;

  background: transparent;
  border: 1px solid rgba(165, 118, 34, 0.25);

  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-btn span {
  width: 20px;
  height: 1px;
  background: var(--dark-navy);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* =========================================================
   HERO
========================================================= */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  overflow: hidden;
}

.hero-left {
  position: relative;
  overflow: hidden;

  padding: 80px var(--site-padding);

  background: var(--dark-navy);

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-left::before,
.hero-left::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(165, 118, 34, 0.16);
  pointer-events: none;
}

.hero-left::before {
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
}

.hero-left::after {
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);

  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.hero-tag::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-h1 {
  position: relative;
  z-index: 2;

  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ivory);

  margin-bottom: 32px;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  position: relative;
  z-index: 2;

  max-width: 390px;

  font-size: 15px;
  font-weight: 300;
  color: var(--champagne);
  line-height: 1.8;

  margin-bottom: 48px;
}

.hero-actions {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 32px;
}

.btn-primary,
.btn-primary-light {
  display: inline-block;

  padding: 14px 36px;

  background: var(--gold);
  color: var(--white);

  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;

  border-radius: 2px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover,
.btn-primary-light:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  color: var(--champagne);

  transition: color 0.2s ease;
}

.btn-ghost:hover {
  color: var(--gold-light);
}

.btn-ghost svg {
  transition: transform 0.2s ease;
}

.btn-ghost:hover svg {
  transform: translateX(4px);
}

.hero-right {
  position: relative;
  overflow: hidden;
  min-height: 540px;
}

.hero-portfolio-grid {
  height: 100%;

  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}

.hero-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* .hero-item:first-child {
  grid-row: span 2;
} */

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.hero-item:hover .hero-img-placeholder {
  transform: scale(1.04);
}

.hero-item-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(to top, rgba(8, 14, 30, 0.75), transparent 60%);

  opacity: 0;
  transition: opacity 0.4s ease;

  display: flex;
  align-items: flex-end;

  padding: 24px;
}

.hero-item:hover .hero-item-overlay {
  opacity: 1;
}

.hero-item-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
}

/* =========================================================
   SHARED SECTION ELEMENTS
========================================================= */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);

  margin-bottom: 16px;
}

.section-label::before {
  content: "";
  display: block;

  width: 32px;
  height: 1px;

  background: var(--gold);
}

.section-label-centered {
  justify-content: center;
}

.label-light {
  color: var(--gold-light);
}

.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.2vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark-navy);
}

.section-h2 em {
  font-style: italic;
  color: var(--gold);
}

/* =========================================================
   PORTFOLIO
========================================================= */

.section-portfolio {
  padding: var(--section-padding);
  background: var(--ivory);
}

.portfolio-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 40px;

  margin-bottom: 64px;
}

.portfolio-intro {
  max-width: 420px;
  margin-left: auto;

  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
}

.portfolio-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;

  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;

  background: transparent;
  border: 1px solid rgba(165, 118, 34, 0.3);
  border-radius: 1px;

  color: var(--text-mid);

  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--deep-blue);
  border-color: var(--deep-blue);
  color: var(--ivory);
}

/* from here */

.portfolio-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 60px;
  gap: 4px;
  grid-auto-flow: dense;
}

.p-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
  background: var(--dark-navy);
  min-height: 280px;
  grid-column: span 3;
  grid-row: span 5;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Featured layout pattern */
.p-card:nth-child(8n + 1) {
  grid-column: span 5;
  grid-row: span 7;
}

.p-card:nth-child(8n + 2) {
  grid-column: span 4;
  grid-row: span 5;
}

.p-card:nth-child(8n + 3) {
  grid-column: span 3;
  grid-row: span 5;
}

.p-card:nth-child(8n + 4) {
  grid-column: span 3;
  grid-row: span 6;
}

.p-card:nth-child(8n + 5) {
  grid-column: span 4;
  grid-row: span 6;
}

.p-card:nth-child(8n + 6) {
  grid-column: span 5;
  grid-row: span 6;
}

.p-card:nth-child(8n + 7) {
  grid-column: span 4;
  grid-row: span 5;
}

.p-card:nth-child(8n + 8) {
  grid-column: span 3;
  grid-row: span 5;
}

.p-card-img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.p-card:hover .p-card-img {
  transform: scale(1.05);
}


/* to here */

.p-card-info {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(8, 26, 60, 0.88),
    rgba(8, 26, 60, 0.15) 50%,
    transparent
  );

  opacity: 0;
  transition: opacity 0.4s ease;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 20px;
}

.p-card:hover .p-card-info {
  opacity: 1;
}

.p-card-cat {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);

  margin-bottom: 4px;
}

.p-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--ivory);
}

.p-card.hide {
  display: none;
}

.portfolio-cta {
  text-align: center;
  margin-top: 56px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 40px;

  border: 1px solid var(--deep-blue);
  border-radius: 2px;

  color: var(--deep-blue);

  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;

  transition: all 0.2s ease;
}

.btn-outline:hover {
  background: var(--deep-blue);
  color: var(--ivory);
}

/* =========================================================
   ABOUT
========================================================= */

.section-about {
  position: relative;
  overflow: hidden;

  padding: var(--section-padding);

  background: var(--dark-navy);

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-about::before {
  content: "NYATENG";
  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  font-family: var(--font-display);
  font-size: 200px;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;

  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 5;

  border-radius: 2px;
  overflow: hidden;

  box-shadow: var(--shadow-dark);
}

.about-img-wrap svg {
  width: 100%;
  height: 100%;
}

.about-badge {
  position: absolute;
  right: -24px;
  bottom: -24px;

  width: 140px;
  height: 140px;

  background: var(--gold);
  border-radius: 50%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 2px;
}

.about-badge-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.about-badge-text {
  max-width: 90px;

  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
  text-align: center;

  color: rgba(255, 255, 255, 0.85);
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-h2 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ivory);

  margin-bottom: 24px;
}

.about-h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.about-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--champagne);
  line-height: 1.8;

  margin-bottom: 22px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;

  margin: 40px 0;
  padding-top: 32px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;

  margin-bottom: 4px;
}

.about-stat-label {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver-blue);
}

/* =========================================================
   SERVICES
========================================================= */

.section-services {
  padding: var(--section-padding);
  background: var(--ivory);
}

.services-header {
  text-align: center;
  margin-bottom: 72px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.svc-card {
  position: relative;
  overflow: hidden;

  padding: 48px 36px;

  background: var(--white);
  border: 1px solid rgba(165, 118, 34, 0.08);

  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.svc-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  height: 3px;

  background: var(--gold);

  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.svc-card:hover {
  background: var(--dark-navy);
  transform: translateY(-4px);
}

.svc-card:hover::before {
  transform: scaleX(1);
}

.svc-icon {
  width: 52px;
  height: 52px;

  margin-bottom: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--gold);
  font-size: 32px;
}

.svc-num {
  position: absolute;
  top: 32px;
  right: 32px;

  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: rgba(165, 118, 34, 0.08);
  line-height: 1;

  transition: color 0.3s ease;
}

.svc-card:hover .svc-num {
  color: rgba(255, 255, 255, 0.06);
}

.svc-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--dark-navy);

  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.svc-card:hover .svc-title {
  color: var(--gold-light);
}

.svc-body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;

  transition: color 0.3s ease;
}

.svc-card:hover .svc-body {
  color: var(--champagne);
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  margin-top: 24px;

  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  color: var(--gold);

  transition: gap 0.2s ease;
}

.svc-link:hover {
  gap: 12px;
}

/* =========================================================
   CLIENTS
========================================================= */

.section-clients {
  padding: 80px 60px;
  background: var(--champagne);
  overflow: hidden;
}

.clients-header {
  text-align: center;
  margin-bottom: 48px;
}

.clients-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);

  margin-bottom: 8px;
}

.clients-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 36px);
  font-weight: 300;
  color: var(--dark-navy);
}

.clients-title em {
  color: var(--gold);
  font-style: italic;
}

.clients-track-wrap {
  position: relative;
  overflow: hidden;
}

.clients-track-wrap::before,
.clients-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;

  width: 100px;
  z-index: 2;

  pointer-events: none;
}

.clients-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--champagne), transparent);
}

.clients-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--champagne), transparent);
}

.clients-track {
  display: flex;
  gap: 48px;

  width: max-content;

  animation: scroll-track 24s linear infinite;
}

.clients-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-track {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.client-logo {
  flex-shrink: 0;

  min-width: 160px;
  height: 72px;
  padding: 16px 32px;

  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(165, 118, 34, 0.2);
  border-radius: 2px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.client-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-navy);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* =========================================================
   BLOG
========================================================= */

.section-blog {
  padding: var(--section-padding);
  background: var(--ivory);
}

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;

  margin-bottom: 56px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2px;
}

.blog-card {
  overflow: hidden;
  cursor: pointer;

  background: var(--white);
  border: 1px solid rgba(165, 118, 34, 0.08);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;

  background-position: center;
  background-size: cover;

  transition: transform 0.5s ease;
}

.blog-card:first-child .blog-card-img {
  aspect-ratio: 16 / 10;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.03);
}

.blog-img-one {
  background:
    radial-gradient(circle at 50% 50%, rgba(165, 118, 34, 0.28), transparent 25%),
    linear-gradient(135deg, #0e306a, #021840);
}

.blog-img-two {
  background:
    linear-gradient(rgba(14, 48, 106, 0.7), rgba(14, 48, 106, 0.8)),
    linear-gradient(135deg, #d5c7a9, #084287);
}

.blog-img-three {
  background:
    radial-gradient(circle at center, rgba(165, 118, 34, 0.34), transparent 28%),
    linear-gradient(135deg, #f0e6d0, #d5c7a9);
}

.blog-card-body {
  padding: 24px 28px 28px;
}

.blog-tag {
  display: inline-block;

  padding: 3px 10px;
  margin-bottom: 12px;

  border: 1px solid rgba(165, 118, 34, 0.4);
  border-radius: 1px;

  color: var(--gold);

  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.blog-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--dark-navy);
  line-height: 1.3;

  margin-bottom: 8px;
}

.blog-card:first-child .blog-title {
  font-size: 26px;
}

.blog-date {
  font-size: 12px;
  color: var(--silver-blue);
  font-weight: 300;
}

.blog-excerpt {
  margin-top: 10px;

  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  background: var(--text-dark);
  color: var(--ivory);

  padding: 80px 60px 40px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;

  padding-bottom: 60px;
  margin-bottom: 40px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1;

  margin-bottom: 4px;
}

.footer-logo span {
  color: var(--gold);
}

.footer-tagline {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--silver-blue);

  margin-bottom: 20px;
}

.footer-desc {
  max-width: 280px;

  font-size: 14px;
  font-weight: 300;
  color: rgba(248, 246, 238, 0.55);
  line-height: 1.8;

  margin-bottom: 28px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1px;

  color: var(--champagne);
  font-size: 11px;
  letter-spacing: 0.08em;

  transition: border-color 0.2s ease, background 0.2s ease;
}

.social-btn:hover {
  border-color: var(--gold);
  background: rgba(165, 118, 34, 0.12);
}

.footer-col-title {
  margin-bottom: 20px;

  color: var(--gold-light);

  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(248, 246, 238, 0.55);

  font-size: 13px;
  font-weight: 300;

  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 3px;

  margin-bottom: 16px;
}

.footer-contact-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-blue);
  font-weight: 300;
}

.footer-contact-value {
  font-size: 13px;
  font-weight: 300;
  color: rgba(248, 246, 238, 0.75);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: rgba(248, 246, 238, 0.35);
}

.footer-copy span {
  color: var(--gold-light);
}

.footer-bottom-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-bottom-links a {
  font-size: 11px;
  font-weight: 300;
  color: rgba(248, 246, 238, 0.35);

  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--ivory);
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  opacity: 0;
}

.animate.visible {
  animation: fadeInUp 0.7s ease forwards;
}

.hero-tag,
.hero-h1,
.hero-desc,
.hero-actions {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.hero-h1 {
  animation-delay: 0.15s;
}

.hero-desc {
  animation-delay: 0.3s;
}

.hero-actions {
  animation-delay: 0.45s;
}

/* =========================================================
   RESPONSIVE DESIGN
========================================================= */

@media (max-width: 1180px) {
  :root {
    --site-padding: 40px;
    --section-padding: 100px 40px;
  }

  .nav-links {
    gap: 26px;
  }

  .hero-h1 {
    font-size: clamp(3.6rem, 6.5vw, 64px);
  }
}

@media (max-width: 980px) {
  :root {
    --site-padding: 28px;
    --section-padding: 90px 28px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;

    background: rgba(248, 246, 238, 0.98);
    border-bottom: 1px solid rgba(165, 118, 34, 0.18);
    box-shadow: var(--shadow-soft);

    padding: 14px 28px 24px;

    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;

    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    display: inline-block !important;
    width: fit-content;
    margin-top: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-left {
    min-height: 660px;
  }

  .hero-right {
    min-height: 520px;
  }

  .portfolio-header,
  .section-about,
  .blog-header,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .portfolio-intro {
    max-width: 680px;
    margin-left: 0;
  }

  /* from here */

  .portfolio-masonry {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 64px;
  }

  .p-card,
  .p-card:nth-child(8n + 1),
  .p-card:nth-child(8n + 2),
  .p-card:nth-child(8n + 3),
  .p-card:nth-child(8n + 4),
  .p-card:nth-child(8n + 5),
  .p-card:nth-child(8n + 6),
  .p-card:nth-child(8n + 7),
  .p-card:nth-child(8n + 8) {
    grid-column: span 3;
    grid-row: span 5;
    min-height: 300px;
  }

  .p-card:nth-child(6n + 1),
  .p-card:nth-child(6n + 4) {
    grid-column: span 6;
    grid-row: span 6;
  }

  /* to here */

  .section-about {
    gap: 56px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    gap: 40px;
  }
}

@media (max-width: 720px) {
  .hero-left {
    min-height: 620px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-portfolio-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 260px);
  }

  .hero-item:first-child {
    grid-row: span 1;
  }

  .portfolio-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .p-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    height: 340px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-badge {
    right: 18px;
    bottom: -42px;
    width: 118px;
    height: 118px;
  }

  .clients-track-wrap::before,
  .clients-track-wrap::after {
    width: 40px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 520px) {
  :root {
    --site-padding: 20px;
    --section-padding: 80px 20px;
  }

  .site-nav {
    height: 68px;
  }

  .nav-links {
    top: 68px;
  }

  .nav-logo-mark {
    font-size: 18px;
  }

  .nav-logo-sub {
    font-size: 8px;
    letter-spacing: 0.18em;
  }

  .hero {
    padding-top: 68px;
  }

  .hero-left {
    min-height: 580px;
  }

  .hero-h1 {
    font-size: clamp(3.2rem, 14vw, 4.8rem);
  }

  .hero-desc {
    font-size: 14px;
  }

  .section-h2 {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .portfolio-filters {
    align-items: stretch;
  }

  .filter-btn {
    flex: 1 1 auto;
  }

  .p-card:nth-child(n) {
    height: 300px;
  }

  .site-footer {
    padding: 70px 20px 32px;
  }
}









/* =========================================================
   PORTFOLIO PAGE
========================================================= */

.portfolio-page-hero {
  min-height: 72vh;
  padding: 150px 60px 100px;
  background:
    radial-gradient(circle at 15% 20%, rgba(165, 118, 34, 0.18), transparent 28%),
    radial-gradient(circle at 85% 5%, rgba(213, 199, 169, 0.12), transparent 30%),
    linear-gradient(135deg, var(--dark-navy), #061b42);
  color: var(--ivory);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.portfolio-page-hero::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -200px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(165, 118, 34, 0.22);
}

.portfolio-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.portfolio-page-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 86px);
  font-weight: 300;
  line-height: 0.98;
  color: var(--ivory);
  margin-bottom: 30px;
}

.portfolio-page-title em {
  color: var(--gold-light);
  font-style: italic;
}

.portfolio-page-desc {
  max-width: 650px;
  color: var(--champagne);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
}

.portfolio-intro-section {
  padding: 110px 60px 80px;
  background: var(--ivory);
}

.portfolio-intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 70px;
  align-items: start;
}

.portfolio-intro-copy {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.85;
}

.portfolio-intro-copy p + p {
  margin-top: 20px;
}

.portfolio-page-section {
  padding: 40px 60px 120px;
  background: var(--ivory);
}

.portfolio-page-top {
  margin-bottom: 34px;
}

.portfolio-page-filters {
  margin-bottom: 0;
}

.portfolio-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.portfolio-work-card {
  background: var(--white);
  border: 1px solid rgba(165, 118, 34, 0.12);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.portfolio-work-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(165, 118, 34, 0.32);
}

.portfolio-work-card.hide {
  display: none;
}

.work-visual {
  height: 300px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.work-visual-blue {
  background:
    radial-gradient(circle at 70% 20%, rgba(165, 118, 34, 0.22), transparent 26%),
    linear-gradient(135deg, var(--deep-blue), var(--dark-navy));
}

.work-visual-navy {
  background:
    radial-gradient(circle at 30% 30%, rgba(213, 199, 169, 0.15), transparent 30%),
    linear-gradient(135deg, #061b42, var(--dark-navy));
}

.work-visual-cream {
  background:
    radial-gradient(circle at center, rgba(165, 118, 34, 0.14), transparent 32%),
    var(--gold-pale);
}

.work-visual-gold {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.22), transparent 32%),
    linear-gradient(135deg, var(--gold), var(--gold-light));
}

.work-visual-paper {
  background:
    linear-gradient(135deg, var(--ivory), var(--champagne));
}

.work-visual-champagne {
  background:
    radial-gradient(circle at 70% 10%, rgba(8, 66, 135, 0.15), transparent 28%),
    var(--champagne);
}

.work-content {
  padding: 28px;
}

.work-category {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.work-content h3 {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark-navy);
  margin-bottom: 12px;
}

.work-content p {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.75;
}

/* Portfolio mock visuals */

.mock-banner,
.mock-shirt,
.mock-gift-box,
.mock-publication,
.mock-rollup,
.mock-office-wall,
.mock-directional,
.mock-cap,
.mock-mug,
.mock-brochure,
.mock-door-brand {
  position: relative;
  transition: transform 0.4s ease;
}

.portfolio-work-card:hover .mock-banner,
.portfolio-work-card:hover .mock-shirt,
.portfolio-work-card:hover .mock-gift-box,
.portfolio-work-card:hover .mock-publication,
.portfolio-work-card:hover .mock-rollup,
.portfolio-work-card:hover .mock-office-wall,
.portfolio-work-card:hover .mock-directional,
.portfolio-work-card:hover .mock-cap,
.portfolio-work-card:hover .mock-mug,
.portfolio-work-card:hover .mock-brochure,
.portfolio-work-card:hover .mock-door-brand {
  transform: scale(1.05);
}

.mock-banner {
  width: 72%;
  height: 68%;
  border: 1px solid rgba(213, 199, 169, 0.35);
  background: rgba(248, 246, 238, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--ivory);
}

.mock-banner span {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--gold-light);
}

.mock-banner small {
  color: var(--champagne);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 9px;
}

.mock-shirt {
  width: 150px;
  height: 170px;
  background: var(--deep-blue);
  clip-path: polygon(25% 0, 38% 10%, 50% 16%, 62% 10%, 75% 0, 100% 25%, 82% 38%, 82% 100%, 18% 100%, 18% 38%, 0 25%);
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
}

.mock-gift-box {
  width: 170px;
  height: 135px;
  background: var(--dark-navy);
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 28px;
}

.mock-gift-box::before,
.mock-gift-box::after {
  content: "";
  position: absolute;
  background: var(--gold-light);
}

.mock-gift-box::before {
  width: 18px;
  height: 100%;
}

.mock-gift-box::after {
  height: 18px;
  width: 100%;
}

.mock-publication,
.mock-brochure {
  width: 160px;
  height: 210px;
  background: var(--ivory);
  border: 1px solid rgba(165, 118, 34, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--dark-navy);
  text-align: center;
  box-shadow: 18px 18px 0 rgba(8, 66, 135, 0.12);
}

.mock-publication span,
.mock-brochure span {
  font-family: var(--font-display);
  font-size: 26px;
}

.mock-publication small,
.mock-brochure small {
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 9px;
  margin-top: 8px;
}

.mock-rollup {
  width: 92px;
  height: 220px;
  background: linear-gradient(180deg, var(--deep-blue), var(--dark-navy));
  border: 4px solid rgba(213, 199, 169, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--ivory);
}

.mock-rollup::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: -22px;
  right: -22px;
  height: 8px;
  background: var(--gold);
}

.mock-rollup span {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 24px;
}

.mock-rollup small {
  margin-top: 8px;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mock-merch-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mock-merch-row div {
  width: 72px;
  height: 72px;
  background: var(--deep-blue);
  border-radius: 50%;
  border: 8px solid rgba(165, 118, 34, 0.24);
}

.mock-merch-row div:nth-child(2) {
  width: 64px;
  height: 120px;
  border-radius: 8px;
  background: var(--gold);
}

.mock-merch-row div:nth-child(3) {
  border-radius: 4px;
  background: var(--dark-navy);
}

.mock-office-wall {
  width: 75%;
  height: 58%;
  border: 1px solid rgba(213, 199, 169, 0.28);
  background: rgba(248, 246, 238, 0.05);
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 0.08em;
}

.mock-directional {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mock-directional span {
  min-width: 180px;
  padding: 14px 24px;
  background: var(--deep-blue);
  color: var(--ivory);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mock-directional span:nth-child(2) {
  background: var(--gold);
}

.mock-cap {
  width: 170px;
  height: 86px;
  background: var(--dark-navy);
  border-radius: 90px 90px 20px 20px;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 30px;
}

.mock-cap::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: 0;
  width: 90px;
  height: 26px;
  background: var(--dark-navy);
  border-radius: 0 90px 20px 0;
}

.mock-mug {
  width: 140px;
  height: 120px;
  background: var(--deep-blue);
  border-radius: 0 0 28px 28px;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 30px;
}

.mock-mug::after {
  content: "";
  position: absolute;
  right: -38px;
  top: 32px;
  width: 52px;
  height: 52px;
  border: 10px solid var(--deep-blue);
  border-left: 0;
  border-radius: 0 50% 50% 0;
}

.mock-door-brand {
  width: 145px;
  height: 220px;
  border: 1px solid rgba(213, 199, 169, 0.28);
  background: rgba(248, 246, 238, 0.06);
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.mock-door-brand::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 110px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
}

/* Process */

.portfolio-process-section {
  padding: 120px 60px;
  background: var(--dark-navy);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.portfolio-process-section::before {
  content: "PROCESS";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 180px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
}

.portfolio-process-header {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-bottom: 60px;
}

.portfolio-process-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 56px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--ivory);
}

.portfolio-process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.process-card {
  padding: 38px 30px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.process-card span {
  display: block;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--gold-light);
}

.process-card h3 {
  font-family: var(--font-display);
  color: var(--ivory);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 10px;
}

.process-card p {
  color: var(--champagne);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
}

/* CTA */

.portfolio-cta-section {
  padding: 100px 60px;
  background: var(--ivory);
}

.portfolio-cta-box {
  padding: 60px;
  background:
    radial-gradient(circle at 90% 10%, rgba(165, 118, 34, 0.22), transparent 30%),
    linear-gradient(135deg, var(--deep-blue), var(--dark-navy));
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.portfolio-cta-label {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.portfolio-cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 50px);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 14px;
}

.portfolio-cta-box p {
  max-width: 620px;
  color: var(--champagne);
  font-size: 15px;
  font-weight: 300;
}

/* Portfolio page responsive */

@media (max-width: 1100px) {
  .portfolio-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 860px) {
  .portfolio-page-hero,
  .portfolio-intro-section,
  .portfolio-page-section,
  .portfolio-process-section,
  .portfolio-cta-section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .portfolio-intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .portfolio-page-grid {
    grid-template-columns: 1fr;
  }

  .work-visual {
    height: 260px;
  }
}

@media (max-width: 640px) {
  .portfolio-page-hero {
    min-height: 62vh;
    padding-top: 130px;
  }

  .portfolio-page-title {
    font-size: clamp(3.2rem, 14vw, 4.8rem);
  }

  .portfolio-process-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-cta-box {
    padding: 36px 28px;
  }

  .portfolio-page-filters .filter-btn {
    flex: 1 1 auto;
  }
}






/* =========================================================
   SERVICES PAGE
========================================================= */

.services-page-hero {
  min-height: 82vh;
  padding: 150px 60px 110px;
  background:
    radial-gradient(circle at 18% 20%, rgba(165, 118, 34, 0.18), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(213, 199, 169, 0.12), transparent 32%),
    linear-gradient(135deg, var(--dark-navy), #061b42);
  color: var(--ivory);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.services-page-hero::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -220px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(165, 118, 34, 0.22);
}

.services-hero-content {
  max-width: 1040px;
  position: relative;
  z-index: 2;
}

.services-page-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 86px);
  font-weight: 300;
  line-height: 0.98;
  color: var(--ivory);
  max-width: 1000px;
  margin-bottom: 30px;
}

.services-page-title em {
  color: var(--gold-light);
  font-style: italic;
}

.services-page-desc {
  max-width: 680px;
  color: var(--champagne);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
}

.services-hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 42px;
}

/* Intro */

.services-intro-section {
  padding: 110px 60px 80px;
  background: var(--ivory);
}

.services-intro-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 70px;
  align-items: start;
}

.services-intro-copy {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.85;
}

.services-intro-copy p + p {
  margin-top: 20px;
}

/* Main service details */

.services-list-section {
  padding: 40px 60px 120px;
  background: var(--ivory);
}

.service-detail-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  min-height: 560px;
  background: var(--white);
  border: 1px solid rgba(165, 118, 34, 0.12);
  margin-bottom: 34px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(8, 14, 30, 0.05);
}

.service-detail-card-reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.service-detail-card-reverse .service-detail-visual {
  order: 2;
}

.service-detail-card-reverse .service-detail-content {
  order: 1;
}

.service-detail-visual {
  min-height: 520px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.service-detail-visual::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
}

.service-visual-blue {
  background:
    radial-gradient(circle at 72% 22%, rgba(165, 118, 34, 0.22), transparent 28%),
    linear-gradient(135deg, var(--deep-blue), var(--dark-navy));
}

.service-visual-navy {
  background:
    radial-gradient(circle at 30% 30%, rgba(213, 199, 169, 0.13), transparent 30%),
    linear-gradient(135deg, #061b42, var(--dark-navy));
}

.service-visual-cream {
  background:
    radial-gradient(circle at center, rgba(165, 118, 34, 0.15), transparent 34%),
    var(--gold-pale);
}

.service-visual-gold {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(135deg, var(--gold), var(--gold-light));
}

.service-visual-paper {
  background:
    linear-gradient(135deg, var(--ivory), var(--champagne));
}

.service-detail-content {
  padding: 70px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-detail-number {
  font-family: var(--font-display);
  font-size: 68px;
  font-weight: 700;
  color: rgba(165, 118, 34, 0.16);
  line-height: 1;
  margin-bottom: 12px;
}

.service-detail-label {
  color: var(--gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.service-detail-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 46px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--dark-navy);
  margin-bottom: 22px;
}

.service-detail-content p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.82;
  margin-bottom: 28px;
}

.service-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  margin-bottom: 34px;
}

.service-bullets li {
  position: relative;
  padding-left: 20px;
  color: var(--text-mid);
  font-size: 14px;
}

.service-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.service-detail-link {
  width: fit-content;
  color: var(--deep-blue);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s ease, transform 0.2s ease;
}

.service-detail-link:hover {
  color: var(--gold);
  transform: translateX(4px);
}

/* Service mockups */

.service-mockup {
  position: relative;
  z-index: 2;
  transition: transform 0.45s ease;
}

.service-detail-card:hover .service-mockup {
  transform: scale(1.05);
}

.service-mockup-banner {
  width: 70%;
  height: 58%;
  border: 1px solid rgba(213, 199, 169, 0.35);
  background: rgba(248, 246, 238, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--ivory);
  text-align: center;
}

.service-mockup-banner span {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--gold-light);
}

.service-mockup-banner small {
  color: var(--champagne);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 9px;
  margin-top: 8px;
}

.service-mockup-shirt {
  width: 170px;
  height: 190px;
  background: var(--deep-blue);
  clip-path: polygon(25% 0, 38% 10%, 50% 16%, 62% 10%, 75% 0, 100% 25%, 82% 38%, 82% 100%, 18% 100%, 18% 38%, 0 25%);
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
}

.service-mockup-gift {
  width: 190px;
  height: 150px;
  background: var(--dark-navy);
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 32px;
}

.service-mockup-gift::before,
.service-mockup-gift::after {
  content: "";
  position: absolute;
  background: var(--gold-light);
}

.service-mockup-gift::before {
  width: 20px;
  height: 100%;
}

.service-mockup-gift::after {
  width: 100%;
  height: 20px;
}

.service-mockup-publication {
  width: 190px;
  height: 250px;
  background: var(--ivory);
  border: 1px solid rgba(165, 118, 34, 0.35);
  box-shadow: 22px 22px 0 rgba(8, 66, 135, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--dark-navy);
  text-align: center;
  padding: 24px;
}

.service-mockup-publication span {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
}

.service-mockup-publication small {
  margin-top: 12px;
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-mockup-camera {
  width: 190px;
  height: 130px;
  background: var(--deep-blue);
  border: 10px solid rgba(213, 199, 169, 0.12);
  display: grid;
  place-items: center;
}

.service-mockup-camera::before {
  content: "";
  width: 66px;
  height: 66px;
  border: 10px solid var(--gold-light);
  border-radius: 50%;
}

.service-mockup-camera::after {
  content: "";
  position: absolute;
  top: -28px;
  left: 32px;
  width: 70px;
  height: 28px;
  background: var(--gold);
}

.service-mockup-strategy {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(213, 199, 169, 0.34);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  outline: 1px solid rgba(165, 118, 34, 0.28);
  outline-offset: 22px;
}

.service-mockup-strategy span {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--gold-light);
}

.service-mockup-strategy small {
  margin-top: 10px;
  color: var(--champagne);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 9px;
}

/* Process */

.services-process-section {
  padding: 120px 60px;
  background: var(--dark-navy);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.services-process-section::before {
  content: "QUALITY";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 180px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
}

.services-process-header {
  max-width: 780px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.services-process-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 56px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--ivory);
}

.services-process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.services-process-card {
  padding: 38px 30px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.services-process-card span {
  display: block;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--gold-light);
}

.services-process-card h3 {
  font-family: var(--font-display);
  color: var(--ivory);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 10px;
}

.services-process-card p {
  color: var(--champagne);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
}

/* Why choose */

.services-why-section {
  padding: 120px 60px;
  background: var(--ivory);
}

.services-why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.services-why-list {
  display: grid;
  gap: 2px;
}

.why-item {
  padding: 34px;
  background: var(--white);
  border: 1px solid rgba(165, 118, 34, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.why-item span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--dark-navy);
}

.why-item p {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.75;
}

/* CTA */

.services-cta-section {
  padding: 100px 60px;
  background: var(--ivory);
}

.services-cta-box {
  padding: 70px 60px;
  background:
    radial-gradient(circle at 90% 10%, rgba(165, 118, 34, 0.22), transparent 30%),
    linear-gradient(135deg, var(--deep-blue), var(--dark-navy));
  color: var(--ivory);
}

.services-cta-label {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.services-cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 58px);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 16px;
}

.services-cta-box p {
  max-width: 720px;
  color: var(--champagne);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
}

.services-cta-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

/* Services page responsive */

@media (max-width: 1100px) {
  .service-detail-card,
  .service-detail-card-reverse {
    grid-template-columns: 1fr;
  }

  .service-detail-card-reverse .service-detail-visual,
  .service-detail-card-reverse .service-detail-content {
    order: unset;
  }

  .service-detail-visual {
    min-height: 420px;
  }

  .services-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .services-page-hero,
  .services-intro-section,
  .services-list-section,
  .services-process-section,
  .services-why-section,
  .services-cta-section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .services-intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-detail-content {
    padding: 50px 34px;
  }

  .service-bullets {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .services-page-hero {
    min-height: 70vh;
    padding-top: 130px;
  }

  .services-page-title {
    font-size: clamp(3.1rem, 14vw, 4.8rem);
  }

  .services-hero-actions,
  .services-cta-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .services-process-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-visual {
    min-height: 320px;
  }

  .service-mockup-banner {
    width: 82%;
  }

  .service-mockup-banner span {
    font-size: 30px;
  }

  .services-cta-box {
    padding: 42px 28px;
  }
}







/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page-hero {
  min-height: 74vh;
  padding: 150px 60px 110px;
  background:
    radial-gradient(circle at 18% 20%, rgba(165, 118, 34, 0.18), transparent 28%),
    radial-gradient(circle at 85% 8%, rgba(213, 199, 169, 0.12), transparent 32%),
    linear-gradient(135deg, var(--dark-navy), #061b42);
  color: var(--ivory);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.contact-page-hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(165, 118, 34, 0.22);
}

.contact-hero-content {
  max-width: 980px;
  position: relative;
  z-index: 2;
}

.contact-page-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 88px);
  font-weight: 300;
  line-height: 0.98;
  color: var(--ivory);
  max-width: 960px;
  margin-bottom: 30px;
}

.contact-page-title em {
  color: var(--gold-light);
  font-style: italic;
}

.contact-page-desc {
  max-width: 680px;
  color: var(--champagne);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
}

/* Main contact layout */

.contact-main-section {
  padding: 120px 60px;
  background: var(--ivory);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  gap: 34px;
  align-items: start;
}

.contact-form-panel {
  background: var(--white);
  border: 1px solid rgba(165, 118, 34, 0.12);
  padding: 54px;
  box-shadow: 0 18px 60px rgba(8, 14, 30, 0.05);
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 46px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--dark-navy);
  max-width: 680px;
  margin-bottom: 34px;
}

.contact-form {
  display: grid;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-group label {
  color: var(--dark-navy);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(165, 118, 34, 0.18);
  background: var(--ivory);
  color: var(--text-dark);
  padding: 15px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  border-radius: 2px;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.form-group textarea {
  resize: vertical;
  min-height: 170px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(58, 74, 96, 0.55);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(165, 118, 34, 0.08);
}

.contact-submit-btn {
  width: fit-content;
  margin-top: 6px;
  padding: 15px 38px;
  background: var(--deep-blue);
  color: var(--ivory);
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.contact-submit-btn:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.contact-submit-btn span {
  transition: transform 0.2s ease;
}

.contact-submit-btn:hover span {
  transform: translateX(4px);
}

.contact-form-note {
  max-width: 620px;
  color: var(--text-light);
  font-size: 12px;
  line-height: 1.7;
}

/* Contact info panel */

.contact-info-panel {
  display: grid;
  gap: 24px;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid rgba(165, 118, 34, 0.12);
  padding: 34px;
  box-shadow: 0 18px 60px rgba(8, 14, 30, 0.05);
}

.contact-info-card-dark {
  background:
    radial-gradient(circle at 90% 8%, rgba(165, 118, 34, 0.22), transparent 32%),
    linear-gradient(135deg, var(--deep-blue), var(--dark-navy));
  color: var(--ivory);
}

.contact-info-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 300;
  line-height: 1.08;
  color: var(--dark-navy);
  margin-bottom: 26px;
}

.contact-info-card-dark h3 {
  color: var(--ivory);
}

.contact-info-list {
  display: grid;
  gap: 22px;
}

.contact-info-item {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(165, 118, 34, 0.14);
}

.contact-info-card-dark .contact-info-item {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.contact-info-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.contact-info-item span {
  display: block;
  margin-bottom: 4px;
  color: var(--silver-blue);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-info-item a,
.contact-info-item p {
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
}

.contact-info-card-dark .contact-info-item a,
.contact-info-card-dark .contact-info-item p {
  color: var(--champagne);
}

.contact-info-item a:hover {
  color: var(--gold-light);
}

.quote-checklist {
  list-style: none;
  display: grid;
  gap: 13px;
}

.quote-checklist li {
  position: relative;
  padding-left: 20px;
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.6;
}

.quote-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

/* Popular services */

.contact-services-section {
  padding: 110px 60px;
  background: var(--white);
}

.contact-services-header {
  max-width: 760px;
  margin-bottom: 52px;
}

.contact-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.contact-service-card {
  padding: 38px 30px;
  background: var(--ivory);
  border: 1px solid rgba(165, 118, 34, 0.08);
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-service-card:hover {
  background: var(--dark-navy);
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.contact-service-card span {
  display: block;
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-size: 42px;
  color: rgba(165, 118, 34, 0.42);
  transition: color 0.3s ease;
}

.contact-service-card h3 {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark-navy);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.contact-service-card p {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.75;
  transition: color 0.3s ease;
}

.contact-service-card:hover span {
  color: var(--gold-light);
}

.contact-service-card:hover h3 {
  color: var(--ivory);
}

.contact-service-card:hover p {
  color: var(--champagne);
}

/* Location section */

.contact-location-section {
  padding: 120px 60px;
  background: var(--ivory);
}

.contact-location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.contact-location-copy p {
  max-width: 540px;
  margin: 24px 0 34px;
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.85;
}

.contact-map-placeholder {
  min-height: 430px;
  background:
    linear-gradient(90deg, rgba(165, 118, 34, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(165, 118, 34, 0.06) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(165, 118, 34, 0.14), transparent 28%),
    linear-gradient(135deg, var(--deep-blue), var(--dark-navy));
  background-size:
    44px 44px,
    44px 44px,
    auto,
    auto;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.contact-map-placeholder p {
  position: absolute;
  bottom: 34px;
  left: 34px;
  color: var(--champagne);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.map-rings {
  position: absolute;
  width: 280px;
  height: 280px;
}

.map-rings span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(213, 199, 169, 0.18);
  border-radius: 50%;
}

.map-rings span:nth-child(2) {
  inset: 48px;
}

.map-rings span:nth-child(3) {
  inset: 96px;
}

.map-pin {
  width: 74px;
  height: 74px;
  background: var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: grid;
  place-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.map-pin span {
  width: 26px;
  height: 26px;
  background: var(--ivory);
  border-radius: 50%;
}

/* Final CTA */

.contact-final-cta {
  padding: 100px 60px;
  background: var(--ivory);
}

.contact-final-box {
  padding: 70px 60px;
  background:
    radial-gradient(circle at 90% 10%, rgba(165, 118, 34, 0.22), transparent 30%),
    linear-gradient(135deg, var(--deep-blue), var(--dark-navy));
  color: var(--ivory);
}

.contact-final-label {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.contact-final-box h2 {
  max-width: 820px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 58px);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 16px;
}

.contact-final-box p {
  max-width: 720px;
  color: var(--champagne);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
}

.contact-final-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

/* Contact responsive */

@media (max-width: 1100px) {
  .contact-main-grid,
  .contact-location-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .contact-page-hero,
  .contact-main-section,
  .contact-services-section,
  .contact-location-section,
  .contact-final-cta {
    padding-left: 28px;
    padding-right: 28px;
  }

  .contact-form-panel {
    padding: 38px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info-panel {
    grid-template-columns: 1fr;
  }

  .contact-map-placeholder {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .contact-page-hero {
    min-height: 68vh;
    padding-top: 130px;
  }

  .contact-page-title {
    font-size: clamp(3.2rem, 14vw, 4.8rem);
  }

  .contact-form-panel {
    padding: 30px 24px;
  }

  .contact-service-grid {
    grid-template-columns: 1fr;
  }

  .contact-final-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .contact-final-box {
    padding: 42px 28px;
  }

  .contact-submit-btn {
    width: 100%;
    justify-content: center;
  }
}


.client-logo img {
  max-width: 120px;
  max-height: 44px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.78;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.04);
}


.about-img {
  width: 100%;
  display: block;
  object-fit: cover;
}


.hero-portfolio-grid {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 4px;
}

.hero-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* IMPORTANT: remove the old rule that made the first item span 2 rows */
.hero-item:first-child {
  grid-row: auto;
}

.hero-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-item:hover .hero-img {
  transform: scale(1.04);
}





@media (max-width: 720px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-right {
    display: none;
  }

  .hero-left {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
  }
}



@media (max-width: 980px) {
  .portfolio-masonry {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 64px;
  }

  .p-card,
  .p-card:nth-child(8n + 1),
  .p-card:nth-child(8n + 2),
  .p-card:nth-child(8n + 3),
  .p-card:nth-child(8n + 4),
  .p-card:nth-child(8n + 5),
  .p-card:nth-child(8n + 6),
  .p-card:nth-child(8n + 7),
  .p-card:nth-child(8n + 8) {
    grid-column: span 3;
    grid-row: span 5;
    min-height: 300px;
  }

  .p-card:nth-child(6n + 1),
  .p-card:nth-child(6n + 4) {
    grid-column: span 6;
    grid-row: span 6;
  }
}

@media (max-width: 640px) {
  .portfolio-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
  }

  .p-card,
  .p-card:nth-child(8n + 1),
  .p-card:nth-child(8n + 2),
  .p-card:nth-child(8n + 3),
  .p-card:nth-child(8n + 4),
  .p-card:nth-child(8n + 5),
  .p-card:nth-child(8n + 6),
  .p-card:nth-child(8n + 7),
  .p-card:nth-child(8n + 8),
  .p-card:nth-child(6n + 1),
  .p-card:nth-child(6n + 4) {
    grid-column: auto;
    grid-row: auto;
    height: 320px;
    min-height: 320px;
  }
}






/* =========================================================
   IMAGE LIGHTBOX / GALLERY POPUP
========================================================= */

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 40px;

  background: rgba(7, 24, 47, 0.92);
  backdrop-filter: blur(14px);
}

.image-lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  width: min(100%, 1100px);
  max-height: 88vh;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  animation: lightboxZoom 0.28s ease forwards;
}

@keyframes lightboxZoom {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(12px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.lightbox-content img {
  max-width: 100%;
  max-height: 78vh;

  object-fit: contain;

  background: var(--dark-navy);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.lightbox-caption {
  margin-top: 18px;

  color: var(--champagne);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 30px;
  z-index: 10001;

  width: 46px;
  height: 46px;

  border: 1px solid rgba(213, 199, 169, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ivory);

  font-size: 34px;
  line-height: 1;
  cursor: pointer;

  display: grid;
  place-items: center;

  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover {
  background: var(--gold);
  color: white;
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 10001;

  width: 54px;
  height: 54px;

  transform: translateY(-50%);

  border: 1px solid rgba(213, 199, 169, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ivory);

  font-size: 46px;
  line-height: 1;
  cursor: pointer;

  display: grid;
  place-items: center;

  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lightbox-nav:hover {
  background: var(--gold);
  color: white;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

body.lightbox-open {
  overflow: hidden;
}

/* Make portfolio images clearly clickable */
.p-card-img {
  cursor: zoom-in;
}

@media (max-width: 720px) {
  .image-lightbox {
    padding: 24px;
  }

  .lightbox-content img {
    max-height: 72vh;
  }

  .lightbox-close {
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 24px;
    width: 46px;
    height: 46px;
    font-size: 38px;
    transform: none;
  }

  .lightbox-prev {
    left: 24px;
  }

  .lightbox-next {
    right: 24px;
  }

  .lightbox-caption {
    padding-inline: 54px;
    font-size: 11px;
  }
}







.blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--dark-navy);
}

.blog-card:first-child .blog-card-img {
  aspect-ratio: 16 / 10;
}

.blog-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.03);
}







/* =========================================================
   ABOUT PAGE
========================================================= */

.about-page-hero {
  min-height: 82vh;
  padding: 150px 60px 110px;
  background:
    radial-gradient(circle at 18% 18%, rgba(165, 118, 34, 0.2), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(213, 199, 169, 0.12), transparent 32%),
    linear-gradient(135deg, var(--dark-navy), #061b42);
  color: var(--ivory);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.about-page-hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  border: 1px solid rgba(165, 118, 34, 0.22);
}

.about-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1080px;
}

.about-page-title {
  max-width: 1050px;
  margin-bottom: 30px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 86px);
  font-weight: 300;
  line-height: 0.98;
}

.about-page-title em {
  color: var(--gold-light);
  font-style: italic;
}

.about-page-desc {
  max-width: 720px;
  color: var(--champagne);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
}

/* Story */

.about-story-section {
  padding: 120px 60px;
  background: var(--ivory);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about-story-image {
  position: relative;
}

.about-page-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  box-shadow: var(--shadow-medium);
}


.about-floating-card {
  position: absolute;
  right: -28px;
  bottom: 42px;
  padding: 28px 30px;
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-medium);
}

.about-floating-card span {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
}

.about-floating-card strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-story-content p {
  margin-top: 22px;
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.85;
}

/* Purpose */

.about-purpose-section {
  padding: 0 60px 120px;
  background: var(--ivory);
}

.about-purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.purpose-card {
  padding: 46px 38px;
  background: var(--white);
  border: 1px solid rgba(165, 118, 34, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.purpose-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.purpose-num {
  display: block;
  margin-bottom: 30px;
  color: rgba(165, 118, 34, 0.28);
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
}

.purpose-card h3 {
  margin-bottom: 14px;
  color: var(--dark-navy);
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.1;
}

.purpose-card p {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.75;
}

/* Difference */

.about-difference-section {
  padding: 120px 60px;
  background: var(--dark-navy);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.about-difference-section::before {
  content: "BRAND";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 210px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.025);
  pointer-events: none;
}

.about-difference-header {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 60px;
}

.about-difference-header h2 {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 58px);
  font-weight: 300;
  line-height: 1.08;
}

.about-difference-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.difference-item {
  padding: 38px 30px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.difference-item span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.12;
}

.difference-item p {
  color: var(--champagne);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
}

/* Range */

.about-range-section {
  padding: 120px 60px;
  background: var(--ivory);
}

.about-range-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.about-range-content p {
  max-width: 560px;
  margin: 24px 0 34px;
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.85;
}

.about-range-list {
  display: grid;
  gap: 2px;
}

.range-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 24px;
  padding: 28px 34px;
  background: var(--white);
  border: 1px solid rgba(165, 118, 34, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.range-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-soft);
}

.range-item span {
  color: rgba(165, 118, 34, 0.42);
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.range-item p {
  color: var(--dark-navy);
  font-size: 15px;
  line-height: 1.65;
}

/* Stats */

.about-stats-section {
  padding: 80px 60px;
  background: var(--champagne);
}

.about-stats-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.about-stat-box {
  padding: 42px 30px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(165, 118, 34, 0.16);
  text-align: center;
}

.about-stat-box strong {
  display: block;
  margin-bottom: 10px;
  color: var(--dark-navy);
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 62px);
  font-weight: 600;
  line-height: 1;
}

.about-stat-box span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* Process */

.about-process-section {
  padding: 120px 60px;
  background: var(--ivory);
}

.about-process-header {
  max-width: 760px;
  margin-bottom: 60px;
}

.about-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.about-process-card {
  padding: 40px 30px;
  background: var(--white);
  border: 1px solid rgba(165, 118, 34, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.about-process-card span {
  display: block;
  margin-bottom: 26px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
}

.about-process-card h3 {
  margin-bottom: 10px;
  color: var(--dark-navy);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
}

.about-process-card p {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.75;
}

/* Image Strip */

.about-image-strip {
  padding: 0 60px 120px;
  background: var(--ivory);
}

.about-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.about-strip-img {
  height: 320px;
  overflow: hidden;
  background: var(--dark-navy);
}

.about-strip-img:nth-child(even) {
  transform: translateY(34px);
}

.about-strip-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-strip-img:hover img {
  transform: scale(1.06);
}

/* CTA */

.about-cta-section {
  padding: 100px 60px;
  background: var(--ivory);
}

.about-cta-box {
  padding: 70px 60px;
  background:
    radial-gradient(circle at 90% 10%, rgba(165, 118, 34, 0.22), transparent 30%),
    linear-gradient(135deg, var(--deep-blue), var(--dark-navy));
  color: var(--ivory);
}

.about-cta-label {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.about-cta-box h2 {
  max-width: 900px;
  margin-bottom: 16px;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 58px);
  font-weight: 300;
  line-height: 1.08;
}

.about-cta-box p {
  max-width: 720px;
  color: var(--champagne);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
}

.about-cta-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

/* Responsive */

@media (max-width: 1100px) {
  .about-story-grid,
  .about-range-grid {
    grid-template-columns: 1fr;
  }

  .about-purpose-grid,
  .about-difference-grid,
  .about-process-grid,
  .about-stats-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-page-img {
    height: 520px;
  }
}

@media (max-width: 860px) {
  .about-page-hero,
  .about-story-section,
  .about-purpose-section,
  .about-difference-section,
  .about-range-section,
  .about-stats-section,
  .about-process-section,
  .about-image-strip,
  .about-cta-section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .about-floating-card {
    right: 20px;
    bottom: 20px;
  }

  .about-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-strip-img:nth-child(even) {
    transform: none;
  }
}

@media (max-width: 640px) {
  .about-page-hero {
    min-height: 70vh;
    padding-top: 130px;
  }

  .about-page-title {
    font-size: clamp(3.1rem, 14vw, 4.8rem);
  }

  .about-purpose-grid,
  .about-difference-grid,
  .about-process-grid,
  .about-stats-page-grid,
  .about-strip-grid {
    grid-template-columns: 1fr;
  }

  .about-page-img {
    height: 420px;
  }

  .about-floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: -40px;
    margin-left: 24px;
    width: fit-content;
  }

  .range-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-cta-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .about-cta-box {
    padding: 42px 28px;
  }
}