:root {
  --paper: #f4f0e6;
  --ink: #182129;
  --muted: #657078;
  --blue: #2455d6;
  --lime: #b9db24;
  --coral: #f07b5b;
  --line: rgba(24, 33, 41, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.72), transparent 28rem),
    var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.page-shell {
  width: min(1460px, 100%);
  min-height: 100svh;
  margin: 0 auto;
  padding: 28px clamp(24px, 4.5vw, 72px) 26px;
  display: flex;
  flex-direction: column;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header {
  min-height: 44px;
}

.brand {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.065em;
  text-decoration: none;
}

.brand-accent {
  color: var(--blue);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px 9px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(185, 219, 36, 0.18);
  animation: breathe 2.8s ease-in-out infinite;
}

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(44px, 7vw, 118px);
  padding: clamp(54px, 7.3vh, 92px) 0 clamp(42px, 6vh, 72px);
}

.hero-copy {
  max-width: 790px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(58px, 6.9vw, 108px);
  font-weight: 750;
  line-height: 0.91;
  letter-spacing: -0.072em;
}

h1 span {
  display: block;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.055em;
}

.intro {
  max-width: 670px;
  margin: 34px 0 0;
  color: #34414a;
  font-size: clamp(19px, 1.65vw, 25px);
  line-height: 1.46;
  letter-spacing: -0.022em;
}

.services {
  max-width: 700px;
  margin-top: clamp(38px, 5.2vh, 58px);
  border-top: 1px solid var(--line);
}

.service {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 20px 0 18px;
  border-bottom: 1px solid var(--line);
}

.service-number {
  padding-top: 4px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
}

.service h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.service p {
  max-width: 580px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.art-column {
  position: relative;
  width: min(100%, 520px);
  justify-self: end;
}

.art-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(24, 33, 41, 0.62);
  border-radius: 2px;
  background: #f8f1df;
  box-shadow: 18px 20px 0 var(--blue);
  transform: rotate(1.2deg);
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 450ms ease;
}

.art-card:hover {
  transform: rotate(-0.35deg) translateY(-5px);
  box-shadow: 22px 26px 0 var(--blue);
}

.art-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.art-label {
  position: absolute;
  top: 20px;
  right: 18px;
  padding: 9px 13px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--lime);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transform: rotate(3deg);
}

.art-note {
  position: absolute;
  right: -8px;
  bottom: -62px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-style: italic;
  line-height: 1.25;
  transform: rotate(-2deg);
}

.art-note span {
  display: inline-block;
  margin-right: 8px;
  color: var(--coral);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 24px;
  font-style: normal;
}

.site-footer {
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.72);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 64px;
    padding-top: 72px;
  }

  .hero-copy {
    max-width: none;
  }

  .art-column {
    width: min(86vw, 560px);
    justify-self: center;
    margin-bottom: 56px;
  }
}

@media (max-width: 620px) {
  .page-shell {
    padding: 19px 18px 22px;
  }

  .brand {
    font-size: 21px;
  }

  .status {
    gap: 8px;
    padding: 7px 10px 7px 8px;
    font-size: 9px;
  }

  .status-dot {
    width: 7px;
    height: 7px;
  }

  .hero {
    gap: 52px;
    padding: 58px 0 52px;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 10px;
  }

  h1 {
    font-size: clamp(48px, 15.1vw, 76px);
    line-height: 0.94;
  }

  .intro {
    margin-top: 25px;
    font-size: 18px;
  }

  .services {
    margin-top: 35px;
  }

  .service {
    grid-template-columns: 34px 1fr;
    padding: 17px 0;
  }

  .service h2 {
    font-size: 15px;
  }

  .service p {
    font-size: 13px;
  }

  .art-column {
    width: calc(100% - 18px);
  }

  .art-card {
    box-shadow: 10px 12px 0 var(--blue);
  }

  .art-card:hover {
    box-shadow: 12px 15px 0 var(--blue);
  }

  .art-label {
    top: 13px;
    right: 11px;
    padding: 7px 10px;
    font-size: 9px;
  }

  .art-note {
    right: 0;
    bottom: -60px;
    font-size: 14px;
  }

  .site-footer {
    align-items: flex-end;
    gap: 24px;
    font-size: 9px;
  }

  .site-footer p:last-child {
    text-align: right;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
