:root {
  --ink: #171717;
  --muted: #5f6268;
  --paper: #fbfbfa;
  --soft: #eef1f2;
  --line: #d8dcde;
  --green: #2f5d50;
  --red: #7f1d1d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  width: 100%;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(251, 251, 250, 0.84);
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  flex: 0 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: 0;
}

.site-nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  justify-content: flex-end;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav a,
.site-footer a {
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--ink);
  border-color: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  align-items: end;
  overflow: hidden;
  padding: 128px clamp(20px, 6vw, 84px) 72px;
  color: #fff;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: slow-drift 18s ease-in-out infinite alternate;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.34), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d7c07c;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 8vw, 7.8rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.7rem);
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.25;
}

.hero-content p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button.primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.button.light {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.section {
  padding: clamp(70px, 9vw, 132px) clamp(20px, 5vw, 72px);
}

.section-heading {
  display: grid;
  max-width: 1160px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
  gap: 28px;
  align-items: end;
  margin: 0 auto 44px;
}

.section-heading .eyebrow,
.section-heading h2 {
  grid-column: 1;
}

.section-heading p:last-child {
  grid-column: 2;
  margin-bottom: 8px;
  color: var(--muted);
}

.section-heading.compact {
  display: block;
  max-width: 820px;
  margin-right: auto;
  margin-left: 0;
}

.art-grid {
  display: grid;
  max-width: 1160px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.art-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.art-card.tall {
  grid-row: span 2;
  grid-column: span 2;
  min-height: 680px;
}

.art-card.wide {
  grid-column: span 2;
}

.art-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.art-card:hover img {
  transform: scale(1.045);
}

.art-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 22px;
  color: #fff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0));
}

.art-caption span,
.journal-grid span {
  display: block;
  margin-bottom: 8px;
  color: #d7c07c;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.art-caption p {
  max-width: 420px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.story {
  display: grid;
  max-width: 1240px;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  margin: 0 auto;
}

.story-copy p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.04rem;
}

.story-image {
  margin: 0;
}

.story-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
}

figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.craft {
  background: #f2f5f4;
}

.craft-layout {
  display: grid;
  max-width: 1160px;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  margin: 0 auto;
}

.craft-layout > img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 8px;
}

.craft-points {
  display: grid;
  gap: 14px;
}

.craft-points article,
.journal-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 32px);
  background: var(--paper);
}

.craft-points p,
.journal-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.auth-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.7fr) auto;
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 72px);
  background: #151515;
  color: #fff;
}

.auth-banner .eyebrow {
  color: #d7c07c;
}

.auth-banner h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.auth-banner p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.journal-grid {
  display: grid;
  max-width: 1160px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0 auto;
}

.journal-grid span {
  color: var(--red);
}

.contact {
  display: grid;
  max-width: 1160px;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  margin: 0 auto;
}

.contact-copy p:not(.eyebrow) {
  color: var(--muted);
}

.enquiry-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 34px);
  background: #fff;
}

.enquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  background: #fbfbfa;
  color: var(--ink);
  font: inherit;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--green);
  outline: 2px solid rgba(47, 93, 80, 0.15);
}

.enquiry-form .button {
  justify-self: start;
  cursor: pointer;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin-bottom: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
}

@keyframes slow-drift {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(-1.4%, -1%, 0);
  }
}

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

@media (max-width: 920px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav,
  .site-footer nav {
    justify-content: flex-start;
  }

  .section-heading,
  .story,
  .craft-layout,
  .auth-banner,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-heading .eyebrow,
  .section-heading h2,
  .section-heading p:last-child {
    grid-column: auto;
  }

  .art-grid,
  .journal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .auth-banner .button {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: absolute;
    background: rgba(251, 251, 250, 0.94);
  }

  .hero {
    min-height: 88svh;
    padding-top: 176px;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.1)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.12));
  }

  .button {
    width: 100%;
  }

  .art-grid,
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .art-card,
  .art-card.tall,
  .art-card.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 410px;
  }

  .craft-layout > img {
    min-height: 320px;
  }
}
