:root {
  --ink: #171512;
  --muted: #665f55;
  --line: #ded6cb;
  --paper: #f6f0e8;
  --cream: #fbf8f2;
  --clay: #a9533d;
  --olive: #59604b;
  --blue: #718495;
  --black: #0d0c0b;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgb(222 214 203 / 0.72);
  background: rgb(251 248 242 / 0.92);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand,
.nav a {
  text-decoration: none;
}

.brand {
  display: block;
  width: 112px;
  height: 48px;
  background: url("assets/existing/b00364_83b01ae1c416416897fccde9a1da15cd~mv2.png") center / contain no-repeat;
}

.brand::after {
  content: none;
}

.nav {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  min-height: 94svh;
  overflow: hidden;
  background: var(--black);
  padding-top: 74px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 50% 52%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgb(8 9 7 / 0.72), rgb(8 9 7 / 0.34) 58%, rgb(8 9 7 / 0.06)),
    linear-gradient(0deg, rgb(8 9 7 / 0.46), rgb(8 9 7 / 0.04) 62%);
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(780px, calc(100% - 36px));
  margin: 0 0 clamp(46px, 8vh, 86px) clamp(18px, 7vw, 92px);
  color: var(--cream);
}

.eyebrow,
.work-label {
  margin: 0 0 16px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #e4c4a6;
}

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.96;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 6.6vw, 5.65rem);
}

h2 {
  max-width: 830px;
  margin-bottom: 0;
  font-size: clamp(2.6rem, 7vw, 6.4rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.hero-copy {
  max-width: 570px;
  margin-bottom: 30px;
  color: rgb(251 248 242 / 0.86);
  font-size: clamp(1.03rem, 1.7vw, 1.24rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 2px;
  padding: 13px 22px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.hero .button-primary {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--ink);
}

.button-secondary {
  color: currentColor;
}

.button:hover,
.button:focus-visible {
  background: var(--clay);
  border-color: var(--clay);
  color: var(--cream);
}

.section {
  padding: clamp(76px, 11vw, 150px) clamp(18px, 5vw, 72px);
  scroll-margin-top: 92px;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: clamp(34px, 6vw, 72px);
}

.work-section {
  background: var(--cream);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: stretch;
}

.portfolio-heading {
  margin-bottom: clamp(30px, 5vw, 56px);
}

.mural-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(12px, 2vw, 24px);
  margin-bottom: clamp(54px, 8vw, 98px);
}

.mural-frame {
  grid-column: span 4;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
}

.mural-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 500ms ease;
}

.mural-frame:hover img {
  transform: scale(1.025);
}

.mural-large {
  grid-column: span 8;
  min-height: clamp(360px, 46vw, 620px);
}

.crop-leaf-interior img {
  object-position: 60% 52%;
}

.crop-botanical-bright img {
  object-position: 58% 52%;
}

.crop-ocean-wall img {
  object-position: center center;
}

.crop-canoe img {
  object-position: 50% 54%;
}

.crop-wave img {
  object-position: 48% 52%;
}

.crop-octopus-wide img {
  object-position: 52% 52%;
}

.crop-large-fish img {
  object-position: 50% 50%;
}

.crop-framed-art img {
  object-position: 50% 50%;
}

.crop-wide img {
  object-position: center center;
}

.crop-tall img {
  object-position: center 42%;
}

.crop-center img {
  object-position: center center;
}

.work-copy-grid {
  margin-top: 0;
}

.gallery-link {
  display: inline-flex;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
  text-decoration: none;
}

.gallery-page {
  padding-top: 104px;
}

.gallery-intro {
  padding: clamp(76px, 12vw, 150px) clamp(18px, 5vw, 72px) clamp(34px, 6vw, 72px);
}

.gallery-intro h1 {
  color: var(--ink);
}

.archive-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 2vw, 28px);
  padding: 0 clamp(18px, 5vw, 72px) clamp(76px, 10vw, 130px);
  align-items: start;
}

.archive-item {
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
}

.archive-wide {
  grid-column: span 8;
}

.archive-tall {
  grid-column: span 4;
}

.archive-item img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: cover;
}

.archive-item figcaption {
  padding: 12px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.archive-wide img {
  object-position: center center;
}

.work-item {
  grid-column: span 5;
  display: grid;
  gap: 22px;
  align-content: start;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.work-feature {
  grid-column: span 7;
}

.work-item img {
  width: 100%;
  height: clamp(280px, 42vw, 620px);
  object-fit: cover;
}

.work-item:not(.work-feature) img {
  height: clamp(260px, 33vw, 470px);
}

.work-item p:not(.work-label) {
  max-width: 580px;
  color: var(--muted);
}

.text-work {
  grid-column: 8 / span 5;
  padding: clamp(28px, 4vw, 48px);
  background: var(--paper);
}

.process-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(34px, 7vw, 96px);
  background: #efe5da;
}

.process-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 22px;
  border-top: 1px solid rgb(23 21 18 / 0.16);
  padding: 24px 0;
}

.process-list li:last-child {
  border-bottom: 1px solid rgb(23 21 18 / 0.16);
}

.process-list span {
  color: var(--olive);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.process-list h3 {
  margin-bottom: 6px;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
}

.process-list p {
  max-width: 480px;
  margin-bottom: 0;
  color: var(--muted);
}

.inquiry-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(34px, 7vw, 98px);
  padding: clamp(76px, 11vw, 150px) clamp(18px, 5vw, 72px);
  color: var(--cream);
  background: var(--ink);
}

.inquiry-copy {
  align-self: start;
}

.inquiry-copy .eyebrow {
  color: #d9b28d;
}

.inquiry-copy h2 {
  margin-bottom: 24px;
}

.inquiry-copy p,
.contact-note {
  max-width: 520px;
  color: rgb(251 248 242 / 0.74);
}

.contact-note {
  margin-top: 34px;
  border-top: 1px solid rgb(251 248 242 / 0.25);
  padding-top: 20px;
}

.contact-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--cream);
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-self: start;
}

label {
  display: grid;
  gap: 8px;
  color: rgb(251 248 242 / 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgb(251 248 242 / 0.28);
  border-radius: 2px;
  background: rgb(251 248 242 / 0.07);
  color: var(--cream);
  font: inherit;
  letter-spacing: 0;
  outline: none;
  padding: 14px 13px;
}

.honeypot {
  display: none;
}

textarea {
  resize: vertical;
}

select {
  appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #d9b28d;
  background: rgb(251 248 242 / 0.12);
}

::placeholder {
  color: rgb(251 248 242 / 0.44);
}

.inquiry-form .button-primary {
  min-height: 54px;
  border-color: var(--cream);
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
}

.inquiry-form .button-primary:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: #d9b28d;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.footer p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.footer a {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 820px) {
  .site-header {
    align-items: center;
  }

  .nav {
    right: 18px;
    gap: 14px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgb(13 12 11 / 0.78), rgb(13 12 11 / 0.24) 70%),
      linear-gradient(90deg, rgb(13 12 11 / 0.45), transparent);
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-left: 18px;
  }

  h1 {
    font-size: clamp(3.1rem, 12vw, 5rem);
  }

  .process-section,
  .inquiry-section {
    grid-template-columns: 1fr;
  }

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

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

  .mural-frame,
  .mural-large {
    grid-column: 1;
    min-height: 340px;
  }

  .work-item,
  .work-feature,
  .text-work {
    grid-column: 1;
  }

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

  .archive-item,
  .archive-wide {
    grid-column: 1;
  }
}

@media (max-width: 560px) {
  .site-header {
    flex-wrap: wrap;
    padding-top: 16px;
  }

  .nav {
    position: static;
    width: 100%;
    justify-content: space-between;
    font-size: 0.68rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: clamp(2.6rem, 14vw, 4.4rem);
  }

  .brand {
    width: 76px;
    height: 36px;
  }

  .mural-frame,
  .mural-large {
    min-height: 280px;
  }
}
