/* =========================================================
   Prabata
   Pure CSS — no JavaScript, no framework
   ========================================================= */

:root {
  --bg: #f2f0ea;
  --surface: #e8e5dd;
  --text: #151515;
  --muted: #77756e;
  --line: #d1cec5;
  --dark: #171717;
  --white: #f8f7f3;

  --max-width: 1280px;
  --radius: 2px;

  --font-sans:
    Inter,
    Helvetica Neue,
    Helvetica,
    Arial,
    sans-serif;

  --font-serif:
    Georgia,
    Times New Roman,
    serif;
}


/* Reset
--------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}


/* Layout
--------------------------------------------------------- */

.container {
  width: min(
    calc(100% - 64px),
    var(--max-width)
  );

  margin-inline: auto;
}


/* Header
--------------------------------------------------------- */

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 96px;

  border-bottom: 1px solid var(--line);
}

.logo {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.logo span {
  color: #a29f96;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--muted);
  font-size: 13px;
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
}


/* Typography
--------------------------------------------------------- */

.eyebrow {
  margin: 0;

  color: var(--muted);

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 500;
  letter-spacing: -0.055em;
}

h1 em,
h2 em {
  font-family: var(--font-serif);
  font-weight: 400;
}

.section-number {
  margin: 0;

  color: var(--muted);

  font-size: 11px;
  letter-spacing: 0.1em;
}


/* Hero
--------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 860px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 80px;

  padding-top: 100px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 760px;

  margin: 24px 0 30px;

  font-size: clamp(64px, 8vw, 120px);
  line-height: 0.91;
}

.hero-text {
  max-width: 470px;

  margin-bottom: 40px;

  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}


/* Buttons
--------------------------------------------------------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;

  min-height: 54px;
  padding: 0 24px;

  font-size: 12px;
  font-weight: 600;

  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button span {
  font-size: 18px;
  font-weight: 400;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--dark);
  color: var(--white);
}

.button-dark:hover {
  background: #000;
}

.button-light {
  background: var(--white);
  color: var(--dark);
}

.button-light:hover {
  background: #fff;
}

.text-link {
  display: inline-flex;
  gap: 12px;

  color: var(--muted);

  font-size: 12px;
  font-weight: 600;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}


/* Hero Artwork
--------------------------------------------------------- */

.hero-art {
  position: relative;

  width: min(100%, 570px);
  aspect-ratio: 1;

  justify-self: end;
}

.art-grid {
  position: absolute;
  inset: 10%;

  background-image:
    linear-gradient(
      to right,
      rgba(21, 21, 21, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(
      to bottom,
      rgba(21, 21, 21, 0.08) 1px,
      transparent 1px
    );

  background-size: 12.5% 12.5%;
}

.art-circle {
  position: absolute;
  top: 16%;
  left: 16%;

  width: 54%;
  aspect-ratio: 1;

  border: 1px solid #9b9991;
  border-radius: 50%;
}

.art-block {
  position: absolute;

  background: var(--dark);
}

.art-block-a {
  top: 34%;
  right: 15%;

  width: 34%;
  height: 34%;
}

.art-block-b {
  right: 15%;
  bottom: 16%;

  width: 20%;
  height: 12%;

  background: #c6c3ba;
}

.art-line {
  position: absolute;
  left: 16%;
  right: 15%;
  top: 50%;

  height: 1px;

  background: var(--text);

  transform: rotate(-27deg);
  transform-origin: center;
}


/* Hero Meta
--------------------------------------------------------- */

.hero-meta {
  position: absolute;
  bottom: 32px;
  left: 50%;
  right: 50%;

  display: flex;
  justify-content: space-between;

  width: min(
    calc(100% - 64px),
    var(--max-width)
  );

  transform: translateX(-50%);

  color: var(--muted);

  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* Intro
--------------------------------------------------------- */

.intro {
  padding: 180px 0;
  background: var(--surface);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 80px;
}

.intro h2 {
  max-width: 900px;

  margin: 20px 0 45px;

  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.98;
}

.large-copy {
  max-width: 650px;

  margin: 0;

  color: var(--muted);

  font-size: 20px;
  line-height: 1.65;
}


/* Services
--------------------------------------------------------- */

.services {
  padding: 180px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;

  align-items: end;

  margin-bottom: 100px;
}

.section-heading h2 {
  margin: 18px 0 0;

  font-size: clamp(50px, 6vw, 88px);
  line-height: 0.95;
}

.section-heading > p {
  max-width: 300px;

  margin: 0;

  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service {
  display: grid;
  grid-template-columns: 100px 1fr 60px;
  gap: 40px;
  align-items: start;

  padding: 42px 0;

  border-bottom: 1px solid var(--line);

  transition: padding 200ms ease;
}

.service:hover {
  padding-left: 14px;
  padding-right: 14px;
}

.service-number {
  color: var(--muted);

  font-size: 11px;
  letter-spacing: 0.08em;
}

.service-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.service h3 {
  margin: 0;

  font-size: clamp(30px, 3vw, 48px);
}

.service p {
  max-width: 390px;

  margin: 5px 0 0;

  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.service-arrow {
  justify-self: end;

  font-size: 24px;
  font-weight: 300;

  transition: transform 200ms ease;
}

.service:hover .service-arrow {
  transform: translate(4px, -4px);
}


/* About
--------------------------------------------------------- */

.about {
  padding: 180px 0;

  background: var(--dark);
  color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 80px;
}

.about-label {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.about-label .eyebrow {
  color: #85837d;
}

.about-label .section-number {
  color: #85837d;
}

.about-content h2 {
  margin: 0 0 55px;

  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
}

.about-content p {
  max-width: 6
}
