:root {
  --bg: #fff;
  --paper: #f5f5f5;
  --ink: #111;
  --muted: #6b6b6b;
  --line: #e8e8e8;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Inter, system-ui, sans-serif; background: var(--bg); color: var(--ink); line-height: 1.5; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
.wrap { width: min(1240px, calc(100% - 40px)); margin-inline: auto; }

header { background: #fff; position: sticky; top: 0; z-index: 20; border-bottom: 1px solid var(--line); }
.nav { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 72px; gap: 16px; }
.menu { display: flex; gap: 22px; list-style: none; font-size: 13px; font-weight: 500; }
.menu a:hover { text-decoration: underline; text-underline-offset: 4px; }
.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  text-align: center;
}
.icons { display: flex; gap: 16px; justify-content: end; align-items: center; }
.icons a, .icons span { width: 22px; height: 22px; display: grid; place-items: center; color: var(--ink); }
.icons svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; }

.search { border-bottom: 1px solid var(--line); padding: 10px 0 14px; }
.search form { display: flex; justify-content: center; }
.search input {
  width: min(420px, 100%);
  text-align: center;
  border: 0;
  border-bottom: 1px solid #111;
  padding: 8px 0;
  font-size: 13px;
  background: transparent;
}
.search input:focus { outline: 0; }
.search input::placeholder { color: #9a9a9a; }

.hero {
  position: relative;
  height: calc(100svh - 124px);
  min-height: 560px;
  overflow: hidden;
  background: #111;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 20%;
  filter: brightness(.52);
}
.hero-copy {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 0 0 64px;
  color: #fff;
}
.hero-copy p {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero-copy h1 {
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.02em;
  max-width: 12ch;
  margin-bottom: 16px;
}
.hero-copy span {
  display: block;
  max-width: 42ch;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,.88);
  margin-bottom: 28px;
}

.section { padding: 56px 0 24px; }
.section-title { text-align: center; font-size: 22px; font-weight: 500; margin-bottom: 28px; }

.dept { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.dept a { position: relative; display: block; overflow: hidden; aspect-ratio: 16 / 9; background: #111; }
.dept img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.55); transition: transform .5s ease; }
.dept a:hover img { transform: scale(1.04); }
.dept span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cat { display: block; }
.cat .shot { overflow: hidden; background: var(--paper); }
.cat img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; transition: transform .5s ease; }
.cat.still img { object-fit: cover; filter: grayscale(.08); }
.cat:hover img { transform: scale(1.04); }
.cat span {
  display: block;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: 14px;
}

.news { padding: 64px 0; border-top: 1px solid var(--line); }
.news .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.news h2 { font-size: 28px; font-weight: 500; margin-bottom: 12px; }
.news p { color: var(--muted); max-width: 46ch; font-size: 14px; }
.news form { display: grid; gap: 16px; }
.news input[type="email"] {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #111;
  padding: 10px 0;
  background: transparent;
}
.news input[type="email"]:focus { outline: 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  border: 0;
  border-radius: 0;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  width: fit-content;
}
.btn:hover { background: #000; }
.btn-light { background: #fff; color: #111; }
.btn-light:hover { background: #eee; color: #111; }

.help { padding: 8px 0 56px; }
.help .wrap { display: grid; grid-template-columns: repeat(3, 1fr); }
.help a, .help article {
  border: 1px solid var(--line);
  padding: 28px 24px;
  display: grid;
  justify-items: start;
  gap: 10px;
}
.help svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.help h3 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.help p { font-size: 13px; color: var(--muted); }

.pay { text-align: center; padding: 0 0 40px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

.site-foot { background: var(--paper); padding: 48px 0 0; font-size: 13px; }
.foot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding-bottom: 36px; }
.site-foot h3 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; font-weight: 700; }
.site-foot ul { list-style: none; display: grid; gap: 8px; color: var(--muted); }
.site-foot ul a:hover { color: #111; text-decoration: underline; text-underline-offset: 3px; }
.soc { display: flex; gap: 12px; margin-top: 16px; }
.soc a { width: 32px; height: 32px; display: grid; place-items: center; }
.soc svg { width: 16px; height: 16px; fill: currentColor; }
.foot-copy { border-top: 1px solid #ddd; padding: 14px 0; font-size: 11px; color: var(--muted); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

.float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  z-index: 40;
}

@media (max-width: 860px) {
  .menu, .search { display: none; }
  .nav { grid-template-columns: 1fr auto; }
  .logo { text-align: left; letter-spacing: .16em; font-size: 16px; }
  .hero { height: calc(100svh - 72px); min-height: 480px; }
  .hero-copy { padding-bottom: 40px; }
  .dept, .cats, .news .wrap, .help .wrap, .foot-grid { grid-template-columns: 1fr; }
  .dept a { aspect-ratio: 16 / 7; }
  .cat img { aspect-ratio: 4 / 5; }
}
