/*
Theme Name: Vossert
Theme URI: https://example.com/vossert
Author: Vossert
Description: A restrained custom WordPress theme for Vossert — quiet authority, gallery-scale whitespace, and deliberate contrast.
Version: 0.1.0
Requires at least: 6.4
Requires PHP: 8.1
Text Domain: vossert
*/

:root {
  --vossert-white: #FFFFFF;
  --vossert-black: #181818;
  --vossert-absolute: #000000;
  --vossert-brass: #A68A56;
  --vossert-muted: rgba(24, 24, 24, 0.58);
  --vossert-line: rgba(24, 24, 24, 0.14);
  --vossert-max: 1440px;
  --vossert-pad: clamp(24px, 4vw, 72px);
  --vossert-serif: "Cinzel", Georgia, serif;
  --vossert-sans: "Fira Sans", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--vossert-white);
  color: var(--vossert-black);
  font-family: var(--vossert-sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

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

a:hover,
a:focus-visible {
  opacity: 0.64;
}

::selection {
  background: var(--vossert-brass);
  color: var(--vossert-white);
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px var(--vossert-pad);
  border-bottom: 1px solid var(--vossert-line);
  background: var(--vossert-white);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-brand {
  font-family: var(--vossert-serif);
  font-weight: 500;
  letter-spacing: 0.12em;
  font-size: clamp(19px, 1.8vw, 28px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 36px);
  font-size: 14px;
}

.site-nav a {
  position: relative;
}

.page-frame {
  width: min(100%, var(--vossert-max));
  margin: 0 auto;
  padding-left: var(--vossert-pad);
  padding-right: var(--vossert-pad);
}

.hero {
  min-height: 78vh;
  display: grid;
  align-items: end;
  padding-top: clamp(80px, 12vh, 180px);
  padding-bottom: clamp(72px, 10vh, 140px);
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--vossert-muted);
}

.hero-title,
.display-title {
  margin: 0;
  font-family: var(--vossert-serif);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  line-height: 0.97;
}

.hero-title {
  font-size: clamp(54px, 10vw, 152px);
  max-width: 11ch;
}

.hero-meta {
  margin-top: 34px;
  max-width: 560px;
  color: var(--vossert-muted);
}

.room {
  padding: clamp(90px, 14vw, 220px) 0;
}

.room--tight {
  padding-top: clamp(60px, 9vw, 140px);
  padding-bottom: clamp(60px, 9vw, 140px);
}

.room--dark {
  background: var(--vossert-black);
  color: var(--vossert-white);
}

.room--absolute {
  background: var(--vossert-absolute);
  color: var(--vossert-white);
}

.room--dark .eyebrow,
.room--absolute .eyebrow {
  color: rgba(255,255,255,0.56);
}

.featured-work {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.65fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: end;
}

.featured-work__image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #ececec;
}

.work-title {
  margin: 0 0 16px;
  font-family: var(--vossert-serif);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  font-size: clamp(34px, 4.8vw, 72px);
  line-height: 1.02;
}

.work-meta {
  display: grid;
  gap: 5px;
  margin-bottom: 28px;
  font-size: 15px;
}

.work-price {
  margin-top: 22px;
  font-size: 17px;
  font-weight: 400;
}

.text-link {
  display: inline-block;
  margin-top: 28px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-size: 14px;
}

.statement {
  max-width: 980px;
}

.statement p {
  margin: 0;
  font-family: var(--vossert-serif);
  font-weight: 400;
  line-height: 1.2;
  font-size: clamp(34px, 5vw, 72px);
}

.statement .brass {
  color: var(--vossert-brass);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(24px, 3vw, 42px);
}

.work-card {
  grid-column: span 6;
  margin-bottom: clamp(60px, 9vw, 130px);
}

.work-card:nth-child(3n) {
  grid-column: 3 / span 8;
}

.work-card__image {
  margin-bottom: 18px;
  overflow: hidden;
  background: #efefef;
}

.work-card__image img {
  transition: transform 700ms cubic-bezier(.22,.61,.36,1);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.work-card:hover .work-card__image img {
  transform: scale(1.012);
}

.work-card__title {
  margin: 0 0 5px;
  font-family: var(--vossert-serif);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.045em;
}

.work-card__meta {
  color: var(--vossert-muted);
  font-size: 14px;
}

.archive-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: clamp(60px, 8vw, 110px);
}

.archive-heading h1 {
  margin: 0;
  font-family: var(--vossert-serif);
  font-size: clamp(44px, 6vw, 86px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.work-detail {
  padding-top: clamp(54px, 7vw, 110px);
  padding-bottom: clamp(100px, 12vw, 180px);
}

.work-detail__image {
  max-width: 1050px;
  margin: 0 auto;
}

.work-detail__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 8vw, 130px);
  margin-top: clamp(42px, 6vw, 86px);
}

.work-detail__copy {
  max-width: 580px;
}

.work-detail__description {
  margin-top: 30px;
  color: var(--vossert-muted);
}

.enquiry-form {
  display: grid;
  gap: 18px;
  max-width: 620px;
}

.enquiry-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.32);
  background: transparent;
  color: var(--vossert-white);
  padding: 10px 0 12px;
  font: inherit;
}

.enquiry-form textarea {
  min-height: 120px;
  resize: vertical;
}

.enquiry-form button {
  justify-self: start;
  border: 1px solid rgba(255,255,255,0.45);
  background: transparent;
  color: var(--vossert-white);
  padding: 11px 18px;
  font: inherit;
  cursor: pointer;
}

.enquiry-form button:hover {
  border-color: var(--vossert-brass);
  color: var(--vossert-brass);
}

.site-footer {
  background: var(--vossert-black);
  color: var(--vossert-white);
  min-height: 70vh;
  display: grid;
  align-items: end;
  padding: clamp(70px, 11vw, 170px) var(--vossert-pad) 44px;
}

.site-footer__inner {
  width: min(100%, var(--vossert-max));
  margin: 0 auto;
}

.site-footer__brand {
  color: var(--vossert-brass);
  font-family: var(--vossert-serif);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(48px, 10vw, 150px);
  line-height: 0.9;
  margin: 0 0 clamp(60px, 10vw, 150px);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 34px;
  color: rgba(255,255,255,0.68);
  font-size: 14px;
}

.site-footer__grid strong {
  display: block;
  color: var(--vossert-white);
  font-weight: 400;
  margin-bottom: 8px;
}

.notice {
  padding: 12px 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 14px;
}

.notice--success {
  border-color: var(--vossert-brass);
}

@media (max-width: 800px) {
  .site-header {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .site-nav {
    gap: 16px;
    font-size: 13px;
  }

  .featured-work,
  .work-detail__info,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .work-card,
  .work-card:nth-child(3n) {
    grid-column: 1 / -1;
  }

  .hero {
    min-height: 68vh;
  }

  .site-footer {
    min-height: 82vh;
  }
}
