/* Katie Lee Photography — static landing page.
   Visual language recovered from the original `katie-lee-photo` WordPress theme
   (common/css/styles.css, archived 2026-03-07). No JavaScript, no web fonts,
   no external requests of any kind. */

html {
  background: #fff;
  color: #000;
}

body {
  margin: 0;
  padding: 0 16px 40px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Original theme: 1px #d7d7d7 border, 940px wide, 33px from the top. */
.container {
  box-sizing: border-box;
  max-width: 940px;
  min-height: 553px;
  margin: 33px auto 0;
  padding: 40px 20px 48px;
  border: 1px solid #d7d7d7;
  text-align: center;
}

/* The 800x140 wordmark, scaled down gracefully on small screens. */
.biglogo {
  margin: 0 auto;
  font-size: 0;
  line-height: 0;
}

.biglogo img {
  display: block;
  width: 800px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.tagline {
  margin: 18px 0 0;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: #666;
}

/* Original: ul width 695px, 216x216 tiles with a 5px gutter. */
.tiles {
  list-style: none;
  max-width: 695px;
  margin: 40px auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.tiles li {
  margin: 0;
  padding: 0;
  text-align: center;
}

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

.tiles h2 {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

.intro {
  max-width: 640px;
  margin: 40px auto 0;
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  text-align: center;
}

.contact {
  margin: 28px 0 0;
  font-size: 16px;
}

.contact a {
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: 2px;
}

.contact a:hover,
.contact a:focus {
  color: #000;
  border-bottom-color: #999;
}

footer {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  color: #333;
}

footer a {
  color: #333;
  text-decoration: none;
}

footer a:hover,
footer a:focus {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .container {
    min-height: 0;
    margin-top: 16px;
    padding: 28px 16px 36px;
  }

  .tiles {
    gap: 16px;
  }

  .intro {
    text-align: left;
  }
}
