:root {
  --paper: #f7f3ec;
  --ink: #201d19;
  --muted: #746e65;
  --line: #d9d0c4;
  --bone: #fffaf2;
  --charcoal: #34302b;
  --rust: #a54f35;
  --moss: #53604a;
  --blue: #294f73;
  --shadow: 0 20px 55px rgba(38, 32, 24, 0.12);
  color-scheme: light;
  font-family: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  letter-spacing: 0;
  min-width: 320px;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 4px;
}

.skip-link {
  background: var(--ink);
  color: var(--paper);
  font-size: 0.88rem;
  font-weight: 700;
  left: 16px;
  letter-spacing: 0.08em;
  padding: 12px 14px;
  position: fixed;
  text-decoration: none;
  text-transform: uppercase;
  top: 12px;
  transform: translateY(-140%);
  z-index: 100;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(247, 243, 236, 0.84);
  border-bottom: 1px solid rgba(217, 208, 196, 0.72);
  display: flex;
  justify-content: space-between;
  left: 0;
  min-height: 72px;
  padding: 16px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand,
.site-nav,
.contact-links,
.text-link {
  align-items: center;
  display: flex;
}

.brand {
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: var(--paper);
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.site-nav {
  gap: clamp(16px, 3vw, 38px);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--rust);
}

.hero {
  min-height: 84vh;
  overflow: hidden;
  padding: 106px clamp(18px, 4vw, 56px) 42px;
  position: relative;
}

.hero::after {
  background: linear-gradient(
    90deg,
    rgba(247, 243, 236, 0.95) 0%,
    rgba(247, 243, 236, 0.78) 38%,
    rgba(247, 243, 236, 0.08) 78%
  );
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-copy {
  max-width: 640px;
  padding-top: min(11vh, 118px);
  position: relative;
  z-index: 2;
}

.eyebrow,
.work-type {
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

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

h1 {
  font-size: 8.8rem;
  line-height: 0.86;
  margin-bottom: 28px;
  max-width: 880px;
}

h2 {
  font-size: 5.6rem;
  line-height: 0.9;
  margin-bottom: 0;
}

h3 {
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 14px;
}

h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
  margin-bottom: 0;
}

.hero-copy p:not(.eyebrow) {
  color: var(--charcoal);
  font-size: 1.35rem;
  line-height: 1.5;
  margin-bottom: 30px;
  max-width: 560px;
}

.text-link {
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding-bottom: 6px;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
}

.secondary-link {
  color: var(--rust);
}

.hero-note {
  background: rgba(255, 250, 242, 0.9);
  border: 1px solid rgba(217, 208, 196, 0.82);
  box-shadow: 0 18px 46px rgba(38, 32, 24, 0.1);
  bottom: 42px;
  max-width: 330px;
  padding: 22px 24px 24px;
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  z-index: 2;
}

.hero-note .eyebrow {
  color: var(--rust);
}

.hero-note p:last-child {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.25;
  margin-bottom: 0;
}

.intro-band,
.section,
.about-section,
.spaces-section,
.contact-section,
.site-footer {
  padding-left: clamp(18px, 4vw, 56px);
  padding-right: clamp(18px, 4vw, 56px);
}

.intro-band {
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 118px;
  padding-bottom: 28px;
  padding-top: 28px;
}

.intro-band p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.18;
  margin-bottom: 0;
  max-width: 980px;
}

.intro-band a {
  flex: 0 0 auto;
  font-size: 0.92rem;
}

.section {
  padding-bottom: clamp(74px, 11vw, 142px);
  padding-top: clamp(74px, 11vw, 142px);
}

.section-heading {
  align-items: end;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(170px, 0.32fr) 1fr;
  padding-top: 28px;
}

.portfolio-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.65;
  margin: 20px 0 0;
  max-width: 620px;
}

.style-grid {
  display: grid;
  gap: clamp(24px, 3vw, 42px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(44px, 6vw, 80px);
}

.style-card {
  display: grid;
  gap: 22px;
}

.style-card > a {
  background: var(--bone);
  box-shadow: var(--shadow);
  display: block;
  overflow: hidden;
  text-decoration: none;
}

.style-card img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.style-card h3 {
  font-size: 2.1rem;
  line-height: 1.03;
  margin-bottom: 12px;
}

.style-card p:not(.work-type) {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 18px;
}

.gallery-hero {
  padding: 132px clamp(18px, 4vw, 56px) clamp(70px, 9vw, 118px);
}

.gallery-hero h1 {
  font-size: 7rem;
  margin-bottom: 24px;
}

.gallery-hero > p {
  color: var(--charcoal);
  font-size: 1.28rem;
  line-height: 1.55;
  margin-bottom: 32px;
  max-width: 760px;
}

.gallery-section {
  padding-top: 0;
}

.gallery-section .portfolio-group {
  display: block;
}

.gallery-section .group-title {
  margin-bottom: clamp(30px, 4vw, 54px);
  max-width: 820px;
}

.gallery-section .group-title h2 {
  font-size: 4.6rem;
  line-height: 0.95;
  overflow-wrap: anywhere;
}

.gallery-section .art-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-section .compact-grid {
  max-width: none;
}

.portfolio-group {
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: minmax(260px, 0.28fr) minmax(0, 1fr);
  margin-top: clamp(42px, 6vw, 78px);
  padding-top: clamp(28px, 4vw, 44px);
}

.group-title p,
.about-copy p,
.contact-panel p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.art-grid {
  align-items: start;
  display: grid;
  gap: clamp(24px, 3vw, 42px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
}

.compact-grid {
  max-width: 880px;
}

.work-item {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.work-image-link {
  background: var(--bone);
  box-shadow: var(--shadow);
  display: block;
  overflow: hidden;
  text-decoration: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.work-image-link:hover,
.work-image-link:focus-visible {
  opacity: 0.92;
  transform: translateY(-2px);
}

.work-item img {
  background: var(--bone);
  height: auto;
  width: 100%;
}

.work-type {
  color: var(--rust);
  margin-bottom: 8px;
}

.portfolio-note-tile {
  background: var(--ink);
  break-inside: avoid;
  color: var(--paper);
  display: grid;
  gap: 18px;
  margin-bottom: clamp(26px, 3vw, 42px);
  min-height: 360px;
  padding: clamp(24px, 3vw, 38px);
}

.portfolio-note-tile h4 {
  font-size: 2rem;
  line-height: 1.08;
}

.portfolio-note-tile p:not(.eyebrow) {
  color: rgba(247, 243, 236, 0.74);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.portfolio-note-tile .text-link {
  align-self: end;
  justify-self: start;
}

.light-note {
  background: var(--bone);
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.light-note p:not(.eyebrow) {
  color: var(--muted);
}

.spaces-section {
  background: var(--charcoal);
  color: var(--paper);
  display: grid;
  gap: clamp(32px, 6vw, 88px);
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  padding-bottom: clamp(70px, 9vw, 118px);
  padding-top: clamp(70px, 9vw, 118px);
}

.spaces-heading h2 {
  font-size: 5.4rem;
  max-width: 680px;
}

.spaces-list {
  border-top: 1px solid rgba(247, 243, 236, 0.32);
}

.spaces-list > div {
  border-bottom: 1px solid rgba(247, 243, 236, 0.24);
  padding: 30px 0;
}

.spaces-list h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.spaces-list p:not(.eyebrow) {
  color: rgba(247, 243, 236, 0.72);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 0;
  max-width: 640px;
}

.about-section {
  background: var(--bone);
  display: grid;
  gap: clamp(34px, 6vw, 86px);
  grid-template-columns: minmax(0, 0.55fr) minmax(280px, 0.45fr);
  padding-bottom: clamp(74px, 10vw, 128px);
  padding-top: clamp(74px, 10vw, 128px);
}

.about-section .section-heading {
  display: block;
}

.about-copy {
  align-self: end;
  max-width: 620px;
}

.about-copy p:first-child {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  line-height: 1.22;
}

.contact-section {
  display: grid;
  gap: clamp(34px, 6vw, 86px);
  grid-template-columns: minmax(0, 0.55fr) minmax(280px, 0.45fr);
  padding-bottom: clamp(74px, 10vw, 128px);
  padding-top: clamp(74px, 10vw, 128px);
}

.contact-section .section-heading {
  display: block;
}

.contact-panel {
  align-self: end;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.contact-panel p + p {
  margin-top: 18px;
}

.contact-links {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-links a {
  align-items: center;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 6px;
  color: var(--paper);
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.1em;
  min-height: 48px;
  padding: 0 18px;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-links a:nth-child(2) {
  background: var(--moss);
  border-color: var(--moss);
}

.contact-links a:nth-child(3) {
  background: var(--blue);
  border-color: var(--blue);
}

.contact-links a:hover,
.contact-links a:focus-visible {
  background: transparent;
  color: var(--ink);
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  font-size: 0.9rem;
  gap: 18px;
  justify-content: space-between;
  min-height: 96px;
  padding-bottom: 24px;
  padding-top: 24px;
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 820px) {
  .site-header {
    min-height: 66px;
  }

  h1 {
    font-size: 5.8rem;
  }

  .gallery-hero h1 {
    font-size: 5.8rem;
  }

  h2 {
    font-size: 3.8rem;
  }

  .gallery-section .group-title h2 {
    font-size: 3.8rem;
  }

  .spaces-heading h2 {
    font-size: 3.8rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 1.2rem;
  }

  .intro-band p {
    font-size: 1.65rem;
  }

  .about-copy p:first-child {
    font-size: 1.9rem;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.74rem;
  }

  .hero {
    min-height: 78vh;
    padding-top: 92px;
  }

  .hero-note {
    bottom: auto;
    margin-top: 34px;
    max-width: 520px;
    position: relative;
    right: auto;
  }

  .hero::after {
    background: rgba(247, 243, 236, 0.8);
  }

  .hero-image {
    object-position: 58% center;
  }

  .intro-band,
  .section-heading,
  .portfolio-group,
  .about-section,
  .spaces-section,
  .contact-section,
  .site-footer {
    display: block;
  }

  .intro-band a {
    display: inline-block;
    margin-top: 18px;
    overflow-wrap: anywhere;
  }

  .art-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
  }

  .gallery-section .art-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .style-grid {
    grid-template-columns: 1fr;
  }

  .work-item {
    margin-bottom: 30px;
  }

  .about-copy,
  .contact-panel {
    margin-top: 34px;
  }

  .spaces-list {
    margin-top: 34px;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    display: none;
  }

  .site-nav {
    gap: 12px;
    white-space: nowrap;
  }

  h1 {
    font-size: 4.25rem;
    line-height: 0.9;
  }

  .gallery-hero h1 {
    font-size: 4.25rem;
  }

  h2 {
    font-size: 3rem;
  }

  .gallery-section .group-title h2 {
    font-size: 3rem;
  }

  .spaces-heading h2 {
    font-size: 3rem;
  }

  h3 {
    font-size: 2rem;
  }

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

  .gallery-section .art-grid {
    grid-template-columns: 1fr;
  }

  .compact-grid {
    max-width: none;
  }

  .work-item {
    margin-top: 0;
  }

  .portfolio-note-tile {
    min-height: 0;
  }

  .contact-links a {
    flex: 1 1 100%;
  }
}

@media (max-width: 380px) {
  .site-header {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand-mark {
    height: 34px;
    width: 34px;
  }

  .site-nav {
    gap: 9px;
    font-size: 0.68rem;
  }

  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .gallery-section .group-title h2 {
    font-size: 2.55rem;
  }

  .spaces-heading h2 {
    font-size: 2.55rem;
  }

  .eyebrow,
  .work-type {
    font-size: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
