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

:root {
  --blue: #1b75bb;
  --blue-dark: #155a91;
  --blue-light: #5a9fd4;
  --text: #2d2d2d;
  --text-light: #666;
  --white: #ffffff;
}

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
}

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

/* ── TOP BAR ── */
.top-bar {
  background: #1b75bb;
  color: rgba(255,255,255,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px 20px;
  font-size: 12px;
  gap: 24px;
}

.top-bar a {
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.top-bar a:hover { color: var(--white); }

/* ── HEADER ── */
.header-modern {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 70px;
  background: var(--white);
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-modern img {
  height: 42px;
  width: auto;
  display: block;
}

.nav-modern ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
}

.nav-modern a {
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  transition: color 0.2s;
  display: block;
}

.nav-modern a:hover,
.nav-modern a.active { color: var(--blue); }

.nav-modern .dropdown { position: relative; }

.nav-modern .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  border: 1px solid #e8e8e8;
  min-width: 200px;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.nav-modern .dropdown-menu a {
  display: block;
  color: var(--text);
  font-size: 13px;
  padding: 10px 20px;
  border-bottom: 1px solid #f5f5f5;
}

.nav-modern .dropdown-menu a:hover {
  background: #f7f9fc;
  color: var(--blue);
}

.nav-modern .dropdown:hover .dropdown-menu { display: block; }

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--blue-dark) !important;
  color: var(--white) !important;
}

/* ── HERO ── */
.hero-modern {
  position: relative;
  height: 620px;
  overflow: hidden;
}

.hero-modern-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-modern-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.25) 55%, transparent 100%);
  display: flex;
  align-items: center;
}

.hero-modern-content {
  padding: 0 72px;
  max-width: 580px;
}

.hero-modern-content h1 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.cta-modern {
  display: inline-flex;
  align-items: center;
  background: var(--blue);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  transition: background 0.2s, transform 0.15s;
}

.cta-modern:hover {
  background: var(--blue-dark);
  transform: translateX(3px);
}

/* ── TRUST STRIP ── */
.trust-strip {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 28px 3%;
  background: #f7f9fc;
  border-bottom: 1px solid #e8e8e8;
  flex-wrap: nowrap;
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-light);
  white-space: nowrap;
}

.trust-item strong {
  font-size: 18px;
  font-weight: 600;
  color: var(--blue);
  font-family: 'Playfair Display', serif;
  margin-right: 3px;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: #dde4ed;
  flex-shrink: 0;
}

/* ── SERVICES STRIP ── */
.services-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #e8e8e8;
  border-top: none;
}

.service-item {
  padding: 36px 3%;
  text-align: center;
}

.service-item h3 {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-dark);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  text-transform: uppercase;
  text-align: center;
}

.service-item p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-light);
  text-align: center;
}

/* ── PAGE WRAPPER (gallery/about/contact inner pages) ── */
.page-wrapper {
  display: grid;
  grid-template-columns: 1fr 220px;
  min-height: calc(100vh - 110px);
}

/* ── SIDEBAR ── */
.sidebar {
  padding: 24px 18px;
  border-left: 1px solid #e8e8e8;
}

.sidebar-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.sidebar-thumbs img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

.sidebar-links { list-style: none; }
.sidebar-links li { padding: 5px 0; }

.sidebar-links a {
  color: var(--blue);
  font-size: 13px;
  font-weight: 400;
  transition: color 0.2s;
}

.sidebar-links a:hover { color: var(--blue-dark); }

/* ── GHOST HEADING ── */
.ghost-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 700;
  color: rgba(74, 123, 181, 0.08);
  letter-spacing: -0.02em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  padding: 24px 0 0 36px;
}

/* ── PROJECT / GALLERY ── */
.project-content { padding: 0 36px 40px; }

.project-img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  display: block;
}

.project-notes {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
}

/* ── GALLERY GRID ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 0 36px 40px;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-tile img,
.gallery-tile .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.gallery-tile:hover img,
.gallery-tile:hover .img-placeholder { transform: scale(1.04); }

.gallery-tile-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  color: white;
  font-size: 13px;
  letter-spacing: 0.08em;
}

/* ── ABOUT ── */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 0 36px 40px;
  align-items: start;
}

.about-content img { width: 100%; object-fit: cover; }

.about-text p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--text);
}

.about-text p:first-child::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 3em;
  float: left;
  line-height: 0.75;
  margin-right: 6px;
  color: var(--blue);
}

/* ── CONTACT ── */
.contact-content {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 40px;
  padding: 0 36px 40px;
  align-items: start;
}

.contact-photo img { width: 220px; object-fit: cover; }
.contact-details { padding-top: 10px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 20px; height: 20px; fill: white; }
.contact-item span { font-size: 15px; font-weight: 400; color: var(--text); }

.contact-form { background: var(--blue-light); padding: 24px; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 14px;
  border: none;
  background: rgba(255,255,255,0.85);
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: var(--text);
  outline: none;
}

.contact-form textarea { height: 140px; resize: none; }

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #999; }

.send-btn {
  display: block;
  margin-left: auto;
  background: var(--blue-dark);
  color: white;
  border: none;
  padding: 12px 36px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s;
}

.send-btn:hover { background: #1a3a5c; }

/* ── FOOTER ── */
footer {
  background: #1b75bb;
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 20px;
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* ── PLACEHOLDER ── */
.img-placeholder {
  background: #d0dce8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8aaac4;
  font-size: 12px;
  letter-spacing: 0.1em;
}

/* ── MOBILE ── */
@media (max-width: 900px) {
  .services-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .top-bar { padding: 7px 20px; justify-content: center; gap: 16px; }
  .header-modern { padding: 0 20px; }
  .logo-modern img { height: 34px; }
  .nav-modern a { padding: 8px 10px; font-size: 13px; }
  .nav-cta { display: none !important; }
  .hero-modern { height: 420px; }
  .hero-modern-content { padding: 0 32px; }
  .hero-modern-content h1 { font-size: clamp(24px, 6vw, 36px); }
  .trust-strip { flex-wrap: wrap; gap: 14px; padding: 16px 20px; }
  .trust-divider { display: none; }
  .services-strip { grid-template-columns: 1fr; }
  .page-wrapper { grid-template-columns: 1fr; }
  .sidebar { border-left: none; border-top: 1px solid #e8e8e8; padding: 16px; }
  .sidebar-thumbs { display: none; }
  .sidebar-links { display: flex; flex-wrap: wrap; gap: 8px; }
  .sidebar-links li { padding: 0; }
  .sidebar-links a { background: #f0f5fb; padding: 6px 12px; display: block; }
  .about-content { grid-template-columns: 1fr; }
  .contact-content { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); padding: 0 16px 30px; }
  .ghost-heading { font-size: clamp(40px, 12vw, 80px); padding: 16px 0 0 16px; }
  .project-content { padding: 0 16px 30px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .nav-modern a { font-size: 11px; padding: 8px 6px; }
  .hero-modern { height: 320px; }
}

/* ── CONTACT HERO ── */
.contact-hero {
  position: relative;
  min-height: calc(100vh - 98px);
  overflow: hidden;
  display: flex;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.65) 100%);
  padding: 72px;
  gap: 64px;
  min-height: calc(100vh - 98px);
}

.contact-hero-left h1 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.contact-hero-left p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 380px;
}

.contact-details-inline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  transition: color 0.2s;
}

.contact-detail-item:hover { color: var(--white); }

.contact-detail-icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── CONTACT FORM PANEL ── */
.contact-form-panel {
  background: var(--white);
  padding: 44px 40px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}

.contact-form-panel h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #e0e6ed;
  background: #fafcfe;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #aab4be; }

.form-group select { color: #aab4be; cursor: pointer; }
.form-group select:valid { color: var(--text); }

.form-group textarea {
  height: 120px;
  resize: none;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--blue);
  color: white;
  border: none;
  padding: 14px 28px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}

.form-submit:hover { background: var(--blue-dark); }

/* ── CONTACT MOBILE ── */
@media (max-width: 900px) {
  .contact-hero-overlay {
    grid-template-columns: 1fr;
    padding: 48px 32px;
    gap: 40px;
  }
  .contact-hero-left p { max-width: 100%; }
}

@media (max-width: 480px) {
  .contact-hero-overlay { padding: 32px 20px; }
  .contact-form-panel { padding: 28px 20px; }
}

/* ── GALLERY INTRO ── */
.gallery-intro {
  text-align: center;
  padding: 52px 48px 36px;
  background: white;
}

.gallery-intro-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.gallery-intro-text {
  font-size: 15px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── MASONRY GRID ── */
.masonry-grid {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 3px;
  background: #f0f0f0;
}

.masonry-row {
  display: flex;
  gap: 3px;
  height: 420px;
}

.masonry-thirds {
  height: 320px;
}

.masonry-col {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.masonry-tile {
  position: relative;
  overflow: hidden;
  display: block;
  flex: 1;
}

.masonry-large {
  flex: 2;
}

.masonry-tile .img-placeholder {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

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

.masonry-tile:hover .img-placeholder,
.masonry-tile:hover img {
  transform: scale(1.04);
}

.masonry-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 20px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: white;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.masonry-tile:hover .masonry-label {
  opacity: 1;
}

/* ── MASONRY MOBILE ── */
@media (max-width: 768px) {
  .masonry-row { height: auto; flex-direction: column; }
  .masonry-large { flex: none; height: 280px; }
  .masonry-col { flex-direction: row; height: 180px; }
  .masonry-thirds { height: auto; flex-direction: column; }
  .masonry-thirds .masonry-tile { height: 220px; flex: none; }
  .masonry-label { opacity: 1; }
  .gallery-intro { padding: 32px 20px 24px; }
}

/* ── ABOUT PAGE ── */
.about-section-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 48px;
}

/* Meet Tom */
.about-meet {
  padding: 64px 3%;
  border-bottom: 1px solid #eee;
}

.about-meet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-profile-card {
  position: relative;
  overflow: hidden;
  height: 520px;
}

.about-profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-profile-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 28px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
}

.about-profile-name {
  color: white;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.about-profile-title {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-bio h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.about-bio p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* About company */
.about-company {
  padding: 64px 3%;
  background: #f7f9fc;
  border-bottom: 1px solid #eee;
}

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

.about-company-text p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* Why choose us */
.about-why {
  padding: 64px 3%;
  border-bottom: 1px solid #eee;
}

.about-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.about-why-item {
  text-align: center;
}

.about-why-icon {
  width: 60px;
  height: 60px;
  background: #edf3fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.about-why-item h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.about-why-item p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-light);
}

/* CTA Banner */
.about-cta-banner {
  background: var(--blue);
  padding: 64px 3%;
  text-align: center;
}

.about-cta-banner h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.about-cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  margin-bottom: 32px;
}

.about-cta-banner .cta-modern {
  background: white;
  color: var(--blue);
}

.about-cta-banner .cta-modern:hover {
  background: rgba(255,255,255,0.9);
  color: var(--blue-dark);
}

/* About mobile */
@media (max-width: 900px) {
  .about-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .about-meet,
  .about-company,
  .about-why,
  .about-cta-banner { padding: 40px 16px; }
  .about-meet-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-profile-card { height: 380px; }
  .about-company-grid { grid-template-columns: 1fr; gap: 0; }
  .about-why-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

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

/* ── PROJECT / SUB-GALLERY PAGES ── */
.project-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.project-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(0,0,0,0.65) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 72px;
}

.project-hero-breadcrumb {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}

.project-hero-breadcrumb a {
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.project-hero-breadcrumb a:hover { color: white; }

.project-hero-overlay h1 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: white;
  letter-spacing: -0.01em;
}

.project-body {
  padding: 56px 72px;
  border-bottom: 1px solid #eee;
}

.project-body-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
  align-items: start;
}

.project-notes-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.project-notes-modern p:last-child {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
}

.project-category-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-category-links a {
  font-size: 13px;
  color: var(--text-light);
  padding: 6px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s, padding-left 0.2s;
}

.project-category-links a:hover {
  color: var(--blue);
  padding-left: 6px;
}

@media (max-width: 768px) {
  .project-hero { height: 300px; }
  .project-hero-overlay { padding: 24px 24px; }
  .project-body { padding: 36px 24px; }
  .project-body-inner { grid-template-columns: 1fr; gap: 36px; }
  .project-category-links { flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .project-category-links a { border-bottom: none; background: #f0f5fb; padding: 6px 12px; }
  .project-category-links a:hover { padding-left: 12px; }
}

/* ── FULL VIEWPORT HERO ── */
.hero-fullvh {
  height: calc(100vh - 98px) !important;
  min-height: 600px;
}

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: absolute;
  bottom: 48px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 20;
  pointer-events: none;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: scroll-anim 1.8s ease-in-out infinite;
}

@keyframes scroll-anim {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* ── HOME INTRO SECTION ── */
.home-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 3%;
  border-bottom: 1px solid #eee;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.home-intro-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
}

.home-intro-left h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.home-intro-right p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 36px;
  text-align: justify;
}

.home-intro-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.intro-btn {
  display: inline-flex;
  align-items: center;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  transition: all 0.2s;
  cursor: pointer;
}

.intro-btn-outline {
  border: 1.5px solid var(--blue);
  color: var(--blue);
  background: transparent;
}

.intro-btn-outline:hover {
  background: var(--blue);
  color: white;
}

.intro-btn-solid {
  background: var(--blue);
  color: white;
  border: 1.5px solid var(--blue);
}

.intro-btn-solid:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .hero-fullvh { height: calc(100svh - 98px) !important; }
  .scroll-indicator { display: none; }
  .home-intro {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 24px;
  }
  .home-intro-left h2,
  .home-intro-right p { text-align: left; }
}

.home-intro-wrapper {
  border-bottom: none;
}

/* ── HOME GALLERY ── */
.home-gallery {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--white);
  padding: 0 12% 64px;
}

.home-gallery .masonry-row { height: 560px; }
.home-gallery .masonry-thirds { height: 480px; }
.home-gallery .masonry-label { opacity: 0; }
.home-gallery .masonry-tile:hover .masonry-label { opacity: 1; }

/* ── PHOTO GRID (gallery page) ── */
.photo-grid {
  padding: 0 12% 64px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: white;
}

.photo-row {
  display: flex;
  gap: 10px;
  height: 480px;
  align-items: stretch;
}

.photo-thirds {
  height: 380px;
}

.photo-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.photo-tile {
  overflow: hidden;
  position: relative;
}

.photo-tile .img-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.photo-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Column tiles: explicit 50/50 split */
.photo-col .photo-tile {
  flex: 0 0 calc(50% - 5px);
  height: calc(50% - 5px);
}

/* Large tiles fill full row height */
.photo-large {
  flex: 2;
}

/* Thirds tiles fill full row height */
.photo-thirds .photo-tile {
  flex: 1;
  height: 100%;
}

.photo-tile .img-placeholder {
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
}

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

.photo-tile:hover .img-placeholder,
.photo-tile:hover img {
  transform: scale(1.03);
}

.photo-large { flex: 2; }

@media (max-width: 768px) {
  .photo-grid { padding: 0 4% 40px; gap: 6px; }
  .photo-row { height: auto; flex-direction: column; gap: 6px; }
  .photo-large { flex: none; height: 260px; }
  .photo-col { flex-direction: row; height: 160px; }
  .photo-thirds { height: auto; flex-direction: column; }
  .photo-thirds .photo-tile { height: 200px; flex: none; }
}
