/* Base reset & layout */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Custom fonts */
@font-face {
  font-family: "Bebas Neue";
  src: url("bebasneue.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Raleway", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #000;
  background-color: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

/* Layout helpers */
.max-width {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Header */
.site-header {
  border-bottom: 1px solid #f0f0f0;
  padding: 18px 0;
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 40px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  text-transform: none;
}

.nav-link {
  position: relative;
  padding-bottom: 2px;
}

.nav-link--active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
}

/* search styles removed (no search input in header) */

/* Hero */
.hero {
  padding: 60px 0 40px;
}

.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.05fr);
  column-gap: 40px;
  align-items: start;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-title {
  font-weight: 600;
  font-size: clamp(52px, 6vw, 100px);
  line-height: 1.05;
  margin: 0;
}

.hero-image-wrapper {
  margin: 0 0 0 12px;
  overflow: hidden;
}

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

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-subtitle {
  font-weight: 600;
  font-size: clamp(32px, 3.6vw, 64px);
  line-height: 1.15;
  text-align: right;
  margin: 0;
}

.hero-subtitle-highlight {
  color: #f34e76;
  text-shadow: rgba(10, 189, 240, 0.3) 3px 3px 0px,
    rgba(254, 1, 1, 0.3) -3px -3px 0px;
}

/* Intro text */
.intro {
  padding: 40px 0 60px;
}

.intro-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
  font-size: 18px;
  line-height: 1.6;
}

.intro-inner p {
  margin: 0 0 18px;
}

.intro-link {
  display: inline-block;
  margin-top: 4px;
  font-size: 18px;
  font-weight: 600;
  color: #f34e76;
  text-decoration: underline;
}

/* Collage */
.collage {
  padding: 0 0 80px;
}

.collage-grid {
  max-width: 1180px;
  margin: 0 auto;
  /* padding: 0 32px; */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.collage-item {
  overflow: hidden;
  margin: 0;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-item--tall {
  grid-row: span 2;
}

.collage-item--wide {
  grid-column: span 3;
}

/* Sections (services, topics, contact) */
.section {
  padding: 60px 0;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-inner--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  column-gap: 80px;
  align-items: flex-start;
}

.section-title {
  font-weight: 600;
  font-size: 56px;
  line-height: 1.1;
  margin: 0;
}

.section-title--small {
  font-size: 38px;
}

.section-content {
  font-size: 18px;
}

.section-content--right {
  text-align: right;
}

/* Light grey divider between main sections */
.section-divider {
  height: 1px;
  background-color: #e0e0e0;
  margin: 40px auto;
  max-width: 80vw;
}

/* About */
.about {
  background-color: #f34e76;
  color: #ffffff;
}

.about-inner {
  padding-top: 80px;
  padding-bottom: 80px;
}

.about-title {
  font-weight: 600;
  font-size: 96px;
  letter-spacing: 0.02em;
}

.about-text {
  font-size: 22px;
  line-height: 1.4;
  text-align: right;
  max-width: 720px;
  margin-left: auto;
}

.about-text p {
  margin: 0 0 16px;
}

.about-link {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 500;
}

/* Services numbered list */
.numbered-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.numbered-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  align-items: flex-start;
  font-size: 20px;
}

.numbered-item-number {
  font-weight: 600;
  font-size: 20px;
  position: relative;
  padding-right: 16px;
  margin-right: 0;
  flex-shrink: 0;
}

.numbered-item-number::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0.15em;
  bottom: 0.15em;
  width: 1px;
  background-color: #000;
}

.numbered-item-text {
  flex: 1 1 auto;
}

/* Topics list */
.topics-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.topics-list li::before {
  content: "• ";
}

/* Contact */
.contact-email {
  font-size: 16px;
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background-color: #f34e76;
  color: #ffffff;
  padding: 36px 32px 24px;
  margin-top: 80px;
  position: relative;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* gap: 40px; */
  font-size: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-link {
  text-decoration: underline;
  font-weight: 100;
}

.footer-center {
  text-align: center;
  padding: 48px 0 32px 0;
}

.footer-brand {
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 24px;
  text-transform: uppercase;
  font-family: "Bebas Neue", "Raleway", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.footer-subbrand {
  font-size: 16px;
  margin-top: 4px;
}

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  font-size: 10px;
  text-align: center;
  padding-top: 12px;
}

/* Full-width footer dividers */
.site-footer .divider {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #ffffff;
  pointer-events: none;
}

.site-footer .divider:first-of-type {
  top: 32px;
}

.site-footer .divider:last-of-type {
  bottom: 0;
}

.footer-links-grid {
  width: 100%;
  max-width: 1080px;
  display: flex;
  justify-content: space-between;
}

@media (min-width: 960px) {
  .about-text {
    padding-top: 80px;
  }

  .about {
    margin-bottom: 80px;
  }
  .about-title {
    margin-top: -64px;
  }
}

/* Responsive tweaks */
@media (max-width: 960px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 12px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  .hero-right {
    justify-content: flex-start;
  }

  .hero-subtitle {
    text-align: left;
  }

  .section-inner--split {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .section-content--right {
    text-align: left;
  }

  /* Soften About section on tablets */
  .about-title {
    font-size: 64px;
  }

  .about-text {
    font-size: 19px;
    max-width: 100%;
  }

  .collage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collage-item--wide {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding: 0 16px;
  }

  .logo-image {
    height: 32px;
  }

  .hero-inner,
  .intro-inner,
  .section-inner {
    padding: 0 16px;
  }

  /* Tighter About section on phones */
  .about-inner {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .about-title {
    font-size: 42px;
  }

  .about-text {
    font-size: 17px;
    text-align: left;
  }

  /* Services layout on phones */
  .services .section-inner {
    padding-top: 48px;
    padding-bottom: 32px;
  }

  .services .section-title {
    font-size: 32px;
    line-height: 1.15;
  }

  .services .section-content {
    font-size: 20px;
   }

  .section.topics .section-title {
    font-size: 32px;
    line-height: 1.15;
  }

  .section.topics .section-content,
  .section.topics .topics-list {
    font-size: 20px;
  }

  .numbered-item-number {
    font-size: 24px;
  }

  /* Collage: full-width, single column on small screens */
  .collage {
    padding-left: 0;
    padding-right: 0;
  }

  .collage-grid {
    max-width: none;
    width: 100%;
    padding: 0;
    grid-template-columns: 1fr;
    /* gap: 12px; */
  }

  .collage-item--tall,
  .collage-item--wide {
    grid-column: auto;
    grid-row: auto;
  }

  .site-footer {
    padding: 28px 16px 18px;
  }

  .footer-inner {
    gap: 32px;
  }

  .footer-brand {
    font-size: 26px;
  }

  .footer-subbrand {
    font-size: 15px;
  }

  .footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
    row-gap: 24px;
  }

  .footer-links--left {
    align-items: flex-start;
  }

  .footer-links--right {
    align-items: flex-end;
  }
}


.section.contact .section-content--left {
    display: flex;
    height: 100%;
    align-items: center;
}