:root {
  --pear: #E8F300;
  --black: #0A0A0A;
  --bombay: #AEB6BA;
  --card-bg: #141414;
  --tile-bg: #1C1C1C;
  --radius: 16px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--black);
  color: #fff;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 32px 16px 48px;
}

.card {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Hero */
.hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
}

.mark {
  width: 92px;
  height: auto;
  margin-bottom: 6px;
}

.brand {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.14em;
  margin: 0;
  color: #fff;
}

.tagline {
  font-weight: 500;
  font-size: 14px;
  color: var(--bombay);
  line-height: 1.5;
  margin: 0;
}

.stub {
  color: #6b6f71;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
}

/* Tiles */
.tiles {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tile {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--tile-bg);
  border: 1px solid #2a2a2a;
  border-radius: var(--radius);
  padding: 15px 18px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.tile:active {
  transform: scale(0.98);
}

.tile:hover {
  background: #232323;
  border-color: var(--pear);
}

.tile-icon {
  font-size: 18px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.tile-label {
  overflow-wrap: anywhere;
}

/* Save contact button */
.save-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pear);
  color: var(--black);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: filter 0.15s ease, transform 0.1s ease;
}

.save-contact:active {
  transform: scale(0.98);
}

.save-contact:hover {
  filter: brightness(0.93);
}

/* Director call-out bar — visually distinct from the regular tiles */
.director-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--card-bg);
  border: 1.5px solid var(--pear);
  border-radius: var(--radius);
  padding: 14px 18px;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.1s ease;
}

.director-cta:active {
  transform: scale(0.98);
}

.director-cta:hover {
  background: #1a1a10;
}

.director-cta-icon {
  font-size: 22px;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pear);
  border-radius: 50%;
}

.director-cta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.director-cta-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--pear);
}

.director-cta-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--bombay);
}

/* Content blocks */
.block {
  background: var(--card-bg);
  border: 1px solid #232323;
  border-radius: var(--radius);
  padding: 20px;
}

.block h2 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pear);
}

.services {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.services li {
  font-size: 14px;
  font-weight: 500;
  color: #eee;
  padding-left: 16px;
  position: relative;
}

.services li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--pear);
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}

.portfolio-item {
  position: relative;
  display: block;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
  text-decoration: none;
}

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

.portfolio-item:active img {
  transform: scale(1.04);
}

.portfolio-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 10px 7px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
}

.portfolio-year {
  color: var(--pear);
  font-weight: 500;
}

.block .stub {
  margin: 0;
}

/* CTA */
.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--pear);
  border: 1.5px solid var(--pear);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: var(--radius);
  padding: 15px 18px;
  transition: background 0.15s ease, color 0.15s ease;
}

.cta:hover {
  background: var(--pear);
  color: var(--black);
}

.footer {
  text-align: center;
  padding-top: 8px;
}

.footer p {
  margin: 0;
  font-size: 12px;
  color: #555;
  letter-spacing: 0.04em;
}

@media (min-width: 540px) {
  .mark { width: 108px; }
  .brand { font-size: 26px; }
}
