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

:root {
  --red: #e8422f;
  --gray-circle: #6b6b6b;
  --text-color: #2d2d2d;
  --bg: #f9f9f9;
}

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: var(--text-color);
  background: var(--bg);
  line-height: 1.6;
  font-size: 15px;
}

/* ==========================================
   DESKTOP — side by side (default)
   ========================================== */
.landing {
  display: flex;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.content {
  flex: 1 1 55%;
  max-width: 55%;
  padding: 48px 60px 48px 80px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.photo {
  flex: 1 1 45%;
  max-width: 45%;
  position: relative;
  z-index: 1;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* ---------- LOGO ---------- */
.logo {
  height: 48px;
  width: auto;
  margin-bottom: 20px;
}

/* ---------- TYPOGRAPHY ---------- */
h1 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

h2 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 4px;
}

p {
  margin-bottom: 10px;
}

.intro p:first-child {
  font-style: italic;
}

/* ---------- SERVICES LIST ---------- */
.services ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 6px;
}

.services li {
  margin-bottom: 2px;
}

/* ---------- CONTACT ---------- */
.contact {
  margin-top: 20px;
}

.contact a {
  color: var(--red);
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* ---------- SIGN-OFF ---------- */
.sign-off {
  margin-top: 16px;
}

.sign-off p {
  font-style: italic;
}

/* ---------- DECORATIVE CIRCLES ---------- */
.circle {
  position: absolute;
  border-radius: 50%;
  z-index: 3;
  pointer-events: none;
}

.circle-red-large {
  width: 100px;
  height: 100px;
  background: var(--red);
  top: 30px;
  left: 49%;
  opacity: 0.9;
}

.circle-red-small {
  width: 30px;
  height: 30px;
  background: var(--red);
  top: 120px;
  left: 54%;
  opacity: 0.85;
}

.circle-gray-left {
  width: 60px;
  height: 60px;
  background: var(--gray-circle);
  top: 46%;
  left: -10px;
  opacity: 0.55;
}

.circle-red-bottom-left {
  width: 70px;
  height: 70px;
  background: var(--red);
  bottom: 12%;
  left: -35px;
  opacity: 0.85;
}

.circle-gray-center {
  width: 80px;
  height: 80px;
  background: var(--gray-circle);
  bottom: 22%;
  left: 45%;
  opacity: 0.45;
}

.circle-gray-bottom-right {
  width: 90px;
  height: 90px;
  background: var(--gray-circle);
  bottom: 5%;
  left: 50%;
  opacity: 0.4;
}

/* ==========================================
   MOBILE — stacked, photo on top
   Single breakpoint at 850px
   ========================================== */
@media (max-width: 1050px) {
  .landing {
    flex-direction: column;
    min-height: auto;
  }

  .content {
    flex: none;
    max-width: 100%;
    padding: 32px 28px 32px;
    order: 1;
  }

  .photo {
    flex: none;
    max-width: 100%;
    order: 2;
  }

  /*
   * Drop object-fit:cover so the full headshot is always
   * visible — no cropping.  The image just scales as a
   * normal responsive image (width: 100%, height: auto).
   */
  .photo img {
    height: auto;
    object-fit: initial;
  }

  .logo {
    height: 40px;
  }

  h1 {
    font-size: 1.05rem;
  }

  /* Reposition circles */
  .circle-red-large {
    width: 75px;
    height: 75px;
    top: 10px;
    left: auto;
    right: 24px;
  }

  .circle-red-small {
    width: 24px;
    height: 24px;
    top: 85px;
    left: auto;
    right: 8px;
  }

  .circle-gray-left {
    width: 48px;
    height: 48px;
    top: auto;
    bottom: 38%;
    left: -12px;
  }

  .circle-red-bottom-left {
    width: 55px;
    height: 55px;
    bottom: auto;
    top: 30%;
    left: -28px;
  }

  .circle-gray-center,
  .circle-gray-bottom-right {
    display: none;
  }
}
