/* ============================================================
   by pav - The1 typographic system, dressed in real materials.
   Concrete canvas · building-scale condensed type · flat ·
   fabric used as full-bleed identity surface · B&W editorial
   photography in contained frames · real serif wordmark.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500&family=Inter:wght@300;400;500&display=swap');

:root {
  --color-the-green:  #027b49;
  --color-the-pink:   #f19ec8;
  --color-the-red:    #fa4d43;
  --color-the-yellow: #fbb833;
  --color-concrete:   #d9d9d9;
  --color-iron:       #1f1f1f;
  --color-carbon:     #000000;

  --font-display: 'Barlow Condensed', ui-sans-serif, system-ui, sans-serif;
  --font-micro:   'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;

  --page-max-width: 1440px;
  --section-gap: 40px;
  --gutter: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-micro);
  background: var(--color-concrete);
  color: var(--color-iron);
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---------- display type ---------- */
.display { font-family: var(--font-display); font-weight: 500; line-height: 0.80; letter-spacing: -0.04em; text-transform: uppercase; }
.display--xl { font-size: clamp(64px, 15vw, 215px); line-height: 0.78; letter-spacing: -0.05em; }
.display--l  { font-size: clamp(44px, 8vw, 110px);  line-height: 0.80; }
.display--m  { font-size: clamp(34px, 5vw, 60px);   line-height: 0.80; letter-spacing: -0.03em; }
.subheading  { font-family: var(--font-display); font-weight: 500; font-size: 26px; line-height: 1; letter-spacing: -0.02em; text-transform: uppercase; }
.eyebrow     { font-family: var(--font-micro); font-size: 12px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; }
.body        { font-size: 16px; line-height: 1.2; font-weight: 300; max-width: 62ch; }
.caption     { font-size: 12px; line-height: 1.3; letter-spacing: 0.04em; }

/* ---------- structural shell ---------- */
.wrap { max-width: var(--page-max-width); margin: 0 auto; padding: 0 var(--gutter); }
.hairline { border: none; border-top: 1px solid var(--color-iron); width: 100%; }
.section { padding-top: var(--section-gap); padding-bottom: var(--section-gap); }

/* ---------- top nav ---------- */
.nav { position: sticky; top: 0; z-index: 60; background: var(--color-concrete); border-bottom: 1px solid var(--color-iron); }
.nav__inner { max-width: var(--page-max-width); margin: 0 auto; padding: 13px var(--gutter); display: flex; align-items: center; justify-content: space-between; }
.brand-logo img { height: 26px; width: auto; display: block; }
.nav__links { display: flex; gap: 22px; align-items: center; }
.nav__link { font-family: var(--font-display); text-transform: uppercase; font-size: 17px; letter-spacing: -0.01em; color: var(--color-iron); }
.nav__link[aria-current="page"] { text-decoration: underline; text-underline-offset: 5px; }

.burger { width: 46px; height: 46px; border-radius: 100px; border: none; background: var(--color-iron); cursor: pointer; display: none; align-items: center; justify-content: center; flex-direction: column; gap: 4px; }
.burger span { display: block; width: 18px; height: 2px; background: #fff; }

/* ---------- expanded menu ---------- */
.menu { position: fixed; inset: 0; z-index: 100; background: var(--color-iron); display: none; flex-direction: column; }
.menu.open { display: flex; }
.menu__bar { display: flex; align-items: center; justify-content: space-between; padding: 13px var(--gutter); border-bottom: 1px solid #3a3a3a; }
.menu__bar .brand-logo img { height: 24px; }
.menu__close { font-family: var(--font-display); font-size: 22px; text-transform: uppercase; color: var(--color-concrete); background: none; border: none; cursor: pointer; }
.menu__body { flex: 1; display: flex; align-items: center; }
.menu__links { padding: 0 var(--gutter); }
.menu__links a { display: block; font-family: var(--font-display); font-weight: 500; text-transform: uppercase; font-size: clamp(38px, 8vw, 92px); line-height: 0.98; letter-spacing: -0.03em; color: var(--color-concrete); }
.menu__links a:hover { color: #fff; }

/* ---------- fabric identity surface ---------- */
.fabric { position: relative; width: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; background-color: #161616; display: flex; align-items: flex-end; }
/* tint: re-paint the fabric image darkened + monochrome behind the text plate */
.fabric::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: inherit; background-size: cover; background-position: center; background-repeat: no-repeat;
  filter: grayscale(100%) brightness(0.5) contrast(1.05);
}
.fabric > * { position: relative; z-index: 1; }
.fabric--hero { min-height: 78vh; }
.fabric--band { min-height: 46vh; }
.fabric__plate { margin: var(--gutter); padding: 28px 30px 26px; max-width: 720px; }
.fabric__plate--iron     { background: var(--color-iron);     color: var(--color-concrete); }
.fabric__plate--concrete { background: var(--color-concrete); color: var(--color-iron); }
.fabric__plate .body { color: inherit; opacity: 0.92; }
.fabric__plate .eyebrow { opacity: 0.72; margin-bottom: 14px; }

/* ---------- pill button + CTA pair ---------- */
.pill { display: inline-block; border-radius: 100px; border: none; cursor: pointer; background: var(--color-iron); color: var(--color-concrete); font-family: var(--font-display); text-transform: uppercase; font-size: 16px; letter-spacing: -0.01em; padding: 11px 22px; white-space: nowrap; }
.pill--light { background: var(--color-concrete); color: var(--color-iron); }
.pill--ghost { background: transparent; border: 1px solid var(--color-iron); color: var(--color-iron); }
.pill:hover { background: var(--color-carbon); color: var(--color-concrete); }
.cta-pair { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cta-pair .q { font-family: var(--font-display); text-transform: uppercase; font-size: 22px; letter-spacing: -0.01em; }

/* ---------- status dot ---------- */
.dot { display: inline-block; width: 9px; height: 9px; border-radius: 100px; margin-left: 8px; vertical-align: middle; }

/* ---------- card grid: fabric block framing a B&W photo ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--color-iron); border: 1px solid var(--color-iron); }
.card { position: relative; background-size: cover; background-position: center; background-color: #161616; padding: 14px; display: flex; flex-direction: column; }
.card::before { content: ""; position: absolute; inset: 0; z-index: 0; background-image: inherit; background-size: cover; background-position: center; filter: grayscale(100%) brightness(0.5) contrast(1.05); }
.card > * { position: relative; z-index: 1; }
.card__media { aspect-ratio: 3 / 4; background-size: cover; background-position: center top; filter: grayscale(100%); }
.card__foot { background: var(--color-concrete); color: var(--color-iron); margin-top: 14px; padding: 13px 14px 16px; }
.card__name { font-family: var(--font-display); text-transform: uppercase; font-size: 24px; letter-spacing: -0.01em; line-height: 1; }
.card__avail { font-size: 12px; margin-top: 8px; opacity: 0.72; letter-spacing: 0.03em; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- hero ---------- */
.hero { padding-top: 56px; padding-bottom: 36px; }
.hero .display--xl { color: var(--color-iron); }
.hero__sub { margin-top: 22px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero--split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 36px; align-items: stretch; }
.hero--split .hero__text { align-self: center; }
.hero__media { display: block; width: 100%; height: 100%; min-height: clamp(440px, 66vh, 760px); object-fit: cover; object-position: center top; background-color: #161616; filter: grayscale(100%); }

/* ---------- ticker (seamless loop) ---------- */
.ticker { background: var(--color-iron); color: var(--color-concrete); overflow: hidden; }
.ticker__track { display: flex; width: max-content; animation: scroll 45s linear infinite; will-change: transform; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__group { display: flex; flex: 0 0 auto; padding: 10px 0; font-family: var(--font-display); text-transform: uppercase; font-size: 16px; letter-spacing: -0.01em; }
.ticker__group span { padding: 0 18px; white-space: nowrap; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

/* ---------- scroll reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s cubic-bezier(0.22,0.61,0.36,1), transform 0.7s cubic-bezier(0.22,0.61,0.36,1); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; } }

/* ---------- full-bleed B&W photo band ---------- */
.photoband { width: 100%; min-height: 70vh; background-size: cover; background-position: center top; filter: grayscale(100%); display: flex; align-items: flex-end; }
.photoband--tall { min-height: 88vh; }
.photoband__plate { margin: var(--gutter); padding: 24px 28px; background: var(--color-iron); color: var(--color-concrete); max-width: 640px; }

/* ---------- two-column ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.split--media { align-items: stretch; }
.split__img { background-size: cover; background-position: center top; filter: grayscale(100%); min-height: 420px; }
.stack > * + * { margin-top: 16px; }

/* ---------- photo focal-point helpers ----------
   Add one of these to any photo element (.card__media, .look__img,
   .split__img, .photoband) to nudge which slice of the picture shows.
   Smaller % = higher up = more face. */
.focus-top    { background-position: center top !important; }
.focus-face   { background-position: center 12% !important; }
.focus-upper  { background-position: center 30% !important; }
.focus-center { background-position: center center !important; }
.focus-lower  { background-position: center 75% !important; }
.focus-bottom { background-position: center bottom !important; }

/* ---------- service rows ---------- */
.srv { display: grid; grid-template-columns: 40px 1fr; gap: 18px; padding: 26px 0; border-top: 1px solid var(--color-iron); }
.srv__no { font-family: var(--font-display); font-size: 22px; opacity: 0.5; }
.srv__name { font-family: var(--font-display); text-transform: uppercase; font-size: 32px; line-height: 0.95; letter-spacing: -0.02em; }
.srv__desc { margin-top: 8px; font-weight: 300; opacity: 0.85; max-width: 64ch; }

/* ---------- testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--color-iron); border: 1px solid var(--color-iron); }
.quote { background: var(--color-concrete); padding: 28px 24px; }
.quote p { font-family: var(--font-display); font-size: 24px; line-height: 1.05; letter-spacing: -0.01em; }
.quote cite { display: block; margin-top: 18px; font-style: normal; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.65; }

/* ---------- radar dashboard ---------- */
.radar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--color-iron); border: 1px solid var(--color-iron); }
.panel { background: var(--color-concrete); padding: 22px 22px 26px; }
.panel h2, .panel h3 { font-family: var(--font-micro); font-size: 12px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.6; margin-bottom: 16px; }
.panel ul { list-style: none; }
.panel li { padding: 12px 0; border-top: 1px solid var(--color-iron); font-family: var(--font-display); text-transform: uppercase; font-size: 22px; letter-spacing: -0.01em; line-height: 1; }
.panel li:first-child { border-top: none; }
.panel li small { display: block; font-family: var(--font-micro); font-size: 12px; letter-spacing: 0.02em; text-transform: none; opacity: 0.6; margin-top: 4px; font-weight: 300; }

/* ---------- editorial looks (photo cards) ---------- */
.looks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--color-iron); border: 1px solid var(--color-iron); }
.look { background: var(--color-concrete); }
.look__img { aspect-ratio: 3 / 4; background-size: cover; background-position: center top; filter: grayscale(100%); }
.look__foot { padding: 16px 18px 22px; }
.look__name { font-family: var(--font-display); text-transform: uppercase; font-size: 24px; letter-spacing: -0.01em; }
.look__foot .pill { margin-top: 14px; font-size: 14px; padding: 9px 18px; }

/* ---------- materials grid: tinted by default, flips to colour + name on hover ---------- */
.materials { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--color-iron); border: 1px solid var(--color-iron); }
.swatch { position: relative; aspect-ratio: 1 / 1; background: #161616; perspective: 1000px; cursor: pointer; }
.swatch__front, .swatch__back {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  transition: transform 0.6s ease; transform-style: preserve-3d;
}
/* front: the material, tinted near-black to unify the library */
.swatch__front { filter: grayscale(100%) brightness(0.5) contrast(1.05); transform: rotateY(0deg); }
/* back: the material in true colour, with its name */
.swatch__back  { transform: rotateY(180deg); display: flex; align-items: flex-end; }
.swatch:hover .swatch__front, .swatch.is-flipped .swatch__front { transform: rotateY(180deg); }
.swatch:hover .swatch__back,  .swatch.is-flipped .swatch__back  { transform: rotateY(360deg); }
.swatch__name { width: 100%; background: var(--color-iron); color: var(--color-concrete); font-family: var(--font-display); text-transform: uppercase; font-size: 16px; letter-spacing: -0.01em; padding: 9px 12px 11px; }

/* ---------- form ---------- */
.form { display: grid; gap: 14px; max-width: 560px; }
.form label { font-family: var(--font-display); text-transform: uppercase; font-size: 16px; letter-spacing: -0.01em; }
.form input, .form textarea { font-family: var(--font-micro); font-size: 15px; padding: 12px 14px; background: transparent; border: 1px solid var(--color-iron); color: var(--color-iron); border-radius: 0; }
.form textarea { min-height: 120px; resize: vertical; }

/* ---------- footer ---------- */
.footer { background: var(--color-iron); color: var(--color-concrete); }
.footer__inner { max-width: var(--page-max-width); margin: 0 auto; padding: 48px var(--gutter) 30px; }
.footer__big { font-family: var(--font-display); font-weight: 500; text-transform: uppercase; font-size: clamp(40px, 9vw, 120px); line-height: 0.82; letter-spacing: -0.04em; }
.footer__logo img { height: 30px; margin-bottom: 26px; }
.footer__row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; margin-top: 30px; padding-top: 20px; border-top: 1px solid #3a3a3a; }
.footer__row a { font-family: var(--font-display); text-transform: uppercase; font-size: 17px; }
.footer .caption { opacity: 0.6; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .burger { display: flex; }
  .cards, .cards--3, .quotes, .radar-grid, .looks { grid-template-columns: 1fr 1fr; }
  .materials { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split__img { min-height: 300px; }
  .hero--split { grid-template-columns: 1fr; }
  .hero__media { min-height: 56vh; margin-top: 8px; }
}
@media (max-width: 560px) {
  .cards, .cards--3, .quotes, .radar-grid, .looks { grid-template-columns: 1fr; }
  .materials { grid-template-columns: repeat(2, 1fr); }
  .fabric__plate, .photoband__plate { margin: 12px; padding: 20px; }
}
