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

html {
  scroll-behavior: smooth;
}

.nav-hidden {
  display: none;
}

body {
  background: #ffffff;
  color: #000000;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  line-height: 1.6;
}

a {
  color: #000000;
  text-decoration: none;
}

a:hover {
  color: #666666;
}

/* ── NAV ─────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  padding: 24px 16px 40px 24px;
  overflow-y: auto;
  z-index: 100;
}

.site-name {
  font-family: Georgia, serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
  margin-bottom: 2px;
}

.site-name a {
  color: #000000;
}

.site-subtitle {
  font-size: 11px;
  color: #999999;
  margin-bottom: 16px;
  white-space: nowrap;
}

.nav-list {
  list-style: none;
}

.nav-item {
  margin-bottom: 4px;
}

.nav-category {
  display: block;
  font-size: 11px;
  color: #000000;
  cursor: pointer;
  padding: 1px 0;
  user-select: none;
}

.nav-category:hover {
  color: #666666;
}

.nav-sub-list {
  list-style: none;
  padding-left: 12px;
  display: none;
  margin-top: 2px;
  margin-bottom: 2px;
}

.nav-item:hover .nav-sub-list,
.nav-item.active .nav-sub-list {
  display: block;
}

.nav-sub-list li {
  margin-bottom: 1px;
}

.nav-sub-list a {
  font-size: 11px;
  color: #000000;
  display: block;
  padding: 1px 0;
}

.nav-sub-list a:hover {
  color: #666666;
}

.nav-sub-list a.active {
  color: #666666;
}

.nav-links {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-links a {
  font-size: 11px;
  color: #000000;
}

.nav-links a:hover {
  color: #666666;
}

.nav-links a.active {
  color: #666666;
}

/* ── MAIN ────────────────────────────────────── */

.main {
  padding: 80px 60px 80px 220px;
  min-height: 100vh;
}

/* ── HOME GRID ───────────────────────────────── */

.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 18px;
  row-gap: 16px;
  align-items: start;
  max-width: 820px;
}

.image-item a.image-link {
  display: block;
}

.image-placeholder {
  display: block;
  width: 100%;
  background: #d6d6d6;
  transition: opacity 0.15s ease;
}

.image-item a.image-link:hover .image-placeholder {
  opacity: 0.8;
}

.image-caption {
  margin-top: 4px;
  font-size: 11px;
  color: #999999;
}

.image-caption a {
  color: #999999;
}

.image-caption a:hover {
  color: #666666;
}

/* ── PROJECT PAGE ────────────────────────────── */

.project-header {
  margin-bottom: 30px;
}

.project-title {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.04em;
}

.project-meta {
  font-size: 11px;
  color: #999999;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.project-images {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 840px;
}

.project-image-placeholder {
  display: block;
  width: 100%;
  background: #d6d6d6;
  height: 580px;
}

/* ── CONTACT PAGE ────────────────────────────── */

.contact-container {
  padding: 160px 60px 80px 220px;
  max-width: 820px;
}

.contact-columns {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  margin-top: 40px;
}

.contact-left {
  flex: 0 0 auto;
}

.contact-right {
  flex: 1;
}

.contact-info-item {
  margin-bottom: 28px;
}

.contact-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #999999;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-link {
  font-family: Georgia, serif;
  font-size: 12px;
  color: #000000;
  text-decoration: none;
}

.contact-link:hover {
  color: #666666;
}

.contact-field {
  margin-bottom: 24px;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  border: none;
  border-bottom: 1px solid #cccccc;
  border-radius: 0;
  box-shadow: none;
  padding: 8px 0;
  font-family: Georgia, serif;
  font-size: 12px;
  color: #000000;
  background: transparent;
  outline: none;
  resize: none;
}

.contact-form textarea {
  line-height: 1.6;
}

.contact-form button {
  display: inline-block;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 0;
  padding: 10px 24px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.contact-form button:hover {
  background: #333333;
}

/* ── SERVICE PAGES ───────────────────────────── */

.service-img {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin-top: 40px;
}

/* ── ABOUT PAGE ──────────────────────────────── */

.about-container {
  display: flex;
  flex-direction: row;
  gap: 80px;
  padding: 160px 60px 60px 220px;
  align-items: flex-start;
}

.about-left {
  flex: 0 0 45%;
  max-width: 45%;
}

.about-heading {
  font-family: 'Jost', sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #000000;
  margin-bottom: 28px;
}

.about-subheading {
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: #666666;
  margin-top: 8px;
  margin-bottom: 24px;
}

.about-left p {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 20px;
}

.about-right {
  flex: 0 0 35%;
  max-width: 35%;
  margin-top: 8px;
}

.about-right a {
  display: block;
  font-family: Georgia, serif;
  font-size: 13px;
  color: #000000;
  text-decoration: none;
  margin-bottom: 16px;
}

.about-right a:hover {
  color: #666666;
}

.about-right img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── HOMEPAGE: TOP NAV ───────────────────────── */

.nav-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 40px 0 40px;
}

.nav-top--solid {
  background: #ffffff;
  padding: 24px 40px;
}

/* All nav links dark */
.nav-top-left a,
.nav-top-right .nav-top-link,
.nav-top-right a {
  color: #000000;
  text-decoration: none;
}

.nav-top-right a:hover,
.nav-top-right .nav-top-link:hover {
  color: #666666;
}

/* Left: name + subtitle */

.nav-top-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nav-top-name {
  font-family: 'Jost', sans-serif;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0.18em;
  white-space: nowrap;
  color: #000000;
}

.nav-top-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.28em;
  white-space: nowrap;
  margin-top: 6px;
  color: #000000;
}

/* Right: links */

.nav-top-right {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding-top: 8px;
}

.nav-top-item {
  position: relative;
}

.nav-top-link {
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  padding: 0;
}

.nav-plus {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 200;
  letter-spacing: 0;
  line-height: 1;
  margin-right: 5px;
  color: #1a1a1a;
  opacity: 0.8;
  display: inline-flex;
  align-items: center;
}

/* Work hover dropdown */

.nav-top-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  flex-direction: column;
  gap: 5px;
  white-space: nowrap;
  padding-top: 10px;
  z-index: 999;
}

.nav-has-dropdown:hover .nav-top-dropdown {
  display: flex;
}

.nav-top-dropdown a {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #000000;
  display: block;
  padding: 2px 0;
}

/* ── HOMEPAGE: HERO ──────────────────────────── */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-link {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-placeholder {
  width: 100%;
  height: 100%;
  background: #b8b8b8;
}

.hero {
  cursor: pointer;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-img.active {
  opacity: 1;
}

.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: default;
}

.hero-dot.active {
  background: #ffffff;
}

.hero-label {
  position: absolute;
  bottom: 36px;
  left: 40px;
  background: #000000;
  color: #ffffff !important;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 16px;
}

.hero-label:hover {
  opacity: 0.8;
}

/* ── HOMEPAGE: GRID SECTION ──────────────────── */

.grid-section {
  background: #ffffff;
  padding: 56px 48px 90px 48px;
}
