@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');

:root {
  --yellow: #f2ae00;
  --black: #101010;
  --line: #deded8;
  --paper: #fff;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--paper);
  font-family: Montserrat, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

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

.landing {
  min-height: 100svh;
  height: 100svh;
  display: grid;
  grid-template-rows: 96px minmax(0, 1fr) 128px;
  overflow: hidden;
  background: #fff;
}

.header {
  padding: 0 clamp(24px, 3vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #efefeb;
  background: #fff;
  position: relative;
  z-index: 20;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  min-width: 0;
}

.logo-main {
  font-size: clamp(26px, 2.2vw, 38px);
  font-weight: 500;
  letter-spacing: .24em;
  white-space: nowrap;
}

.logo-main b {
  color: var(--yellow);
  font-weight: 500;
}

.logo-sub {
  margin-top: 9px;
  font-size: 9px;
  letter-spacing: .47em;
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.logo-sub i {
  width: 31px;
  height: 2px;
  background: var(--yellow);
}

nav {
  display: flex;
  gap: clamp(28px, 3.4vw, 52px);
  font-size: clamp(13px, .95vw, 15px);
  font-weight: 500;
  letter-spacing: .08em;
}

nav a:hover { color: var(--yellow); }

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  font: inherit;
  letter-spacing: .1em;
}

.hero {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(330px, 30%) minmax(0, 70%);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  padding: clamp(38px, 5.2vh, 64px) 22px 24px clamp(64px, 7vw, 110px);
  z-index: 2;
  min-width: 0;
}

.vertical-rule {
  position: absolute;
  left: clamp(28px, 3.4vw, 54px);
  top: clamp(40px, 5.4vh, 66px);
  width: 4px;
  height: clamp(150px, 22vh, 205px);
  background: var(--yellow);
}

h1 {
  margin: 0;
  font-size: clamp(50px, 4.7vw, 78px);
  line-height: .9;
  letter-spacing: .02em;
  font-weight: 500;
}

.founder {
  margin: clamp(18px, 2.2vh, 28px) 0 0;
  color: var(--yellow);
  font-size: clamp(14px, 1vw, 17px);
  letter-spacing: .32em;
}

.horizontal-rule {
  display: block;
  width: clamp(180px, 14vw, 225px);
  height: 2px;
  margin: clamp(24px, 3vh, 34px) 0 clamp(18px, 2.2vh, 26px);
  background: var(--black);
}

.tagline {
  margin: 0;
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.5;
  letter-spacing: .05em;
}

.learn-more {
  width: clamp(190px, 14.5vw, 220px);
  margin-top: clamp(24px, 3.4vh, 38px);
  padding: clamp(15px, 1.7vh, 19px) 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--yellow);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  transition: transform .2s ease, box-shadow .2s ease;
}

.learn-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 24px rgba(0,0,0,.12);
}

.hero-art {
  min-width: 0;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding: 8px 18px 0 0;
}

.hero-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.services {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.services article {
  min-width: 0;
  padding: 18px clamp(18px, 2.4vw, 38px);
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.3vw, 20px);
  border-right: 1px solid var(--line);
}

.services article:last-child { border-right: 0; }

.services svg {
  width: clamp(42px, 3.5vw, 58px);
  height: clamp(42px, 3.5vw, 58px);
  flex: 0 0 auto;
}

.services p {
  margin: 0;
  font-size: clamp(13px, .92vw, 15px);
  line-height: 1.45;
  letter-spacing: .03em;
}

.services strong { font-weight: 600; }

.below {
  padding: 90px 8vw;
}

.below p {
  color: var(--yellow);
  font-size: 11px;
  letter-spacing: .22em;
}

.below h2 {
  max-width: 900px;
  margin: 18px 0 0;
  font-size: clamp(40px, 5vw, 74px);
  line-height: 1.05;
  font-weight: 500;
}

.muted { background: #f4f4f1; }

/* Tablet */
@media (max-width: 1024px) {
  .landing {
    height: auto;
    min-height: 100svh;
    grid-template-rows: 82px auto auto;
    overflow: visible;
  }

  .menu-button {
    display: block;
    min-width: 44px;
    min-height: 44px;
  }

  nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    padding: 24px 24px 28px;
    background: #fff;
    flex-direction: column;
    gap: 22px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(0,0,0,.06);
  }

  nav.open { display: flex; }

  nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: 15px;
  }

  .hero {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .hero-copy {
    padding: 64px 28px 38px 76px;
  }

  .vertical-rule {
    left: 34px;
    top: 66px;
    height: 168px;
  }

  h1 {
    font-size: clamp(54px, 10vw, 76px);
  }

  .hero-art {
    min-height: 420px;
    padding: 0 14px;
  }

  .hero-art img {
    width: 100%;
    height: auto;
    max-height: 520px;
  }

  .services {
    grid-template-columns: 1fr 1fr;
  }

  .services article {
    min-height: 118px;
    padding: 22px 28px;
  }

  .services article:nth-child(2) { border-right: 0; }
  .services article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* Mobile */
@media (max-width: 640px) {
  .header {
    padding: 0 18px;
  }

  .logo-main {
    font-size: 24px;
    letter-spacing: .2em;
  }

  .logo-sub {
    font-size: 7px;
    gap: 6px;
  }

  .logo-sub i {
    width: 18px;
  }

  .hero-copy {
    padding: 48px 22px 30px 54px;
  }

  .vertical-rule {
    left: 22px;
    top: 50px;
    height: 142px;
    width: 3px;
  }

  h1 {
    font-size: clamp(46px, 14vw, 62px);
    letter-spacing: 0;
  }

  .founder {
    font-size: 13px;
    margin-top: 18px;
  }

  .horizontal-rule {
    width: 170px;
    margin: 24px 0 20px;
  }

  .tagline {
    font-size: 14px;
  }

  .learn-more {
    width: 100%;
    max-width: 260px;
    min-height: 52px;
    margin-top: 28px;
  }

  .hero-art {
    min-height: 290px;
    padding: 0 8px;
  }

  .hero-art img {
    max-height: 360px;
    object-position: center bottom;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .services article {
    min-height: 92px;
    padding: 18px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .services article:last-child {
    border-bottom: 0;
  }

  .services svg {
    width: 46px;
    height: 46px;
  }

  .services p {
    font-size: 14px;
  }

  .below {
    padding: 64px 24px;
  }
}

/* Short laptop screens */
@media (min-width: 1025px) and (max-height: 760px) {
  .landing {
    grid-template-rows: 82px minmax(0, 1fr) 114px;
  }

  .hero-copy {
    padding-top: 28px;
  }

  .vertical-rule {
    top: 30px;
    height: 145px;
  }

  h1 {
    font-size: clamp(46px, 4.3vw, 68px);
  }

  .founder {
    margin-top: 16px;
  }

  .horizontal-rule {
    margin: 22px 0 16px;
  }

  .learn-more {
    margin-top: 22px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .services article {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
